├── hourly-import ├── README.md ├── umu_import_credentials.py ├── add-cronjob.sh ├── remove-cronjob.sh └── umu_import.py ├── umu.openwinecomponents.org ├── dbinfo.php ├── README.md ├── umu_api.php └── index.php ├── create_tables.sql ├── .github └── workflows │ └── validity-check.yml ├── codename-lookup.md ├── tools ├── README.md ├── amazon-import.py ├── gamesdb.py └── preflight-check.py ├── README.md ├── LICENSE └── umu-database.csv /hourly-import/README.md: -------------------------------------------------------------------------------- 1 | Requirements: 2 | 3 | pip install pandas mysql-connector-python pyarrow 4 | -------------------------------------------------------------------------------- /hourly-import/umu_import_credentials.py: -------------------------------------------------------------------------------- 1 | # db_credentials.py 2 | 3 | DB_HOST = 'localhost' 4 | DB_NAME = 'your_database' 5 | DB_USER = 'your_username' 6 | DB_PASSWORD = 'your_password' 7 | -------------------------------------------------------------------------------- /umu.openwinecomponents.org/dbinfo.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /create_tables.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE game ( 2 | id VARCHAR(255) PRIMARY KEY, 3 | title VARCHAR(255) NOT NULL, 4 | acronym VARCHAR(255) 5 | ); 6 | 7 | CREATE TABLE gamerelease ( 8 | umu_id VARCHAR(255) REFERENCES game(id), 9 | codename VARCHAR(255), 10 | store VARCHAR(255), 11 | notes TEXT 12 | ); 13 | -------------------------------------------------------------------------------- /hourly-import/add-cronjob.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # This script will create a cron job 3 | 4 | # Define the cron job 5 | CRONJOB="0 * * * * $(which python3) "$PWD"/umu_import.py" 6 | 7 | # Add the cron job to the root user's crontab 8 | echo "$CRONJOB" | crontab - 9 | 10 | # Print the list of cron jobs to confirm the addition 11 | crontab -l 12 | -------------------------------------------------------------------------------- /.github/workflows/validity-check.yml: -------------------------------------------------------------------------------- 1 | name: Data check 2 | on: 3 | push: 4 | paths: 5 | - '**.csv' 6 | branches: 7 | - main 8 | pull_request: 9 | paths: 10 | - '**.csv' 11 | jobs: 12 | check-data: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | - run: ./tools/preflight-check.py ./umu-database.csv 17 | 18 | -------------------------------------------------------------------------------- /hourly-import/remove-cronjob.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # This script will remove a specific cron job 3 | 4 | # Define the cron job to be removed 5 | CRONJOB="$(which python3) "$PWD"/umu_import.py" 6 | 7 | # Get the list of current cron jobs 8 | CURRENT_CRONS=$(crontab -l) 9 | 10 | # Filter out the cron job to be removed 11 | NEW_CRONS=$(echo "$CURRENT_CRONS" | grep -v "$CRONJOB") 12 | 13 | # Update the root user's crontab 14 | echo "$NEW_CRONS" | crontab - 15 | 16 | # Print the updated list of cron jobs to confirm the removal 17 | crontab -l 18 | -------------------------------------------------------------------------------- /codename-lookup.md: -------------------------------------------------------------------------------- 1 | GOG: 2 | https://www.gogdb.org 3 | Notes: 4 | - ID value is the codename 5 | - Only use those marked Type: Game 6 | 7 | Epic Games: 8 | - AppNames can only be obtained when owning the game 9 | 10 | Steam: 11 | https://steamdb.info 12 | Notes: 13 | - We don't make umu entries for steam games, but we do make protonfixes. As stated 14 | in the rules, umu IDs are referenced to steam IDs if both a steam and non-steam 15 | version of the game exists, and the non-steam game versions are symlinked to 16 | the steam version protonfixes,so It's useful to check if a steam version exists. 17 | 18 | Amazon: 19 | - Possible for entitlement owners only 20 | - Steam release auto import possible with [amazon-import.py](./tools/amazon-import.py) 21 | 22 | 23 | For each store you can obtain somewhat accurate results using [gamesdb.py](./tools/gamesdb.py). 24 | 25 | TODO: 26 | Add more sources for Humble, EA, Battlenet, Ubisoft, itch.io 27 | -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | # umu tools 2 | 3 | Here is the set of tools for easier database maintenance and quickly searching of releases across different stores 4 | 5 | ## gamesdb.py 6 | 7 | > [!WARNING] 8 | > Use this only as a hint, always make sure you can confirm that the data is valid 9 | 10 | display external releases of games by title from GOG Galaxy's API 11 | Usage: 12 | ``` 13 | ./gamesdb.py Horizon Zero Dawn 14 | ``` 15 | 16 | ## amazon-import.py 17 | 18 | print games with Steam releases based on [Nile](https://github.com/imLinguin/nile)'s library.json that are not in the database 19 | 20 | Common location of library.json on Linux is `$XDG_CONFIG_HOME/nile/library.json` and in Heroic `$XDG_CONFIG_HOME/heroic/nile_config/nile/library.json` 21 | 22 | Make sure to run `nile library sync` before import to ensure latest metadata 23 | 24 | ## preflight-check.py 25 | 26 | makes sure the csv is valid, used in GitHub action on each push 27 | -------------------------------------------------------------------------------- /umu.openwinecomponents.org/README.md: -------------------------------------------------------------------------------- 1 | PHP Server host requirements: 2 | ``` 3 | apt install php-mysqlnd 4 | apt install php-curl php-dom php-gd php-imagick php-zip php-intl 5 | ``` 6 | 7 | PHP query example: 8 | ``` 9 | 18 | ``` 19 | PHP query example using curl: 20 | ``` 21 | 34 | ``` 35 | 36 | Python query requirements: 37 | `pip install requests` 38 | 39 | Python query example: 40 | ``` 41 | import requests 42 | 43 | # Define the base URL of the API endpoint 44 | base_url = "https://umu.openwinecomponents.org/umu_api.php" 45 | 46 | # Define the parameters for the GET request 47 | params = {"codename": "codename", "store": "store"} 48 | 49 | # Send the GET request 50 | response = requests.get(base_url, params=params) 51 | 52 | # Parse the JSON response 53 | data = response.json() 54 | 55 | # Print the data 56 | for item in data: 57 | print(f"Title: {item['title']}, UMU ID: {item['umu_id']}") 58 | ``` 59 | -------------------------------------------------------------------------------- /tools/amazon-import.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | import json 5 | import csv 6 | 7 | USAGE = "./amazon-library.py library.json database.csv" 8 | 9 | def main(): 10 | try: 11 | library = sys.argv[1] 12 | except IndexError: 13 | print("Please provide library file") 14 | print(USAGE) 15 | return 16 | 17 | try: 18 | database = sys.argv[2] 19 | except IndexError: 20 | print("Please provide database.csv location") 21 | print(USAGE) 22 | return 23 | 24 | game_ids = list() 25 | with open(database, 'r', newline='') as csvfile: 26 | reader = csv.reader(csvfile, delimiter=',') 27 | header = True 28 | for row in reader: 29 | if header: 30 | header = False 31 | continue 32 | store = row[1] 33 | codename = row[2] 34 | if store == "amazon": 35 | game_ids.append(codename) 36 | 37 | file = open(library, 'r') 38 | library_data = json.load(file) 39 | file.close() 40 | 41 | 42 | for game in library_data: 43 | try: 44 | steam = game['product']['productDetail']['details']['websites']['steam'] 45 | except KeyError: 46 | continue 47 | if game['product']['id'] in game_ids: 48 | continue 49 | parts = steam.split('/') 50 | steamid = parts[4] 51 | title = game['product']['title'] 52 | if ',' in title: 53 | title = '"' + title + '"' 54 | print(f"{title},amazon,{game['product']['id']},umu-{steamid},,") 55 | 56 | if __name__=="__main__": 57 | main() 58 | -------------------------------------------------------------------------------- /tools/gamesdb.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | # Query games by title using GOG GALAXY's gamesdb.gog.com API 4 | 5 | import sys 6 | import urllib.request 7 | import urllib.parse 8 | import datetime 9 | import json 10 | 11 | # https://galaxy-integrations-python-api.readthedocs.io/en/latest/platforms.html 12 | PLATFORM_WHITELIST = set(["steam", "amazon", "battlenet", "origin", "epic", "humble", "itch", "gog", "uplay"]) 13 | 14 | def main(): 15 | try: 16 | title = " ".join(sys.argv[1:]) 17 | if not title: 18 | raise IndexError() 19 | except IndexError: 20 | print("Title required") 21 | return 22 | 23 | save_title = urllib.parse.urlencode({"title": title}) 24 | 25 | request_url = f"https://gamesdb.gog.com/games?{save_title}" 26 | 27 | req = urllib.request.Request(request_url) 28 | response = urllib.request.urlopen(req) 29 | data = response.read() 30 | json_data = json.loads(data) 31 | 32 | for item in json_data["items"]: 33 | if not PLATFORM_WHITELIST.intersection(set([release["platform_id"] for release in item["releases"]])): 34 | continue 35 | 36 | if item["first_release_date"]: 37 | date = datetime.datetime.fromisoformat(item["first_release_date"]) 38 | print(item["title"]["*"], f"({date.strftime('%Y')})") 39 | else: 40 | print(item["title"]["*"]) 41 | 42 | for release in item["releases"]: 43 | if release["platform_id"] in PLATFORM_WHITELIST: 44 | print("\t", release["platform_id"], release["external_id"]) 45 | 46 | print() 47 | 48 | if __name__ == "__main__": 49 | main() 50 | 51 | -------------------------------------------------------------------------------- /tools/preflight-check.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | import os 5 | import csv 6 | 7 | SUPPORTED_STORES = ["amazon", "battlenet", "none", "egs", "ubisoft", "ea", "humble", "itchio", "steam", "gog", "zoomplatform"] 8 | 9 | def main(): 10 | file = sys.argv[1] 11 | filename = os.path.basename(file) 12 | has_error = False 13 | with open(file, 'r') as csvfile: 14 | rows = csv.reader(csvfile) 15 | header = True 16 | release_ids = list() 17 | for i, row in enumerate(rows, 1): 18 | if header: 19 | header = False 20 | continue 21 | 22 | if not row: 23 | print(f"::error file={filename},line={i}::empty row found") 24 | has_error = True 25 | continue 26 | 27 | if len(row) != 6: 28 | print(f"::error file={filename},line={i}::incorrect number of columns") 29 | has_error = True 30 | continue 31 | 32 | title = row[0] 33 | store = row[1] 34 | codename = row[2] 35 | umu_id = row[3] 36 | 37 | if not (title and store and codename and umu_id): 38 | print(f"::error file={filename},line={i}::At least one of the required fields is missing") 39 | has_error = True 40 | continue 41 | 42 | if store not in SUPPORTED_STORES: 43 | print(f"::error file={filename},line={i}::Invalid store provided '{store}'") 44 | has_error = True 45 | continue 46 | 47 | if store == "none" and codename == "none": 48 | continue 49 | release_id = f"{store}_{codename}" 50 | if release_id in release_ids: 51 | print(f"::error file={filename},line={i}::Duplicate entry found '{title}, {store}, {codename}'") 52 | has_error = True 53 | continue 54 | release_ids.append(release_id) 55 | 56 | if has_error: 57 | exit(1) 58 | 59 | if __name__ == "__main__": 60 | main() 61 | -------------------------------------------------------------------------------- /hourly-import/umu_import.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | from mysql.connector import connect, Error 3 | from umu_import_credentials import DB_HOST, DB_NAME, DB_USER, DB_PASSWORD 4 | 5 | try: 6 | connection = connect(host=DB_HOST, 7 | database=DB_NAME, 8 | user=DB_USER, 9 | password=DB_PASSWORD) 10 | if connection.is_connected(): 11 | db_Info = connection.get_server_info() 12 | print("Connected to MySQL Server version ", db_Info) 13 | except Error as e: 14 | print("Error while connecting to MySQL", e) 15 | 16 | url = "https://raw.githubusercontent.com/Open-Wine-components/umu-database/main/umu-database.csv" 17 | df = pd.read_csv(url) 18 | df2 = df.astype(object).where(pd.notnull(df), None) 19 | 20 | 21 | cursor = connection.cursor() 22 | for index, row in df2.iterrows(): 23 | 24 | # Check if 'title' exists in 'game' 25 | cursor.execute("SELECT * FROM game WHERE id=%s", (row['UMU_ID'],)) 26 | result = cursor.fetchone() 27 | if result: 28 | # Check if 'umu_id', 'codename', and 'store' exist in 'gamerelease' 29 | cursor.execute("SELECT * FROM gamerelease WHERE umu_id=%s AND codename=%s AND store=%s", (row['UMU_ID'], row['CODENAME'], row['STORE'])) 30 | result = cursor.fetchone() 31 | if not result: 32 | # Add 'umu_id', 'codename', 'store', and 'notes' to 'gamerelease' 33 | sql_insert_query = """ INSERT INTO gamerelease (umu_id,codename,store,notes) VALUES (%s,%s,%s,%s)""" 34 | record_to_insert = (row['UMU_ID'], row['CODENAME'], row['STORE'], row['NOTE (Optional)']) 35 | #print(sql_insert_query) 36 | print(record_to_insert) 37 | cursor.execute(sql_insert_query, record_to_insert) 38 | else: 39 | # Add 'title' and 'acronym' to 'game', only add 'acronym' if not empty. 40 | sql_insert_query = """INSERT INTO game (id, title, acronym) VALUES (%s, %s, %s)""" 41 | record_to_insert = (row['UMU_ID'], row['TITLE'], row['COMMON ACRONYM (Optional)']) 42 | #print(sql_insert_query) 43 | print(record_to_insert) 44 | cursor.execute(sql_insert_query, record_to_insert) 45 | 46 | # Add 'umu_id', 'codename', 'store', and 'notes' to 'gamerelease'. Only add 'notes' if not empty. 47 | sql_insert_query = """INSERT INTO gamerelease (umu_id, codename, store, notes) VALUES (%s, %s, %s, %s)""" 48 | record_to_insert = (row['UMU_ID'], row['CODENAME'], row['STORE'], row['NOTE (Optional)']) 49 | #print(sql_insert_query) 50 | print(record_to_insert) 51 | cursor.execute(sql_insert_query, record_to_insert) 52 | 53 | connection.commit() 54 | 55 | cursor.close() 56 | connection.close() 57 | print("MySQL connection is closed") 58 | -------------------------------------------------------------------------------- /umu.openwinecomponents.org/umu_api.php: -------------------------------------------------------------------------------- 1 | PDO::ERRMODE_EXCEPTION, 10 | PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC 11 | ] 12 | ); 13 | } catch (PDOException $e) { 14 | die("ERROR: Could not connect. " . $e->getMessage()); 15 | } 16 | 17 | // Utility function to get the API method 18 | function get_method() { 19 | return $_SERVER['REQUEST_METHOD']; 20 | } 21 | 22 | // Utility function to get the request data 23 | function get_request_data() { 24 | return array_merge(empty($_GET) ? array() : $_GET, (array) json_decode(file_get_contents('php://input'), true)); 25 | } 26 | 27 | // Utility function to send an API response 28 | function send_response($response, $code = 200) { 29 | // Set the content type to JSON 30 | header('Content-Type: application/json'); 31 | 32 | // Set the HTTP status code 33 | http_response_code($code); 34 | 35 | // Encode the response array as a JSON string and print it 36 | echo json_encode($response); 37 | 38 | // Terminate the script execution 39 | exit(); 40 | } 41 | 42 | // Check if the request method is GET and if the codename and store parameters are set 43 | if (get_method() === 'GET') { 44 | $codename = isset($_GET['codename']) ? $_GET['codename'] : null; 45 | $store = isset($_GET['store']) ? $_GET['store'] : null; 46 | $umu_id = isset($_GET['umu_id']) ? $_GET['umu_id'] : null; 47 | $title = isset($_GET['title']) ? $_GET['title'] : null; 48 | 49 | // Prepare and execute the SQL statement 50 | $sql = "SELECT g.title, gr.umu_id, g.acronym, gr.codename, gr.store, gr.notes FROM gamerelease gr INNER JOIN game g ON g.id = gr.umu_id"; 51 | $params = []; 52 | 53 | if ($codename !== null) { 54 | $sql .= " WHERE gr.codename = :codename"; 55 | $params[':codename'] = $codename; 56 | } 57 | 58 | if ($store !== null) { 59 | if ($codename !== null) { 60 | $sql .= " AND gr.store = :store"; 61 | } else { 62 | $sql .= " WHERE gr.store = :store"; 63 | } 64 | $params[':store'] = $store; 65 | } 66 | 67 | if ($umu_id !== null) { 68 | if ($store !== null) { 69 | $sql .= " AND gr.umu_id = :umu_id"; 70 | } else { 71 | $sql .= " WHERE gr.umu_id = :umu_id"; 72 | } 73 | $params[':umu_id'] = $umu_id; 74 | } 75 | 76 | if ($title !== null) { 77 | if ($store !== null) { 78 | $sql .= " AND g.title = :title"; 79 | } else { 80 | $sql .= " WHERE g.title = :title AND gr.store = 'none'"; 81 | } 82 | $params[':title'] = $title; 83 | } 84 | 85 | $stmt = $pdo->prepare($sql); 86 | $stmt->execute($params); 87 | $results = $stmt->fetchAll(); 88 | 89 | // Prepare the response 90 | $response = []; 91 | foreach ($results as $result) { 92 | if ($codename !== null && $store !== null) { 93 | $response[] = ['title' => $result['title'], 'umu_id' => $result['umu_id']]; 94 | } else if ($umu_id !== null && $store !== null) { 95 | $response[] = ['title' => $result['title']]; 96 | } else if ($title !== null) { 97 | $response[] = ['umu_id' => $result['umu_id']]; 98 | } else { 99 | $response[] = [ 100 | 'title' => $result['title'], 101 | 'umu_id' => $result['umu_id'], 102 | 'acronym' => $result['acronym'], 103 | 'codename' => $result['codename'], 104 | 'store' => $result['store'], 105 | 'notes' => $result['notes'] 106 | ]; 107 | } 108 | } 109 | // Send the response 110 | send_response($response); 111 | } else { 112 | send_response(['error' => 'Invalid request'], 400); 113 | } 114 | ?> 115 | 116 | -------------------------------------------------------------------------------- /umu.openwinecomponents.org/index.php: -------------------------------------------------------------------------------- 1 | PDO::ERRMODE_EXCEPTION, 11 | PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC 12 | ] 13 | ); 14 | } catch (PDOException $e) { 15 | die("ERROR: Could not connect. " . $e->getMessage()); 16 | } 17 | 18 | // Check if form has been submitted 19 | if (isset($_POST["search"])) { 20 | $stmt = $pdo->prepare(" 21 | SELECT g.title, g.acronym, gr.umu_id, gr.store, gr.codename, gr.notes 22 | FROM game g 23 | INNER JOIN gamerelease gr ON g.id = gr.umu_id 24 | WHERE g.title LIKE :search OR g.acronym LIKE :search OR gr.codename LIKE :search 25 | "); 26 | $stmt->execute([":search" => "%".$_POST["search"]."%"]); 27 | $results = $stmt->fetchAll(); 28 | } 29 | ?> 30 | 31 | 32 | 33 | 34 | 35 | Game Search 36 | 54 | 55 | 56 |
57 | 58 | 59 |
60 |

Can't find a game? Help build our database here:

61 |

Database: umu-database.csv

62 |

Database contribution guidelines: README.md#rules-for-adding-umu-id-entries

63 |

Data from the umu-database.csv is pulled from our github and added hourly.

64 | Search results for: " . $_POST["search"] . ""; 67 | echo "

Number of results: " . $stmt->rowCount() . "

"; 68 | $counter = 1; 69 | } 70 | ?> 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | "; 87 | echo ""; 88 | echo ""; 89 | echo ""; 90 | echo ""; 91 | echo ""; 92 | echo ""; 93 | echo ""; 94 | 95 | if (htmlspecialchars($result['store']) == 'none') { 96 | $result['store'] = 'umu'; 97 | } 98 | $fileContents = file_get_contents("https://raw.githubusercontent.com/Open-Wine-Components/umu-protonfixes/master/gamefixes-" . htmlspecialchars($result['store']) . "/" . htmlspecialchars($result['umu_id']) . ".py"); 99 | if (!$fileContents) { 100 | echo ""; 101 | } else if (strpos($fileContents, 'gamefixes-steam') != false) { 102 | echo ""; 103 | } else { 104 | echo ""; 105 | } 106 | echo ""; 107 | $counter++; 108 | } 109 | } else { 110 | echo "No results found"; 111 | } 112 | ?> 113 |
TitleUMU IDStoreCodenameAcronymNotesProtonfixes Script
" . $counter . "" . htmlspecialchars($result['title']) . "" . htmlspecialchars($result['umu_id']) . "" . htmlspecialchars($result['store']) . "" . htmlspecialchars($result['codename']) . "" . htmlspecialchars($result['acronym']) . "" . htmlspecialchars($result['notes']) . "None" . htmlspecialchars($result['umu_id']) . "" . htmlspecialchars($result['umu_id']) . "
114 | 115 | 116 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # umu database 2 | 3 | This repository contains the data and tools needed to provide seamless protonfixes integration for games from different stores. 4 | Historically, [protonfixes](https://github.com/Open-Wine-Components/umu-protonfixes) have targeted Steam games only but [umu](https://github.com/Open-Wine-Components/umu-launcher) makes it possible to use Proton for all existing Windows games. 5 | 6 | We collect data for games that do require fixes for every store they are available on. This data is stored in a spreadsheet which is 7 | regularly imported in a database accessible online at https://umu.openwinecomponents.org 8 | 9 | Game launchers such as Lutris and Heroic can then query the database to match a given protonfix with games of different stores. Those launchers can provide a store name and the internal codename on that store to get the matching umu ID and game title. 10 | 11 | This database is by no means a complete database of every game released on Windows. We focus on games that requires fixes in Proton. 12 | Games that run out of the box have no need be added to the database. If you want a more extensive database of games you can use the Lutris API. 13 | 14 | ## Current available database endpoints 15 | 16 | List ALL entries: 17 | 18 | https://umu.openwinecomponents.org/umu_api.php 19 | 20 | List ALL entries based on STORE: 21 | 22 | https://umu.openwinecomponents.org/umu_api.php?store=SOME-STORE 23 | 24 | Get TITLE and UMU_ID based on STORE and CODENAME: 25 | 26 | https://umu.openwinecomponents.org/umu_api.php?store=SOME-STORE&codename=SOME-CODENAME-OR-APP-ID 27 | 28 | Get ALL GAME VALUES based on CODENAME: 29 | 30 | https://umu.openwinecomponents.org/umu_api.php?codename=SOME-CODENAME-OR-APP-ID 31 | 32 | Get TITLE based on UMU_ID and STORE: 33 | 34 | https://umu.openwinecomponents.org/umu_api.php?umu_id=SOME-UMU-ID&store=SOME-STORE-OR-NONE 35 | 36 | Get ALL GAME VALUES AND ENTRIES based on UMU_ID: 37 | 38 | https://umu.openwinecomponents.org/umu_api.php?umu_id=SOME-UMU-ID 39 | 40 | Get UMU_ID based on TITLE and STORE: 41 | 42 | https://umu.openwinecomponents.org/umu_api.php?title=SOME-GAME-TITLE&STORE=SOME-STORE 43 | 44 | Get UMU_ID based on TITLE and no store: 45 | 46 | https://umu.openwinecomponents.org/umu_api.php?title=SOME-GAME-TITLE 47 | 48 | ## Rules for adding umu ID entries: 49 | 50 | 1\. Determine the TITLE of the game. 51 | 52 | What is the game title? 53 | 54 | - Game titles must be correctly capitalized as they may be used in protonfixes to display text output. All other entries should be lowercase. Database search queries should be lowercased and/or searched case-insensitive. 55 | 56 | 2\. Determine the STORE for the game. 57 | 58 | What store does the game come from? GOG? Epic (egs)? Battlenet? Amazon? 59 | 60 | - Available storefronts that umu can parse are: 61 | 62 | * amazon 63 | * battlenet 64 | * ea 65 | * egs 66 | * gog 67 | * humble 68 | * itchio 69 | * steam 70 | * ubisoft 71 | * umu 72 | * zoomplatform 73 | 74 | - If a game is standalone or does not belong to a major storefront, use 'none' as the store. 75 | 76 | 3\. Determine the CODENAME for the game depending on it's store. 77 | 78 | - For EGS use the 'Namespace' value for the game found here: 79 | 80 | https://egdata.app 81 | 82 | Ex. Borderlands 3: 83 | 84 | Namespace    catnip 85 | 86 | Codename would be `catnip` 87 | 88 | Ex. Fall Guys 89 | 90 | `-com.epicgames.launcher://apps/0a2d9f6403244d12969e11da6713137b?action=launch` 91 | 92 | Codename would be `0a2d9f6403244d12969e11da6713137b` 93 | 94 | - For GOG go to https://www.gogdb.org/, search the game title, find ID correlating to the title and Type 'Game'. 95 | 96 | Ex. Y's Origin 97 | 98 | ID         Name       Type 99 | 1422357892 Ys Origin  Game 100 | 101 | Codename would be `1422357892` 102 | 103 | - If a game is standalone or does not belong to a major storefront, use 'none' as the codename. 104 | 105 | 4\. Determine the UMU_ID for the game, depending on its store: 106 | 107 | - If a game is on Steam, the umu ID will be umu-(Steam ID), even if it is from another store and also on Steam. 108 | 109 | Examples for games on Steam and other platforms: 110 | 111 | Borderlands 3: 112 | `umu-397540` 113 | 114 | Ys Origin: 115 | `umu-207350` 116 | 117 | - This is important in order for Steam-specific fixes in Proton to take effect on non-Steam versions of the same game that is also shipped by Steam. 118 | 119 | - If a game is **not** on Steam, but is on another platform, please try to use the ID for the platform. 120 | 121 | GOG 'Product ID' lookup:\ 122 | https://www.gogdb.org 123 | 124 | Epic 'Item ID' lookup (in search results under 'Items' category listings):\ 125 | https://egdata.app 126 | 127 | - If the game does not belong to any storefront, is a standalone version, or you absolutely cannot find a specific product ID, you can make one up: 128 | 129 | Examples for standalone games: 130 | 131 | Genshin Impact (standalone version): 132 | `umu-genshin` 133 | 134 | - For games not on Steam the second part of the ID should have at least one letter, but preferably be a phrase that's easily understandable simply so that it's not parsed as a Steam ID. We perform a check on the second part of the umu ID to determine if it's numeric or not. If it is, that part is sent as the Steam ID to Proton. Protonfixes prioritizes the UMU_ID environment variable, but Proton itself uses SteamAppId for some game-specific fixes directly. So, if say the game As Dusk Falls has both protonfixes and an official Proton-specific fix. It's umu ID would be umu-1341820, which gets passed to protonfixes, while the second part of that (1341820) gets parsed and passed as the app ID (SteamAppId). This way, it allows both Valve's fixes in their proton script (and their wine code) to work as well as our protonfixes. 135 | 136 | Ex from proton: 137 | 138 | ```\ 139 |            if appid in [ 140 |                 "1341820", #As Dusk falls 141 |                 "280790", #Creativerse 142 |                 "306130", #The Elder Scrolls Online 143 |                 "24010", #Train Simulator 144 |                 "374320", #DARK SOULS III 145 |                 "65500", #Aura: Fate of the Ages 146 |                 "4000", #Garry's Mod 147 |                 "383120", #Empyrion - Galactic Survival 148 |                 "2371630", #Sword Art Online: Integral Factor 149 |                 ]: 150 |             ret.add("gamedrive") 151 | ``` 152 | 153 | - You can have duplicate records for the same game where the UMU_ID for the game may be different across storefronts. The only time the umu ID will be the same is if a Steam version exists. 154 | 155 | Example (no steam version): 156 | 157 | ```\ 158 | TITLE                   STORE    CODENAME                              UMU_ID                                 NOTE (Optional) 159 | Genshin Impact          egs      41869934302e4b8cafac2d3c0e7c293d      umu-7d690c122fde4c60bed85405f343ad10 160 | Genshin Impact          none     none                                  umu-genshin                            standalone 161 | ``` 162 | 163 | - The protonfix for umu-7d690c122fde4c60bed85405f343ad10 should be a symbolic link to the protonfix for umu-genshin if they require the same fixes. They -can- be independent -IF- they require different fixes or if it's a new single title and no fix exists 164 | 165 | Example (steam version): 166 | 167 | ```\ 168 | TITLE                   STORE    CODENAME                              UMU_ID                                 NOTE (Optional) 169 | Red Dead Redemption 2   steam    none                                  umu-1174180 170 | Red Dead Redemption 2   egs      Heather                               umu-1174180 171 | Red Dead Redemption 2   none     none                                  umu-1174180                            standalone 172 | ``` 173 | 174 | - The same applies here. Each different non-Steam version protonfix should be a symbolic link to the Steam version protonfix unless it requires different fixes. 175 | 176 | If no store and/or codename is specified it will search instead search the 'umu' gamefixes directory instead of the store directory for the umu ID. 177 | 178 | 5\. Optionally include a commonly used acronym for the game: 179 | 180 | - For example "WoW" is an acronym for [_World of Warcraft_](https://worldofwarcraft.blizzard.com/en-us/) (or also [_World of Warships_](https://worldofwarships.com/)) 181 | 182 | 6\. Optionally include a note: 183 | 184 | - For example, [_Genshin Impact_](https://genshin.hoyoverse.com/en/) has two standalone versions, namely one from Hoyo and one from PlayPC. Leave a note stating which one it is. 185 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /umu-database.csv: -------------------------------------------------------------------------------- 1 | TITLE,STORE,CODENAME,UMU_ID,COMMON ACRONYM (Optional),NOTE (Optional) 2 | Age of Wonders,gog,1207658883,umu-61500,aow, 3 | Age of Wonders,humble,ageofwonders,umu-61500,aow, 4 | Borderlands 3,egs,catnip,umu-397540,bl3, 5 | Dark and Darker,none,none,umu-2016590,dad,Standalone Dark and Darker installer 6 | Ys Origin,gog,1422357892,umu-207350,, 7 | Ys Origin,humble,ysorigin,umu-207350,, 8 | Grand Theft Auto V,egs,9d2d0eb64d5c44529cece33fe2a46482,umu-271590,gtav, 9 | Grand Theft Auto V,none,none,umu-271590,gtav,Standalone Rockstar installer 10 | Genshin Impact,egs,41869934302e4b8cafac2d3c0e7c293d,umu-7d690c122fde4c60bed85405f343ad10,, 11 | Genshin Impact,none,playpc,umu-genshin,,Play Store PC 12 | Genshin Impact,none,none,umu-genshin,,Standalone PC installer 13 | Red Dead Redemption 2,egs,heather,umu-1174180,rdr2, 14 | Red Dead Redemption 2,none,none,umu-1174180,rdr2,Standalone Rockstar installer 15 | Horizon Zero Dawn™ Complete Edition,gog,1209025141,umu-1151640,, 16 | Horizon Zero Dawn™ Complete Edition,egs,grunion,umu-1151640,, 17 | Alien Breed: Impact,gog,1905791638,umu-22610,, 18 | Alien Breed 2: Assault,gog,1786995757,umu-22650,, 19 | Alien Breed 3: Descent,gog,1743464065,umu-22670,, 20 | Model 2 Emulator,none,none,umu-model2,,https://segaretro.org/Model_2_Emulator 21 | Warframe,egs,398965b67f314d31b0683b8ea11c93a4,umu-230410,, 22 | Warframe,none,none,umu-230410,,Standalone installer 23 | ARK: Survival Evolved,egs,aafc587fbf654758802c8e41e4fb3255,umu-346110,, 24 | DEATHLOOP,egs,3206dba3f9b14fd3b01c18f9dcbc864a,umu-1252330,, 25 | The Medium,egs,bc72e23dc6494fb584a254ada099b362,umu-1293160,, 26 | The Medium,gog,1260828108,umu-1293160,, 27 | Indiana Jones® and the Emperor's Tomb™,gog,1425034773,umu-560430,, 28 | Cossacks 3,gog,1797227701,umu-333420,, 29 | UNO,egs,hussar,umu-470220,, 30 | UNO,ubisoft,3352,umu-470220,, 31 | Zombie Army 4: Dead War,egs,sparrow,umu-694280,, 32 | Serious Sam 4,gog,1407036516,umu-257420,, 33 | Into the Breach,egs,blobfish,umu-590380,, 34 | Into the Breach,gog,2004253604,umu-590380,, 35 | Star Wars™: Jedi Knight™ - Jedi Academy™,gog,1428935726,umu-6020,, 36 | Star Wars™: Jedi Knight™ - Jedi Academy™,amazon,0127edd7-4a35-4991-ab79-ff7601a699da,umu-6020,, 37 | Divinity: Original Sin 2 - Definitive Edition,gog,1584823040,umu-435150,, 38 | Hogwarts Legacy,egs,fa4240e57a3c46b39f169041b7811293,umu-990080,, 39 | Tony Hawk's Pro Skater 1+2,egs,guppy,umu-2395210,, 40 | Satisfactory,egs,crabea,umu-526870,, 41 | METAL GEAR SOLID,gog,1771973390,umu-1771973390,, 42 | God of War,gog,1074905459,umu-1593500,, 43 | God of War,egs,91bfb663fe7a4b9698ba08bd80549b34,umu-1593500,, 44 | Baldur's Gate 3,gog,1456460669,umu-1086940,bg3, 45 | Cyberpunk 2077,egs,ginger,umu-1091500,, 46 | Cyberpunk 2077,gog,1423049311,umu-1091500,, 47 | The Elder Scrolls Online,egs,4d0ff75b922447649057c237c0bd1545,umu-306130,, 48 | The Last of Us™ Part I,egs,7e988ba04889404197fdf06c994326ed,umu-1888930,tlou, 49 | Yakuza 5 Remastered,gog,1896187920,umu-1105510,,Requires patch alongside protonfix: https://github.com/ValveSoftware/wine/pull/205 50 | Black Desert Online,none,none,umu-582660,bdo, 51 | Star Citizen,none,none,umu-starcitizen,sc,Requires EAC workaround: https://starcitizen-lug.github.io 52 | Trackmania,egs,b04882669b2e495e9f747c8560488c93,umu-2225070,tm,"also known as 'Trackmania (2020)', not to be confused with 'TrackMania (2003)'" 53 | Trackmania,ubisoft,5595,umu-2225070,tm,"also known as 'Trackmania (2020)', not to be confused with 'TrackMania (2003)'" 54 | Rocket League,egs,9773aa1aa54f4f7b80e44bef04986cea,umu-252950,rl, 55 | Dorfromantik,gog,1721001406,umu-1455840,, 56 | Quake III Arena,gog,1441704920,umu-2200,, 57 | Deliver Us The Moon,gog,1395742506,umu-428660,, 58 | "Warhammer 40,000: Space Marine",gog,1668484481,umu-55150,, 59 | Project Wingman,gog,1609812781,umu-895870,, 60 | Two Worlds Epic Edition,gog,1207658861,umu-1930,, 61 | Oddworld: Munch's Oddysee,gog,1254027184,umu-15740,, 62 | Gothic 3,gog,1207658986,umu-39500,, 63 | Just Cause 2 - Complete Edition,gog,1833855510,umu-8190,, 64 | Sleeping Dogs: Definitive Edition,gog,1741843789,umu-307690,, 65 | Mount & Blade II: Bannerlord,gog,1564781494,umu-261550,, 66 | STAR WARS™ Galactic Battlegrounds Saga,gog,1421404646,umu-356500,, 67 | Necromunda: Hired Gun,gog,1618128477,umu-1222370,, 68 | Yakuza 0,gog,1103602225,umu-638970,, 69 | Gothic 2 Gold Edition,gog,1207658718,umu-39510,, 70 | Cryostasis,gog,1207659011,umu-7850,, 71 | Yakuza Kiwami,gog,1951443960,umu-834530,, 72 | Dragon Star Varnir,gog,1579883472,umu-1062040,, 73 | The Blind Prophet,gog,1726178326,umu-968370,, 74 | ArcaniA: Fall of Setarrif,gog,1282519889,umu-65610,, 75 | Stronghold HD,gog,1207658712,umu-40950,, 76 | Sacred 2 Gold,gog,1207665233,umu-225640,, 77 | Escape from Monkey Island™,gog,1885026907,umu-730830,, 78 | Eador. Masters of the Broken World,gog,1207659194,umu-232050,, 79 | The Evil Within,gog,1171957437,umu-268050,, 80 | Gothic,gog,1207658682,umu-65540,, 81 | Recettear: An Item Shop's Tale,gog,1441875624,umu-70400,, 82 | Memoria,gog,1207659803,umu-243200,, 83 | Tomb Raider 1,gog,1207663463,umu-224960,, 84 | The Elder Scrolls V: Skyrim Special Edition,gog,1711230643,umu-489830,, 85 | Order of Battle: World War II,gog,1744082009,umu-312450,, 86 | Alan Wake,gog,1207659037,umu-108710,, 87 | BIT.TRIP BEAT,gog,1460735408,umu-63700,, 88 | BIT.TRIP BEAT,humble,bittripbeat,umu-63700,, 89 | Super Meat Boy,humble,supermeatboy,umu-40800,, 90 | Super Meat Boy,humble,supermeatboy_no_soundtrack,umu-40800,, 91 | Super Meat Boy,egs,buffalo,umu-40800,, 92 | METAL SLUG,gog,1136471182,umu-366250,, 93 | METAL SLUG,humble,metalslug,umu-366250,, 94 | GWENT: The Witcher Card Game,gog,1971477531,umu-1284410,, 95 | Rebel Galaxy Outlaw,gog,1339695996,umu-910830,, 96 | Fallout 3: Game of the Year Edition,gog,1454315831,umu-22370,, 97 | Fallout 3: Game of the Year Edition,egs,adeae8bbfc94427db57c7dfecce3f1d4,umu-22370,, 98 | BIT.TRIP Runner,gog,1460734409,umu-63710,, 99 | BIT.TRIP RUNNER,humble,bittriprunner,umu-63710,, 100 | HighFleet,gog,1589167087,umu-1434950,, 101 | Little Nightmares,gog,1433377508,umu-424840,, 102 | A New Beginning: Final Cut,gog,1207659150,umu-105000,, 103 | Mafia II: Definitive Edition,gog,1449710114,umu-1030830,, 104 | Grim Dawn,gog,1449651388,umu-219990,, 105 | Tex Murphy: Overseer,gog,1207658769,umu-302370,, 106 | Outlaws + A Handful of Missions,gog,1425302464,umu-559620,, 107 | Darkstar One,gog,1207658704,umu-12330,, 108 | IMSCARED,gog,1249814952,umu-429720,, 109 | Re-Volt,gog,1207659863,umu-287310,, 110 | Moero Chronicle,gog,1960775628,umu-638160,, 111 | The Witcher 2: Assassins of Kings Enhanced Edition,gog,1207658930,umu-20920,, 112 | ArcaniA,gog,1244052225,umu-39690,, 113 | Hyperdimension Neptunia Re;Birth1,gog,1445338941,umu-282900,, 114 | Darkest Hour: A Hearts of Iron Game,gog,1445505773,umu-73170,, 115 | LEGO® Batman 2 DC Super Heroes™,gog,1193585573,umu-213330,, 116 | WORLD OF HORROR,gog,1169377716,umu-913740,, 117 | Beyond Good & Evil™,gog,1207658746,umu-15130,, 118 | Space Engineers,gog,1447762725,umu-244850,, 119 | Hyperdimension Neptunia Re;Birth2: Sisters Generation,gog,1863533702,umu-351710,, 120 | Syberia,gog,1207658848,umu-46500,, 121 | The Night of the Rabbit,gog,1207659218,umu-230820,, 122 | Serious Sam: The Random Encounter,humble,serioussamrandom,umu-201480,, 123 | Middle-earth™: Shadow of War™,gog,1324471032,umu-356190,, 124 | Gothic 3: Forsaken Gods Enhanced Edition,gog,1207658993,umu-65600,, 125 | Yesterday Origins,gog,1576683029,umu-465280,, 126 | Stronghold Crusader HD,gog,1207658713,umu-40970,, 127 | UNCHARTED™: Legacy of Thieves Collection,gog,1451150270,umu-1659420,, 128 | Crysis®,gog,1809223221,umu-17300,, 129 | The Bureau: XCOM® Declassified™,gog,1166983063,umu-65930,, 130 | Ghostwire: Tokyo,egs,007ff8f4e30845a687e66aa77eb3e965,umu-1475810,,Enables NVAPI in Proton 131 | Pumped BMX Pro,amazon,eeb2fd4c-e7aa-4e73-a1d4-071b90e1060d,umu-966720,, 132 | Wonder Boy: The Dragon's Trap,amazon,2a236e66-9387-45ce-aa6e-fcccf0c196be,umu-543260,, 133 | Mable and the Wood,amazon,da00f127-423b-4b3c-8099-2e3480c2faad,umu-568070,, 134 | Automachef,amazon,e75792f0-a9ab-4b40-b1e7-7e10d30b5645,umu-984800,, 135 | Yoku's Island Express,amazon,d238089d-956a-456b-baba-bb68a94b32a3,umu-334940,, 136 | Stealth Inc 2: A Game of Clones,amazon,3c41236b-1f48-4ad6-976c-a1f4cb821c5e,umu-329380,, 137 | Chicken Assassin,amazon,45968b2c-5597-4a94-b3a8-e18b77b8fb49,umu-489610,, 138 | Orwell: Ignorance Is Strength,amazon,560c53c4-0751-4b4f-8792-0fd943e3b24a,umu-633060,, 139 | Tacoma,amazon,605cea63-330e-4386-a5b0-17200970226f,umu-343860,, 140 | SteamWorld Dig,amazon,97a0fb83-744d-4f83-a25f-b118fdc0729c,umu-252410,, 141 | Stealth Bastard Deluxe,amazon,70ec0894-2707-4822-8f6d-b133eff339dd,umu-209190,, 142 | A Good Snowman Is Hard To Build,amazon,f0dfdbe9-f3fa-456f-a2ae-4b38b78bb0a6,umu-316610,, 143 | Hyper Light Drifter,amazon,b515a0c1-b73d-4201-aae3-1ef8fb1faf5e,umu-257850,, 144 | Titan Souls,amazon,8d842248-54ae-4aa2-b4bf-362cb533982e,umu-297130,, 145 | Candle,amazon,473dded6-92f7-48ee-90f3-a0209a90e2ce,umu-420060,, 146 | Mr. Shifty,amazon,a61e553f-2e92-42e9-96df-0e44fc838990,umu-489140,, 147 | Bomber Crew,amazon,8c105008-09cb-4049-a10f-f4a6c55aa4c7,umu-537800,, 148 | Sid Meier's Civilization IV,amazon,d4a3192e-9578-4d6b-878e-64890323f317,umu-3900,, 149 | Oxenfree,amazon,7efdcdb3-3a17-48df-bbe2-3bf21919ce2f,umu-388880,, 150 | Cursed Castilla (Maldita Castilla Ex),amazon,43b30ef0-730b-44b2-abb3-c32dfb1c4029,umu-534290,, 151 | Overcooked!,amazon,a3f5ee11-7f45-4cf2-9dd9-642fb2597124,umu-448510,, 152 | Shadow Tactics: Blades of the Shogun,amazon,0c836900-f133-4daa-bc04-f4ddf0c62a1d,umu-418240,, 153 | Battle Chef Brigade Deluxe,amazon,939d5b72-b8b5-46ed-be07-b469c8dcad8a,umu-452570,, 154 | Strafe,amazon,c18c39a9-ff36-44d5-9e2e-05d5efb7abfb,umu-442780,, 155 | Sanitarium,amazon,35390bab-dd81-42d4-93a3-f74b62caf848,umu-284050,, 156 | System Shock: Enhanced Edition,amazon,99d11652-3f58-42f6-8a57-34fb56419dd5,umu-410710,, 157 | Heavy Bullets,amazon,c7325e58-5895-4667-81a2-1854397fbb43,umu-297120,, 158 | Jotun: Valhalla Edition,amazon,24759327-eff1-46c5-8670-09cf5afb5bb3,umu-323580,, 159 | The Last Blade,amazon,4f847c19-70db-4f81-b89c-471d686344e4,umu-465840,, 160 | Punch Club,amazon,a94ceb03-3f04-4013-b5f3-7bc24f3da1ec,umu-394310,, 161 | The Original Strife: Veteran Edition,amazon,99446e03-f117-42da-84ad-61ea088bae52,umu-317040,, 162 | Death Squared,amazon,694ee5bf-cecc-4a3d-b8fa-298066daaa45,umu-471810,, 163 | Hotline Miami 2: Wrong Number,amazon,9875182a-e2d1-4124-ab59-39e463076896,umu-274170,, 164 | Orwell,amazon,0e577bb9-8144-4535-95c5-171f49b0f7f1,umu-491950,, 165 | Tumblestone,amazon,34cb556f-0855-4866-bcc0-3a12275d1247,umu-269710,, 166 | Cultist Simulator,amazon,051d4284-efb9-42d6-b711-204836d28280,umu-718670,, 167 | Kentucky Route Zero,amazon,98d02b2c-3d19-4114-bcdf-cb49c6ed7963,umu-231200,, 168 | RunGunJumpGun,amazon,209d10a6-de1c-4988-8868-4cc69f39d908,umu-440550,, 169 | Psychonauts,amazon,192f4336-2417-43da-b35c-d32c65f8fa65,umu-3830,, 170 | Tyranny,amazon,4194ff96-8a00-4896-b2d3-526bf389806f,umu-362960,, 171 | Metal Slug 2,amazon,fbcc4aaa-a6f1-469c-b34e-dc65756f7141,umu-366260,, 172 | Tokyo 42,amazon,b28bda46-f8b8-4fe2-b087-8033c967641a,umu-490450,, 173 | SUPERHOT,amazon,62f505d5-9210-4784-9094-17cdc868f6da,umu-322500,, 174 | Kathy Rain,amazon,62c80ac3-3aa5-42a8-8048-a29ff819b7a8,umu-370910,, 175 | Ken Follett's The Pillars of the Earth,amazon,c2bfad1a-cd3c-49ec-9d7b-9cfb4952753e,umu-234270,, 176 | Republique,amazon,2f7d571e-0c1f-4b68-bbb4-8fa519800c4d,umu-317100,, 177 | Wizardry 7: Crusaders of the Dark Savant,amazon,f2c5bd84-39e7-4302-8482-1b8471050b08,umu-245430,, 178 | Stikbold! A Dodgeball Adventure,amazon,dc09a502-fa27-4d3c-b29d-b5629fcf2161,umu-429330,, 179 | The Red Strings Club,amazon,c619a4f5-37a3-4314-aeea-f63d599ce3b4,umu-589780,, 180 | Darksiders Warmastered Edition,amazon,b4b640be-1f76-45c9-b425-ac74594b6918,umu-462780,, 181 | Aegis Defenders,amazon,5df60b68-ec08-4a80-bee6-7913ae0aad00,umu-371140,, 182 | The Adventure Pals,amazon,a9b25161-bc1e-48ef-bf69-a4beffb1e529,umu-396710,, 183 | Twinkle Star Sprites,amazon,66cea04c-bedf-4b41-b484-743ba3424657,umu-366280,, 184 | SteamWorld Heist,amazon,2d7b207c-0e17-4444-8555-47eaecabae57,umu-322190,, 185 | Downwell,amazon,fc061199-b7e3-43f7-a99c-3e00f18a1796,umu-360740,, 186 | Layers of Fear,amazon,345b53a8-5464-427e-9e59-82280938934b,umu-391720,, 187 | Treadnauts,amazon,23fc052e-6972-4e66-9103-a15a523832b9,umu-695970,, 188 | Overload,amazon,e6fe2ec9-719f-443c-be30-61e3992401c9,umu-448850,, 189 | Tales from the Borderlands,amazon,b24f49f9-d7fe-40b6-8f4d-65b0c6bf6a6b,umu-330830,, 190 | Kingsway,amazon,3f195563-44e3-4e66-b733-efff6347d274,umu-588950,, 191 | Majesty Gold HD,amazon,4efecef5-149b-4f34-b54e-6e026c5cfcc5,umu-25990,, 192 | Gone Home,amazon,f41d91c5-83b4-40e1-869e-01a0d6056f97,umu-232430,, 193 | Sokobond,amazon,dae1a796-8036-4409-a576-891e0a5b3768,umu-290260,, 194 | For The King,amazon,f9b2486d-a6cc-4f2f-896e-0fef3360d068,umu-527230,, 195 | Gunpoint,amazon,add77e2e-2f4e-4d12-bcfb-17765929ea78,umu-206190,, 196 | AER Memories of Old,amazon,b3420df5-00d4-4884-96b6-1345637fd7d8,umu-331870,, 197 | The Metronomicon,amazon,e778b2fe-5847-41ce-947e-c1539e1f81d3,umu-416790,, 198 | Keep In Mind,amazon,d8139829-1dad-49d4-85d9-da9f7afea23b,umu-643200,, 199 | DubWars,amazon,cf14c339-f4fd-4ace-b066-9803987be077,umu-290000,, 200 | Clustertruck,amazon,bb09e395-9405-44ca-a17c-98df998cf216,umu-397950,, 201 | Pikuniku,amazon,73335a5e-887c-4e9e-bd6d-11429cd7fadf,umu-572890,, 202 | Cosmic Express,amazon,4c3b8c4b-1bf7-4893-9e20-d6a95063d243,umu-583270,, 203 | The Swords of Ditto,amazon,c35253a1-89bf-46f4-8add-2813d5862eb3,umu-619780,, 204 | "I, Hope",amazon,556a4404-a3f6-4ac4-8e0a-c1b4e9787255,umu-448960,, 205 | SOMA,amazon,4d4aa4d3-cc66-4067-b959-446e4d34512f,umu-282140,, 206 | "Dear, Esther",amazon,5e53587b-3bad-456d-bd73-b7e8b2f62423,umu-520720,, 207 | Snake Pass,amazon,dacf2798-a6a5-4915-a3e1-c6e69a389604,umu-544330,, 208 | Her Story,amazon,db61feca-dfb4-412f-9f81-f128ca2fef6e,umu-368370,, 209 | The Flame In The Flood,amazon,d43e7ff9-3b1a-448d-8835-572fe729c157,umu-318600,, 210 | Star Vikings Forever,amazon,4adb1c6e-1e22-452a-9177-2f6eb5380710,umu-488960,, 211 | 10 Second Ninja X,amazon,13a0d6e1-fce9-4b6c-9f3a-582a0f04b6b7,umu-435790,, 212 | Joggernauts,amazon,51f2d354-61ad-4243-8404-d2fdc111fc4e,umu-747620,, 213 | Smoke and Sacrifice,amazon,a1597314-37f8-4ed9-a31c-767bdcf6436e,umu-695100,, 214 | This War of Mine,amazon,aa864570-a5e4-4ace-97f6-175079665488,umu-282070,, 215 | InnerSpace,amazon,ea1eacf0-d1f5-485e-9d9c-3909ba279eff,umu-347000,, 216 | Yooka-Laylee,amazon,96427040-1a7d-4884-a0dd-ed08bdaae57e,umu-360830,, 217 | 1979 Revolution:Black Friday,amazon,1ea7d6c0-8521-4e57-86f8-70eed1d57584,umu-388320,, 218 | Wizardry 8,amazon,4199a103-3023-4bd0-a3a6-1d8967bc2300,umu-245450,, 219 | Hacknet,amazon,f6e3da4d-62fd-475f-845a-6e708723de00,umu-365450,, 220 | Next Up Hero,amazon,2dc4575e-3ea3-481d-9004-27dbc468a06e,umu-667810,, 221 | Guild of Dungeoneering,amazon,be2b02e7-5901-4c2a-aa90-77314ee9a0d8,umu-317820,, 222 | The Escapists,amazon,551a2cd1-9688-41fa-9a07-6af2df90b6e5,umu-298630,, 223 | Hue,amazon,2ebae692-5e13-4ee1-a4bd-1f901bac77c6,umu-383270,, 224 | Serial Cleaner,amazon,6e99c309-1eae-42c5-834a-eceb0b1b5166,umu-522210,, 225 | Antihero,amazon,c118e5a8-50eb-4090-8014-c96aaa200934,umu-505640,, 226 | Uurnog Uurnlimited,amazon,e94696a4-61ce-4930-80ba-138c0da0b433,umu-678850,, 227 | Hard Reset Redux,amazon,3bd6c38e-24be-4609-8811-adbd2a993f07,umu-407810,, 228 | Headlander,amazon,e0df48ae-2a71-4ffa-a888-5fd1f6a15d45,umu-340000,, 229 | Pillars of Eternity,amazon,8120272b-11d8-47e8-9b89-2f3ff2155507,umu-291650,, 230 | Poi,amazon,a505a548-6544-4468-8bc3-9c174299b155,umu-401810,, 231 | Deponia,amazon,26dcc8a0-cc0d-4ca3-98f3-9e7f442f9916,umu-214340,, 232 | High Hell,amazon,498bb66a-c291-41f4-a3ef-35a544cdb7eb,umu-673000,, 233 | FRAMED Collection,amazon,1bad64df-146c-496e-84a9-2e102ca30f0a,umu-322450,, 234 | Broforce,amazon,4eb1ffc1-a9a8-417b-b867-d83e07a6dfc8,umu-274190,, 235 | Kabounce,amazon,56df4fcf-d9a1-485d-8ae2-495ff6d6ae4b,umu-431930,, 236 | Deponia Doomsday,amazon,a99efc99-c9a5-46ad-84b9-ef55e1871d01,umu-421050,, 237 | The Little Acre,amazon,87c79d53-6693-4de1-8973-2122da60603e,umu-423590,, 238 | >observer_,amazon,69008e07-590b-4ea1-9aa4-f033ef8b9d2c,umu-514900,, 239 | Wizardry 6: Bane of the Cosmic Forge,amazon,fcb11650-bb41-4fd8-a347-34b73f0934a5,umu-245410,, 240 | Q.U.B.E. 2,amazon,b6dae532-9785-4db3-9364-2da90271cbf8,umu-359100,, 241 | GoNNER,amazon,516feae8-f1e6-4f68-a964-e5d55f92cf8f,umu-437570,, 242 | Manual Samuel,amazon,dceac06b-afa9-441c-bcd1-35783bcf87e8,umu-504130,, 243 | Adam Wolfe,amazon,bd0d4f4f-988f-44a6-ab2b-5ee2595ef135,umu-483420,, 244 | Stranger Things 3,amazon,0161ad63-95b1-4b2d-a3ea-d5aa848be195,umu-1097800,, 245 | Deadlight: Director's Cut,amazon,bb3a962e-180e-47c2-b2ea-9790fd7d521f,umu-423950,, 246 | Double Cross,amazon,e3bc3283-5464-4946-80b8-8ac1401f7b16,umu-838010,, 247 | Darksiders II Deathinitive Edition,amazon,790f3b07-fc9c-4efe-bb66-32bd348a9d23,umu-388410,, 248 | Planet Alpha,amazon,fe19ef5f-a1e0-4caf-96b4-590b2c022b15,umu-485030,, 249 | Sword Legacy Omen,amazon,25071895-d6cb-49ce-98fe-4a2c3c92b9fc,umu-690140,, 250 | Turmoil,amazon,9f710b74-9960-4411-bdfc-3cd846ca812c,umu-361280,, 251 | ToeJam & Earl: Back in the Groove!,amazon,bf8a5cc7-9776-455c-b49a-d00756b14b28,umu-516110,, 252 | When Ski Lifts Go Wrong,amazon,2ad346bf-d6b0-4f34-b462-7e1389727805,umu-638000,, 253 | Hover,amazon,66d610ba-d613-4607-8593-206a5fca2d61,umu-280180,, 254 | Sherlock Holmes: The Devil's Daughter,amazon,6119ce91-31d4-48dc-9084-e94c8d4c4c26,umu-350640,, 255 | Enter the Gungeon,amazon,654f2d8c-54b9-4358-8a4b-05087d8e308b,umu-311690,, 256 | Ape Out,amazon,b95426ba-9d31-46e2-9475-80061ba6d85f,umu-447150,, 257 | Witcheye,amazon,0fd0cced-4200-4d1c-9584-e43640f6560e,umu-1284950,, 258 | Gato Roboto,amazon,d4a9e1a3-a27a-4789-8c44-76781d993f70,umu-916730,, 259 | Heave Ho,amazon,1375e4bd-eb0e-4baa-b44a-b76a1cbcbf95,umu-905340,, 260 | Dandara,amazon,b0601d8b-40fd-436c-b819-e182636a362d,umu-612390,, 261 | Anarcute,amazon,62a1f06b-e81e-4f53-9cb3-1daf83fb925b,umu-390720,, 262 | Kingdom: New Lands,amazon,6dbb49c6-cd4d-416e-b7d0-cad3088d587d,umu-496300,, 263 | A Normal Lost Phone,amazon,4be3538b-1215-4d27-ab8c-ec6548a14239,umu-523210,, 264 | Splasher,amazon,d1bce920-1ef8-4d24-aa39-081621e06256,umu-446840,, 265 | American Fugitive,amazon,b0ebeed0-6964-4096-b99b-9f726f794e89,umu-934780,, 266 | Steredenn,amazon,08d1b39d-3b89-4a09-ad71-50bd0891a79c,umu-347160,, 267 | Narcos,amazon,35eaad3d-6719-4b47-8461-c971fda8f7da,umu-914110,, 268 | White Night,amazon,d83a9797-bf00-45b3-adb1-daa9ffde990f,umu-301560,, 269 | Whispers of a Machine,amazon,1dc3aebe-04aa-4b78-96d9-667ba0ca891f,umu-631570,, 270 | Mugsters,amazon,ea502fa9-4b6e-4676-aaee-432e46807ec1,umu-712180,, 271 | Furi,amazon,4cd3fee5-38bf-46e4-a5d7-7dd377231b66,umu-423230,, 272 | Epistory,amazon,e47db7ce-ed45-49f8-9309-6e4c189f9176,umu-398850,, 273 | Earthlock,amazon,fca4cb06-9ea9-4dab-98fd-b2bdcd2c51c2,umu-761030,, 274 | Turok,amazon,dd4bdb86-60c8-49a3-8d00-8fc4379a45f3,umu-405820,, 275 | Lightmatter,amazon,15f94db5-ea1a-4fc3-844e-64d36a96ec59,umu-994140,, 276 | Yono and the Celestial Elephants,amazon,d0e01144-55d1-4d39-9c6d-99b851b3c660,umu-602430,, 277 | Old School Musical,amazon,cf483ab4-5aee-46a1-94fd-f1ad6028d51e,umu-398030,, 278 | Urban Trial Playground,amazon,d0e3cd62-8bd4-4881-a8d0-825a886f8634,umu-988240,, 279 | AVICII Invector,amazon,939eb130-c1f3-4736-a8c3-114d4540ea6b,umu-986800,, 280 | Pankapu,amazon,c0792a8b-36a5-4899-b2ed-ab94416480fd,umu-418670,, 281 | Fractured Minds,amazon,52f0cdf8-8ef1-473b-8b6c-91eda0b51bbc,umu-688740,, 282 | Anna's Quest,amazon,7d855d2c-8232-4a39-a945-ed70baee648b,umu-327220,, 283 | Silence,amazon,7fbca6ed-dd9d-424a-80b9-26179646ecf5,umu-314790,, 284 | The Last Tinker,amazon,a1deb5e2-8d45-4836-a64a-672cd4ce5a81,umu-260160,, 285 | Max: The Curse of Brotherhood,amazon,4b011bc8-4e03-4473-b09f-62f655c2aae9,umu-255390,, 286 | Project Warlock,amazon,ee7f090a-e9a2-4635-9636-4a9249b8771c,umu-893680,, 287 | Forsaken Remastered,amazon,e294d86f-ac1e-451e-b8f2-89123f63246d,umu-668980,, 288 | Steel Rats,amazon,76cbab0f-c912-4696-9684-c659af0d85b9,umu-619700,, 289 | Dream Daddy,amazon,97205382-970c-4ec1-b12b-97c762b25e81,umu-654880,, 290 | PictoQuest,amazon,aa4e1537-0a18-474d-a7f2-8fdf1ee11ce3,umu-1014040,, 291 | Mad Tracks,amazon,be3d0669-186a-4717-a1b3-83e1e1fcc329,umu-1202970,, 292 | Reus,amazon,a3cd8e5b-9896-41c7-9cb3-585e020f2303,umu-222730,, 293 | GRIP,amazon,eb22db60-97db-4239-b345-8e540517c454,umu-396900,, 294 | Turok 2,amazon,10b70606-32b8-462a-ac40-7c3453ee1dd0,umu-405830,, 295 | Dark Devotion,amazon,890bd3c5-208c-4a93-b51c-7fc916b5e10f,umu-718590,, 296 | Kunai,amazon,bd429793-b5a8-4060-bc7c-651aab22992f,umu-1001800,, 297 | Melbits,amazon,ec85a9d6-9e83-40c6-9068-c02fdfaac4c2,umu-1202820,, 298 | Vane,amazon,9a7bb426-e5d6-4990-bca9-154cdb5dbcd4,umu-1063310,, 299 | Dungeon Rushers,amazon,1c8189ab-bcb9-4cc9-8667-057e371a89d1,umu-429620,, 300 | NeuroVoider,amazon,c4d69bc3-f144-4ba1-a883-ea97a0eb058c,umu-400450,, 301 | Shock Troopers: 2nd Squad,amazon,6350f1e0-29e9-4186-af20-d9c6d95e6032,umu-465870,, 302 | Dead In Vinland,amazon,b4f60ea6-0fca-4f41-9ffa-e3b90b3a9ebc,umu-573120,, 303 | Shaq Fu 2,amazon,969ae4a5-eb89-4ae8-858a-182a0ff9194e,umu-496040,, 304 | Warsaw,amazon,b5750a8c-652f-4a83-8bfc-82c5eb16fbf5,umu-1026420,, 305 | Treachery In Beatdown City,amazon,5f35c569-55f6-4965-8230-a3775ff949a2,umu-762180,, 306 | Blazing Chrome,amazon,75790de1-8b94-447d-8c1a-28393eb47215,umu-609110,, 307 | Chroma Squad,amazon,2ee6b231-e74f-4d55-b04b-3acc8816d6b7,umu-251130,, 308 | Truberbrook,amazon,ab770290-3067-45d0-9b10-5aa0d3475a68,umu-757300,, 309 | The Inner World,amazon,17717725-268b-468a-bfa4-674657464d3d,umu-251430,, 310 | Impulsion,amazon,99d6f109-8e0a-46ec-93bc-59fdeac739de,umu-811270,, 311 | Effie,amazon,b302b6a1-5b98-4146-a944-491982086556,umu-975950,, 312 | Outcast Second Contact,amazon,b3c36d32-49d9-4038-b7f3-a1ae9aa79c66,umu-618970,, 313 | Vostok,amazon,6c7be799-12fb-4f2d-8f6b-844483e42af8,umu-656460,, 314 | Samurai Shodown V Special,amazon,c7827e1e-8182-4d9e-bfe1-c625e7b2603b,umu-1076550,, 315 | The King of Fighters 2002 Unlimited Match,amazon,cd488e76-7247-4087-b418-06faaac5e958,umu-222440,, 316 | The King of Fighters '97 Global Match,amazon,704bc6ca-518d-4284-8604-9bd8fa94599e,umu-702120,, 317 | Shock Troopers,amazon,09c9b422-1e05-4da7-8307-42dcb2a9877e,umu-366270,, 318 | The King of Fighters '98 Ultimate Match,amazon,756758e1-80ec-4564-a100-b9417d1aed0a,umu-222420,, 319 | SEUM: Speedrunners from Hell,amazon,80be6c5e-7328-471c-924e-b4e9eb75d512,umu-457210,, 320 | Dead Age,amazon,0f7fa0ea-639f-4ffa-a79e-9551ab193203,umu-363930,, 321 | Surf World Series,amazon,935097f4-3cea-4e41-b22e-b20edb41e0dd,umu-462640,, 322 | Silver Chains,amazon,02eb9df3-491c-4c96-b509-3dc837f3916d,umu-975470,, 323 | Jay and Silent Bob: Mall Brawl,amazon,f975231e-641b-496c-865c-ef14b31b507a,umu-1087440,, 324 | Darkside Detective,amazon,9242e234-46a5-4b48-b67c-3795b4c30067,umu-368390,, 325 | KONA,amazon,e3477a8d-b638-434b-b4d0-559d5610059d,umu-365160,, 326 | Stick it to the Man,amazon,ad9998ac-f86d-488e-8d63-727b2d781429,umu-251830,, 327 | The Occupation,amazon,53c1e73d-af16-48c6-bb3f-4db8cc3e8753,umu-765880,, 328 | Extreme Exorcism,amazon,c9650db1-2e89-40cf-a593-973cff69e367,umu-334100,, 329 | Aurion: Legacy of the Kori-Odan,amazon,e717af74-a0df-4f4a-a415-887af44c3bb4,umu-368080,, 330 | Victor Vran Overkill Edition,amazon,da7d2f0c-fd75-4b14-81dc-346d109220e7,umu-345180,, 331 | Bridge Constructor: Medieval,amazon,ee62e5c5-bb8a-4e92-be8b-8ae9bb3ec0ee,umu-319850,, 332 | Genesis Alpha One Deluxe Edition,amazon,7d0c58f3-6fb1-471e-9d78-00d48f237410,umu-712190,, 333 | Ironcast,amazon,82aa61fa-70b0-4550-87be-6f35cdaea38e,umu-327670,, 334 | The Spectrum Retreat,amazon,99b3c529-785f-4b7d-b448-1a25d4b3d21c,umu-763250,, 335 | Lost Horizon,amazon,8bf7e683-9157-46e4-9744-2a8729841a12,umu-40350,, 336 | HyperDot,amazon,1099aa20-6956-41ac-8a5a-e6624d2a05b1,umu-876500,, 337 | Wizard of Legend,amazon,19ae680d-5c1e-42f6-a276-5a556b40e812,umu-445980,, 338 | Sigma Theory: Global Cold War,amazon,a947fa3c-3317-4a96-b06d-3f671d81c44d,umu-716640,, 339 | Close to the Sun,amazon,01c9088e-3278-4634-89d6-2a5074b64296,umu-968870,, 340 | Yooka-Laylee and the Impossible Lair,amazon,477ebfe3-f3a0-470b-9112-e8b9cfbf2510,umu-846870,, 341 | Sheltered,amazon,e7c6de90-7b14-4bbf-b722-162f40d77acd,umu-356040,, 342 | Bridge Constructor Playground,amazon,90dd5458-e86e-4324-b129-541d4649587b,umu-279990,, 343 | Alt Frequencies,amazon,372f336e-2387-40db-8ff1-4d2fd218aeb6,umu-1035050,, 344 | Along the Edge,amazon,be2368f5-06d1-4f64-b9f2-e2f896e14bf2,umu-504390,, 345 | Void Bastards,amazon,c9d1ea59-a0d8-4244-9289-69ab221e4db5,umu-857980,, 346 | Frozen Synapse,amazon,de86fadb-17cc-4f9b-b255-01ab9166d50b,umu-98200,, 347 | Majesty 2 Collection,amazon,b2dfa643-b116-4e3c-afe0-e73ae98a32ad,umu-73020,, 348 | Crossing Souls,amazon,61f2a18e-6fbd-4449-8b19-956aef8514c5,umu-331690,, 349 | Hotline Miami,amazon,5cb459d0-69b1-41eb-94bf-7d3c4edc74ce,umu-219150,, 350 | Cyber Hook,amazon,16fad9ee-75fc-4342-9eb2-e6f526fdddc9,umu-1130410,, 351 | Algo Bot,amazon,e10a6883-3afc-4e14-ba19-6fd0e208677e,umu-286300,, 352 | Little Big Workshop,amazon,647f3b82-8e8f-426f-b23b-0dda8d68ebf4,umu-574720,, 353 | Monster Prom,amazon,d1994ba2-45b0-476d-8c88-d655cef4e4f0,umu-1140270,, 354 | Swimsanity,amazon,1caba129-321f-4cd6-b69f-9947cc673d7f,umu-877800,, 355 | Table Manners,amazon,3ef92bf8-14d8-42db-bdf6-dd376eab0617,umu-1019450,, 356 | Strata,amazon,70f425e7-77e2-4b8c-8d3d-2a25be540fcb,umu-286380,, 357 | Adventures of Chris,amazon,09fbe8c7-5f5b-4c23-88b7-09aeb2936c7a,umu-341170,, 358 | The Academy: First Riddle,amazon,7f279a69-296c-4ab4-b82f-e4c0129c1b70,umu-1155460,, 359 | Sine Mora Ex,amazon,22c10eeb-6b68-4b49-a025-e36af43f0bbf,umu-606730,, 360 | Bomber Crew,amazon,8bfd8b43-faa3-49f7-aa87-42598dad2dda,umu-537800,,Deluxe version 361 | Tengami,amazon,285ee9a5-0bc8-4a6f-8415-aed4cf830e76,umu-299680,, 362 | Blasphemous,amazon,340e2d64-ef20-48dc-842d-f85ad1e06d2a,umu-774361,, 363 | SkyDrift,amazon,2d05b80a-41fe-4da5-9e4d-db7ecfc7dae7,umu-91100,, 364 | Boomerang Fu,amazon,81394511-4f48-4c64-9833-8e12ef1bb088,umu-965680,, 365 | Optica,amazon,64c8296f-cbea-416b-8947-a89e97a3e97a,umu-947470,, 366 | Escape Machine City: Airborne,amazon,779b8b5e-dcb0-492c-9714-907867ee9c03,umu-1502800,, 367 | The Dark Crystal: Age of Resistance Tactics,amazon,fc2c93ae-1d67-4c2e-b782-37d5f8ecd598,umu-1097790,, 368 | Move or Die - Couch Party Edition,amazon,ee44bb82-a70f-4f6d-a502-737f1bfef431,umu-323850,, 369 | Before I Forget,amazon,4f603926-ada0-4d8a-9551-0f8185b78710,umu-1126600,, 370 | Aces of the Luftwaffe – Squadron,amazon,8c5a6e9c-c20b-4942-9013-26b4926ce37a,umu-859350,, 371 | Moving Out,amazon,73df62c7-f228-4f42-9151-9ce56e13f4bb,umu-996770,, 372 | Do Not Feed the Monkeys,amazon,3d938a83-ec98-4cfb-a11f-a0fbfee934ef,umu-658850,, 373 | Iris and the Giant,amazon,cb1ee645-30be-4887-a612-a081687eec47,umu-1127610,, 374 | Figment,amazon,45468b40-7274-424c-b4c4-6b8a08901272,umu-493540,, 375 | Edgar - Bokbok in Boulzac,amazon,3a84959a-d38d-4b35-a986-34b7906cc9ca,umu-1007830,, 376 | Healer's Quest,amazon,c5ee3ad3-eb8f-481f-84f0-89ac59508064,umu-598490,, 377 | Beholder,amazon,77616bb4-bb8e-4029-9ddf-b51a9e5b761d,umu-475550,, 378 | The Blind Prophet,amazon,f95b932a-e6e2-4c2e-a6dc-4d6d38d8f92e,umu-968370,, 379 | A Blind Legend,amazon,4827253e-c4ef-4859-ae88-0f4a4ca59e06,umu-437530,, 380 | Faraway: Director's Cut,amazon,1b494f5d-78b9-4c9e-a38a-e23c9a29649a,umu-883880,, 381 | Bombslinger,amazon,88046aa6-0e4d-4f5f-b48c-37de955cc815,umu-475960,, 382 | Mana Spark,amazon,b9e2e744-da24-491c-bb81-5b77d7acde6f,umu-630720,, 383 | Frog Climbers,amazon,da0081f9-946b-4541-bd45-3cfc4a47183e,umu-485120,, 384 | BFF or Die,amazon,5b857b61-570b-4b08-b37b-7455610de1f7,umu-652360,, 385 | Newfound Courage,amazon,670651a7-1fb1-4e8f-ab17-caee6bd2f5a9,umu-893790,, 386 | Lost in Harmony,amazon,e74afea8-3411-4274-a6b5-d940c9515db0,umu-509400,, 387 | Batman: The Telltale Series,amazon,fa070ce3-b0f8-40f5-aa53-aef28e822093,umu-498240,, 388 | Spitkiss,amazon,d06adfe4-1579-4285-b742-d94533f4f341,umu-949770,, 389 | Portal Dogs,amazon,27cdbe8e-58ff-4d0b-be92-a971d882643c,umu-1183200,, 390 | RAD,amazon,8f45e476-67d8-4743-9d3c-9004251d70ba,umu-722560,, 391 | The Secret of Monkey Island: Special Edition,amazon,6ea8a67f-b21c-425b-9d1b-ce207e30ae2f,umu-32360,, 392 | Batman TellTale Series Season 2 : Enemy Within,amazon,12b2a663-73da-46cd-938a-5e4fdcac7d38,umu-675260,, 393 | The Wanderer: Frankenstein's Creature,amazon,335c61ef-7760-4bf1-89c8-c5f7552d086f,umu-966670,, 394 | Tales of the Neon Sea,amazon,cdb1066a-11db-42db-a050-3358cd248ae7,umu-828740,, 395 | Lost Horizon 2,amazon,3209409f-f01c-42a4-8edc-c0aca27f1933,umu-395560,, 396 | Another Lost Phone: Laura's Story,amazon,a34bbe60-4072-4c4d-93a6-8f4c2023e453,umu-689910,, 397 | Indiana Jones and the Fate of Atlantis,amazon,88612dcd-7348-4588-89eb-ef41d873de11,umu-6010,, 398 | Metamorphosis,amazon,5b20a285-a8ee-49bf-a186-2e64f2e379f3,umu-1259960,, 399 | Secret Files: Tunguska,amazon,eb46c3ec-c6f2-4173-870d-3eeaaaf5ae9c,umu-40330,, 400 | Tools Up!,amazon,7549f0fd-b9be-4ab3-a24c-6413e3e8ac8a,umu-1004490,, 401 | Sam & Max Hit the Road,amazon,7c594d67-625b-4673-a978-7b075306da9b,umu-355170,, 402 | Puzzle Agent,amazon,d875e876-9389-483a-af28-c5c4062c583b,umu-31270,, 403 | Candleman: The Complete Journey,amazon,ee543796-c5e8-43e7-9e49-9fb4cff615c7,umu-591630,, 404 | Unmemory,amazon,63bd3150-1264-4225-8a47-4d3b3a57d7b7,umu-1388860,, 405 | Secret Files 2: Puritas Cordis,amazon,9fa97b6c-03a4-48de-b05a-77bb123b7690,umu-40340,, 406 | Whiskey & Zombies: Great Southern Zombie Escape,amazon,amzn1.adg.product.8fffd0cc-8e7f-4d88-8267-4ab6c49d4239,umu-1011320,, 407 | Secret Files 3,amazon,amzn1.adg.product.715c7943-57b4-4fa1-9315-ad9631321d98,umu-216210,, 408 | Song of Horror Complete Edition,amazon,amzn1.adg.product.68d0df20-e8ff-495c-903b-ae4a897471e8,umu-1096570,, 409 | Tiny Robots Recharged,amazon,amzn1.adg.product.20b87aa4-24b1-444b-80d0-8a5cbc277c56,umu-1709580,, 410 | Blue Fire,amazon,amzn1.adg.product.0d364464-032c-40c9-a6da-c633a53e3374,umu-1220150,, 411 | Red Wings: Aces of the Sky,amazon,amzn1.adg.product.ac751ce2-b672-4d69-879f-96c45f290369,umu-1140630,, 412 | Puzzle Agent 2,amazon,amzn1.adg.product.deb00d63-00c9-4d80-ae82-2675d328ff07,umu-94590,, 413 | Rogue Heroes: Ruins of Tasos,amazon,amzn1.adg.product.1f9ca5dd-6835-40ee-8ab8-946ebd636caa,umu-787810,, 414 | Secret Files: Sam Peters,amazon,amzn1.adg.product.9309e573-f790-4f1a-a285-d821cb7cf583,umu-257220,, 415 | BAFL - Brakes Are For Losers,amazon,amzn1.adg.product.23434d56-fe28-4ba1-ba71-e04c90abbb96,umu-573070,, 416 | Liberated,amazon,amzn1.adg.product.e75a0723-ff30-4fb7-bc0c-edc573d99cd1,umu-875310,, 417 | Demon Hunter 2: New Chapter,amazon,amzn1.adg.product.24a8c798-49fa-4cc0-9505-112d8be51faa,umu-465720,, 418 | Morkredd,amazon,amzn1.adg.product.9c1b385e-9a72-48bc-9700-c5d72b678972,umu-1331910,, 419 | Spellcaster University,amazon,amzn1.adg.product.6dbcae9a-112b-465e-8d56-de7353603436,umu-895620,, 420 | Youtubers Life,amazon,amzn1.adg.product.a939e821-78f1-48fb-8392-1e72473a58bc,umu-428690,, 421 | Tales of Monkey Island: Chapter 1,amazon,amzn1.adg.product.71a2ec7f-719c-4278-92ea-9b74a99be7a6,umu-31170,, 422 | Stubbs the Zombie in Rebel Without a Pulse,amazon,amzn1.adg.product.84602867-465b-4365-9ea9-c108c168b733,umu-7800,, 423 | Tales of Monkey Island: Chapter 2,amazon,amzn1.adg.product.5efc992e-6086-4367-b521-c77f877eb396,umu-31180,, 424 | Tales of Monkey Island: Chapter 5,amazon,amzn1.adg.product.13a55926-e6b6-497d-b3af-9d932744d408,umu-31210,, 425 | Tales of Monkey Island: Chapter 3,amazon,amzn1.adg.product.a0b96333-d610-40d7-9658-2e754c1615ec,umu-31190,, 426 | Tales of Monkey Island: Chapter 4,amazon,amzn1.adg.product.5dacffa6-c9ff-4c8e-abae-e51e1bbafc80,umu-31200,, 427 | Fahrenheit: Indigo Prophecy Remastered,amazon,amzn1.adg.product.6ed13be7-1d52-42b0-af03-9f487492ae93,umu-312840,, 428 | WRC 7 FIA World Rally Championship,amazon,amzn1.adg.product.d81c669c-346c-4490-8abf-d1cffa7bc876,umu-621830,, 429 | Abandon Ship,amazon,amzn1.adg.product.6f7b2156-b0d8-460a-b25e-617077be4961,umu-551860,, 430 | Paper Beast - Folded Edition,amazon,amzn1.adg.product.fb6747d7-7f88-49d8-bad4-3fc662531048,umu-1403830,, 431 | In Other Waters,amazon,amzn1.adg.product.5a2dea57-7759-4312-8cd4-986ac1c46a45,umu-890720,, 432 | Two Point Hospital,amazon,amzn1.adg.product.d14f6257-7fa1-4887-a09a-666a6f051a6f,umu-535930,, 433 | Double Kick Heroes,amazon,amzn1.adg.product.9e5ecae6-9b15-4d6c-b28c-afedc5fd081a,umu-589670,, 434 | Ashwalkers: A Survival Journey,amazon,amzn1.adg.product.23dae898-e846-4aad-befb-b3247b81ae4e,umu-1273690,, 435 | Golazo! Soccer League,amazon,amzn1.adg.product.e8e78531-da5e-4651-a75e-357717f42152,umu-1431040,, 436 | As Far as the Eye,amazon,amzn1.adg.product.68184ab0-16ae-474e-8b3b-02daf82fc6d4,umu-1119700,, 437 | SteamWorld Quest: Hand of Gilgamech,amazon,amzn1.adg.product.86459162-b782-45ad-9900-8073256a94b0,umu-804010,, 438 | looK INside,amazon,amzn1.adg.product.33c7e483-297f-48ef-95ba-411ff59ca701,umu-1119710,, 439 | The Stillness of the Wind,amazon,amzn1.adg.product.a10b8ae4-785f-4aa9-bf60-844d9d0b5a25,umu-828900,, 440 | Crypto Against All Odds,amazon,amzn1.adg.product.d5f8ee2a-ecae-46dc-b620-52e54778c46f,umu-1200900,, 441 | Pesterquest,amazon,amzn1.adg.product.f2ba7372-4612-4b8c-ba91-c3d5c833d211,umu-1144030,, 442 | Turnip Boy Commits Tax Evasion,amazon,amzn1.adg.product.43251731-1ef4-4c83-8318-c16f7cf5fe8e,umu-1205450,, 443 | Guild of Ascension,amazon,amzn1.adg.product.80e086de-237d-41ca-a02b-da2544049908,umu-1169520,, 444 | Monkey Island 2 Special Edition: LeChuck’s Revenge,amazon,amzn1.adg.product.726951bc-4400-41bb-9dc3-0f51c1fa8250,umu-32460,, 445 | Nanotale - Typing Chronicles,amazon,amzn1.adg.product.d0163c0c-c2a9-4139-b83b-bfe975bfabc4,umu-944920,, 446 | Galaxy of Pen and Paper,amazon,amzn1.adg.product.b5014332-35f9-4da7-a2f3-d12789a67585,umu-349790,, 447 | The Curse of Monkey Island,amazon,amzn1.adg.product.fe83dbda-6966-4ba6-b252-33faa24034e4,umu-730820,, 448 | Shattered - Tale of the Forgotten King,amazon,amzn1.adg.product.c649ad6b-f119-4b58-9455-e021e306f8e4,umu-1045180,, 449 | Out of Line,amazon,amzn1.adg.product.df1b00ec-d2df-4fff-937a-8feb4e0c8724,umu-1419290,, 450 | Cat Quest,amazon,amzn1.adg.product.9a11bfd3-0659-4109-9f8b-2c4e011455ed,umu-593280,, 451 | Mail Mole + 'Xpress Deliveries,amazon,amzn1.adg.product.a0be5d19-cccb-4afa-a79f-1ac6f1e41444,umu-1273540,, 452 | Escape from Monkey Island™,amazon,amzn1.adg.product.5fe86d64-2c5a-4ddf-a574-6e32ca7a0031,umu-730830,, 453 | WRC 8 FIA World Rally Championship,amazon,amzn1.adg.product.0dfe3eaa-1825-4500-9b1e-92536545fd51,umu-1004750,, 454 | Calico,amazon,amzn1.adg.product.2e2c1fd6-26b3-43ae-a327-868104772841,umu-1112890,, 455 | Astrologaster,amazon,amzn1.adg.product.bd27e9f5-7d23-4b4c-ab7c-f3103d1c1b5f,umu-742520,, 456 | Across the Grooves,amazon,amzn1.adg.product.27f032e9-7a2c-4c0c-a30b-5a5d4b736701,umu-957820,, 457 | Bang Bang Racing,amazon,amzn1.adg.product.e13c50c9-d548-4e6f-a85a-7f70308279e8,umu-207020,, 458 | Gone Viral,amazon,amzn1.adg.product.90683494-2e3f-45c8-91cb-c35d659fad55,umu-680030,, 459 | Giana Sisters: Twisted Dreams,amazon,amzn1.adg.product.0a76e83e-1ecc-43eb-84bd-93e6675ec697,umu-223220,, 460 | The Crow's Eye,amazon,amzn1.adg.product.7a7cba4b-e22f-4b25-a3b2-70d513306430,umu-449510,, 461 | Metal Unit,amazon,amzn1.adg.product.16da152f-0092-4b62-8cfe-374b7b8787b3,umu-1173200,, 462 | 8Doors: Arum's Afterlife Adventure,amazon,amzn1.adg.product.c82d2124-433c-4d90-beba-e1ea3f57ffd9,umu-668550,, 463 | Rain World,amazon,amzn1.adg.product.8292d474-6625-4bcd-89c0-f7bf1763a69e,umu-312520,, 464 | The Darkside Detective: A Fumble in the Dark,amazon,amzn1.adg.product.8d752461-4a70-4f1c-9bd5-d320afa9c9f1,umu-795420,, 465 | Clouds & Sheep 2,amazon,amzn1.adg.product.2cbd524e-6778-4f53-b367-b3255aca792c,umu-439800,, 466 | Maniac Mansion,amazon,amzn1.adg.product.3daaf7de-e673-483a-86e8-af3942baaf19,umu-529890,, 467 | Suzerain,amazon,amzn1.adg.product.778e283c-b65f-4f04-8184-c992bf2dfd95,umu-1207650,, 468 | Fishing: North Atlantic,amazon,amzn1.adg.product.8d72f45d-9b58-49df-9653-cfab9657b452,umu-1264250,, 469 | Fell Seal: Arbiter's Mark,amazon,amzn1.adg.product.2d4ef15f-791f-444d-a655-6dd3529fca6e,umu-699170,, 470 | Star Wars: Jedi Knight II - Jedi Outcast,amazon,amzn1.adg.product.8320bb7e-a254-4a71-82e2-d5c29cd6a687,umu-6030,, 471 | STAR WARS Republic Commando,amazon,amzn1.adg.product.334f1d96-0646-4e9b-9613-8747be0c7505,umu-6000,, 472 | Zak McKracken and the Alien Mindbenders,amazon,amzn1.adg.product.e3b3a12f-d30d-44eb-8b43-548081dc69fb,umu-559070,, 473 | Beasts of Maravilla Island,amazon,amzn1.adg.product.8f37f256-d32e-4cc4-abe5-e00eb25cef2e,umu-1378020,, 474 | Recompile,amazon,amzn1.adg.product.dc0a809d-b50b-4a55-95ca-9ea42579cd69,umu-986310,, 475 | ScourgeBringer,amazon,amzn1.adg.product.79ec5ff2-4f01-4e47-ab46-3d7909ed5572,umu-1037020,, 476 | Castle on the Coast,amazon,amzn1.adg.product.a8a58d6f-77a8-4cfc-971a-4f4be7cf34b8,umu-1341900,, 477 | Defend the Rook,amazon,amzn1.adg.product.74474738-b55e-45ee-8106-7c3342bfff89,umu-1531250,, 478 | The Dig,amazon,amzn1.adg.product.50ea4b5b-4623-42c5-b052-c26da6006cba,umu-6040,, 479 | We. The Revolution,amazon,amzn1.adg.product.2567ea69-d0ac-41d5-bc5f-6cafb38caecf,umu-736850,, 480 | Loom,amazon,amzn1.adg.product.52e7d981-3b76-4ece-b8b7-b998e13b935f,umu-32340,, 481 | Horace,amazon,amzn1.adg.product.4ee54da9-3efe-4997-acaa-028c9fc7874f,umu-629090,, 482 | Hero's Hour,amazon,amzn1.adg.product.10ea0731-48e5-452f-a5f3-7fccac3a0e9a,umu-1656780,, 483 | Whispering Willows,amazon,amzn1.adg.product.db747599-4934-4e6a-8817-ea405ef03e0e,umu-288060,, 484 | Etherborn,amazon,amzn1.adg.product.e8de124d-8354-47ee-a388-e04739df05af,umu-812160,, 485 | Last Day of June,amazon,amzn1.adg.product.4c6f3fb8-e68a-4706-a8eb-490905dfa633,umu-635320,, 486 | WRC 9,amazon,amzn1.adg.product.9e9874eb-151b-4c18-bc57-ec3605bf5e80,umu-1267540,, 487 | Desert Child,amazon,amzn1.adg.product.3d720bbb-fce0-42bb-b98e-b10e86b211bf,umu-844050,, 488 | Spinch,amazon,amzn1.adg.product.28a685b0-ded2-42e8-811a-588f438a7885,umu-794240,, 489 | The Last Blade 2,amazon,amzn1.adg.product.3a91e2f7-a434-4ca1-b1f5-6f25a1b2138d,umu-702110,, 490 | Doors: Paradox,amazon,amzn1.adg.product.f295f4c6-5707-4637-8304-6eee17658841,umu-1622770,, 491 | Brothers: A Tale of Two Sons,amazon,amzn1.adg.product.c24c4c69-8211-459c-b65b-5c6540d20270,umu-225080,, 492 | The Amazing American Circus,amazon,amzn1.adg.product.aa281e1b-252f-493d-8626-fbf3de7ad36c,umu-1433860,, 493 | Banners of Ruin,amazon,amzn1.adg.product.a647658e-409f-4d9d-a8f2-57bcd97e82a0,umu-1075740,, 494 | Metal Slug 3,amazon,amzn1.adg.product.f6ba026c-693e-4833-9c83-318b569ef454,umu-250180,, 495 | SNK 40th Anniversary Collection,amazon,amzn1.adg.product.3a202794-d9d0-47e7-8d0c-c7d5f05f5fda,umu-865940,, 496 | Metal Slug,amazon,amzn1.adg.product.a9660e7a-8760-4d78-888d-226e4ad04ecf,umu-366250,, 497 | Twinkle Star Sprites,amazon,amzn1.adg.product.2cc687be-9547-42ef-b07d-cb3de979671f,umu-366280,, 498 | The Last Blade,amazon,amzn1.adg.product.7c237770-7536-48b5-85e3-8314f6f280f2,umu-465840,, 499 | Breathedge,amazon,amzn1.adg.product.eb9378f0-b38b-44d3-bbc4-f35b96059c1a,umu-738520,, 500 | Lawn Mowing Simulator,amazon,amzn1.adg.product.46f0c5e1-82b2-449c-bb68-98974a1eb59b,umu-1480560,, 501 | Chicken Police - Paint it RED!,amazon,amzn1.adg.product.78eec9ac-6cd5-4534-854a-47fe4c702d17,umu-1084640,, 502 | Onsen Master,amazon,amzn1.adg.product.a8d9f18e-3b60-4565-aa23-40dc9e96f652,umu-1334780,, 503 | Aerial_Knight's Never Yield,amazon,amzn1.adg.product.f09132bc-ea66-4979-8d21-c540b7a7fed3,umu-1323540,, 504 | BATS: Bloodsucker Anti-Terror Squad,amazon,amzn1.adg.product.69c307ed-8065-40b6-b73e-08aaeb68d96f,umu-1642110,, 505 | One Hand Clapping,amazon,amzn1.adg.product.6348a560-70d2-4455-afc3-2a5cbcfca8aa,umu-893720,, 506 | Tunche,amazon,amzn1.adg.product.404a2c52-8e8e-4874-8f8d-2f75f105ab3a,umu-887450,, 507 | Space Warlord Organ Trading Simulator,amazon,amzn1.adg.product.14d7b5ca-e847-40e7-95d0-a932885d4239,umu-1507780,, 508 | Baldur's Gate: Enhanced Edition,amazon,amzn1.adg.product.5d35cae7-39d1-4e53-ba92-36004c4a5211,umu-228280,, 509 | Adios,amazon,amzn1.adg.product.ab888f57-d3f4-4961-a50e-eb891fe27aaa,umu-1271400,, 510 | I am Fish,amazon,amzn1.adg.product.63df2659-db6c-4841-8ef0-f828c7c2ab2c,umu-1472560,, 511 | Faraway: Arctic Escape,amazon,amzn1.adg.product.2acb36df-2414-4f0d-8fa4-cdfe9fe604fe,umu-1747690,, 512 | Peaky Blinders: Mastermind,amazon,amzn1.adg.product.5f9857c2-1f63-41ac-aea1-179056a5d5d5,umu-1013310,, 513 | Book of Demons,amazon,amzn1.adg.product.69c637c2-fa19-4993-b37c-9b66e7f87beb,umu-449960,, 514 | Icewind Dale: Enhanced Edition,amazon,amzn1.adg.product.484268fa-d1e7-4754-ad8d-a5181f12f8b0,umu-321800,, 515 | Beholder 2,amazon,amzn1.adg.product.351fef1f-8c92-4e26-a62e-9faea809705e,umu-761620,, 516 | Terraformers,amazon,amzn1.adg.product.dea380a4-8fed-4193-a0e8-ab87cf005320,umu-1244800,, 517 | Sengoku,amazon,amzn1.adg.product.2394d92a-ab59-49d5-a9d2-bb98cbae22a8,umu-73210,, 518 | Grime,amazon,amzn1.adg.product.a533b569-f163-4ad9-b0dc-e6c069695a72,umu-1123050,, 519 | Planescape Torment: Enhanced Edition,amazon,amzn1.adg.product.93c268bc-c898-4e7c-b866-ea9c93c781b0,umu-466300,, 520 | Lake,amazon,amzn1.adg.product.9d883273-8960-4ada-a67f-967d2141449c,umu-1118240,, 521 | Kardboard Kings: Card Shop Simulator,amazon,amzn1.adg.product.37d63f6f-e7c4-4b73-9b5b-94962282654a,umu-1298480,, 522 | The Almost Gone,amazon,amzn1.adg.product.38c74617-0495-40dd-aae7-29e2e8b24955,umu-1115780,, 523 | Tandem: A Tale of Shadows,amazon,amzn1.adg.product.1fde7daa-ed90-4426-b9d7-c7847d72c895,umu-1436920,, 524 | Agatha Knife,amazon,amzn1.adg.product.84883b78-8b43-4e75-99d7-03763231ca80,umu-618950,, 525 | SteamWorld Dig 2,amazon,amzn1.adg.product.ffe01392-25f2-458c-9115-c0629903818e,umu-571310,, 526 | Revita,amazon,amzn1.adg.product.c42ee7aa-7704-4330-b5b8-79df1317304e,umu-1175460,, 527 | Baldur's Gate II: Enhanced Edition,amazon,amzn1.adg.product.852e8b11-4233-42dc-be63-89f2ea9ce78f,umu-257350,, 528 | Once Upon a Jester,amazon,amzn1.adg.product.028b3ce6-d6d4-4501-b294-b7815f06fe24,umu-1668190,, 529 | Roguebook,amazon,amzn1.adg.product.3257bf63-37a6-476b-8df2-62a9f523d097,umu-1076200,, 530 | Shovel Knight Showdown,amazon,amzn1.adg.product.4be63b3e-3d40-4b28-bfc0-2bb648a9e8d5,umu-1116770,, 531 | "Cook, Serve, Delicious! 3?!",amazon,amzn1.adg.product.532703ea-5b40-42c1-85ce-bb5748d46761,umu-1000030,, 532 | NAIRI: Tower of Shirin,amazon,amzn1.adg.product.348da014-c2ff-44e7-8ea6-c8bb3e82b25c,umu-802450,, 533 | Wytchwood,amazon,amzn1.adg.product.26441a93-d672-4d03-918c-594027c620ba,umu-729000,, 534 | Blade Assault,amazon,amzn1.adg.product.4a10b5b0-d498-4a74-8053-e31f665dc82c,umu-1426470,, 535 | Star Wars: The Force Unleashed II,amazon,amzn1.adg.product.648bbdb2-2e67-4808-8732-4ee1baef09ff,umu-32500,, 536 | Driftland: The Magic Revival,amazon,amzn1.adg.product.5d60477a-bea7-4cd6-bd37-bf08bc691355,umu-718650,, 537 | Foretales,amazon,amzn1.adg.product.18ab88f2-82c7-4418-b9bb-dd14e8751d2a,umu-1170080,, 538 | In Sound Mind,amazon,amzn1.adg.product.171df735-9fe7-4c74-82ff-cd9ab92ce15a,umu-1119980,, 539 | Absolute Tactics: Daughters of Mercy,amazon,amzn1.adg.product.76af1223-346e-4e60-9252-65aed729c037,umu-1636660,, 540 | Dexter Stardust: Adventures in Outer Space,amazon,amzn1.adg.product.0d9fd292-f386-406f-895b-a9385d3dfcb5,umu-1647390,, 541 | Shotgun King: The Final Checkmate,amazon,amzn1.adg.product.033d4c95-45ea-44ab-9ded-06c8e130efde,umu-1972440,, 542 | Hundred Days,amazon,amzn1.adg.product.c1cd3750-55cc-47d5-b137-db9a8dde1617,umu-1042380,, 543 | GRUNND,amazon,amzn1.adg.product.e64b7adf-c277-41d4-b425-c70205bf6fe3,umu-1449920,, 544 | Super Adventure Hand,amazon,amzn1.adg.product.c70aeca3-dab0-4c81-9f90-93144ce113df,umu-1992700,, 545 | Evan's Remains,amazon,amzn1.adg.product.a7f4a806-7d00-448b-a373-96b82a3583e8,umu-1110050,, 546 | Star Wars: Knights of the Old Republic,amazon,amzn1.adg.product.7fc09019-f0f1-4500-9db7-224a5bc0f9d6,umu-32370,, 547 | Q.U.B.E: Director's Cut,amazon,amzn1.adg.product.476ea1d8-a621-4c11-a162-fa231c1a7a90,umu-239430,, 548 | The Dungeon of Naheulbeuk: The Amulet of Chaos,amazon,amzn1.adg.product.1e840fd5-adad-46e2-a2f2-1dc8b74756af,umu-970830,, 549 | Akka Arrh,amazon,amzn1.adg.product.0d4ae063-951a-4996-9820-e80e5f063d47,umu-2005680,, 550 | SeaOrama: World of Shipping,amazon,amzn1.adg.product.aea47d09-fa75-4def-96e0-5594074658cd,umu-2002570,, 551 | Aground,amazon,amzn1.adg.product.92d77aeb-eb4b-4907-8064-2599137dabe6,umu-876650,, 552 | A Tiny Sticker Tale,amazon,amzn1.adg.product.ec0f0479-ce53-4495-b5d5-907ec268098b,umu-2322180,, 553 | Endling: Extinction is Forever,amazon,amzn1.adg.product.21965245-d668-4a8f-818a-38133698587b,umu-898890,, 554 | APICO,amazon,amzn1.adg.product.1e783728-3de2-4114-ae25-2e4dc850d9ff,umu-1390190,, 555 | Behind the Frame: The Finest Scenery VR,amazon,amzn1.adg.product.88e5ec89-7217-4a60-823e-ab5126cd896a,umu-2318230,, 556 | Agarest: Generations of War,gog,1207666943,umu-237890,, 557 | Agarest: Generations of War 2,gog,1438083997,umu-312790,, 558 | Agarest: Generations of War Zero,gog,1426762679,umu-260130,, 559 | Far Cry Primal,ubisoft,2010,umu-371660,,In game turn off mouse deadzone and toggle between fullscreen->windowed->fullscreen/borderless to fix mouse focus. 560 | Far Cry Primal,egs,larkspur,umu-371660,,In game turn off mouse deadzone and toggle between fullscreen->windowed->fullscreen/borderless to fix mouse focus. 561 | Far Cry 3,ubisoft,46,umu-220240,, 562 | Far Cry 3,egs,hellebore,umu-220240,, 563 | Far Cry 4,ubisoft,856,umu-298110,, 564 | Far Cry 4,egs,cf87285950ba492bbdc370b9d265ea36,umu-298110,, 565 | Far Cry Blood Dragon,ubisoft,205,umu-233270,, 566 | Far Cry Blood Dragon,egs,8b9fc0e3ee7d478abc047d1a3596c568,umu-233270,, 567 | Far Cry 2,ubisoft,85,umu-19900,,In game turn mouse sensitivity all the way up for mouse movement to work properly. 568 | Far Cry 2,egs,a0b8d4482f3d4f939f35f87a3f367865,umu-19900,,In game turn mouse sensitivity all the way up for mouse movement to work properly. 569 | Far Cry 2,gog,1207659042,umu-19900,,In game turn mouse sensitivity all the way up for mouse movement to work properly. 570 | UNCHARTED™: Legacy of Thieves Collection,egs,8b2d6cf2b45b41f1abe91bc5b7c1e8f9,umu-1659420,, 571 | Breathedge,egs,0a20ccd3f1b3464da750a4dbf8c80d7c,umu-738520,, 572 | Tomb Raider I-III Remastered Starring Lara Croft,gog,1407750955,umu-2478970,, 573 | Tomb Raider I-III Remastered Starring Lara Croft,egs,1014022493bd421eb54dae5386502c06,umu-2478970,, 574 | Yakuza 3 Remastered,gog,1453650568,umu-1088710,, 575 | Yakuza 4 Remastered,gog,1311648027,umu-1105500,, 576 | Yakuza 6: The Song of Life,gog,1086074447,umu-1388590,, 577 | Yakuza Kiwami 2,gog,1478349159,umu-927380,, 578 | Yakuza: Like a Dragon,gog,1229228729,umu-1235140,, 579 | Ghost Master,gog,1207658687,umu-6200,, 580 | Alone in the Dark,gog,1177195295,umu-1310410,, 581 | Frostpunk 2,gog,1728870436,umu-1601580,, 582 | Frostpunk 2,egs,4f7cefeebf4d4804be3007283abe4895,umu-1601580,, 583 | Disaster Report 4: Summer Memories,gog,1167113997,umu-1060210,, 584 | Disaster Report 4: Summer Memories,egs,6684d2b2f9764f5c9c1c59de162c8a8e,umu-1060210,, 585 | The Legend of Heroes: Trails in the Sky,gog,1207665083,umu-251150,, 586 | The Legend of Heroes: Trails in the Sky SC,gog,14448264193,umu-251290,, 587 | The Legend of Heroes: Trails in the Sky the 3rd,gog,1797747105,umu-436670,, 588 | Duke Nukem: Manhattan Project,zoomplatform,e87704e6-e558-4605-8981-89a7914742e0,umu-240200,,Has specific fixes for the launcher and wrapper (Enhanced Edition) 589 | Soldier of Fortune II: Double Helix - Gold Edition,gog,1228964594,umu-1228964594,, 590 | KINGDOM HEARTS HD 1.5+2.5 ReMIX,egs,68c214c58f694ae88c2dab6f209b43e4,umu-2552430,, 591 | KINGDOM HEARTS III + Re Mind (DLC),egs,fd711544a06543e0ab1b0808de334120,umu-2552450,, 592 | Hardwar,zoomplatform,7ea03b9c-98d7-4ba1-a1e8-40e266233950,umu-1500540,, 593 | Street Racing Syndicate,zoomplatform,a7d5a1bd-242c-4d57-9b72-6d94b63e9b51,umu-292410,, 594 | Assassin's Creed: Valhalla,ubisoft,13504,umu-2208920,, 595 | Tesla Effect: A Tex Murphy Adventure,gog,1207664503,umu-261510,, 596 | Tesla Effect: A Tex Murphy Adventure,humble,teslaeffect_atexmurphyadventure,umu-261510,, 597 | They Are Billions,gog,1335738339,umu-644930,, 598 | Batman: Arkham Asylum Game of the Year Edition,gog,1482504285,umu-35140,, 599 | Batman: Arkham Asylum Game of the Year Edition,egs,godwit,umu-35140,, 600 | Batman: Arkham City - Game of the Year Edition,egs,egret,umu-200260,, 601 | Tempest 4000,amazon,amzn1.adg.product.fab161b8-af6f-4160-831a-5a4df46a2907,umu-688140,, 602 | SCARF,amazon,amzn1.adg.product.bcce181d-9bb0-4feb-8cac-1aad48afb56b,umu-645320,, 603 | 1812: Napoleon Wars,zoomplatform,358cab61-963a-4fe8-92ff-e4f13acf976d,umu-1166230,, 604 | 688(I) Hunter/Killer,zoomplatform,1647cc7f-cf3f-4d2d-834e-6962636b9f36,umu-2900,, 605 | A Boy and His Blob,zoomplatform,32f8bf4c-5827-44c7-9b06-1cdca03a5504,umu-281200,, 606 | A Stroke of Fate: Operation Bunker,zoomplatform,300af44f-5568-4e6c-bf06-74ecfadedeb4,umu-372570,, 607 | A Stroke of Fate: Operation Valkyrie,zoomplatform,930b9b6a-13e6-4c33-9894-e6991bf4f4f8,umu-10240,, 608 | A Tale of Two Kingdoms,zoomplatform,8350de3f-a10d-4d97-9be4-555b143ffb25,umu-603870,, 609 | A Vampyre Story,zoomplatform,8e4ff9e4-1621-47d0-972c-a5481161c7ff,umu-313870,, 610 | A.I.M. 2: Clan Wars,zoomplatform,f156df6f-beb2-4fae-bdcd-e72091abba07,umu-289180,, 611 | A.I.M. Racing,zoomplatform,b01425fe-4f3f-4895-8255-5e0baf6d7bea,umu-46200,, 612 | Actua Ice Hockey 2,zoomplatform,53715ede-5c28-4e28-a74f-6e262d77fa2a,umu-2152720,, 613 | Actua Soccer 3,zoomplatform,c1853ea8-2939-47d3-ba51-a7bf6644bcb9,umu-285030,, 614 | Actua Tennis,zoomplatform,d9bb185e-8524-4fe0-bb34-c7edb19c9eb2,umu-2152730,, 615 | Advent Rising,zoomplatform,de53e97c-d46e-4c7b-a2e5-51f967b952c0,umu-3800,, 616 | Airport Madness: World Edition,zoomplatform,d3d886fa-4e4c-4540-998a-6439dbddeb53,umu-369290,, 617 | Alekhine's Gun,zoomplatform,86b63fbd-0b0b-4246-8b21-2113af197c43,umu-406720,, 618 | Alien Hallway,zoomplatform,c789429d-119d-4556-87f9-523852d54452,umu-98900,, 619 | Alien Shooter,zoomplatform,a8c112f3-01e5-4f3d-b8ae-f874552c7c2a,umu-33100,, 620 | Alien Shooter 2: Conscription,zoomplatform,cae3efd2-1d03-43f2-9e5c-da718526d764,umu-211010,, 621 | Alien Shooter 2: Reloaded,zoomplatform,4af1625e-3da7-49ae-abeb-b69cdd6df2f5,umu-33120,, 622 | Alien Shooter: Revisited,zoomplatform,31569ba2-946f-4fdb-aec9-de6cb839cfc6,umu-33110,, 623 | Aliens versus Predator Classic 2000,zoomplatform,ead56662-66c7-4948-a1cc-42b3e580e58f,umu-3730,, 624 | American McGee's Grimm,zoomplatform,5aa13cf4-2f7f-4dfd-bbfe-a7266739f874,umu-252150,,a.k.a Grimm 625 | Amerzone: The Explorer's Legacy,zoomplatform,cff47ec7-d08d-477e-b364-fab84689c3de,umu-302190,, 626 | Ankh - Anniversary Edition,zoomplatform,f639e224-bf7f-47b8-81ba-43b4500000fb,umu-353980,, 627 | Ankh 2: Heart of Osiris,zoomplatform,65bcf6eb-b4a6-45da-897d-d232ca092fc3,umu-12440,, 628 | Ankh 3: Battle of the Gods,zoomplatform,bfb91bf1-2242-46c9-bb3c-304659fe0fd6,umu-12450,, 629 | Arthur's Computer Adventure,zoomplatform,9cc326dd-7f9f-4e2a-a65f-264bca98149f,umu-2471170,, 630 | Arthur's Reading Race,zoomplatform,61f667c9-5a20-4118-836d-f8655999f771,umu-2471160,, 631 | Arthur's Teacher Trouble,zoomplatform,64b7c330-fb3c-4c27-bae1-69af79a34d29,umu-2471150,, 632 | Ascension to the Throne,zoomplatform,e4369a77-66c4-4ab8-ab29-f84bb8112cdd,umu-289200,, 633 | Asian Food Cart Tycoon,zoomplatform,bf637564-86bb-4102-88bb-8139c2058e4b,umu-2224430,, 634 | Atlantis II: Beyond Atlantis,zoomplatform,5a246f04-64b0-4884-9d78-e4198bc21f29,umu-362920,, 635 | Back to Bed,zoomplatform,212c9401-c6d5-44e5-8bec-59711a0e7c01,umu-308040,, 636 | Bad Rats Show,zoomplatform,aa2ef104-1b72-44c6-b65c-c6e84fc05a96,umu-393200,, 637 | Bad Rats: The Rats' Revenge,zoomplatform,14e6451d-9d85-4817-a804-b1331271d68d,umu-34900,, 638 | Battle of Europe,zoomplatform,180b38a7-e88f-47bd-8122-d83fb3413296,umu-321710,, 639 | Battle vs. Chess,zoomplatform,f140398d-ffea-4bc0-be8a-47d6bd16f406,umu-211050,,aka: Check vs. Mate 640 | Beer!,zoomplatform,919f76bb-05f6-48b1-9882-cead471dd8b7,umu-782280,, 641 | Big Mutha Truckers 2,zoomplatform,084fefe4-ff19-4fa6-aeb3-0148f7db9975,umu-1377920,,a.k.a Big Mutha Truckers 2: Truck Me Harder 642 | Black Moon Chronicles,zoomplatform,8549b496-7650-4ff7-bd0b-f1e8fbcbad87,umu-501500,, 643 | Blackguards,zoomplatform,19d2fe0a-4332-4142-89d1-890dbcd6bda4,umu-249650,, 644 | Blackguards 2,zoomplatform,95d10b37-7456-45db-b986-22fa376962da,umu-314830,, 645 | Blackhole,zoomplatform,cd8d03bc-5060-4414-8fd3-cc1dc1de0632,umu-322680,, 646 | BloodRayne,zoomplatform,80f8e98c-10d6-441c-99bc-e7bd9d6c9688,umu-3810,, 647 | BloodRayne 2,zoomplatform,c0ad919f-f56e-45de-aead-2f06ce867865,umu-3820,, 648 | BloodRayne: Betrayal,zoomplatform,d9d87011-24b9-4392-8f97-df7cc28792a1,umu-281220,, 649 | Bomb the Monsters!,zoomplatform,50359ae9-402d-4422-b5e5-5d0ade267c1a,umu-355020,, 650 | BoomTown! Deluxe,zoomplatform,89cc716b-2848-44f7-9a1f-bdea7fc1a7d4,umu-536750,, 651 | BorderZone,zoomplatform,bd12345d-8a6c-420f-af8d-fbb7f74e8228,umu-289220,, 652 | Breezeblox,zoomplatform,709888bd-470f-4458-87aa-57ecfb02fc41,umu-370080,, 653 | Brigade E5: New Jagged Union,zoomplatform,635c3167-54dc-4cbc-9752-a37c4f9fcb78,umu-296210,, 654 | Brigand: Oaxaca,zoomplatform,033b3ca6-b233-4775-9099-4534a9315618,umu-652410,, 655 | Calvin Tucker's Farm Animal Racing,zoomplatform,ed0f35cd-b3e3-42f5-a0f4-76861f55b882,umu-809900,, 656 | Casino Blackjack,zoomplatform,1c1ad89c-a754-427d-9a89-0867b23f433e,umu-800350,, 657 | Casino Poker,zoomplatform,7338a2d2-af6a-47b2-9269-c188c3d9cb95,umu-793250,, 658 | Chaos on Deponia,zoomplatform,f22183bb-e043-4920-bce4-eca64060d8ad,umu-220740,,aka: Deponia 2: Chaos On Deponia 659 | Chicago 1930 : The Prohibition,zoomplatform,9e7f5b7b-59eb-4a5a-bc1d-e6d5256f89f8,umu-623920,, 660 | Clad in Iron: Chincha Islands 1866,zoomplatform,7d4c22cd-5783-4285-b783-f9c26a7f1364,umu-2196170,, 661 | Clad in Iron: Gulf of Mexico 1864,zoomplatform,37cd3ca8-ad29-4b9d-9a8a-2adfa92c8c33,umu-693450,, 662 | Clad in Iron: Philippines 1898,zoomplatform,ee5bee6c-cabc-4195-a753-95cb68f1ed52,umu-712970,, 663 | Clad in Iron: Sakhalin 1904,zoomplatform,87a711d9-d750-4a29-9844-8c6313185718,umu-963680,, 664 | Classic Fun Collection 5 in 1,zoomplatform,086f23b4-b9e3-4f04-b6ee-366b92a269da,umu-431300,, 665 | Commandos 2: Men of Courage,zoomplatform,1b66e2c9-2490-45e1-953e-616708e3d16b,umu-6830,, 666 | Commandos 3: Destination Berlin,zoomplatform,9c8af2d2-2fed-4601-989f-68046ea4f950,umu-6840,, 667 | Commandos: Behind Enemy Lines,zoomplatform,4ae095f5-75d7-43e8-8265-eba20d71fc38,umu-6800,, 668 | Commandos: Beyond the Call of Duty,zoomplatform,0d47f7f9-2cf4-4edb-a6b8-d4c573ff0d0c,umu-6810,, 669 | Commandos: Strike Force,zoomplatform,fa36b243-476d-4320-9de7-d544fd4575ae,umu-6820,, 670 | Construct: Escape the System,zoomplatform,422bb3d3-0466-4dce-86a3-74ee65b8fe86,umu-497080,, 671 | Copperbell,zoomplatform,6965f4a7-a737-427b-92a3-b322990a6700,umu-1039040,, 672 | Creatures Village,zoomplatform,4fa8aae0-479b-4f0c-9524-79b3ca155fdc,umu-1823900,, 673 | CT Special Forces: Fire for Effect,zoomplatform,f017e334-ae08-4ff5-b7f3-506a2755e756,umu-283410,, 674 | Culpa Innata,zoomplatform,2b57a9ee-c353-4ea8-bc9e-dbefe9b53848,umu-12310,, 675 | Curse: The Eye of Isis,zoomplatform,1b53f6d8-55d4-44c8-836a-09ff00872ece,umu-302210,, 676 | Dangerous Waters,zoomplatform,22821a0d-5383-4e48-980e-a172ce8a38bf,umu-1600,, 677 | Darkstar One,zoomplatform,f255b6b4-8388-4b2d-b606-e5e6352ca467,umu-12330,, 678 | Darkstone,zoomplatform,057001b6-8ca0-4f51-9edf-c47fa2450874,umu-320320,, 679 | Dawn of Magic 2,zoomplatform,a4973fbd-2860-4f08-9a42-0f8c40d8d38e,umu-33540,, 680 | Daymare: 1998,zoomplatform,adb8eed8-72f1-4dbe-9d1f-74220152229c,umu-842100,, 681 | Dead Mountaineer's Hotel,zoomplatform,f0fbdf68-cce1-4b0d-9c19-01dab79ff851,umu-10230,, 682 | Dead Synchronicity: Tomorrow Comes Today,zoomplatform,747b55cf-9b39-4518-8e0a-1ff0a7aa48c6,umu-339190,, 683 | Death Rally,zoomplatform,b40f0381-4a0f-446c-ac8d-106985300fa9,umu-358270,, 684 | Death Track: Resurrection,zoomplatform,1343b4a7-3ff3-4ad7-8288-0db42a8066c0,umu-7840,, 685 | Deep Eclipse: New Space Odyssey,zoomplatform,e1e279df-24aa-4639-b8cb-ec5e2e202264,umu-326990,, 686 | Deep Sky Derelicts,zoomplatform,03280689-705f-4e86-a682-8a29ec5e37c8,umu-698640,, 687 | Defender of the Crown,zoomplatform,53c4609e-1179-4f65-9b83-292a8d59370f,umu-326590,, 688 | Deponia,zoomplatform,103bd59f-4ebe-4121-b4d1-2c9a99474dcf,umu-214340,, 689 | Deponia Doomsday,zoomplatform,fab52fe5-a639-48e9-806d-b92e22ab3923,umu-421050,, 690 | Desert Law,zoomplatform,ebf6385a-d420-4e25-849c-bd275543a4d6,umu-356280,, 691 | Desert Thunder,zoomplatform,3d5f1fbf-f910-42fa-b6a6-70e6608e9ba7,umu-283330,, 692 | Devil's Hunt,zoomplatform,afad6b1a-82cb-440d-9ea2-6dd26944ccdc,umu-887720,, 693 | Donut Dodo,zoomplatform,95a49caf-7170-4f82-a7af-acbd9445684c,umu-1779560,, 694 | Doodle Devil,zoomplatform,e57296c5-f5aa-4ba7-96e7-0aed004188ee,umu-608760,, 695 | Doodle God,zoomplatform,ddeb804e-4999-42f9-9a54-f3bc83b21175,umu-348360,, 696 | Doodle God: 8-bit Mania,zoomplatform,e991ed62-cdf3-439d-a290-8213fdf6de5e,umu-538060,, 697 | Doodle God: Alchemy Jam,zoomplatform,ebeb388c-867f-4a48-b0a1-4d7a7b8422f5,umu-759750,, 698 | Doodle Kingdom,zoomplatform,b72f4769-9d2c-4e63-a3e5-04e0fe2afed7,umu-431640,, 699 | Doodle Mafia,zoomplatform,3d8cde2f-a7ab-4f94-8d8e-bb103796c7b3,umu-598940,, 700 | Dracula 2: The Last Sanctuary,zoomplatform,e478f8fd-9445-48ea-9204-8021b0d18d90,umu-289820,, 701 | Dracula 3: The Path of the Dragon,zoomplatform,f94eb328-0906-489b-8b16-ed069e8c9b3f,umu-289840,, 702 | Dracula 4: The Shadow of the Dragon,zoomplatform,4ecb7644-3c77-4167-b0d2-bd2fe35cd889,umu-279560,, 703 | Dracula 5: The Blood Legacy,zoomplatform,b7f3295e-2ceb-4605-9da2-0164eaf02d68,umu-279560,, 704 | Dragon Throne: Battle of Red Cliffs,zoomplatform,a3c1470e-499c-4db8-a04d-c62c3ea8d43a,umu-2633500,, 705 | Drain Mansion,zoomplatform,835972e8-180f-410e-8ce2-fd87df47dde6,umu-1888070,, 706 | Dream Pinball 3D,zoomplatform,6c5e5fb8-e707-485b-8b4b-dc952e8cdf96,umu-215790,, 707 | Dreamcutter,zoomplatform,0943e032-6269-4ad9-a7f9-84419d2994e3,umu-2163030,, 708 | Dreamscapes: Nightmare's Heir,zoomplatform,7e37f0da-f72e-41c3-b31d-d793b4b9d0d3,umu-353110,, 709 | Dreamscapes: The Sandman,zoomplatform,37aa3268-2d4b-4640-93e9-536c663f9a3a,umu-289260,, 710 | Ducati World Championship,zoomplatform,08d0018e-5ee1-40b7-95ff-35a06ba69191,umu-6270,, 711 | Dungeon Vixens: A Tale of Temptation,zoomplatform,8640f172-25d7-4793-afab-4878eb05baf1,umu-2710970,, 712 | Earth 2150 Trilogy,zoomplatform,ed990d89-c516-4845-b06d-5a8777abee59,umu-253880,, 713 | Earth 2160,zoomplatform,bab67057-0ef2-447d-9ebc-ea5ba9966ea9,umu-1900,, 714 | East India Company,zoomplatform,9024367d-3e49-480f-87a5-6e6e12e14184,umu-25930,, 715 | El Matador,zoomplatform,b3d126e6-64a4-4265-864f-301f4fe77300,umu-289280,, 716 | Elminage Gothic,zoomplatform,d20bcacd-6ca6-4abf-a236-9f473d45b7cb,umu-291960,, 717 | Elminage Original: Priestess of Darkness and the Ring of the Gods,zoomplatform,0bc5f945-e907-48ae-ae87-78248903c1d7,umu-618710,, 718 | Empire Earth,zoomplatform,abfe50a4-da68-47a6-b3a8-f7fa4363b2dc,umu-254760,, 719 | Empire Earth II,zoomplatform,3d7dabed-657a-4688-9521-e1f01a37f847,umu-254780,, 720 | Empire Earth III,zoomplatform,11237503-e801-4689-9474-3f0d0b16da99,umu-254800,, 721 | Enclave,zoomplatform,ff4f3c4d-5ae9-46db-98d3-9ad86f8b1e46,umu-253980,, 722 | Escape the Past,zoomplatform,7ef4e869-ffe0-488f-ba07-5214d96a2347,umu-486120,, 723 | Eternity: The Last Unicorn,zoomplatform,5138ed7b-b7aa-4ca0-b854-3ddc5b1bd596,umu-714250,, 724 | Eurofighter Typhoon,zoomplatform,6084fc8a-243b-4316-b0ee-94bbcee7ca89,umu-283350,, 725 | Evil Genius,zoomplatform,19c3dc12-b712-46fc-acba-fa4405013ba8,umu-3720,, 726 | Exodus from the Earth,zoomplatform,71554dad-5aae-4771-be1d-51ad5b57e60c,umu-12390,, 727 | Expendable,zoomplatform,8cff8ab9-0436-4bd1-a43d-5aff65040536,umu-804000,, 728 | Faces of War,zoomplatform,45240af2-1cb4-4eb1-80c9-69c80863a84e,umu-289300,, 729 | "Fairy Tale About Father Frost, Ivan and Nastya",zoomplatform,feee1081-783a-4a1f-a460-b11aee18d968,umu-289320,, 730 | Fall of Light,zoomplatform,32821d38-53d2-4bac-a154-4ee47a293252,umu-633950,, 731 | Fall of the New Age,zoomplatform,0f7df08f-39ae-4830-acb5-50af390fd412,umu-314510,, 732 | Fantasy Wars,zoomplatform,1c840fc5-f61b-4288-a972-029b387e118f,umu-63900,, 733 | Fire: Ungh's Quest,zoomplatform,1bd53296-e52d-4d48-90af-6747ad971769,umu-325520,,aka: Puzzleventure FIRE or just Fire 734 | FlatOut,zoomplatform,102468d5-332e-4baa-b885-7fd51923a948,umu-6220,, 735 | FlatOut 2,zoomplatform,20de509d-7f13-4851-bd79-9271bf7591cb,umu-2990,, 736 | FlatOut: Ultimate Carnage,zoomplatform,7b1f24db-8e69-4859-9d55-1ab839b1490c,umu-12360,, 737 | Freight Tycoon Inc.,zoomplatform,507b37c9-9cdd-4a7c-8956-f93763d33b3d,umu-289340,, 738 | Ghost Master,zoomplatform,0e84d516-e9da-400d-a777-5aaf8985a4e7,umu-6200,, 739 | Gift of Parthax,zoomplatform,7ba2b00b-0be8-461d-85ee-2294e1d1d6db,umu-795610,, 740 | Glacier 3: The Meltdown,zoomplatform,c824057f-783b-4625-93e6-7bdaf3c7e19c,umu-267940,, 741 | Gomo,zoomplatform,bedb1324-5621-4b24-926d-2891935a52eb,umu-265330,, 742 | Goodbye Deponia,zoomplatform,ee3dbb22-609f-4ea5-aa68-80dc0d69f92e,umu-241910,,aka: Deponia 3: Goodbye Deponia 743 | Gorky 17,zoomplatform,71c14837-7fc8-4823-9c30-8d23ed1b0ccf,umu-253920,, 744 | Green Ranch,zoomplatform,00a43048-6ac1-4b49-a3c0-d5388e0a7710,umu-493980,, 745 | Ground Control,zoomplatform,c49bc3ec-0426-497b-8677-71bfcb31b4d8,umu-254820,, 746 | Ground Control II: Operation Exodus,zoomplatform,ce8d72fa-4e7a-45bb-a330-77dc55e2ed72,umu-254840,, 747 | Guilty Gear Isuka,zoomplatform,9b082309-10be-4edb-bb01-05ec0c5f1b9e,umu-267900,, 748 | Guilty Gear X2 Reload,zoomplatform,f80ad902-b04c-495e-8581-39a5e1caf95a,umu-314030,, 749 | Gun Metal,zoomplatform,6517675f-4529-47ee-93fa-990ea8885df0,umu-267920,, 750 | Haegemonia: Legions of Iron,zoomplatform,a12c73c0-a628-4fbc-bf09-523c0587aef9,umu-294770,, 751 | Haimrik,zoomplatform,1f32f7e7-56b0-4606-9b63-07dffcaf4501,umu-492180,, 752 | Hard to Be a God,zoomplatform,9a5db6c2-40c9-48be-b0bd-67bf573da64a,umu-391030,, 753 | Hatred,zoomplatform,157d1528-803f-4776-b8d5-94134963bfdd,umu-341940,, 754 | Heroine's Quest: The Herald of Ragnarok,zoomplatform,6a5e28b1-10dd-43f5-b931-cb361eedd97c,umu-283880,, 755 | Hexus,zoomplatform,f64965b7-ac03-4fc5-850f-34bcc7b0e1fc,umu-323250,, 756 | Hogs of War,zoomplatform,ea76abf8-6c28-462a-9a48-e3d6a51039a2,umu-389900,, 757 | Hostile Waters: Antaeus Rising,zoomplatform,cded898c-ff77-49d3-bca8-b482f27dc001,umu-267980,, 758 | Houdini's Castle,zoomplatform,3f4de1c6-d335-4cea-b37c-1c63a55a801d,umu-972420,,aka: The Great Unknown: Houdini's Castle 759 | House Party,zoomplatform,f6d1c864-a8ef-4c44-b449-3e071873a9c5,umu-611790,, 760 | Hyper Fighters,zoomplatform,94b258b8-335c-4988-a30d-cf29c796b153,umu-267960,, 761 | IL-2 Sturmovik: 1946,zoomplatform,fa2aace3-ee2f-496c-9998-7f10c6aba507,umu-15320,, 762 | Imperial Glory,zoomplatform,90ccd20f-f641-4245-9d10-6e5e733c4770,umu-277450,, 763 | In Fear I Trust,zoomplatform,14d62e73-8e63-4768-94af-419a5c3dd2d1,umu-522690,, 764 | Iron Storm,zoomplatform,70264db8-7fb7-43af-b5d6-2ccee1f8e3da,umu-296180,, 765 | Jack Keane,zoomplatform,a92d048b-a15f-419a-9545-5145ad70035e,umu-12340,, 766 | Jack Orlando,zoomplatform,7bd577e3-baad-4708-83b3-cb5438a0e788,umu-253960,, 767 | Jane Angel: Templar Mystery,zoomplatform,dc0dae79-0e51-4aaa-9924-bf37136d41d9,umu-323270,, 768 | Jane's Fleet Command,zoomplatform,b971903a-0743-40e3-9707-c9fbe8887d4d,umu-2910,, 769 | Journey of a Roach,zoomplatform,9480d41b-28fc-4b6d-b727-461b8d812c4a,umu-255300,, 770 | Judge Dredd: Dredd vs. Death,zoomplatform,bbba4d3f-2cf5-461b-8e10-912f4a586b24,umu-3710,, 771 | Kapital: Sparks of Revolution,zoomplatform,c2f07e47-a740-40c9-9011-9cbcd2ddc915,umu-1399700,, 772 | Ken Follett's The Pillars of the Earth,zoomplatform,b231d69a-488a-487e-9e42-2013c6c5c7b8,umu-234270,, 773 | Killing Time,zoomplatform,0f54b851-79d4-4607-9c75-eaab1e4d3a4e,umu-493320,, 774 | King's Bounty: Armored Princess,zoomplatform,54acb547-61a5-4e85-8395-95aba543af8d,umu-3170,, 775 | King's Bounty: Crossworlds,zoomplatform,6e2b87dd-24a9-4caa-af7b-f05d1f0c9bed,umu-63910,, 776 | King's Bounty: Dark Side,zoomplatform,093bca09-17c4-4af4-a95d-5254cc179228,umu-289520,, 777 | King's Bounty: The Legend,zoomplatform,6b9aff70-b480-4cc0-9f4f-988bcd46b4fd,umu-25900,, 778 | King's Bounty: Warriors of the North,zoomplatform,e1e785e5-4912-41d0-af96-966a9ad13ce3,umu-203350,, 779 | Knights and Merchants,zoomplatform,e6d04e55-5b80-4f30-b8ea-6cb15fc7b88d,umu-253900,,aka: Knights and Merchants: The Peasants Rebellion 780 | Knights of the Temple: Infernal Crusade,zoomplatform,01c010e2-e87d-466c-85a1-d4021fbe9d6e,umu-1194610,, 781 | KnightShift,zoomplatform,04aacc0a-551c-48ab-aaa3-165c2368dfb3,umu-254060,, 782 | Konung 2: Blood of Titans,zoomplatform,ec7c7fb0-f34a-4c5a-b4a6-4ba8047f9b57,umu-289360,, 783 | Konung III: Ties of the Dynasty,zoomplatform,a1072024-b9e0-4a50-9181-f3a06fe54424,umu-289380,, 784 | Larry Lotter and the Test of Time,zoomplatform,949c5008-a64d-4bff-8cb4-d1639caa77b8,umu-551840,, 785 | Lawless West,zoomplatform,7e2b30c8-e453-4921-8b3b-323be9654a0f,umu-2108440,, 786 | League of Mermaids,zoomplatform,3a57794d-446b-48ad-9f90-11aef8107261,umu-383950,, 787 | Legacy: Witch Island 2,zoomplatform,10065227-8b4b-4cbd-8d12-d67c5b13cff5,umu-1423200,, 788 | Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded,zoomplatform,72947c24-263d-4136-95ea-fbe809758843,umu-231910,,aka: Leisure Suit Larry: Reloaded 789 | Leisure Suit Larry: Magna Cum Laude,zoomplatform,4c53d5ed-cb13-4216-9191-8ce7502bd5b1,umu-765900,, 790 | Lemuria: Lost in Space,zoomplatform,2fe050bc-8d94-4443-b5d8-45f8d59dade5,umu-563250,, 791 | Leylines,zoomplatform,706f63a0-a162-4b63-bad7-8f1db8fd79cb,umu-585820,, 792 | Lifeless Planet,zoomplatform,92f92582-cd83-46b2-b797-0be22243b65e,umu-261530,, 793 | Lords of Magic,zoomplatform,6f8761ee-d275-439b-9e6c-73e67ea49194,umu-404040,, 794 | Lords of the Realm III,zoomplatform,2348b054-08e7-4f75-b089-9404cf342a64,umu-254860,, 795 | Love & Enchants,zoomplatform,bfe98a95-c77e-4d14-8856-533c4bfba567,umu-1603900,, 796 | Lucius,zoomplatform,21adf127-c4f0-47ac-a665-2167bd1e9768,umu-218640,, 797 | M4 Tank Brigade,zoomplatform,63543c7c-cb96-4ea5-9f98-2d2eb66d1b72,umu-348810,, 798 | Madness of the Architect,zoomplatform,b88be2ae-d099-412c-b805-e642d4c8be52,umu-785920,, 799 | Mahjong Secrets,zoomplatform,fe14de00-0635-4047-a3e6-be22a0b3891d,umu-947400,, 800 | Marble Maid,zoomplatform,b7d3d440-4bc2-4e1d-b37a-2139188fc1ad,umu-1429780,, 801 | Marcus Level,zoomplatform,4df78ddf-dd60-4538-908d-b1d0a45650af,umu-417480,, 802 | Margot's Word Brain,zoomplatform,e5a222bb-4344-4cdb-8ab7-ceedc43d267a,umu-827780,, 803 | Marine Sharpshooter II: Jungle Warfare,zoomplatform,f7a6b4ec-1ada-42ce-9fd1-a4b38c15ead4,umu-283370,, 804 | Mashed,zoomplatform,e8772fb2-e391-4c26-bc28-ae863f12e531,umu-281280,, 805 | Massive Assault,zoomplatform,1082ebca-c84f-4e7e-b6d5-9d2e3d794a47,umu-34630,, 806 | Massive Assault: Phantom Renaissance,zoomplatform,cfc6e8cc-0df3-4dcd-b248-8eee8c8ac77d,umu-34640,, 807 | Master of Orion III,zoomplatform,4fafa4d6-c214-4c72-8e75-4d35e41f83a0,umu-410990,, 808 | MegaRace 3,zoomplatform,d22a7425-91a4-40f1-a609-60a6230f8f70,umu-733770,, 809 | Memoria,zoomplatform,fce5f73e-d9f2-454f-8681-525ebff168d7,umu-243200,, 810 | Men of War,zoomplatform,5b721400-4f9c-4d19-895d-099d2f53011f,umu-7830,, 811 | Men of War: Assault Squad,zoomplatform,18beae9e-ab75-4b35-b298-a3128089afee,umu-64000,, 812 | Men of War: Condemned Heroes,zoomplatform,e7ac5ed7-92fd-4e39-850e-ef44faac6968,umu-204860,, 813 | Men of War: Red Tide,zoomplatform,49ba3d3a-da02-4100-a557-306a256d436d,umu-3130,, 814 | Men of War: Vietnam,zoomplatform,7830ad6d-d445-43c7-a9a6-bafc6cda5b86,umu-63940,, 815 | Mini Metal,zoomplatform,31bcbbcc-25b1-4067-8413-48f28868d889,umu-454420,, 816 | Mobile Forces,zoomplatform,87fc1a02-ac36-44e4-bb02-493a257981ef,umu-837940,, 817 | Monster Girls You-ki Chan,zoomplatform,dc7d0933-4ca4-459d-aa95-2b1791896a61,umu-1502110,,aka: 'Monster surprised you-ki chan' and 'R18Plus Monster Girl You-ki chan' 818 | Moonbase Commander,zoomplatform,e856c21a-5034-4d26-b721-1b937f5b7b1d,umu-254880,, 819 | Moto Racer,zoomplatform,5b6368d3-3af8-470d-a97c-b7f750578ed0,umu-324110,, 820 | Moto Racer 15th Anniversary,zoomplatform,9ac1ba69-aa37-45a1-a5b3-b9a66bc149c2,umu-324110,, 821 | Moto Racer 2,zoomplatform,36d81b77-7443-45e6-a666-d2c4ceab90d4,umu-324110,, 822 | Moto Racer 3,zoomplatform,d758d0cb-0985-4782-bfbc-3753c72b355b,umu-324110,, 823 | My Sweet Floating in the Void,zoomplatform,cdd23085-62d1-4963-af41-e87749a1ec58,umu-2738740,, 824 | Mystery Castle: The Mirror's Secret,zoomplatform,3027b44e-d33e-4381-a72e-a1317ed7310b,umu-428250,, 825 | Namariel Legends: Iron Lord,zoomplatform,b0df82df-cdf3-415a-b5b5-55d03a58c1f2,umu-302730,, 826 | Naval Warfare,zoomplatform,cc8313f7-6777-4a35-8ef4-5420603a520f,umu-98500,, 827 | Near Impact,zoomplatform,ce62585c-8158-4f93-819a-c55c6029706d,umu-320410,, 828 | Necronomicon: The Dawning of Darkness,zoomplatform,fee2c881-bcf9-42ff-adb9-d90a3f990cd7,umu-302390,, 829 | No One Lives in Heaven,zoomplatform,f4ee5c4e-aa39-48e9-9cd3-58c30dc8d2ba,umu-1321030,, 830 | Nosferatu: The Wrath of Malachi,zoomplatform,58770ea8-88d5-4b23-af0a-abed6bd60e9a,umu-283290,, 831 | Nostradamus: The Last Prophecy,zoomplatform,72edbd2d-5447-46d1-ac3f-4f46540d06b6,umu-287720,, 832 | NyxQuest: Kindred Spirits,zoomplatform,23e54fab-4715-40c7-9c59-bc3bee20e8f4,umu-57000,, 833 | O.R.B: Off-World Resource Base,zoomplatform,c822022c-c16f-4202-b551-817a7bbdd12a,umu-281390,, 834 | Oddworld: Abe's Exoddus,zoomplatform,5053fff2-2b8c-4845-befc-86f7b875ae72,umu-15710,, 835 | Oddworld: Abe's Oddysee,zoomplatform,49917a13-bd74-4cec-b0c4-414f50d67f10,umu-15700,, 836 | Oddworld: Munch's Oddysee,zoomplatform,0163b6cc-baac-42ff-8366-c1722bd50cb0,umu-15740,,'HD' update released in 2016. Zoom version is the HD and original bundled. 837 | Oddworld: New 'n' Tasty!,zoomplatform,4c9a0da3-637c-4476-b9cc-5acee8c28089,umu-314660,, 838 | Oddworld: Stranger's Wrath HD,zoomplatform,dcabd2be-5c6b-4364-bed7-154cb4b19f9e,umu-15750,, 839 | Odysseus: Long Way Home,zoomplatform,e1407ef6-cc6c-4661-a1d3-df34cfe9d9d7,umu-348960,, 840 | Off-Road Drive,zoomplatform,754f02ae-9064-46da-bad2-a900b60ad14c,umu-200230,, 841 | Operation: Pinkeye,zoomplatform,44db8a11-16fe-4d2b-8bf7-91cd94f888bf,umu-1619820,, 842 | Order of War,zoomplatform,9f15c0b1-346b-47b3-8cc8-edf5c690702f,umu-34600,, 843 | Outcast 1.1,zoomplatform,196bba9f-91b4-4831-a44e-cae55ad42602,umu-336610,, 844 | Parkan II,zoomplatform,d8f877ad-e12e-4363-9c51-71d01c348431,umu-289400,, 845 | Parkan: Iron Strategy,zoomplatform,703a8bb1-87da-49c3-aba9-274af2ef5c6f,umu-953820,, 846 | Patrician III: Rise of the Hanse,zoomplatform,32be0aef-871e-4712-abd9-7e59ce0b1d5d,umu-33570,, 847 | Perimeter,zoomplatform,e76df720-ed37-4988-888e-3713e7085f9b,umu-289440,, 848 | Perimeter 2: New Earth,zoomplatform,0321ffa2-1248-4c22-a4c8-07a95968e358,umu-12420,, 849 | Perimeter: Emperor's Testament,zoomplatform,f846cc16-542c-454a-ba09-97d8cd0d8a60,umu-289240,, 850 | Pigsaw,zoomplatform,d2b6d8b2-9c76-4175-84e6-f4c3124fcbdc,umu-2519850,, 851 | Pilot Brothers,zoomplatform,0f10a497-1e1d-4bc8-a7b1-930b64df6a0b,umu-336760,, 852 | Pilot Brothers 2,zoomplatform,bcba0c09-5fa4-406a-982c-77922d586d1e,umu-336770,, 853 | Pilot Brothers 3: Back Side of the Earth,zoomplatform,da632a5b-aff4-46f1-b349-2c23250ae55d,umu-336780,, 854 | Pirates of Black Cove,zoomplatform,46580265-cec4-4c88-a7b1-c8380518ed8f,umu-49330,, 855 | Planet Alcatraz,zoomplatform,4649501d-233c-48d1-bb61-4a044465d33c,umu-289420,, 856 | Planets Under Attack,zoomplatform,61604f49-87b3-45b2-b6f8-da8984b2c956,umu-218510,, 857 | Port Royale 2,zoomplatform,93770a9f-56f4-45d5-979f-677f7dc0356b,umu-12470,, 858 | Post Mortem,zoomplatform,37d77e7c-df10-4170-b740-fd114f9b8562,umu-46550,, 859 | Postal,zoomplatform,47707477-860b-4c60-aa15-10a1fd4c069f,umu-232770,,aka: POSTAL: Classic and Uncut 860 | Postal III,zoomplatform,a60669f1-9742-4d13-ae55-e62b5d5157ed,umu-10220,, 861 | Postal Redux,zoomplatform,8a8b644e-bc1b-4692-b2a7-b3789929c722,umu-401680,, 862 | Praetorians,zoomplatform,7946ced4-2699-4f7d-a948-1381a2a74a51,umu-277460,, 863 | Pressure,zoomplatform,59cad8a6-b56c-42ae-8a77-9aa5ed709271,umu-224220,, 864 | Prince of Qin,zoomplatform,6f7191ca-8df7-43ae-8d1f-8ba785c411ca,umu-1717410,, 865 | Quantum Replica,zoomplatform,ccd59cef-d4b7-451c-bb0f-ba0250d17c40,umu-470090,, 866 | Quest for Yrolg,zoomplatform,e7a0fcff-7d9e-4bac-9ffb-38719aa4f532,umu-551840,, 867 | Race Driver: Grid,zoomplatform,48a4ed23-3f65-42d5-9fe7-2fb2b32391c2,umu-12750,, 868 | Rails Across America,zoomplatform,7809fc69-c87e-4fb2-90f5-f88ac1dad518,umu-2680190,, 869 | RC Cars,zoomplatform,1759d378-7480-434c-bfb3-88aea8b47a5b,umu-289460,, 870 | Real Warfare 1242,zoomplatform,7af10826-05e7-4f92-a558-5d79f517ad9b,umu-46350,, 871 | Real Warfare 2: Northern Crusades,zoomplatform,5bca5edb-31d9-412a-ba70-fc86c7b02933,umu-202860,, 872 | Realpolitiks,zoomplatform,1faa082f-434a-4b35-86e3-f3ae71507557,umu-553260,, 873 | Realpolitiks II,zoomplatform,d9181828-9fe2-4624-8645-da8d3e110b92,umu-1248060,, 874 | Reign: Conflict of Nations,zoomplatform,de5390a4-b154-40e3-bc61-fe6c5120882e,umu-46380,, 875 | REKKR: Sunken Land,zoomplatform,622422d7-d520-4687-b2e0-af319958603c,umu-1715690,, 876 | Renoir,zoomplatform,2bba4b65-cd80-4b06-95db-8c87009f4bff,umu-496400,, 877 | Return to Mysterious Island,zoomplatform,593bcf35-43aa-4ec1-81c0-d1ce3b1196c4,umu-277110,, 878 | Rice Bowl Restaurant,zoomplatform,e6c65097-dad0-414b-b926-d7424e54f835,umu-2224440,, 879 | Rig 'n' Roll,zoomplatform,8a2cf1ce-e572-40bf-b575-b86d829d6c86,umu-46370,, 880 | Robin Hood: The Legend of Sherwood,zoomplatform,5828f8ba-2dd5-432f-a26e-af6310e82dc6,umu-46560,, 881 | Robin's Island Adventure,zoomplatform,4d3f0905-35d7-49ae-95c0-7c5cab6f9d84,umu-323260,, 882 | RoBoRumble,zoomplatform,c70fc5a4-48a9-458d-84cd-d41198ebd43b,umu-420970,, 883 | Rocket Jockey,zoomplatform,da803747-316d-478c-9feb-1dece2214392,umu-2471120,, 884 | Rogue Trooper,zoomplatform,5861e64a-b846-4bc3-b0ec-5a04ffb03b23,umu-7020,, 885 | Rooms: The Unsolvable Puzzle,zoomplatform,eb050ccd-185c-49ba-ad1f-06e535b0eee3,umu-331460,,aka: Rooms: The Toymaker's Mansion 886 | Rush for Glory,zoomplatform,78445140-cb89-4c31-9cf1-ec4c12fe2d85,umu-303470,, 887 | Sacred Zodongga Defense,zoomplatform,2254f5fe-85a0-41f4-9533-eda0d3bf3632,umu-2223350,, 888 | Salammbô: Battle for Carthage,zoomplatform,d21a4ade-efb8-41de-840d-318ad20b308d,umu-301670,, 889 | Sea Dogs,zoomplatform,ed15e4aa-a81b-4094-822b-ee68fb6d66c2,umu-764670,, 890 | Sea Dogs: Caribbean Tales,zoomplatform,e9f0f9da-a638-4ab4-84a6-51cc67b225d7,umu-817460,, 891 | Sea Dogs: City of Abandoned Ships,zoomplatform,f1342d79-92ba-4751-b070-4992bac236a7,umu-937940,, 892 | Sea Legends: Phantasmal Light,zoomplatform,00568b12-87b3-4c11-b54d-b5b294ae6134,umu-323280,, 893 | Seal of Evil,zoomplatform,9fb9a897-6cbe-4b42-8e5d-a97ba007afa5,umu-1726410,, 894 | Sentinel 3: Homeworld,zoomplatform,718d8e46-2a01-4522-a8ed-c78c2bb3e6ca,umu-275350,, 895 | Septerra Core,zoomplatform,d07f32c2-d747-49a1-9a59-31a5bf067719,umu-253940,,aka: Septerra Core: Legacy of the Creator 896 | Seven Kingdoms,zoomplatform,524714db-90ac-45e1-bad1-b4614ea7ec44,umu-450140,,aka: Seven Kingdoms: Ancient Adversaries 897 | Shadow Tactics: Blades of the Shogun,zoomplatform,f56a1a80-0876-4401-ac50-7552b5a7dd58,umu-418240,, 898 | Shadow Vault,zoomplatform,0c6ea2ce-e753-4b06-9be1-b1b135110c4a,umu-2633490,, 899 | Shady Lewd Kart,zoomplatform,775c4fef-c96c-405f-8761-c461cfa98c87,umu-1200730,, 900 | Shiny,zoomplatform,561ffdd9-5a37-4f58-b8c4-93b944219dba,umu-496390,, 901 | Sigi: A Fart for Melusina,zoomplatform,0db790ae-0288-4df7-bdd0-9ef5bb8baced,umu-677280,, 902 | Sinking Island,zoomplatform,e3e61887-b545-472b-acb7-1412951b8874,umu-333430,, 903 | Sir Lovelot,zoomplatform,cd7f4e62-a729-4449-923a-a3f70d3e051a,umu-1055170,, 904 | Slime Girl Smoothies,zoomplatform,ec7824da-e8e2-496a-a114-8ca371fcca7f,umu-1630420,, 905 | Sniper Elite,zoomplatform,97d25843-4be6-4218-8371-b6f50af00a8e,umu-3700,,aka: Sniper Elite: Berlin 1945 906 | Snow Battle Princess Sayuki,zoomplatform,6577700d-6c28-4c4c-a239-fab6e117bc6d,umu-1028760,, 907 | Soldiers: Heroes of World War II,zoomplatform,7921e333-cfd3-4309-933d-0784930130a4,umu-11480,, 908 | Solitaire Mystery: Four Seasons,zoomplatform,895926a2-6b71-4da1-b59e-5503619a4f98,umu-971880,, 909 | Solitaire Mystery: Stolen Power,zoomplatform,e1dcce85-ea22-4fca-a3f9-d78aad071317,umu-679820,, 910 | Soul King,zoomplatform,25d13201-a2c2-4a06-a9fa-20303428d79e,umu-1930310,, 911 | Soulbringer,zoomplatform,0f53ba93-de98-457c-80d2-ed6e1cd3599d,umu-283310,, 912 | Soulless: Ray of Hope,zoomplatform,46ec018f-0488-444d-894f-e97796290eaa,umu-528300,, 913 | Space Rangers HD: A War Apart,zoomplatform,894c9519-3bfd-4adf-a9b5-111529a8ba13,umu-214730,, 914 | Space Rangers: Quest,zoomplatform,8746422f-c79d-483c-9e08-39647c90cafb,umu-503450,, 915 | Speedball 2 HD,zoomplatform,b37d1650-407e-479f-88ef-3c0cb2646059,umu-251690,, 916 | Spoiler Alert,zoomplatform,d2a72e3c-52eb-487a-a6e1-4bbf83e2761f,umu-283230,, 917 | Stalingrad,zoomplatform,ede13181-fecd-49ed-92d3-4b088f4c9396,umu-356260,, 918 | Star Wolves,zoomplatform,ff305671-aee0-4948-b05e-67880429f511,umu-46270,, 919 | Star Wolves 2,zoomplatform,dcf1fdae-a614-4334-86c9-f0ca12a9bbdd,umu-46280,, 920 | Star Wolves 3: Civil War,zoomplatform,853f8e37-9997-4c5a-bf59-c652d23cb5c0,umu-46260,, 921 | Starship Quasar,zoomplatform,4a8d0dfa-56c0-4662-abb5-64970ad89fb5,umu-551840,, 922 | State of Mind,zoomplatform,d8f3d594-0d0d-460e-befd-9c0440e1e9a7,umu-437630,, 923 | Steel Empire,zoomplatform,4acab854-0df8-4f2e-8354-81369a83ac75,umu-563260,, 924 | Still Life,zoomplatform,289011cc-0db0-46e5-b3ce-3f66c96459bd,umu-46480,, 925 | Still Life 2,zoomplatform,e3e942dc-0af2-4462-963b-c290de5e11ae,umu-46490,, 926 | Sub Command,zoomplatform,a0835811-1771-49d0-a7f4-f7ac53582083,umu-2920,, 927 | Submarine Titans,zoomplatform,29fca331-e521-40d2-bbb2-9817ba696fec,umu-1259380,, 928 | Sudden Strike,zoomplatform,0a2d1402-078f-4f19-8188-985bb9a2ad72,umu-612300,, 929 | Sudden Strike 2,zoomplatform,5ee1fd76-524b-4175-9d93-be2c2c9584cb,umu-612520,, 930 | Sudden Strike 3: Arms for Victory,zoomplatform,4f79c86e-b11d-4d18-b00c-22d7ab9bc1c9,umu-612540,, 931 | Super Sonic Racer,zoomplatform,cb2e9118-e436-44c6-95b0-ee2ad33d15f3,umu-808190,, 932 | Swoon! Earth Escape,zoomplatform,bd8bb2d0-ac42-43da-b697-13f80908f63d,umu-1673460,, 933 | Tanita: A Plasticine Dream,zoomplatform,1050090e-c632-4fb4-a84f-23c217d870d1,umu-372560,, 934 | Tank Warfare: Tunisia 1943,zoomplatform,6b7a00e1-666b-496f-9107-60f4f80fc38d,umu-549080,, 935 | Terra Lander Remastered,zoomplatform,72dd863e-ba4c-4ef9-a3fc-97b61d6cdef4,umu-338550,, 936 | The Abbey - Director's cut,zoomplatform,47167bda-0cfc-4437-901d-ffcf95cf98cb,umu-1019020,, 937 | The Book of Desires,zoomplatform,304aa3e7-190c-435f-b1c0-71e96240b0e8,umu-428260,, 938 | The Chaos Engine (2013),zoomplatform,1dea1489-c74c-4594-8088-920ffef5ac80,umu-242530,, 939 | The Chronicles of Emerland: Solitaire,zoomplatform,3a5f68fd-e51c-41ed-8c8e-fd4988b34e00,umu-389400,, 940 | The Dark Eye: Chains of Satinav,zoomplatform,4f71d73b-90aa-46b2-97fb-2b5563ca3570,umu-203830,, 941 | The Enthralling Realms,zoomplatform,9251255e-933f-46a5-900e-6429ca0d608f,umu-859950,, 942 | The I of the Dragon,zoomplatform,77750ddc-f1d2-4505-9948-9791846d4119,umu-279720,, 943 | The Night of the Rabbit,zoomplatform,180f6e74-d6f2-44d9-bd5c-ede852d9dfcf,umu-230820,, 944 | The Outforce,zoomplatform,b23cf080-8082-421d-baa9-45e86d3b5f4c,umu-2633480,, 945 | The Space Bar,zoomplatform,53e9dbe5-2f42-465b-8348-ef460954c6f1,umu-2253580,, 946 | The Surprising Adventures of Munchausen,zoomplatform,6df669cf-54b1-4afe-b28e-fe65274e4581,umu-696710,, 947 | The Tomorrow War,zoomplatform,64e7599a-9736-463d-8c4c-a3d89933f9cc,umu-289480,, 948 | The Watchmaker (2018),zoomplatform,eecfadd3-1e66-4369-90b2-7cf06aacc461,umu-504430,, 949 | Theatre of War (2006),zoomplatform,ef08fbee-49a3-4693-905b-6a748b07bb04,umu-46290,, 950 | Theatre of War 3: Korea,zoomplatform,0efaea8f-9bbd-485b-ae48-e734d6799894,umu-63960,, 951 | Through the Woods,zoomplatform,27184704-3ed4-4ecf-bbed-c936f725cadb,umu-368430,, 952 | Top Trumps Turbo,zoomplatform,63dbd624-2e34-451d-8b1c-6551af9a53c3,umu-343180,, 953 | Total Annihilation,zoomplatform,d98ab205-bdc0-4347-8718-424a4400f2bf,umu-298030,, 954 | Tower of Boin,zoomplatform,d7ffcb11-4b74-426a-9f2f-94c1780cdc18,umu-2350720,, 955 | Transcripted,zoomplatform,e2d4068b-1466-494b-bfbc-30abafc17a68,umu-215450,, 956 | TrickStyle,zoomplatform,7dbdff50-55d6-4c89-8d54-14ad7b4a9dad,umu-588490,, 957 | Twilight City: Love as a Cure,zoomplatform,932f09da-b4b7-4ee2-9181-231188ba407f,umu-428270,, 958 | Two Worlds,zoomplatform,b01d76e6-63be-4706-b9d9-f2189b4ac3cd,umu-1930,, 959 | UFO: Afterlight,zoomplatform,6e39f2a4-d683-4ba7-b825-e888a4108846,umu-237950,, 960 | UFO: Aftermath,zoomplatform,5a8ca6fb-6dbd-4f06-87d7-4e2e097434de,umu-292160,, 961 | UFO: Aftershock,zoomplatform,a4287868-b031-419f-9265-3532f53484a3,umu-289500,, 962 | Under the Hood,zoomplatform,a70ffa5e-4e21-45ac-83d5-b604bdb24e09,umu-1428700,, 963 | Vegas: Make It Big,zoomplatform,a1426b89-af51-400c-83a1-996bd93cbfbc,umu-6210,, 964 | Voyage: Journey to the Moon,zoomplatform,f6276b4c-295f-40ad-912d-88705091a2b4,umu-302180,, 965 | WarBirds - World War II Combat Aviation,zoomplatform,bd1c09c4-2f8d-4fc0-9420-451a3e40f254,umu-365620,, 966 | WarBirds Dogfights 2016,zoomplatform,32adaa21-382e-4bfb-a2dc-43d4577ce582,umu-433130,, 967 | Warrior Kings,zoomplatform,6c980779-851d-41ae-8889-36cf97ae8289,umu-297570,, 968 | Warrior Kings: Battles,zoomplatform,936efae2-b689-49ae-a28f-d41441a2b54b,umu-299070,, 969 | Warzone 2100,zoomplatform,b0b01a65-3202-43a2-9cbf-be193c4fb896,umu-1241950,, 970 | Whispering Willows,zoomplatform,da7a300f-7255-48a8-bcd5-dd812eb24e2a,umu-288060,, 971 | Wings! Classic,zoomplatform,c84b0d13-1340-4172-826d-96c847c60d64,umu-326590,, 972 | Witch's Pranks: Frog's Fortune,zoomplatform,15d7b4bb-70bc-4466-b9ab-4c317cd6ea25,umu-342630,, 973 | Wooden Floor,zoomplatform,02102446-b78a-4ce3-8d77-90e38119f695,umu-348790,, 974 | World Racing 2: Champion Edition,zoomplatform,d53a6730-f7b9-4753-b14f-3fd11c3a5ec5,umu-1301010,, 975 | World War I,zoomplatform,f2c42668-d3b8-4268-8d6c-6d9866d0e26b,umu-361380,, 976 | X-Blades,zoomplatform,9f993969-1513-4e32-ac8e-4ac7db6e1c9f,umu-7510,, 977 | XIII,zoomplatform,3e67ac56-9521-4892-9783-f402acae12b4,umu-1170760,, 978 | XIII Century: Death or Glory,zoomplatform,a7148870-53a7-4006-9f40-c3e8c55e0da5,umu-34420,, 979 | Yu Crossing Animals,zoomplatform,e2242140-407c-42bb-8cbe-6d2c1a81928e,umu-1630290,, 980 | Zombie Shooter,zoomplatform,6a3ad2fd-4fbd-4ee2-b178-ac23b862e485,umu-33130,, 981 | Zombie Shooter 2,zoomplatform,d9b53402-8dfc-4351-b3d8-f3a063b4418f,umu-33180,, 982 | Zombies on a Plane,zoomplatform,2073ec11-f1d7-44f3-8156-e346762a4041,umu-297450,, 983 | Command Adventures: Starship,zoomplatform,22741a2a-74b9-4bdb-a184-6e8aab04d7a7,umu-2752440,, 984 | Incoming Trilogy,zoomplatform,4bff76f4-566a-4714-b481-95d3343afe22,umu-4bff76f4-566a-4714-b481-95d3343afe22,, 985 | "Gabriel Knight 3: Blood of the Sacred, Blood of the Damned",gog,1207658843,umu-497360,, 986 | Ceville,gog,1207659078,umu-23460,, 987 | Tokyo Necro,gog,1357005807,umu-2183070,, 988 | Nine Witches: Family Disruption,gog,1205379739,umu-1272580,, 989 | MORDHAU,egs,2e26af55c1a146e7a939dcc1014fc9fd,umu-629760,, 990 | Nioh: The Complete Edition,egs,b5e42b0dc2f544a5bbb4080a433b8b71,umu-485510,, 991 | HITMAN 3,egs,eider,umu-1659040,, 992 | Styx: Shards of Darkness,gog,2090261953,umu-355790,, 993 | D.W. The Picky Eater,zoomplatform,09dd9973-611d-448d-924c-ff5d7b509158,umu-2742020,, 994 | Resident Evil,gog,1580232252,umu-1580232252,,original game from 1997 995 | Resident Evil 2,gog,1534123252,umu-1534123252,,original game from 1999 996 | Resident Evil 3,gog,1266089300,umu-1266089300,,original game from 2000 997 | Flowers - Le Volume Sur Printemps,gog,1697970811,umu-1697970811,, 998 | Silent Hill 4: The Room,gog,1141086411,umu-1141086411,, 999 | The Wheel of Time,gog,1584652180,umu-1584652180,, 1000 | Flowers - Le Volume Sur Ete,gog,1685981342,umu-1685981342,, 1001 | Flowers - Le Volume Sur Automne,gog,2044697588,umu-2044697588,, 1002 | Flowers - Le Volume Sur Hiver,gog,1564851593,umu-1564851593,, 1003 | Dragon Age: Inquisition,ea,1000659,umu-1222690,, 1004 | Through the Darkest of Times,amazon,amzn1.adg.product.d306715a-5b83-467f-9795-ffb3e0b9575b,umu-1003090,, 1005 | Bus Simulator 21: Next Stop,amazon,amzn1.adg.product.730d8afc-aa42-45e2-815b-a808dbbe4c76,umu-976590,, 1006 | Bus Simulator 21: Next Stop,egs,0fcb6881984f4e9ab91f5e22e4bf844c,umu-976590,, 1007 | Drawn: Trail of Shadows,amazon,amzn1.adg.product.52fe2d32-210a-4776-9773-88bfda84b756,umu-567240,, 1008 | Vlad Circus: Descend Into Madness,amazon,amzn1.adg.product.f31fa950-6fe4-4121-858d-e6f0074ded23,umu-1702430,, 1009 | Dark City: International Intrigue,amazon,amzn1.adg.product.49834951-7f6d-417f-ab40-1b9ca8ee624b,umu-2338600,, 1010 | The Forgotten City,amazon,amzn1.adg.product.e31e4571-b8d9-444e-852f-93846749eb40,umu-874260,, 1011 | Genesis Noir,amazon,amzn1.adg.product.35fd4aba-910f-4f83-b4b8-5ef898a20ae1,umu-735290,, 1012 | Projection: First Light,amazon,amzn1.adg.product.6eaf9ea8-c5ea-4628-bb56-e37c96e01347,umu-726490,, 1013 | Everdream Valley,amazon,amzn1.adg.product.65f323b0-349c-4273-83be-8ac8456173a0,umu-1403650,, 1014 | The Invisible Hand,amazon,amzn1.adg.product.1509ede6-ce29-4066-89cb-addbe88ed5e9,umu-628200,, 1015 | Heaven Dust 2,amazon,amzn1.adg.product.625256c0-9e82-47e3-9bcb-7d1154a7d4a8,umu-1515900,, 1016 | Wall World,amazon,amzn1.adg.product.c25c2ac3-b318-4192-96b7-bafef73060b9,umu-2187290,, 1017 | Star Wars: Knights of the Old Republic II - The Sith Lords,amazon,amzn1.adg.product.bc8c2cf6-ded7-42fb-91d9-d0865af9e57a,umu-208580,, 1018 | Samurai Bringer,amazon,amzn1.adg.product.bcb2c9bd-b7ef-4d2b-acb0-f6b544269f69,umu-1851280,, 1019 | Youtubers Life 2,amazon,amzn1.adg.product.fc36e6d2-9ee9-4ff8-a5f5-1600eb62bb9d,umu-1493760,, 1020 | Masterplan Tycoon,amazon,amzn1.adg.product.90a0091c-8db1-4188-9f27-ed6046379aec,umu-1644500,, 1021 | Marvel's Guardians of the Galaxy,egs,63a665088eb1480298f1e57943b225d8,umu-1088850,, 1022 | Go Home Annie,gog,1913376893,umu-1939100,, 1023 | Carmageddon: Max Damage,gog,1904451332,umu-505170,, 1024 | Tomb Raider: Legend,gog,1810841502,umu-7000,, 1025 | Tomb Raider: Anniversary,gog,1202885143,umu-8000,, 1026 | Clustertruck,gog,1661530902,umu-397950,, 1027 | Fallout 4,gog,1998527297,umu-377160,, 1028 | Fallout 4,egs,61d52ce4d09d41e48800c22784d13ae8,umu-377160,, 1029 | The Elder Scrolls V: Skyrim Special Edition,egs,ac82db5035584c7f8a2c548d98c86b2c,umu-489830,, 1030 | Star Trek Online,egs,0fb6e06aacd14e88b1aaea8f54dd8525,umu-9900,, 1031 | Alan Wake,egs,heron,umu-108710,, 1032 | Alan Wake's American Nightmare,egs,condor,umu-202750,, 1033 | Neverwinter,egs,87be9bd6707748888bce1f79b025c5dd,umu-109600,, 1034 | CYGNI: All Guns Blazing,egs,25ad72f164b948ab9e05eb18fab2cda8,umu-1248080,, 1035 | Full Metal Daemon Muramasa,gog,1209310984,umu-1209310984,, 1036 | MultiVersus,egs,711c5e95dc094ca58e5f16bd48e751d6,umu-1818750,, 1037 | Call of Juarez: Bound in Blood,gog,1770556474,umu-21980,, 1038 | Arcanum: Of Steamworks and Magick Obscura,gog,1207658829,umu-500810,, 1039 | The Last Game,egs,3a187a93c2044a1ead75161f5c5a351a,umu-2563800,, 1040 | Call of Cthulhu,gog,1522289470,umu-399810,, 1041 | BIOMUTANT,gog,1633865805,umu-597820,, 1042 | BIOMUTANT,egs,8f2d950a8b1d46048057a62ff13661cd,umu-597820,, 1043 | Baldur's Gate: Enhanced Edition,gog,1207666353,umu-228280,bg, 1044 | Baldur's Gate II: Enhanced Edition,gog,1207666373,umu-257350,bg2, 1045 | Planescape: Torment: Enhanced Edition,gog,1203613131,umu-466300,ps:t, 1046 | Alpha Protocol,gog,1360785671,umu-34010,, 1047 | Zenless Zone Zero,egs,525aa0efd70f4399b9f64bcd2a5b38c7,umu-825cd0b5286c404289d456d47561cc1a,, 1048 | Zenless Zone Zero,none,none,umu-zenlesszonezero,,Standalone PC installer 1049 | METAL GEAR SOLID 2: SUBSTANCE,gog,2069117974,umu-2069117974,, 1050 | Silent Hill 3,none,none,umu-silenthill3,, 1051 | Dirt 3,none,none,umu-321040,,a.k.a Dirt 3 Complete Edition 1052 | Teenage Mutant Ninja Turtles: Shredder's Revenge,egs,16a7b366b94c4cf2843dd0dfda4bbd19,umu-1361510,, 1053 | The Callisto Protocol,egs,256ba8bdd1ff4c26a0b2d3776d1a1bf6,umu-1544020,, 1054 | BioShock,gog,2022341186,umu-7670,, 1055 | BioShock 2,gog,1806891286,umu-8850,, 1056 | BioShock Remastered,gog,1439656515,umu-409710,, 1057 | BioShock Remastered,egs,bc2c95c6ff564a16b26644f1d3ac3c55,umu-409710,, 1058 | BioShock 2 Remastered,gog,1482265668,umu-409720,, 1059 | BioShock 2 Remastered,egs,b22ce34b4ce0408c97a888554447479b,umu-409720,, 1060 | Dungeon Siege,gog,1185868626,umu-39190,, 1061 | Dungeon Siege 2,gog,1837106902,umu-39200,, 1062 | Dungeon Siege,none,none,umu-39190,,Cd Version 1063 | Dungeon Siege 2,none,none,umu-39200,,Cd Version 1064 | Redout: Enhanced Edition,egs,1be5efb848844b1dabf9d67f8017a7ae,umu-517710,, 1065 | Fallout: New Vegas Ultimate Edition,gog,1454587428,umu-22380,FNV, 1066 | Fallout: New Vegas Ultimate Edition,egs,3428aaab2c674c98b3acb789dcfaa548,umu-22380,FNV, 1067 | Kao the Kangaroo,egs,7763cb8916654651a50593a813ae7c38,umu-1370140,,Reboot from 2022. 1068 | Ys I,gog,1422440106,umu-223810,,Part of the Ys I and II Chronicles+ pack 1069 | Ys II,gog,1422440145,umu-223870,,Part of the Ys I and II Chronicles+ pack 1070 | Ghostrunner 2,egs,cc3213f280df4b428e85b771c09d1891,umu-2144740,, 1071 | Identity V,none,none,umu-identityv,,Mobile game with a PC port (mobile gameplay but native executable). 1072 | SpellForce Platinum,gog,1207658719,umu-39540,, 1073 | SpellForce 2 - Anniversary Edition,gog,1123662938,umu-39550,, 1074 | SpellForce 2 - Faith in Destiny,gog,1914219141,umu-65530,, 1075 | SpellForce 2 - Demons Of The Past,gog,1207660473,umu-245050,, 1076 | Sifu,egs,d36336f190094951873ed6138ac208d8,umu-2138710,, 1077 | [REDACTED],egs,98614687b212444c9ff0d42095f56cb3,umu-2229940,, 1078 | Are You Smarter Than A 5th Grader,egs,8052968859fb46aea7cbc381c19188d2,umu-1521160,, 1079 | Dino Crisis,gog,1661434114,umu-1661434114,, 1080 | Dino Crisis 2,gog,1597741823,umu-1597741823,, 1081 | Metro 2033 Redux,egs,petunia,umu-286690,, 1082 | Angelic☆Chaos RE-BOOT!,none,none,umu-tenshisz,, 1083 | Metro Last Light Redux,egs,speedwell,umu-287390,, 1084 | Pantheon: Rise of the Fallen,none,none,umu-pantheonrotf,,Standalone Patcher version. 1085 | Immortals of Aveum,ea,0005130,umu-2009100,, 1086 | Immortals of Aveum,ea,0005021,umu-2009100,, 1087 | Immortals of Aveum: Deluxe Edition,ea,0005131,umu-2009100,, 1088 | Immortals of Aveum: Deluxe Edition,ea,0005127,umu-2009100,, 1089 | Immortals of Aveum,egs,nepenthes,umu-2009100,, 1090 | Immortals of Aveum,humble,immortalsofaveum,umu-2009100,, 1091 | LEGO® Pirates of the Caribbean: The Video Game,gog,1976029387,umu-311770,, 1092 | UberSoldier,zoomplatform,37873c72-4ea2-405b-97d1-a33d8422258f,umu-2905090,, 1093 | PKHeX,none,none,umu-pkhex,,Pokemon Save Editor 1094 | Wuthering Waves,none,none,umu-3513350,wuwa,Standalone PC Installer. 1095 | Wuthering Waves,egs,a5faf668dbaf499c8dc2917bf1c346e5,umu-3513350,wuwa,Epic Games Store installer variant. 1096 | The Lord of the Rings Online™,none,none,umu-212500,lotro,lotro website installer variant. 1097 | DOOM (2016),gog,1390579243,umu-379720,,DRM free release of DOOM (2016) 1098 | Breath of Fire IV,gog,1587885678,umu-1587885678,bof4, 1099 | Marvel Rivals,egs,575efd0b5dd54429b035ffc8fe2d36d0,umu-2767030,, 1100 | Anno 1800,ubisoft,4553,umu-916440,, 1101 | No Man's Sky,gog,1446213994,umu-275850,nms, 1102 | Artificial Academy 2,none,none,umu-aa2,AA2,AA2Unlimited 1103 | Darksiders,gog,1430901154,umu-50620,,DRM free release of Darksiders 1104 | Darksiders,egs,2bc23fc2438c47ec8acb0641980f50c1,umu-50620,,egs release of Darksiders 1105 | Darksiders,amazon,0505db62-2dab-4ca3-be13-7a9f8a2987b8,umu-50620,,egs release of Darksiders 1106 | Chronology,gog,1207664613,umu-269330,,DRM free release of Chronology 1107 | MudRunner,egs,Bulbul,umu-675010,, 1108 | --------------------------------------------------------------------------------