Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Welcome to the LibreMatch Documentation

LibreMatch is a community-driven project that provides tools and APIs for accessing Age of Empires game data.

Quick Navigation

What is LibreMatch?

LibreMatch provides:

  • API Documentation - Comprehensive docs for various Age of Empires data sources
  • Open Source Tools - Libraries and tools for accessing game data
  • Community Resources - Guides and examples for building your own tools

Getting Help

API Reference - Constants & Enums

This page provides a quick reference for all IDs and constants used in the WorldsEdgeLink API.

Source: These values are extracted from the API responses of /community/leaderboard/GetAvailableLeaderboards and /game/automatch2/getAutomatchMap.

Leaderboards

IDNameDescription
1SOLO_DM_RANKED1v1 Death Match
2TEAM_DM_RANKEDTeam Death Match (2v2, 3v3, 4v4)
3SOLO_RM_RANKED1v1 Random Map
4TEAM_RM_RANKEDTeam Random Map (2v2, 3v3, 4v4)
5SOLO_BR_RANKEDBattle Royale (FFA)
13SOLO_EW_RANKED1v1 Empire Wars
14TEAM_EW_RANKEDTeam Empire Wars (2v2, 3v3, 4v4)

Match Types

IDNameMode
21V1Death Match
32V2Death Match
43V3Death Match
54V4Death Match
61V1Random Map
72V2Random Map
83V3Random Map
94V4Random Map
10FFABattle Royale
261V1Empire Wars
272V2Empire Wars
283V3Empire Wars
294V4Empire Wars
60CUSTOM_DM_1v1Custom Death Match 1v1
61CUSTOM_DM_TEAMCustom Death Match Team

Civilizations (Races)

IDName
0Aztecs
1Berbers
2Britons
3Bulgarians
4Burmese
5Byzantines
6Celts
7Chinese
8Cumans
9Ethiopians
10Franks
11Goths
12Huns
13Incas
14Hindustanis
15Italians
16Japanese
17Khmer
18Koreans
19Lithuanians
20Magyars
21Malay
22Malians
23Mayans
24Mongols
25Persians
26Portuguese
27Saracens
28Slavs
29Spanish
30Tatars
31Teutons
32Turks
33Vietnamese
34Vikings
35Burgundians
36Sicilians
37Poles
38Bohemians
39Bengalis
40Dravidians
41Gurjaras

Note: Civilization IDs may shift when new DLCs are released. See the Changelog for historical changes.

Leaderboard Regions

IDName
0Europe
1Middle East
2Asia
3North America
4South America
5Oceania
6Africa
7Unknown

Maps (Selection)

Common ranked maps:

IDFilenameMap Name
1AfricanClearing.rmsAfrican Clearing
2Arabia.rmsArabia
3Arena.rmsArena
4FourLakes.rmsFour Lakes
5Islands.rmsIslands
6nomad.rmsNomad
7Yucatan.rmsYucatan
14Black_Forest.rmsBlack Forest
17Fortress.rmsFortress
20Mediterranean.rmsMediterranean
23megarandom.rms2Mega Random
26Michi.rmsMichi
29Nile Delta.rmsNile Delta
36Ghost_Lake.rmsGhost Lake
37goldenpit.rms2Golden Pit
38GoldenSwamp.rmsGolden Swamp
39Kilimanjaro.rmsKilimanjaro
40valley.rms2Valley
41acropolis.rms2Acropolis
43Serengeti.rmsSerengeti

Note: Map IDs vary by match type (1v1, 2v2, etc.). The full list is available in the getAutomatchMap endpoint.

Game Titles

ValueGame
age1Age of Empires: Definitive Edition
age2Age of Empires II: Definitive Edition
age3Age of Empires III: Definitive Edition
age4Age of Empires IV

Platforms

ValuePlatform
PC_STEAMSteam
PC_WINDOWS_STOREMicrosoft Store / Xbox

Result Codes

CodeMessageDescription
0SUCCESSRequest successful
-1FAILEDGeneric failure
2INVALID_SESSIONSession expired, re-authenticate

HTTP Status Codes

CodeMeaningAction
200OKRequest successful
429Too Many RequestsRate limited - back off and retry
403ForbiddenInvalid or expired session

Rate Limits

APILimitRecommendation
Community API50 req/secSafe for most use cases
Game API~200 req/minUse 100 req/30 sec for safety

See Usage Guidelines for more details.

Getting Started

Welcome to the LibreMatch developer documentation! This section will help you get started with building applications using the Worlds Edge Link API for Age of Empires games.

What You Can Build

The Worlds Edge Link API enables you to create:

  • Lobby Browsers - Display and filter available game lobbies
  • Match Spectator Tools - View and follow ongoing games
  • Player Tracking - Monitor specific players’ activities
  • Community Tools - Custom integrations for your local gaming community
  • Statistics Dashboards - Aggregate and visualize game data

Choose Your Path

I Want to Build a Lobby Browser

Start here if you want to create a tool that displays game lobbies and matches.

Example: Building a Lobby Browser

This guide covers:

I Have Questions

Check our comprehensive FAQ for quick answers to common questions.

Frequently Asked Questions

Topics covered:

  • General API questions
  • Authentication and setup
  • API usage and filtering
  • Development tips
  • Troubleshooting

API Endpoints

Endpoint TypeAuthenticationUse CaseDocumentation
Community APINone requiredPublic lobby listingsQuick Start Guide
Game APISteam requiredOngoing matches, detailed dataAdvanced Guide

Essential Resources

Open Source Projects

LibreMatch Organization - GitHub

Before You Begin

For Basic Lobby Browsers:

  • No special requirements - just make HTTP requests!
  • Recommended: 5-second polling interval with caching

For Advanced Features (Spectating, Match Data):

  • Steam account with the game purchased
  • Node.js or similar environment for authentication
  • Understanding of Steam authentication flow

Need Help?

Contributing

Found something missing or incorrect? This documentation is community-maintained. Contributions are welcome to help fellow developers!


*Ready to start? Pick a guide above and begin building! *

Building a Lobby Browser for Age of Empires II: Definitive Edition

This guide covers how to interact with the Worlds Edge Link API to build custom lobby browsers and spectator tools for Age of Empires games.

Overview

The Worlds Edge Link API provides two main approaches for accessing lobby data:

  • Community API - Public, unauthenticated access to lobby listings
  • Game API - Authenticated access to ongoing matches and detailed game data

For simpler integration, you can also use the aoe2lobby.com WebSocket API which provides real-time updates without polling.

Quick Start: Community API

Basic Lobby Listing

For a simple lobby browser, use the community endpoint /advertisement/findAdvertisements:

GET https://aoe-api.worldsedgelink.com/community/advertisement/findAdvertisements?title=age2

Features:

  • No authentication required
  • Public lobby data only
  • Recommended polling interval: 5 seconds with client-side caching
  • No WebSocket/push notification support

This is sufficient for most lobby browsing use cases.

Advanced: Game API (Authenticated)

For accessing ongoing matches and spectator features, you’ll need to authenticate using Steam.

We provide a reference implementation written in Python that you may want to have a look at.

Prerequisites

  • Steam account with the game purchased
  • Node.js environment (examples use JavaScript)
  • ’‘steam-user’’ npm package for Steam authentication

Authentication Flow

Step 1: Create Encrypted App Ticket

const SteamUser = require('steam-user');
const client = new SteamUser();

// Login to Steam first (with your credentials)
await client.logOn({...});

// Create encrypted app ticket
const APP_ID = 813780; // AoE2:DE
const eticket = await client.createEncryptedAppTicket(
    APP_ID, 
    Buffer.from("RLINK")  // Important: Include RLINK buffer
);

// Encode for API use
const auth = encodeURIComponent(
    eticket.encryptedAppTicket.toString('base64')
);

Important Notes:

  • Always include ’‘Buffer.from(“RLINK”)’’ as the second parameter
  • Don’t spam login attempts - Steam will rate limit and require verification codes
  • The auth string must be both Base64 and URI encoded

Step 2: Platform Login

const url = `https://aoe-api.worldsedgelink.com/game/login/platformlogin?`
    + `accountType=STEAM`
    + `&activeMatchId=-1`
    + `&alias=${alias}`
    + `&appID=${APP_ID}`
    + `&auth=${auth}`  // Your encoded ticket from Step 1
    + `&callNum=0`
    + `&clientLibVersion=190`  // Update as game updates
    + `&country=US`
    + `&installationType=windows`
    + `&language=en`
    + `&macAddress=DE-AD-D0-0D-00-00`  // Can be any value
    + `&majorVersion=4.0.0`
    + `&minorVersion=0`
    + `&platformUserID=${steamID}`
    + `&timeoutOverride=0`
    + `&title=age2`;

const response = await axios.post(url);
const sessionId = response.data.sessionID; // Save this!

Key Parameters:

  • ’‘clientLibVersion’’ - Currently 190+ (changes with game updates)
  • ’‘macAddress’’ - Can be any valid format
  • ’‘auth’’ - Your encoded ticket from Step 1
  • Returns a ’‘sessionID’’ needed for subsequent requests

Getting Game Build Version

The ’‘appBinaryChecksum’’ parameter requires the current game build version. You can obtain this programmatically:

const getBuildVersion = async (appId) => {
    const rss = await fetch(
        `https://store.steampowered.com/feeds/news/app/${appId}/`
    );
    const parser = new XMLParser();
    const feed = parser.parse(await rss.text());
    
    let lastUpdateTitle = feed?.rss?.channel?.item
        ?.map(e => e.title)
        .find(e => e.match(/(update.[0-9]+)/gi));
        
    return parseInt(
        lastUpdateTitle.slice(
            lastUpdateTitle.search(/update/gi) + "update".length
        )
    );
}

Alternatively, check the bottom-left corner when launching the game.

Finding Observable Matches

Once authenticated, query ongoing games:

const url = `https://aoe-api.worldsedgelink.com/game/advertisement/findObservableAdvertisements?`
    + `appBinaryChecksum=${gameVersion}`
    + `&callNum=0`
    + `&count=50`
    + `&dataChecksum=0`
    + `&desc=1`
    + `&matchType_id=0`
    + `&modName=INVALID`
    + `&modDLLChecksum=0`
    + `&modDLLFile=INVALID`
    + `&modVersion=INVALID`
    + `&start=0`
    + `&sortOrder=1`
    + `&versionFlags=56950784`
    + `&sessionID=${sessionId}`
    + `&connect_id=${sessionId}`;

const response = await axios.get(url);

Filtering Options

By Player Profiles

&profile_ids=[123456,789012]

Filter matches to only show games with specific player profile IDs.

By Numeric Tags

&numericTagNames=["HasPassword"]
&numericTagValues=[0]

Common tags include:

  • ’‘HasPassword’’ - Filter by password-protected status
  • Other tags available but not fully documented

Response Format

Warning: The Game API returns responses in an obscured array format that is not user-friendly.

// Example response structure
[
    someMetadata,
    [  // Array of matches
        [lobbyId, platformSessionId, ...otherFields],
        [lobbyId, platformSessionId, ...otherFields],
        // etc.
    ]
]

Parsing Help:

  • Responses are positional arrays, not named objects
  • Element positions are stable across API versions
  • See this reference implementation for field mappings
  • The second element of the response contains the array of advertisements
  • Each advertisement follows the order: lobby ID, platform session ID, followed by other fields

Alternative: WebSocket API

For simpler integration, consider using the aoe2lobby.com WebSocket API:

  • Real-time updates (no polling needed)
  • Clean, documented data format
  • Provides schema information on connection
  • Free to use for community projects
  • Live for 8+ months with proven reliability

Connection

WebSocket URL: ``` wss://data.aoe2lobby.com/ws/

The API supports subscribing to different data feeds by sending JSON subscription messages.

### Subscription Examples
**Subscribe to spectate matches:**
```json

{"action":"subscribe","type":"matches","context":"spectate"}

Subscribe to lobby matches:

{ "action": "subscribe", "type": "matches", "context": "lobby" }

Subscribe to specific Elo types:

{
    "action": "subscribe",
    "type": "elotypes",
    "context": "lobby",
    "ids": ["1223", "3", "4"]
}

Subscribe to specific players:

{
    "action": "subscribe",
    "type": "players",
    "context": "lobby",
    "ids": ["3920944"]
}

Player status updates include current status, match ID, and Steam lobby ID:

{
    "player_status": {
        "19501096": {
            "status": "lobby",
            "matchid": "412015195",
            "steam_lobbyid": "109775244730862406"
        }
    }
}

Resources

Best Practices

Read the Age of Empires API Usage Guidelines!

Rate Limiting

  • Server implements rate limiting - don’t spam requests
  • Use reasonable polling intervals (5+ seconds)
  • Cache results when possible
  • Consider batch operations for multiple profile lookups

Version Management

  • ’‘clientLibVersion’’ changes with game updates
  • Can be found by inspecting network traffic with Wireshark
  • Hardcoded in the game binary/PE file
  • Current version as of late 2024: 190+

Authentication

  • Session IDs persist for some time
  • Avoid repeated Steam logins (triggers verification)
  • Use a dedicated Steam account for service authentication
  • Consider running auth service separately from main app

Additional Resources

Documentation & Projects

Community Support

  • AOE API developer channels
  • Libre:Match Discord
  • Various open source projects with working examples

Contributing

This documentation is community-maintained. If you discover new endpoints, parameters, or corrections, please contribute back to help other developers!


*Last updated: December 2025 *

*Based on community research and shared knowledge *

FAQ

FAQ

General Questions

Q: Is there a WebSocket API instead of polling?

A: The official Worlds Edge Link API does not provide WebSocket/push notifications. You must poll the endpoints. However, third-party services like aoe2lobby.com offer WebSocket APIs that aggregate this data. Some developers have proposed creating a service that polls and converts to push notifications.


Q: Should I use an existing lobby browser?

A: If you just need basic functionality, existing browsers work well. However, building your own is worthwhile for:

  • Custom features for specific communities
  • Localization and personalization
  • Learning and hobby projects
  • Integration with other tools

Q: Do I need authentication for a basic lobby browser?

A: No! The [GET] /community/advertisement/findAdvertisements endpoint on the Community API provides public lobby data without authentication. Authentication is only needed for:

  • Viewing ongoing ranked games
  • Spectator features
  • Detailed match information
  • Player-specific filtering

Authentication & Setup

Q: Steam blocked me from logging in, what do I do?

A: Too many login attempts trigger Steam’s security. Wait some time and it will unblock automatically. To avoid this:

  • Don’t spam login attempts while testing
  • Cache your session ID and reuse it
  • Use a dedicated account for your service
  • Implement proper retry logic with backoff

Q: Why do I need Buffer.from(“RLINK”)?

A: This is a required parameter for the encrypted app ticket to work with the Worlds Edge Link API. The ticket must be created specifically for RLINK authentication, not just for the game itself.


Q: How do I find the current clientLibVersion?

A: Several methods:

  • Use Wireshark to capture game network traffic
  • Search the game binary/PE file (hardcoded)
  • Check community resources (currently 190+)
  • Parse Steam RSS feeds for update announcements

Note: This value changes with game updates, so plan for updates.


Q: Where do I get the game build version (appBinaryChecksum)?

A: Three options:

  • Bottom-left corner when launching the game
  • Parse Steam RSS feeds programmatically (see code example above)
  • Check community resources after updates

API Usage

Q: Why are the API responses such a horrible structure?

A: The Game API uses an internal format that returns positional arrays instead of named JSON objects. This is how the game client expects data. The Community API returns cleaner JSON. For Game API responses:

  • Positions are stable (consistent across versions)
  • Use reference implementations to understand field mappings
  • Consider using third-party APIs for cleaner data

Q: Can I filter results to specific players?

A: Yes! Although not officially documented:

  • Use ’‘profile_ids=[id1,id2]’’ parameter
  • Use ’‘numericTagNames’’ and ’‘numericTagValues’’ for other filters
  • Filtering happens server-side for profile IDs
  • Some filtering (like game type) happens client-side in the official game

Q: Are there rate limits?

A: Yes, the server implements rate limiting. Best practices:

  • Poll at reasonable intervals (5+ seconds)
  • Implement client-side caching
  • Batch requests when possible
  • Monitor for rate limit responses

Q: Can I show ongoing ranked games?

A: Yes, but it requires the authenticated Game API for the [GET/POST] /game/advertisement/findObservableAdvertisements endpoint. The Community API only shows lobbies waiting for players, not matches in progress.


Development

Q: What should I use for macAddress?

A: You can use any valid MAC address format (e.g., ’‘DE-AD-D0-0D-00-00’’). The API doesn’t validate this strictly.


Q: Is there example code I can reference?

A: Yes! Check these open source projects:

  • ageLANServer (Go) - Complete server implementation with model definitions
  • Various community tools on GitHub
  • Code snippets shared in developer communities

Q: Is it legal to use these APIs?

A: The Community API is public and intended for community use. For the authenticated Game API:

  • Read the Age of Empires API Usage Guidelines
  • You must own the game on Steam
  • Don’t abuse the API or spam requests
  • Don’t create malicious tools (fake lobbies, spam, etc.)
  • Respect rate limits and terms of service

Q: Should I use aoe2lobby.com’s API instead?

A: Consider it if you want:

  • Real-time WebSocket updates (no polling)
  • Cleaner data format
  • Less maintenance (they handle game updates)
  • Quick integration

Build your own if you need:

  • Complete control over data and features
  • Custom filtering or processing
  • Independence from third-party services
  • Learning experience

Troubleshooting

Q: I’m not getting a session ID, what’s wrong?

A: Common issues:

  • Missing ’‘Buffer.from(“RLINK”)’’ in ticket creation
  • Incorrect Base64 and URI encoding of the auth parameter (the encoding must be combination of encodeURI(base64(encoding)))
  • Outdated ’‘clientLibVersion’’
  • Invalid or expired Steam ticket
  • Check all required parameters are present

Q: How do I parse the array response?

A: The response structure is:

  • First element: metadata
  • Second element: array of matches
  • Each match: array starting with [lobbyId, platformSessionId, …]

See the ageLANServer repository for complete field mappings in the ’‘advertisement.go’’ model.


Q: Do I need a separate authentication service?

A: It’s recommended to separate authentication from your main app:

  • Keeps Steam credentials isolated
  • Can run on a dedicated account
  • Easier to manage session refresh logic
  • Can serve multiple clients

Contributing

This documentation is community-maintained. If you discover new endpoints, parameters, or corrections, please contribute back to help other developers!


*Last updated: December 2025 *

*Based on community research and shared knowledge *

LibreMatch Project

LibreMatch is a community-driven project providing tools and APIs for accessing Age of Empires game data.

Documentation Sections

Data Sources

Design Documentation

Architecture and design documents for LibreMatch components:

Project Planning

  • Roadmap - Project roadmap and milestones

Open Source Repositories

Roadmap

  1. PoC Script
    1. play a bit around with it how to get data from different endpoints
    2. adopt it to any changes on the API and the different endpoints
    3. create test script out of it that tests the availability of different endpoints, which parameters are optional and saves the responses together with the requests for easier OpenAPI file generation
    4. analyse the responses and map them to fields and document it
  2. Data collection & Database
    1. based on our findings from the PoC Script we can start thinking about database layout and implement a tool for data collection
    2. we should divide our effort into a smaller working group that starts with thinking about a possible architecture
    3. i think it makes sense to automate as much as possible, e.g. logging the endpoints/requests the games use together with the responses, automatically create an openapi file from it, generate a client from it for the data collector and pull in this generated client as a library for the data collector itself, so it’s easier to update
    4. sufficient error handling will be pretty important here as the API is relatively instable and as you might see from the initial response, it’s basically one huge JSON array with only the values, sometimes completely empty arrays at positions, the order of these things might also changes by chance without any warning
  3. Backend
    1. in parallel we can draft a possible backend solution
    2. for most information a basic REST-API will be sufficient, but for other things Pub/Sub and Websockets will be nice (e.g. subscribing to the matches of a player and get updates in real-time)
    3. also it would be nice to have a login endpoint for e.g. tournament organizers, so they can hide the results of matches of certain relic-link ids for a limited amount of time to avoid spoilers
  4. Frontend(s)
    1. imho frontends should be not part of the work of this group
    2. frontends can be implemented by anyone that likes to use our backend
    3. we can ask someone or maybe we know already some people that can create nice ones and cooperate with these people closely
    4. like this we divide our effort and fix on the purpose of having a stable API for the community while other people are able to concentrate on their frontend efforts

Data Sources

This section documents all available data sources that LibreMatch uses to collect Age of Empires game data.

The primary source for game data is the WorldsEdgeLink API.

Endpoints

APIAuthenticationDescription
Community APINonePublic lobby listings, leaderboards, achievements. Most data should be fetched from here.
Game APISteam requiredOngoing matches, detailed data. Use sparingly for essential features only.

Other Data Sources

Miscellaneous

API Changelog

This section tracks changes to the WorldsEdgeLink API, particularly those that affect ID mappings.

Mapping Versions

VersionDescriptionDate
1Pre-Return of RomeBefore 2023-05
2Return of Rome DLC2023-05-13
3June Cumulative Update2023-06
4Mountain Royals DLC2023-10-31
5Current mappings2024-04-30+

Breaking Changes

When new civilizations are added via DLC, civilization IDs often shift. Always use the Constants & Enums Reference for current values.

Change History

2023-04-30: AoE2DE EW changes

Copied from ~Jp (World’s Edge Server Engineer):

The AoE2 Empire Wars 1v1 ladder will temporarily be replaced by a new ladder for seeding the RBW tournament.

The new match type IDs will be 122 (crossplay/cross-input) and 123 (console).

The leaderboard IDs, respectively, will be 27 and 28.

We’ll be monitoring the top 100 there more closely for cheating / manipulation.

If you notice someone cheating or manipulating their position, please do let us know so we can take action, as well as improving our detection methods.

Attached you’ll find the new mappings.

Mappings

The values contain the following mappings:

  • Version 1 is pre-RoR.

  • Version 2 is RoR.

  • Version 3 is the June CU.

  • Version 4 went live on 2023-10-31.

  • Version 5 are the values from 2024-04-30 onwards.

Civ IDs

  • I updated civ mappings to use -1 as a missing entry, instead of “-1”.

2023-05-13: AoE2DE RoR DLC changes

Copied from ~Jp (World’s Edge Server Engineer):

Hey everyone!

With RoR we’re making some changes that affect the APIs regarding lobbies, spectating and match history. The changes are mainly pertaining to the options string, civ IDs, match type IDs and map IDs.

I’ve decided to make a mapping to allow you to more easily update your resources. This mapping is constructed in the following way:

<Mapping Type>.json
{
  "Object Name": {
    "1": <ID in Dynasties of India>,
    "2": <ID in RoR>,
    "3+": <Reserved for future updates>
  },
<More Objects>
}

Mappings

Civ IDs

  • We’ve added the Romans before Saracens and incremented all Civ IDs of Saracens and above by 1.

Map IDs

  • Map IDs now map to loc string IDs, rather than an enum.
  • Some maps do not have loc string IDs yet and will appear as -2. (This is a known issue we are working on.)

Options String

  • We’ve removed key 2, leading to all keys being decremented by one.
  • We’ve also added a new option, 97, which will distinguish, in custom lobbies, whether people are playing RoR or AoE2.97: 1 means RoR, 97: 2 means AoE2.

Match Type IDs

  • We’ve added match type IDs 120 and 121, which are ranked RoR 1v1 and Team respectively.

2023-10-23: AoE2DE Mountain Royals DLC changes

Breaking Changes

With Armenians and Georgians added, all civilization IDs shifted.

Copied from ~Jp (World’s Edge Server Engineer):

Hey @everyone,

Here are the new mappings that will be going live with The Mountain Royals DLC.

Mappings

Recap

Here is a recap of what has changed and what hasn’t since the release of the Return of Rome DLC:

  • The Options string and Match Types have not changed.

  • Mapping #3 is the mapping for the June CU up until now.

  • It has the fixed map IDs in it (-2 -> fixed map ID).

  • Mapping #4 is the mapping for the current PUP and will be going live on the 31st with The Mountain Royals DLC.

  • This has the updated civilization IDs in it.

Design Documentation

Architecture and design documents for LibreMatch components.

Components

Architecture (Overview)

Example (Bright Sky)

Bright Sky pulls weather data from DWD and implements a JSON-API on top of it for its users. Their architecture looks like on the image on the right side. It’s some kind of the same what we also want to achieve.

This is taken from the Official repository:

  • The brightsky worker, which leverages the logic contained in the brightsky Python package to retrieve weather records from the DWD server, parse them, and store them in a database. It will periodically poll the DWD servers for new data.
  • The brightsky web server (API), which serves as gate to our database and processes all queries for weather records coming from the outside world.
  • A PostgreSQL database consisting of two relevant tables:
  1. sources contains information on the locations for which we hold weather records, and
  2. weather contains the history of actual meteorological measurements (or forecasts) for these locations.
  • A Redis server, which is used as the backend of the worker’s task queue.

LibreMatch

Basically, we should poll the Relic Link API endpoints for all data every so many seconds (this time is our minimum latency for our whole system). So the time frame in which we see certain information (Match infos, wins of games) and could deliver information to our API.

Then we parse the results into a data structure of ourselves to make error handling easier and also deal with types of data and not handle everything as a huge JSON-Array that is being exposed by the Relic Link API. This data we send to the database, which is our persistence layer. From our persistence layer, we are able to request data for our endpoints that we expose to the users. Some endpoints may require a Pub/Sub API (e.g. live updates for match information), some are fine with the usual REST-API approach.

Backend

Backend services design documentation.

Contents

Requirements

User Stories

Some things may be out of scope, we can still collect them here, to have an overview and include some of them in the design process.

User stands for the user of the LibreMatch API.

As a/anI want to…So that..
userhave a stable APII can rely on it
userrequest win data of the gamesI can easily determine the outcome of a match
statisticianrequest database dumps for a time periodI can easily analyse a big amount of data without firing thousands of requests
authenticated tournament organizerdelay matches showing up for a limited amount of timeI can take care that people are not being spoiled
userbe able to get live updates about ongoing gamesI can update my e.g. overlay immediately when a match starts
userbe able to log in with my Steam accountI can create lobbies from outside the game
userbe able to query for matches of a player since a timestampI can update a list of matches of a certain user more easily
userbe able to quickly start using the APII am not spending much time reading the documentation or spend time implementing a client to use it
userbe able to get all matches by a player from different games at onceI don’t need to make several requests
userbe notified of match state updates of all matches or a subsetI don’t have to keep polling for updates and deriving state updates myself
userget notified when changes are made to a lobbyI can update my lobby tables and reduce the amount of requests
recorded matches analyserget notified when a new replay becomes available (e.g. in a leaderboard/from a player)I can download and parse it in a timely fashion
userembed a player report function in my pagepeople can report suspicious activity (e.g. spoofing) to the official franchise
userbe flexible in the usage of the APII can take different approaches to find solutions to my problems
usernot over boarded with complexity to use the APII can start out right away without reading much documentation (reasonable defaults)
userbe able to query match history for a player by either steam ID or another unique IDcan use the information for calculating statistics, building user facing APIs (eg. !match), build more complicated applications on top of the API
userbe able to query information on open/ongoing lobbiescan use the information for creating rich presence plugins
userbe able to query commonly used api strings (for maps, civs, etc.)can map enum values for maps, civs that are returned by the usual API to names (the api could provide multiple localisations depending on a parameter)
userbe able to access typescript type interfaces for api responsescan easily incorporate the API in typescript applications
userbe able to query the data of a match that is being cast by a castercan use it creating a bot to easily modify a casters’ stream title with one-click
userbe able to query the data of a match that is being cast by a castercan compile a list of matches cast by a caster during one stream

Authentication

Sometimes resources will need authorization to be accessed by privileged community members. Such members could be tournament organizers and admins that want to set up a schedule within the backend to delay the access to certain player information for a limited amount of time. This could be needed during tournaments, so people aren’t able to find out results of matches before they are officially concluded (e.g. in case of casting recorded games) and spoil other people with the results.

The Relic Link ID aka RLINK_ID is a unique identifier for every player on the Relic Link platform, no matter if the person bought a game on Steam or Microsoft Store.

Authentication for a player on the Steam platform could be achieved by utilizing web browser based authentication with Steam OpenID.

OpenAPI

Documentation Generation

FastAPI will take care of generating the documentation page. We can choose from different UIs:

  1. ** ReDoc **
    with a CLI that lints our OpenAPI spec
  2. ** SwaggerUI **

ReDoc has premium services and we need to check if although it looks more beautiful it’s worth to opt in to their free stage or if SwaggerUI is enough.

API first principle

We follow the API first principle. Meaning that we define our API first, before generating the backend stub and coding its implementation.

Our OpenAPI spec acts like a single source of truth (SSOT). Test cases are generated from the OpenAPI spec and the backend implementation needs to adhere to them.

Our design follows a few different design guidelines:

  1. Zalando RESTful API Guidelines
  2. Microsoft API Design Best Practices
  3. Web API Checklist by Mathieu Fenniak

Deviations from Guidelines

  1. We don’t use kebab case and snake case instead as the dash can easily introduce bugs as it can be interpreted as a minus sign.
  2. We might want to use CalVer (Read github notes)

Assigning Scopes

https://opensource.zalando.com/restful-api-guidelines/#105

Pub/Sub-API

Some information for players might want to be constantly queried by the users of our API, for example match information. This information we should supply via an endpoint that can be subscribed to and communicates via a Websocket.

Collector

Data collection service for fetching game data from APIs.

Contents

Polling

The polling stage checks for updated data frequently. huey as a task scheduler/queue takes over triggering our polling jobs. Data queried from the authenticated endpoints get a separate job. These endpoints need special treatment, as in only query what’s essential.

Parsing

The parsing stages does the decoding/decompression, normalization and prioritization.

  • decoding/decompression
    Some data, especially in ‘slotinfo’, is base64 encoded and further compressed with zlib.

  • normalization
    The data format is ‘json-like’, but only contains arrays. Probably for bandwidth reasons.
    We need to transfer the data in our own schema.

  • prioritization
    Some data is the foundation for real-time information that we deliver to users of our API (state changes of lobbies, e.g. ongoing matches, and leaderboard rankings).
    This data should fill ‘sorted sets’ or the Pub/Sub-Message bus from Redis.

  • conversion
    For the localization data, we need to query data from the Relic Link API and convert it to the FTL (Fluent Translation) file format.

Queue

Matchmaking

Idea

  • Together with ncZone Eru and others
  • Role model maybe https://w3champions.com/
  • queue up on a website or with a discord bot command like !queue 1v1 DM Arabia
  • implement a platform-agnostic matchmaking basically
  • own custom rating (based on glicko2, probably)
  • own ladder system

Architecture

  • Client-Server (non-monolithic/microservices)(?)

Frontend

  • Basically: Frontend <—> REST-API (CRUD) <—> Matchmaking Library

Backend

Registration with aoe2-Profile-ID
  • e.g. !register <aoe2 profile id> – register the given account with the discord name
  • then you are asked by Direct Message to create a lobby with special randomly generated settings
  • the created lobby and the options are then checked by the bot and the mapping to the account is done internally
  • good thing is that the register endpoint can theoretically be queried from the outside with all kinds of stuff (should be platform-agnostic, whether it’s from openage or from voobly, from a discord bot, a web-app or anything else)

Persistence

  • basic PG stuff I guess for the user information
  • maybe a fast in-memory database for anything temporary that is only needed during the actual matchmaking process

UX

  • if it is less likely that you will find a match in the next 2-3 minutes, it will recommend you better settings to find a faster match
  • people should see how many players queue in the different settings
  • they should be free to queue at a setting they chose to find a match
  1. they should be able to play what they want
  2. if there are no players in that settings, we give feedback and recommend them settings how they would find a faster match
  3. like having dynamically pop up an Arabia 1v1 queue because there are like 25 people queuing right now
    1. could click on it and jump into the queue
    2. if there is another queue for Socotra, and you have Socotra in your settings as a “beloved map”,
      • and there are 7 people in it, you could feel free to pull that into your personal queue as well and check if one or both queues gives you a game and so on

Recorded games upload and analysation

  • could even reward special plays analysed from the recorded game
  1. we might want to reimplement/contribute to a recorded game parser in Rust ( https://github.com/SiegeEngineers/genie-rs/tree/default/crates/genie-rec )
  • could get the recorded games from official API

Requirements

User Stories

Some things may be out of scope, we can still collect them here, to have an overview and include some of them in the design process.

User stands for the user of the LibreMatch Matchmaking API.

As a/anI want to…So that..

Flow

Before the game

  • Persons can register for the matchmaking, becoming Users of our service
  • Users can connect their aoe2-profile with their account
  • Users can adjust their personal preferences regarding maps, ladders etc. in the settings.
  • Users can queue up for their settings or join a queue they see are the most people in, other recommendations
  • Users get informed of their match in their client with a pop-up, switching to the settings of the match
  • A Host is being decided randomly of all participating players.
  • Else, Users can set their preference in the settings if they like to be hosted more often.
  • Hosts create the game lobbies (until, we haven’t found a way to automate that)
  • Lobby settings get verified as much as possible via aoe2.net matches API endpoint
  • Match starts

After the game

  • get basic game information/result from aoe2.net
  • download, parse and analyse recorded games
  • use results if recs are unavailable
  1. results when both players pick no team still show both winning, so recs would be best (aoe2.net)
  • create rating change
  1. with the recs analysation, we could even calculate a more precise rating change depending on how the game played out
  2. like a player that was dead in minute 13 and just stayed in the game until 1h25 because the person had a vill hidden in the corner should probably not get so much rating change as someone that was carrying all the people the whole game (just as an idea)

Rating

  • Glicko2
  • Discussion: different Ratings and influence on Matchmaking?
  1. 1vs1 Rating (RM/DM/EW), TG-Rating (RM/DM/EW), Arabia Rating?
  2. or rather just a 1v1 and TG-Rating?
  3. another possibility:
    1. open/closed/hybrid-rating
    2. three categories weighted
    3. hybrid: megarandom, water, other ame modes
    4. open could be arabia
    5. closed something like black forest, arena, michi
    6. if someone doesn’t care and wants to play open: !queue open 1v1,2v2
  4. pair Rating systems:
    1. someone who is super strong on Arabia should be also usable on Black Forest
    2. Similarly, islands, whoever can do Archer Micro won’t go down completely.
    3. If you consider them completely separately, you also run the risk that a player has too few games on individual ladders for decisive ratings.
    4. it’s like core rating + open rating and both have to adjust a bit after one game.
    5. or core rating + open rating + 1v1 Rating e.g. and then you can even weight them
    6. something like core rating counts 50% of the overall rating, open rating 20%, 1v1 rating 30%
    7. core rating can be also including the starting rating from another ladder/from another rating system with a factor to include it into the core rating for migrating from other platforms (something like this is existing already on ncZone)

AoE2DE currently does it like that.

Lobbies

Lobby creation (hacky)

  • Problem: How can we create custom lobbies in an automated way from outside the game? And who does it? How to make that as easy as possible?
  • this might be a bit reverse engineering and an external tool, but I assume not impossible (other ideas how to interface with the game are welcome)
  1. this GPLv3-fork of the AoE2DE SDK (C++) might be helpful?
  2. or a custom python script that reads the game?
  3. autohotkey script?
  4. check if possible: what about reversing the API endpoint on their backend and sending a request for opening a lobby in the name of any user that matched?
  5. can the user itself join via a link?
  6. is the lobby kept open automatically? or do we need to simulate some user activity in the lobby until everyone joined?
  • theoretically could be done later if the UX is nice and easy also without
  • lobby id once created should be distributed to the participants as a direct link aoe2de:\/\/0/89697553 people can just click

Drafting

Drawing civs and maps

  • like nc Zone
  • could be a feature which is supported like the random thing on DE if people opt-in to that
  • should be relatively easily possible
  • can be combined with the game analysation and we could get some player data, like how good is a player with a certain civ, is he drushing often etc. we could create teams based on the actual game skills players have
  • have an archer player and a cav player in each team, someone that usually drushes etc.

Ladders

Alternative Ladders

  • own ladder for everything we want
  • DM ladder, CBA ladder, Arena ladder, Arabia ladder
  • open and closed maps or even for a single frequently played map
  • arabia rank would get possible for example with special seeding for arabia only tournaments etc.

Persistence

Data storage and caching layer.

Contents

Controller

Cache

Redis

Database

Postgres

Extensions

  1. visualise long-running requests and DB load we should use some statistics extension for Postgres

Database migration

We version control our database schema with a lightweight, framework-agnostic database migration tool called dbmate.

The database schema and migrations are open-source and can be found here. This repository acts like a single source of truth (SSOT) for the DB schema.

Partitioning

Replication

Notes

  • https://sqlfordevs.com/multiple-aggregates-in-one-query

Proxy

Information

The proxy forwards our requests and takes over authentication.

For the authenticated endpoints we should keep in mind:

  • use a separate Steam account (or maybe even this Xbox stuff with a subscription for all 4 games for that (cheaper?))
  • generally limit our access to the auth endpoints to a minimum (only what is really needed)
  1. even rate-limit our requests
  • mimic in-game requests as close as possible

We will need a running instance of a Steam Client for each game. To circumvent limitations (as only holding one login to steam per account on a certain moment in time is needed) we use a proxy to forward our requests on behalf of a certain session.

Usage

Base URL: https://rlink.api.tools.uber.space/relic

You need to get an API_KEY for the proxy from the team members.

Then you can make calls to the proxy e.g. for endpoint /game/news/getNews call:

https://proxy.api.tools.uber.space/relic/game/news/getNews

You need to supply a header with the API_KEY e.g. API_KEY=...

All query parameters that you add to the request will be forwarded to the Relic Link API on your behalf.

Insomnia

Insomnia is a API design platform.

We have created some to use with their client.

Flowcharts

Startup

Authentication & Sessions

Steam Client

Relic Session

Update Session loop

Forwarding Requests & Responses

Statistics

Statistics and analytics documentation.

Teams

Team management documentation.

Tournaments


Design

Requirements

User Stories

Some things may be out of scope, we can still collect them here, to have an overview and include some of them in the design process.

User stands for the user of the LibreMatch Tournament API.

Admin stands for a verified and authenticated user (e.g. tournament organizer) of the LibreMatch Tournament API that is therefore eligible and authorised to use CRUD on some resources.

As a/anI want to…So that..
userhave a stable APII can rely on it
userrequest win data of the gamesI can easily determine the outcome of a tournament match
admindelay matches showing up for a limited amount of timeI can take care that people are not being spoiled

Additional Tooling

Architecture

Notes

  • https://help.start.gg/en/articles/1465676-rest-api-access-legacy-old
  1. https://api.smash.gg/tournament/rising-empires-weeklies-10
  • Seeding Ideas
  1. https://web.archive.org/web/20221130121235/https://www.aoezone.net/threads/simulated-ladder-seeding.185565/

Localization

To have our responses in different languages, we want to use Project Fluent (Python) as a framework in the backend.

This would imply, that we convert the official translations into ftl files.

l10n/
  de/
    main.ftl
  en-US/
    main.ftl

The conversion could be done in the Collector and then our Persistence Controller writes the data to our file system. For reading, writing and transforming Fluent files, there is the Fluent Syntax library.

Python Fluent code would look like this:

# initialize the loader with the locales
from fluent.runtime import FluentLocalization, FluentResourceLoader
loader = FluentResourceLoader("l10n/{locale}")

# we would pull all localisations in here and have one huge object in memory
l10n = FluentLocalization(["de", "en-US"], ["main.ftl"], loader) 

# then we can query our localisations like this
val = l10n.format_value("my-first-string")
"Fluent can be easy"

Advantages

  • contributions to localisation made easy
  • extra effort, due to versioning in another repository
  • has implementations for different programming languages
  1. JavaScript
  2. Python
  3. Rust

Disadvantages

  • file system storage
  • probably versioning in another repository needed
  • another dependency

WorldsEdgeLink API

Age of Empires API Usage Guidelines

Please check the following Age of Empires API Usage Guidelines before you design or implement anything.

API Root

https://aoe-api.worldsedgelink.com/

Endpoints

  • Community API - Public, unauthenticated endpoints
  • Game API - Authenticated endpoints requiring Steam login

Recorded games

https://aoe.ms/replay/?gameId=<game_id>&profileId=<profile_id>

Example request

parametertypevaluecomments
gameIdint64156900198
profileIdint642858362

Where <profile_id> is the perspective of the recorded game. Basically from which client it was uploaded. Matters for view lock.

Authentication

Check our Authentication Helper

General Notes

Some stuff is zlib-compressed. E.g. inside slotinfo there’s a metaData field that seems to be a two-pass base64 string holding binary data.

Example

Heres an example from the slotinfo property:

$ echo 'eNrVkF1PwjAUhv0tvR6GMjYniTeDVWfcgLJ2gvGibl0o3QduEyHG/y6dgUiMF8YLs6uevufknCcP7GkPb2BdFolIuZsnxbmIwcCyTN0yLzVQ1awWRe6OwABqoOYsU2VXAwmLDo39r2QRP5a5vOMbnh5/HqujZbBbNxMdtUZkfMJLVLKMe7NmTlSYs3jXXFE3X6omznjNRqxmYABceWtjguwpQf1pGKvXCe6XNmkybM+6TW+MHQkDiUtPGuYsoGMiocqHFMkdzekidNav8xUaRjCdP11vV6y3haGMQ9/x8/2cjREyAoixT4znuZ5OKKJI5VO6uKHZUhBC1T7bE+4VeNe+u+vAE22dL97giTfVOYj7rP9krvuTud9S9lpBqbeCst8KSqMVlGYrKC/+ifLx7APyMc1P' | base64 -d | zlib-flate -uncompress

12,[{"profileInfo.id":8863869,"stationID":1,"teamID":0,"factionID":0,"raceID":0,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":1,"status":0,"metaData":"IkJBRUFBQUF4QWdBQUFETXhBUUFBQURBS0FBQUFOREk1TkRrMk56STVOUk1BQUFCVFkyVnVZWEpwYjFCc1lYbGxja2x1WkdWNENnQUFBRFF5T1RRNU5qY3lPVFVFQUFBQVZHVmhiUUVBQUFBMiI="},{"profileInfo.id":-1,"stationID":-1,"teamID":1,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""},{"profileInfo.id":-1,"stationID":-1,"teamID":2,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""},{"profileInfo.id":-1,"stationID":-1,"teamID":3,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""},{"profileInfo.id":-1,"stationID":-1,"teamID":4,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""},{"profileInfo.id":-1,"stationID":-1,"teamID":5,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""},{"profileInfo.id":-1,"stationID":-1,"teamID":6,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""},{"profileInfo.id":-1,"stationID":-1,"teamID":7,"factionID":-1,"raceID":-1,"rankLevel":0,"rankMatchTypeID":-1,"timePerFrameMS":0,"isReady":0,"status":0,"metaData":""}]

There are also options that use b64(zlib(b64(data))).

Usage Guidelines

Age of Empires API Usage Guidelines

Rate Limits and Access Patterns

  1. The game API has rate limits of approximately 200 requests per minute
  2. Rate limit violations trigger a 429 HTTP error
  3. Recommended configuration: Implement a throttler at 100 requests per 30 seconds for safety

Safe to access:

  1. Ongoing games
  2. Match histories
  3. Leaderboards

Optimization Strategy

Use a dual-API approach:

  1. Game API
    • Primary use: Fetching ongoing observable games
    • Expected usage: 10-15 requests per minute
  2. Community API
    • Use for match histories and leaderboards
    • Benefits from higher rate limits
    • Reduces load on main game API

Actions to Avoid

  1. Accessing chat channels
  2. Accessing presence-related features
  3. Making POST requests
  4. Creating lobbies via API
  5. Any other write operations

Error Handling

Implement logging for rate limit errors (HTTP 429) to monitor API usage patterns

Community API

The Community API provides public, unauthenticated access to Age of Empires game data.

Base URL: https://aoe-api.worldsedgelink.com/community/

Rate Limits

The rate limit for requests to the Community API is 50 requests per second.

OpenAPI Specification

The OpenAPI spec for the /community endpoints can be found at librematch-rlink_client.

Endpoints

Lobby and game listings.

Achievement

Player achievements.

Clan

Clan information.

Community Event

Community events and challenges.

External

External service integrations.

Item

In-game items and inventory.

Leaderboard

Player rankings and statistics.

News

Game news and announcements.

Achievement Endpoints (Community)

Public endpoints for querying player achievements without authentication.

Note: These are unauthenticated public endpoints. For authenticated achievement operations, see /game/achievement.

Endpoints

EndpointMethodDescription
getAchievementsGETGet unlocked achievements for a player
getAvailableAchievementsGETGet all available achievements

[GET] /community/achievement/getAchievements

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profileidsarr[int][196240]

Response

AoE2:DE

{
    "result": {
        "code": 0,
        "message": "SUCCESS"
    },
    "userAchievementsMap": [
        {
            "196240": [
                {
                    "achievement_id": 83,
                    "achieveddate": 1589903767
                },
                {
                    "achievement_id": 109,
                    "achieveddate": 1604004966
                },
                {
                    "achievement_id": 44,
                    "achieveddate": 1604333155
                },
                {
                    "achievement_id": 136,
                    "achieveddate": 1604679159
                },
                {
                    "achievement_id": 128,
                    "achieveddate": 1608661935
                },
                {
                    "achievement_id": 142,
                    "achieveddate": 1611755922
                },
                {
                    "achievement_id": 143,
                    "achieveddate": 1611855029
                },
                {
                    "achievement_id": 144,
                    "achieveddate": 1612122594
                },
                {
                    "achievement_id": 139,
                    "achieveddate": 1612123236
                },
                {
                    "achievement_id": 140,
                    "achieveddate": 1614355800
                },
                {
                    "achievement_id": 148,
                    "achieveddate": 1615119718
                },
                {
                    "achievement_id": 149,
                    "achieveddate": 1615121997
                },
                {
                    "achievement_id": 141,
                    "achieveddate": 1617733467
                },
                {
                    "achievement_id": 133,
                    "achieveddate": 1626186501
                },
                {
                    "achievement_id": 134,
                    "achieveddate": 1626186706
                },
                {
                    "achievement_id": 12,
                    "achieveddate": 1626187672
                },
                {
                    "achievement_id": 45,
                    "achieveddate": 1626187673
                },
                {
                    "achievement_id": 129,
                    "achieveddate": 1626187674
                },
                {
                    "achievement_id": 131,
                    "achieveddate": 1626187733
                },
                {
                    "achievement_id": 115,
                    "achieveddate": 1626188152
                },
                {
                    "achievement_id": 112,
                    "achieveddate": 1626192383
                },
                {
                    "achievement_id": 119,
                    "achieveddate": 1626192638
                },
                {
                    "achievement_id": 15,
                    "achieveddate": 1626633993
                },
                {
                    "achievement_id": 29,
                    "achieveddate": 1626635965
                },
                {
                    "achievement_id": 127,
                    "achieveddate": 1626636927
                },
                {
                    "achievement_id": 31,
                    "achieveddate": 1626637032
                },
                {
                    "achievement_id": 33,
                    "achieveddate": 1626638896
                },
                {
                    "achievement_id": 18,
                    "achieveddate": 1626639657
                },
                {
                    "achievement_id": 23,
                    "achieveddate": 1626641109
                },
                {
                    "achievement_id": 48,
                    "achieveddate": 1626642476
                },
                {
                    "achievement_id": 117,
                    "achieveddate": 1626642476
                },
                {
                    "achievement_id": 19,
                    "achieveddate": 1626642851
                },
                {
                    "achievement_id": 21,
                    "achieveddate": 1626644123
                },
                {
                    "achievement_id": 132,
                    "achieveddate": 1628613360
                },
                {
                    "achievement_id": 170,
                    "achieveddate": 1628614147
                },
                {
                    "achievement_id": 46,
                    "achieveddate": 1628619993
                },
                {
                    "achievement_id": 156,
                    "achieveddate": 1628620589
                },
                {
                    "achievement_id": 157,
                    "achieveddate": 1628869582
                },
                {
                    "achievement_id": 168,
                    "achieveddate": 1628873000
                },
                {
                    "achievement_id": 152,
                    "achieveddate": 1628878560
                },
                {
                    "achievement_id": 17,
                    "achieveddate": 1629303481
                },
                {
                    "achievement_id": 113,
                    "achieveddate": 1629305874
                },
                {
                    "achievement_id": 22,
                    "achieveddate": 1629305907
                },
                {
                    "achievement_id": 5,
                    "achieveddate": 1629307654
                },
                {
                    "achievement_id": 4,
                    "achieveddate": 1629368805
                },
                {
                    "achievement_id": 10,
                    "achieveddate": 1629374144
                },
                {
                    "achievement_id": 35,
                    "achieveddate": 1629375500
                },
                {
                    "achievement_id": 3,
                    "achieveddate": 1629376982
                },
                {
                    "achievement_id": 42,
                    "achieveddate": 1629477458
                },
                {
                    "achievement_id": 27,
                    "achieveddate": 1629479486
                },
                {
                    "achievement_id": 7,
                    "achieveddate": 1629487607
                },
                {
                    "achievement_id": 20,
                    "achieveddate": 1629621159
                },
                {
                    "achievement_id": 24,
                    "achieveddate": 1629624030
                },
                {
                    "achievement_id": 155,
                    "achieveddate": 1629630730
                },
                {
                    "achievement_id": 6,
                    "achieveddate": 1629824368
                },
                {
                    "achievement_id": 2,
                    "achieveddate": 1629827763
                },
                {
                    "achievement_id": 14,
                    "achieveddate": 1629905140
                },
                {
                    "achievement_id": 26,
                    "achieveddate": 1629906849
                },
                {
                    "achievement_id": 30,
                    "achieveddate": 1630080582
                },
                {
                    "achievement_id": 32,
                    "achieveddate": 1630082477
                },
                {
                    "achievement_id": 28,
                    "achieveddate": 1630088891
                },
                {
                    "achievement_id": 159,
                    "achieveddate": 1632588508
                },
                {
                    "achievement_id": 169,
                    "achieveddate": 1633535469
                },
                {
                    "achievement_id": 166,
                    "achieveddate": 1635016031
                },
                {
                    "achievement_id": 163,
                    "achieveddate": 1635019437
                },
                {
                    "achievement_id": 36,
                    "achieveddate": 1637346511
                },
                {
                    "achievement_id": 151,
                    "achieveddate": 1637412992
                },
                {
                    "achievement_id": 34,
                    "achieveddate": 1637772075
                },
                {
                    "achievement_id": 9,
                    "achieveddate": 1637783208
                },
                {
                    "achievement_id": 167,
                    "achieveddate": 1638132862
                },
                {
                    "achievement_id": 16,
                    "achieveddate": 1638641089
                },
                {
                    "achievement_id": 13,
                    "achieveddate": 1638990179
                },
                {
                    "achievement_id": 40,
                    "achieveddate": 1639145635
                },
                {
                    "achievement_id": 38,
                    "achieveddate": 1640711462
                },
                {
                    "achievement_id": 114,
                    "achieveddate": 1640719295
                },
                {
                    "achievement_id": 8,
                    "achieveddate": 1640883486
                },
                {
                    "achievement_id": 137,
                    "achieveddate": 1641915812
                },
                {
                    "achievement_id": 116,
                    "achieveddate": 1642176763
                },
                {
                    "achievement_id": 43,
                    "achieveddate": 1642364336
                },
                {
                    "achievement_id": 39,
                    "achieveddate": 1642698624
                },
                {
                    "achievement_id": 135,
                    "achieveddate": 1642782629
                },
                {
                    "achievement_id": 11,
                    "achieveddate": 1643319146
                },
                {
                    "achievement_id": 138,
                    "achieveddate": 1643321248
                },
                {
                    "achievement_id": 108,
                    "achieveddate": 1643500101
                },
                {
                    "achievement_id": 25,
                    "achieveddate": 1643504337
                },
                {
                    "achievement_id": 37,
                    "achieveddate": 1644595009
                },
                {
                    "achievement_id": 189,
                    "achieveddate": 1654269119
                },
                {
                    "achievement_id": 191,
                    "achieveddate": 1654271337
                },
                {
                    "achievement_id": 188,
                    "achieveddate": 1654271769
                },
                {
                    "achievement_id": 187,
                    "achieveddate": 1654428877
                },
                {
                    "achievement_id": 186,
                    "achieveddate": 1655128807
                },
                {
                    "achievement_id": 180,
                    "achieveddate": 1657570506
                },
                {
                    "achievement_id": 181,
                    "achieveddate": 1657572348
                },
                {
                    "achievement_id": 182,
                    "achieveddate": 1657574098
                },
                {
                    "achievement_id": 179,
                    "achieveddate": 1657574770
                },
                {
                    "achievement_id": 153,
                    "achieveddate": 1657733074
                },
                {
                    "achievement_id": 172,
                    "achieveddate": 1659968663
                },
                {
                    "achievement_id": 154,
                    "achieveddate": 1662642348
                },
                {
                    "achievement_id": 173,
                    "achieveddate": 1662917254
                },
                {
                    "achievement_id": 174,
                    "achieveddate": 1663433276
                },
                {
                    "achievement_id": 171,
                    "achieveddate": 1663434464
                }
            ]
        }
    ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "userAchievementsMap": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "196240": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "achievement_id": {
                                    "type": "integer"
                                },
                                "achieveddate": {
                                    "type": "integer"
                                }
                            },
                            "required": [
                                "achieveddate",
                                "achievement_id"
                            ]
                        }
                    }
                },
                "required": [
                    "196240"
                ]
            }
        }
    },
    "required": [
        "result",
        "userAchievementsMap"
    ]
}

[GET] /community/achievement/getAvailableAchievements

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "achievementDefs": [
    {
      "id": 1,
      "name": "ACHIEVEMENT_ETERNAL_GRATITUDE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 2,
      "name": "AZTEC_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 3,
      "name": "BERBERS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 4,
      "name": "BRITONS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 5,
      "name": "BULGARIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 6,
      "name": "BURMESE_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 7,
      "name": "BYZANTINES_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 8,
      "name": "CELTS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 9,
      "name": "CHINESE_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 10,
      "name": "CUMANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 11,
      "name": "ETHIOPIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 12,
      "name": "FRANKS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 13,
      "name": "GOTHS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 14,
      "name": "HUNS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 15,
      "name": "INCAS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 16,
      "name": "INDIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 17,
      "name": "ITALIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 18,
      "name": "JAPANESE_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 19,
      "name": "KHMER_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 20,
      "name": "KOREANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 21,
      "name": "LITHUANIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 22,
      "name": "MAGYARS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 23,
      "name": "MALAY_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 24,
      "name": "MALIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 25,
      "name": "MAYANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 26,
      "name": "MONGOLS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 27,
      "name": "PERSIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 28,
      "name": "PORTUGUESE_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 29,
      "name": "SARACENS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 30,
      "name": "SLAVS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 31,
      "name": "SPANISH_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 32,
      "name": "TATARS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 33,
      "name": "TEUTONS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 34,
      "name": "TURKS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 35,
      "name": "VIETNAMESE_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 36,
      "name": "VIKINGS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 37,
      "name": "ACHIEVEMENT_CHAIN_REACTION",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 38,
      "name": "ACHIEVEMENT_SHEEP_HOARDER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 39,
      "name": "ACHIEVEMENT_THE_WONDER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 40,
      "name": "ACHIEVEMENT_LOSING_YOUR_RELIGION",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 41,
      "name": "ACHIEVEMENT_ANYONE_ORDER_PIZZA",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 42,
      "name": "ACHIEVEMENT_DARK_HUMOR",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 43,
      "name": "ACHIEVEMENT_HOWDY_NEIGHBOR",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 44,
      "name": "ACHIEVEMENT_NO_SUNTZU_LIGHT",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 45,
      "name": "ACHIEVEMENT_WOLOLO",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 46,
      "name": "ACHIEVEMENT_90_KG",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 47,
      "name": "ACHIEVEMENT_FIGHTING_FROM_AFAR",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 48,
      "name": "ACHIEVEMENT_CASTLE_CRUSHER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 49,
      "name": "ACHIEVEMENT_CAMPAIGN_WALLACE_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 50,
      "name": "ACHIEVEMENT_CAMPAIGN_JOANARC_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 51,
      "name": "ACHIEVEMENT_CAMPAIGN_KHAN_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 52,
      "name": "ACHIEVEMENT_CAMPAIGN_SALADIN_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 53,
      "name": "ACHIEVEMENT_CAMPAIGN_BARBAROSSA_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 54,
      "name": "ACHIEVEMENT_CAMPAIGN_ATTILA_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 55,
      "name": "ACHIEVEMENT_CAMPAIGN_ELCID_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 56,
      "name": "ACHIEVEMENT_CAMPAIGN_MONTEZUMA_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 57,
      "name": "ACHIEVEMENT_CAMPAIGN_HISTORICAL_BATTLES_COMPLETE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 58,
      "name": "ACHIEVEMENT_CAMPAIGN_ALARIC_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 59,
      "name": "ACHIEVEMENT_CAMPAIGN_BARI_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 60,
      "name": "ACHIEVEMENT_CAMPAIGN_DRACULA_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 61,
      "name": "ACHIEVEMENT_CAMPAIGN_ELDORADO_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 62,
      "name": "ACHIEVEMENT_CAMPAIGN_PRITHVIRAJ_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 63,
      "name": "ACHIEVEMENT_CAMPAIGN_SFORZA_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 64,
      "name": "ACHIEVEMENT_CAMPAIGN_PORTUGUESE_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 65,
      "name": "ACHIEVEMENT_CAMPAIGN_MALIAN_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 66,
      "name": "ACHIEVEMENT_CAMPAIGN_BERBER_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 67,
      "name": "ACHIEVEMENT_CAMPAIGN_ETHIOPIAN_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 68,
      "name": "ACHIEVEMENT_CAMPAIGN_BURMESE_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 69,
      "name": "ACHIEVEMENT_CAMPAIGN_MALAY_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 70,
      "name": "ACHIEVEMENT_CAMPAIGN_VIETNAMESE_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 71,
      "name": "ACHIEVEMENT_CAMPAIGN_KHMER_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 72,
      "name": "ACHIEVEMENT_CAMPAIGN_BULGARIAN_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 73,
      "name": "ACHIEVEMENT_CAMPAIGN_TATAR_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 74,
      "name": "ACHIEVEMENT_CAMPAIGN_CUMAN_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 75,
      "name": "ACHIEVEMENT_NO_WONDER_LEFT_BEHIND",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 76,
      "name": "ACHIEVEMENT_CATHEDRAL_RUSH",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 77,
      "name": "ACHIEVEMENT_NO_WONDER_ON_MY_WATCH",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 78,
      "name": "ACHIEVEMENT_DIPLOMACY_IS_FOR_THE_MEEK",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 79,
      "name": "ACHIEVEMENT_KUSHLUK_ASSASSINATION",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 80,
      "name": "ACHIEVEMENT_I_WAS_IN_CHINA_BEFORE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 81,
      "name": "ACHIEVEMENT_OFFENSE_IS_THE_BEST_DEFENSE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 82,
      "name": "ACHIEVEMENT_OUT_WITH_A_BANG",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 83,
      "name": "ACHIEVEMENT_D_DAY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 84,
      "name": "ACHIEVEMENT_THE_GO_GETTER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 85,
      "name": "ACHIEVEMENT_FUROR_TEUTONICUS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 86,
      "name": "ACHIEVEMENT_ATTILA_SPEED_RUN",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 87,
      "name": "ACHIEVEMENT_HOT_N_SPICY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 88,
      "name": "ACHIEVEMENT_BATTLESHIP",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 89,
      "name": "ACHIEVEMENT_SURYAVARMAN_RELICS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 90,
      "name": "ACHIEVEMENT_THE_MISSIONARY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 91,
      "name": "ACHIEVEMENT_OTTOMAN_GLORY_SEEKER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 92,
      "name": "ACHIEVEMENT_NO_HOJO",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 93,
      "name": "ACHIEVEMENT_FIRE_WITH_FIRE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 94,
      "name": "ACHIEVEMENT_DESTROY_DELHI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 95,
      "name": "ACHIEVEMENT_KILL_KING_TAKAYUTPI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 96,
      "name": "ACHIEVEMENT_NO_KILLING_PORTUGUESE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 97,
      "name": "ACHIEVEMENT_NUMBERS_BEAT_EVERYTHING",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 98,
      "name": "ACHIEVEMENT_ALARIC_SPEED_RUN",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 99,
      "name": "ACHIEVEMENT_DRAGON_SHIPS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 100,
      "name": "ACHIEVEMENT_100_GBETO",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 101,
      "name": "ACHIEVEMENT_SATANS_MAP",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 102,
      "name": "ACHIEVEMENT_NO_SUPPORT",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 103,
      "name": "ACHIEVEMENT_RUSH_TO_THE_KING",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 104,
      "name": "ACHIEVEMENT_NOT_THE_VIPER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 105,
      "name": "ACHIEVEMENT_NO_CASTLE_AGE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 106,
      "name": "ACHIEVEMENT_DEFEAT_AUSTRIAN_DUKE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 107,
      "name": "ACHIEVEMENT_NO_WALLS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 108,
      "name": "ACHIEVEMENT_FRANKLY_MY_DEAR",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 109,
      "name": "ACHIEVEMENT_UNEXPECTED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 110,
      "name": "ACHIEVEMENT_SUPREMELY_UNEXPECTED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 111,
      "name": "ACHIEVEMENT_FINAL_COUNTDOWN",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 112,
      "name": "ACHIEVEMENT_KABOOM",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 113,
      "name": "ACHIEVEMENT_BULLS_EYE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 114,
      "name": "ACHIEVEMENT_HOMELESS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 115,
      "name": "ACHIEVEMENT_OUT_OF_THEIR_ELEMENT",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 116,
      "name": "ACHIEVEMENT_CASTLE_OF_DOUBT",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 117,
      "name": "ACHIEVEMENT_ITS_A_TREB",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 118,
      "name": "ACHIEVEMENT_MARCO_POLO",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 119,
      "name": "ACHIEVEMENT_KNOCKING_ON_YOUR_DOOR",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 120,
      "name": "ACHIEVEMENT_SUSHI_LOVER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 121,
      "name": "ACHIEVEMENT_EASIEST_AI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 122,
      "name": "ACHIEVEMENT_EASY_AI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 123,
      "name": "ACHIEVEMENT_MODERATE_AI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 124,
      "name": "ACHIEVEMENT_HARD_AI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 125,
      "name": "ACHIEVEMENT_HARDEST_AI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 126,
      "name": "ACHIEVEMENT_EXTREME_AI",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 127,
      "name": "ACHIEVEMENT_MANGO_SHOTS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 128,
      "name": "ACHEVEMENT_HUN_WHAT_ARE_YOU_DOING",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 129,
      "name": "ACHIEVEMENT_VICTORY_WITH_EVERY_CIV",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 130,
      "name": "ACHIEVEMENT_LONG_LIVE_THE_KING",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 131,
      "name": "ACHIEVEMENT_RELIC_HUNTER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 132,
      "name": "ACHIEVEMENT_DARK_DINNER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 133,
      "name": "ACHIEVEMENT_PLEASANT_PEASANT",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 134,
      "name": "ACHIEVEMENT_BIRD_SHOOTING",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 135,
      "name": "ACHIEVEMENT_KARAMBOLAGE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 136,
      "name": "ACHIEVEMENT_MASTERPIECE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 137,
      "name": "ACHIEVEMENT_TOO_LAME_TO_TAME",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 138,
      "name": "ACHIEVEMENT_ELEPHANTASTIC",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 139,
      "name": "ACHIEVEMENT_CAMPAIGN_BRITONS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 140,
      "name": "ACHIEVEMENT_CAMPAIGN_BURGUNDIANS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 141,
      "name": "ACHIEVEMENT_CAMPAIGN_SICILIANS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 142,
      "name": "ACHIEVEMENT_UNCHIVALROUS_PRAGMATIST",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 143,
      "name": "ACHIEVEMENT_THRONE_THIEF",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 144,
      "name": "ACHIEVEMENT_MALLEUS_SCOTORUM",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 145,
      "name": "ACHIEVEMENT_NO_WHEELS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 146,
      "name": "ACHIEVEMENT_A_SECOND_HASTINGS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 147,
      "name": "ACHIEVEMENT_SHUT_UP_LA_HIRE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 148,
      "name": "ACHIEVEMENT_SELFMADE_MAN",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 149,
      "name": "ACHIEVEMENT_HAUTE_HAUTE_BRIEF_CANDLE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 150,
      "name": "ACHIEVEMENT_ITALY_JONES_AND_THE_FIRST_CRUSADE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 151,
      "name": "BURGUNDIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 152,
      "name": "SICILIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 153,
      "name": "ACHIEVEMENT_FLEMISH_REVOLUTION",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 154,
      "name": "ACHIEVEMENT_DONJON_SERJEANT",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 155,
      "name": "ACHIEVEMENT_CAMPAIGN_LITHUANIANS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 156,
      "name": "ACHIEVEMENT_TOLERANT_PIETY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 157,
      "name": "ACHIEVEMENT_SCATTERED_HORDE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 158,
      "name": "ACHIEVEMENT_MINT_CONDITION",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 159,
      "name": "ACHIEVEMENT_CAMPAIGN_POLES_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 160,
      "name": "ACHIEVEMENT_PROTECTOR_REALM",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 161,
      "name": "ACHIEVEMENT_NO_BAGGAGE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 162,
      "name": "ACHIEVEMENT_NO_QUARTER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 163,
      "name": "ACHIEVEMENT_CAMPAIGN_BOHEMIANS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 164,
      "name": "ACHIEVEMENT_MALEVOLENT_MARAUDER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 165,
      "name": "ACHIEVEMENT_ZIZKOV_HILL",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 166,
      "name": "ACHIEVEMENT_AGAINST_ALL",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 167,
      "name": "BOHEMIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 168,
      "name": "POLES_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 169,
      "name": "ACHIEVEMENT_OOF_NICE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 170,
      "name": "ACHIEVEMENT_FAST_FOOD",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 171,
      "name": "ACHIEVEMENT_CAMPAIGN_HINDUSTANIS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 172,
      "name": "ACHIEVEMENT_NEVER_TRUST",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 173,
      "name": "ACHIEVEMENT_AN_OFFER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 174,
      "name": "ACHIEVEMENT_THE_RENOVATOR",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 175,
      "name": "ACHIEVEMENT_CAMPAIGN_DRAVIDIANS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 176,
      "name": "ACHIEVEMENT_NO_REST_FOR_THE_WICKED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 177,
      "name": "ACHIEVEMENT_EYE_OF_THE_TIGER",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 178,
      "name": "ACHIEVEMENT_NO_WONDER_YOU_WON",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 179,
      "name": "ACHIEVEMENT_CAMPAIGN_BENGALIS_COMPLETED",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 180,
      "name": "ACHIEVEMENT_HUNA_JOIN_ME",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 181,
      "name": "ACHIEVEMENT_CONSTRUCTION_CANCELLATION",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 182,
      "name": "ACHIEVEMENT_PARINIRVANA",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 183,
      "name": "ACHIEVEMENT_CAMPAIGN_RAJA_OF_THE_PEOPLE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 184,
      "name": "ACHIEVEMENT_CAMPAIGN_HOPELESS_ROMANTIC",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 185,
      "name": "ACHIEVEMENT_CAMPAIGN_INSPIRING_POET",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 186,
      "name": "BENGALIS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 187,
      "name": "DRAVIDIANS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 188,
      "name": "GURJARAS_VICTORY",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 189,
      "name": "ACHIEVEMENT_FACE_MY_RATHA",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 190,
      "name": "ACHIEVEMENT_KING_OF_THE_SEAS",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    },
    {
      "id": 191,
      "name": "ACHIEVEMENT_FORGED_IN_THE_HEAT_OF_BATTLE",
      "name_locstringid": -1,
      "description_locstringid": -1,
      "icon": "",
      "timemodified": 1665011141,
      "deleted": 0,
      "itembundle_id": -1
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "achievementDefs": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "name_locstringid": {
                        "type": "integer"
                    },
                    "description_locstringid": {
                        "type": "integer"
                    },
                    "icon": {
                        "type": "string"
                    },
                    "timemodified": {
                        "type": "integer"
                    },
                    "deleted": {
                        "type": "integer"
                    },
                    "itembundle_id": {
                        "type": "integer"
                    }
                },
                "required": [
                    "deleted",
                    "description_locstringid",
                    "icon",
                    "id",
                    "itembundle_id",
                    "name",
                    "name_locstringid",
                    "timemodified"
                ]
            }
        }
    },
    "required": [
        "achievementDefs",
        "result"
    ]
}

Advertisement Endpoints (Community)

Public endpoints for searching game lobbies without authentication.

Note: This is an unauthenticated public endpoint. For authenticated lobby operations (create, join, host), see /game/advertisement.

Endpoints

EndpointMethodDescription
findAdvertisementsGETSearch for active game lobbies

[GET] /community/advertisement/findAdvertisements

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4

Response

AoE2:DE

Could change: “options” and “slotinfo” may be zlib-compressed. Also check if there is a Base64 encoding on it, sometimes it’s even two times Base64 encoded

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "matches": [
    {
      "id": 186581479,
      "steamlobbyid": 109775243596890080,
      "xboxsessionid": "0",
      "host_profile_id": 8863869,
      "state": 0,
      "description": "[Rematch] ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9Us1ugzAMfpc+AYESaYceqEInpDkZXWhFj6VTujAVLhOQp5/zm5MV29+P7d1ZtRW+HPS0VgtGrKIQ/8z8d7QhG43QsPh8Te8+vxdsLv1fQ6ENPXJajjZi/SJ0VdtQyAp7wIZE6O5uAy6Bnk8XfS6eX+fXvFyuv+TaPZfrqyG37PH5MNmbx+4pVJ3rRY1F1MYlanM8Kkeek+fp6YesPScb6LfXVAg9EI+lEMv9EW6mLejMxWt0PVzbHqezRL/uD1B76FnRW+l7xixxss5yhrhN/FyrNBMhJ+L7BpxJ5/OmxrzzVdjZB48rmIlEPs6m1c+/xrkNy1G5GP3WG29DjcEah13vhVZB84jYymNjHli1BMwNWNxPsyKO0w26oTzsCjTg/p2WDflzqHqHY7WA7kJ9RyHV99HHhlrysJ9NsMkEz6hdvfva0fYFfijifXDTx12VoONeAf00IZ92SbiOftst5oVMN1nYmwy8ZdqrTHvfA4s3rVbxkwUshVjxbiDdm5DzeGsPh90/dYDxrg==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PwjAUhv0tvR6GMjYniTeDVWfcgLJ2gvGibl0o3QduEyHG/y6dgUiMF8YLs6uevufknCcP7GkPb2BdFolIuZsnxbmIwcCyTN0yLzVQ1awWRe6OwABqoOYsU2VXAwmLDo39r2QRP5a5vOMbnh5/HqujZbBbNxMdtUZkfMJLVLKMe7NmTlSYs3jXXFE3X6omznjNRqxmYABceWtjguwpQf1pGKvXCe6XNmkybM+6TW+MHQkDiUtPGuYsoGMiocqHFMkdzekidNav8xUaRjCdP11vV6y3haGMQ9/x8/2cjREyAoixT4znuZ5OKKJI5VO6uKHZUhBC1T7bE+4VeNe+u+vAE22dL97giTfVOYj7rP9krvuTud9S9lpBqbeCst8KSqMVlGYrKC/+ifLx7APyMc1P",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581479,
          "profile_id": 8863869,
          "ranking": -1,
          "statgroup_id": 5331726,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 120,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581474,
      "steamlobbyid": 109775243596889970,
      "xboxsessionid": "0",
      "host_profile_id": 2237040,
      "state": 0,
      "description": "1v1 arabia ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1OwzAMfheeYP2LxIFDR7opSE4oSgfdjRUUkWpkh6F2eXrcOOl6imp/f7Yf3kxX45eDdVdoYXlPytbN8pAW2InqFXjnoQ71WZ3LUFfcsG/C3JRtIqZhULfEyd20XV58nBDDQ127aT8t/zqvzsdnufvaHYqm+swOvMuPW3V4Ye9852BsHl+JO0c/O8IKJr2IOh16CzqltKjTBp1c/Wxm0jSF+h2p17tCEle5ZtMDA8Ln0l7+CNMvmOBT6eS9WecBumGqDZhK8qRpsqBJ781dvy/vMxmZJFyBM8moPsxYp1xeMNCUETQwqZNey6AN859xbgXUPb2tm8F2sQdzEPesuCuj5wq5BXHDwj0Bj5y2Tvu5gXbRt8D99TGv8MoK8mJbJm29Jx70okUW+zPsSf15ygF2wH4RdQyDiTKj93JrQm+14KK+x71EjiFPu1K447hXr9b7GYp0c1L3Ke8Gb/YW72u9SelNwhdKXyqqd+veFa/TTZeY/xq5SuSKvcbf721kpw/z9PAPNPHwJw==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkE9Pg0AQxf0se6aGpaVNmnihZRUj/bOwi63xsMI23S5QBNSSxu8ui2ljYzyYJhpOM/PeZOaXBw3tYQ+yfLsSMXfS1fZSRGBoGN2B3tM1UJSsFNvUGYMh1EDJWaLa2lix8GDUU85CfmxTecdfeXycXFaGa7/Kmo2OOiMSPuM5ylnCXa/ZEwXmLKqaL+rnS9HICS/ZmJUMDIEjby1MkDUnqDcPIlVtcp9ZpNGw5emNN8W2hL7EuSvNvufTKZFQ6SOKZEVTugzs7G2xQaMQxoun692GGTsYyCiY2JO03rMwQqYPMZ4Q83nRjWcUUaT0OV3e0GQtCKHqnuUK5wq8a9+z68CT2DpfcoMnuSnnENxnf1Zy+k/J/ZbS+CNKeBZltxWUvVZQmq2g7LeCcvBPlI8XH37vzUA=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581474,
          "profile_id": 2237040,
          "ranking": -1,
          "statgroup_id": 2014095,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186581473,
      "steamlobbyid": 109775243596889900,
      "xboxsessionid": "0",
      "host_profile_id": 10697326,
      "state": 0,
      "description": "[Revancha] Partida de escribano walter",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstuxCAM/Jf9gjxYpB56YEW2oiqgRKTa7HGjKipRmxxa5fH1NdiknCxsj8czPjVDLeAV2k+7WCCSgmtBf/v8ewmhHHfr9YL5ij+wh1k5n/FPcV1Tj5uWS4hkt1gvqhBaJ6BHhzCHv0cIjNP88d5s9+vr1rRr3rSmrsu5MLc7q9t8rV32hNgd8GljL3AsNfE1DrjFOUNhfXXFOR1/cxXOlD3/QE6l9X2OWEPaLTf7tBHPwn6x2GN8n3ierVfxTzuR5q+w26qX2H82EvaM2gy5/cxWirMYIy4DXoQ7ckNctJxyzPdr4m120M+JK87T3DhBs2vQFWcbB7uLDmMPPHxLNX3SfrVyYohdAf9KIbYO2IuWhOkPf7ewD/JWm/Ud+abAa4VcfM2NFy+IA1ycyqkefFSp/tBfg34m6eZBa9SqBO7sMsTaoOtC83fwgDD6wn6PdCsq3ddu5ZEvD49cl/hncA/k4bge+X34993NZ8y37LhFGW4xaspg/x/SjgEW1Q6wP3ph3MjvN/18+gPHf+9f",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PgzAUhv0tvWaGssHiEm/YqGJkHx0tMuNFhRK6ApsMdYvxv0sxW1yMF2aJhquevufknCcPNLT7N7AuV4nIuFskq3MRgwHUrYt+17A0sKlYJVaFO6pDDVSc5arUNZCwaN+ofyWL+KEs5C1/4dnh57EqSv3dupnoqDUi51NeopLl3Js3c2KDOYt3zRV183nTxDmv2IhVDAyAK29sTJA9I6g3C2L1OvgutUmTYXuuN70JdiT0JS49aVpzn06IhCofUiR3tKCLwFm/hks0jGAWPl5tl8zYwkDGwdgZF/WcjREyfYjxmJhPYTebUkSRymd0cU3zVBBC1T7bE+4leNe+y+vAI22dL97gkTfV2Yv7rE8yp/9k7reUxh9RwpMou62g7LWC0mwFpdUKyv4/UT6cfQC8C811",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581473,
          "profile_id": 10697326,
          "ranking": -1,
          "statgroup_id": 6297700,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186581471,
      "steamlobbyid": 0,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"a296901e-920d-41f8-b2c0-73637a5bbfe8\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 4711081,
      "state": 0,
      "description": "beno",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFOwzAM/Be+oM3aSDxmZIwInGhTBuretoIKmUYnJNQuX48TOyNPVmzfne27204bhU9AGKOaMNJKguK/ePldplCfogswUX4lj0PON05fWvozEjbc48dpmSLdTS6oVQqdV9gDKazx75gC60F2lV0/i8/1/q2Wh+r+YRvfD1uxfXoX7c8+VveE3aGeXe5FjQsgbmE9ass8g0DMR+Lp5ItfEafu5QdpWrjQ14Q1lNlqG8cr6xTu3OQeG1JP1tm6QDjgVeGfcbYZaF+t1Thn3s1Qu69q5rjKMeE2BcOGk7SsBfRYU76fMZ9124j78zQD4F6sV8y9wb0St/U4u+ooDqgj7LimL7ufnR4bwl4l/YawIWFPoBkz3O57TfOQbnN1oeO7Gby1IS1hI21Qa8JBLd7UXI93NKVelDkA92eDYR7cNe1qgdqb5ZBr29TH/BFvwBi9cN8n9oop/oo4D3sOWjcwVix334niL5v8R/kWbr7om4Jp46l4oU6Y7JsJ706+QU//+8ZIR7UNxHLjXevOr793f8j88Xg=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkE1PwkAQhv0tey6miwVMEy8V1pRYSrfbhWA8jHQJtZ+2FQXif5ddApEYD4ZE09PM7LzZefLgtvawRUWZL6JE2Nkiv4xCZBo9jPVrrKGqhjrKM7uPzN1UC0hlq2toAfPDYjeVMBfHNovvxUokx8mBer5k60IlWvKbKBVjUZISUuH4KhdVVEC4VlfkzddKPaeihj7UgExkx0OLBsTyAmJ4XNUB6ENZLRaQlawes0aQVm8M05mj4xfYEBLqMjtzISmmo8ny+Wny3uZBaMAdn/IsYXzDy0myzHyVIy4dxJjFtHTiTtdn3A32t245L6Y0o1agGOhs7Ns36EP77q51qq31xRs+8SY3B3H7/ixz+k/mfkvZbgTlVSMojT+ixGdRdhpB2W0EZe+fKB8vPgF9LM3e",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581471,
          "profile_id": 4711081,
          "ranking": -1,
          "statgroup_id": 3847321,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581470,
      "steamlobbyid": 109775243596889800,
      "xboxsessionid": "0",
      "host_profile_id": 5859566,
      "state": 0,
      "description": "4x4 very noobs only",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttugzAM/Zd+Qcsl0h7pknZoNSlbgsYehypWqo5KWwXk6+fEhubJii/n2Oes3lqb4Yug6/+gBB8PusuUD4oOxBflU3C9gyzkR31NQl7LVpyoZ9Kd4h4lICtppuyHrY/kZcAeGfKmH/aD/7NOX7+Pldu+gPnMrdseTvZ2fnVZXH1Uv+8X9XSk2RHy2VFvLgqXM45FbgEnKTrEKQNOpM/rkTDbWP9cqNb1cUGzkmU30wig/qjobin11L4n8NSmX9OfGmZ8MLhbRzO1KXFPS/jG345j6WOaq2XPXOpUd5a5ZKKgfAwG84F34+/HOyiHtXw3tcZ/xra4e7anuBZg8g3XxPPtwbRC0+1H5D8+h3zj/GyQGc/MF33Ba0W8J9Q/Yt0m1HoiLjni18O2DXM8l6ngetx5muvx/rxHjlzqiXHw1sA7W+RVk098n2R818xeiVGDO3tlmv0Frn3k3ayRjRavyXzWMAUz9zfJQ/cL+jPkN3rxYuu9uCP/KnEwir2Ms6g2wf1ZC5vqa3Vf/QMDu/K3",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkE1PgzAYgP0tPYNZcaCSeOlGFSOL1LVkMx4qlKzjM1B1ZPG/u2K2uBgPxoPh9H6275MHWsbjFtRNlcpc+GVancoEuPaFfWk7jgFaxZWsSn8KXGgAJXih05EBUh7vB7uq4bE4pGV2J15FfqgCruLVvKv7DVN/IwtxLxrc8EIED/2ebIngSddf0Tdf2r5dCMWnXHHgAj+7RYRiFFI8DqNER4/MMaJ9j6Aw62czmkEdJwxnHSvZMvLqt8UaT2KYL56vN2tubWCUJdHMw2S3h4jHsI4hW96wYiUpZfo9CqR/Bd6N725MeKTF/OIFHnnRk72Yz/xPZkY/mfktpTUIyrNBUI4HQWkPgtIZBOX5P1E+nXwAVs/DQA==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581470,
          "profile_id": 5859566,
          "ranking": -1,
          "statgroup_id": 4602181,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westindia"
    },
    {
      "id": 186581468,
      "steamlobbyid": 109775243596889710,
      "xboxsessionid": "0",
      "host_profile_id": 3886604,
      "state": 0,
      "description": "[Rematch] hubersepp",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUl1vgzAM/C/9BS0fkfZIl7Sjqsk6JZ3o42iFBivsYRWQXz8nNpQni7PvzvGtPmqb4RdB0//BCXw96CZTvigaEF+Ep+B6B1nAR31PAq5lLW40M+lG8YwSkJ2IU/bD1leyHXBGBtz0w37w/6zTXTGYvXLn7nox7fl47Q6X89shvX2Wzv6ol3fijtDPjmZzUbicdSx6CzpJ0aDOKehE+ns9kmYd666lXtfHBXEli09TLT6L5vdBM6WfCT61mb2rYdYHg7s1xKnNCect6Rv/dlxLXxOvlj17KVPdWPaSiYLwGAziwXfl3493UA57Z+01/mdti7tne6pLASbfcE887wSmFpp2GtH/+BrwynlukBlz5st9wd+KfE94/4jfY8JbT+QlR/1y2NaBx3uZCu7Hnae5H9+f98jRSzmxDr418M4WfZWUEz8nWd8tN4ifN2inOV/g6ifuZtxGSz5lLoAykIKZ8Sp53r3FfAZ8o5cs1j6LO8qvEkejOMvIRb0J7s+3sKm+nx+rf3M484o=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkl9PgzAUxf0sfWaGMsBliS9sVDHuX6HFzfhQocu6AkOGusX43V0x2yTGB+PD5Kn3nnNz78kvhYZ2/wbyYjUXCfey+epcxKDb7nRsWzc1sC5ZKVaZ1wddqIGSs1SVugbmLNobu65gET+UmbzlLzw5dANWRotgm1cTLbVGpHzMC1SwlA/8ak6sMWfxtrqibj6vKznlJeuzkoEu8OSNgwlyJgSZkzBWr0sC5JBKw46vV94IuxIGEhcDadl+QEdEQqX3KJJbmtFZ6Oav0yXqRTCZPl5tlszYwFDG4dAdZrs5ByNkBRDjIbGepu1kTBFFSp/Q2TVNF4IQqvY53Pcuwbv2nZ2p64Zud2rsjCM7+F/Y3eWnYyd+YNeCNWytL3/OqHFTzh7cZ/0ncvqRHKyR+23KdiNSmo1IaTUipd2IlBcnSvlw9gEdpvz7",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581468,
          "profile_id": 3886604,
          "ranking": -1,
          "statgroup_id": 3319739,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581468,
          "profile_id": 4002068,
          "ranking": -1,
          "statgroup_id": 3375908,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581453,
      "steamlobbyid": 109775243596889400,
      "xboxsessionid": "0",
      "host_profile_id": 5498259,
      "state": 0,
      "description": "[Revanche] #AgeDeVerdade",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUmFv3CAM/S/9BQmXIPUjN7ITpxqUjnTKx5VOWYnaVK0mEn79DIbbSdFZNn7v2X53j2EU+GPgt10EjKTgIEoufvw9p1Cu0XgIVB/485LrnZEfPeUUh7H02C2cUyTnYLwYUmiswB5IYYu55xRoC3x8codrHj9tvP6By9Pl5+s916xjv/zLabLNPWHPqGfKvajxBMTNtEVtmWdhiPmdeGb+YAfilI7/Jk0n411LWEudrdVxi0UnM+9r7tE+9WSdvfFjzoEVlX/H2fbC32uJc+bdLK15bfYSNzkm3M74oeCuXBctILeW6m7HetatI+7P0gyAe9FWFO4R90rc2uLsYqYYbwV+Km9c3f1u5NYR9oD6B0XYkLADyILpb/c90jykWx3Gz+VuCm+tSIsfufbiQjioxaq2vMc7qvqe1TkA96e9Kjy4a/LWCbV35yW/7VNf4Y94g4LhbjcwVlV/RZwnXHN9aozHzy6HtuuXttOOnmrMj9Bq6xhIFR6k+IJvgf5F4Y3VIxOrXtTJq1Tv4eYh15m3jupxrb5pE3/xWMA6eQz9/99jN993EOsup968XY+7f/Z5ABk=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNq91FtPgzAUAGB/S5+ZoQV0LPFlbl0gbo6r24wPHXQZ4TIC1WQu/ndt46IzawxKeDoHWtqT77RApDweQFntNklGrWKzu0xiMDB0s48MUwE1IyzZFdYIDKACGCU5T1UFbEh0HPh4qkhEeappPC/SO/pCs8+RIp0SFm39fSmm9Pg6SU7ntMIVyenUE/OS2qUk3ott+KbPtXidU0ZGhBEwAFaKNTfAQyfAmhOKOF5Cl8dh6Nv364nN3CLbhq+Zu0zjySwsl15aJuvQrlcBxnye489uRQxW3hpni+nYFt/7D5E596wb8KacwTCgqeqnGOgLA8ow9G4t3LChxWLb3KIHTxh63w4FOnHgI0cI1P+3hCqTaFqlJq0SGm1WiX7tl9O4X/H5fi3+1i9dLoG6lQiaSvjDViUMqYSudisRNpbArUpcye9wx2fCb3w7ylYlrqUSrR4J+ONn9nTxDrqSYKY=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581453,
          "profile_id": 5498259,
          "ranking": 67795,
          "statgroup_id": 4371230,
          "race_id": 33,
          "teamid": 2
        },
        {
          "match_id": 186581453,
          "profile_id": 5519049,
          "ranking": 124090,
          "statgroup_id": 4384301,
          "race_id": 4,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186581448,
      "steamlobbyid": 109775243596889360,
      "xboxsessionid": "0",
      "host_profile_id": 3429679,
      "state": 0,
      "description": "[重赛] Wen 的游戏",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFugzAM/Zd+QaEQaUdY0o1pScQWpNJbSye0sBUO24B8/ZzYaXN6svPsZ/tt3vq6gJdKOy7FDIgXTBYUc9Nv6SEfnLZyxrxgZ+Rkmk85xioma+KYcS494u2sbSE81KYAjvQwgdjZA2UkuzxPsr2Wf5fDy+GUqNP74biT7mt/Si6fR7d9wNot6GkCFzTuJOlVBrSFPn0KNffYp2WvRmBP3rEP1LTTtkuwVh91JsqNK+lM9XUIHGU9J+jMta1DTBq/j9bDBWZbpOtopjrqypQZf2RNmHuMGjUfF+oB9Rrs4QqmSJevh/vtVm3FjFjArhvaodhCfI86GgbcJ8SwE1Ml9AfmE6S1Zxpvt2io/RjynfO1JS+oZnW7i7SCke4VdpvS3VfpdxO0VNC/ncs+1PFaVkX/YeY1/lc2zlGBlpb2WmXgGZq5AV1hh6v2PE79XRe9tlN2ypE3rPo7o3x/z7t47yaN+pX3Hfohlzc/dFnkKzdEDyRwC5q/nyGPfgEv3/1y83B2n7/J9XUaN//8+fH7",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1N1PgzAQAHD/lj4zQ/latsQXNqoY2UeB4mZ8qNBlrMCQoW4x/u8Olg2JLjHzZTE89Xp36SW/XAol4eEdpNlyFkbMTGbLyzAAXVmROlq7I4BVTvNwmZh90IUCyBmNi1AUwIz6+8L2llGfHcKE37FXFh1uFs39ubNJy45W8UwYsxHLUEZjZtllX7jCjAabckox82VVpmOW0z7NKegCk9/q2EX62EXK2AuK08D3qe6WOazbYlkbYoNDh+PM4qpmO2TocljkewTxDUnI1DPSt8kC9XwYTZ6u1wsqraHHA29gDJJtn44RUh2I8cBVnydyNCKIoCI/JtMbEs9D1yXFe7oVmlfgQ/huB6EiyqIs1/CkCg+eCZ57lngiFNuqItbw5ApPOkO8Md/h/R4L4R3WzzjMPr5ZEGqaWsNRKhy52azjm9WCNbbWl+9MqbkVlT3cLv6TnFjJSf9OTm3kTpTTGrkT5dqN3EHu8eITosgQWw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581448,
          "profile_id": 3429679,
          "ranking": -1,
          "statgroup_id": 3112888,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581448,
          "profile_id": 10107540,
          "ranking": -1,
          "statgroup_id": 6272091,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581448,
          "profile_id": 11403033,
          "ranking": -1,
          "statgroup_id": 6271898,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581448,
          "profile_id": 11411665,
          "ranking": -1,
          "statgroup_id": 6275602,
          "race_id": -1,
          "teamid": 3
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "koreacentral"
    },
    {
      "id": 186581430,
      "steamlobbyid": 109775243596889120,
      "xboxsessionid": "0",
      "host_profile_id": 429847,
      "state": 0,
      "description": "m0re",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1yozAMfpc+QYDg2T06Nd26U9nDrp0Nx4Z0oKYJObRD8NOvjMTGJ40lfT+SHn5PtcSXQxijnDBSUsD6F6/fuxSqIdoAE+UrceyX/A3C9U/92Ub9uOnqw0vfnD/718vLV0v9W6uuJfVoATVjunHapUg1kw2ySqF1Uhw7SGGGf8cUGAeinX9Mp8P+b+uzj/3hKTeXk3h/7rO35744xc1PxhHg4Il6tDBRL5gmePFOnFsTkJN85PZjc6O+rrDnLdXGsTA1kGbWZFwroCPNJlxL5irsZVCkefVRoQ+98IOrhHEDe6oFSE/8bvyCmmOVYsK1amQtTWmDZy1SGMoXOKsb6W5nGyr2UOEu/Mq9wX/m9uhd/qI4zURnXFNgTUX/nbCSdof6b49Lvo0JG5RkTP1/LxAqwbpnvI8cqHeGOM6kRSN/M+26BSdpmQ3Xo+d5rcf5sw+NWpqZeXDWwJ496mqWWpv6FPNH3AFhFPcdDPO6N4jdPZ9udcn7fPVr0t3RDktwa77d3vc+rDeS4S7YfzdhfpmpxVt/dYRlEcvyPaF/3oUv7Xn//fAPTXn8yQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkNFOwjAUhn2WXm+Gjg2UxJvBqjMOWLd2gvGibl0o3QaOiRDju0tnIBLjhSHR7Kqn/zk558sHDe3hDSzLRSoy7hbp4lwkoGcalxdmVwOrilViUbgD0IMaqDjLVdnSQMrifWP3K1nMD2Uh7/iaZ4efx6p4Fm6X9YSu1oicj3mJSpZzL6jnxApzlmzrK+rmy6qOc16xAasY6AFX3tqYINsnyPSjRL1OcJ/YpM6wHbTq3gg7EoYSl560OkFIR0RClfcpklta0GnkLF8nc9SPYTZ5ut7MmbGBkUyioTMsdnM2RsgKIcZDYj1P2tmYIopU7tPpDc1nghCq9tmecK/Au/ZdnQ6PtOlfvMEjb6qzF/dZn2Su9ZO531Iaf0QJT6JsN4LSbASl1QjKTiMou/9E+Xj2AXnozRI=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581430,
          "profile_id": 429847,
          "ranking": -1,
          "statgroup_id": 268556,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "ukwest"
    },
    {
      "id": 186581426,
      "steamlobbyid": 0,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"3f3c4d4e-2581-4fe0-aa4e-b5c19b062ff3\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 11456383,
      "state": 0,
      "description": "Partida de CARTRUH",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUk1PwzAM/S/7Bf3IInHgkCkdyrQk2pQB3Y1VqJAyugOoXX49TuyUnJ5i+/n52atjfxDwKu3HWUyApOBa0F+4/W4ilEOwXk8Yb/gFa5iVtzX+Ka4PVOPGaRORbCfrRROhdQJqdIQl/F0iME7zd//x5K7b3fmFVW/V13Zfn5tuOO6ei1t7csUDcreg55RqQWOtSa9xoC316Svg3GKflu9dgz1lx99RU219VyJXn2crTRjvpLOyV5ZqjI81SefaepX+tBO5/wyzzXpK9WsjYc7kTV/az2ImXCSMvMz6hngHbkiLlmOJ8W6GeNJtAvjncAYNvhgnqPcBfMXexsHsokUMu9L+RDld9n62cmTI3YD+RiG3jtyTlsTpl/3e4zyoW92tb2lvCnatUIs/cOPFE/KAFqdKyoc9qpxf5Tk0+Geybx68Rq9q0M42fcqNvk7UP8AOiKOr7PdAt6LyfQUrl3i97Mi1WX8B9xAwPsxLPPT/e3e3NcZPbLlFGW8xecpg/h/yjsX7p3sK+Z6MG/jltX9c/QFEfu+N",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrtlN9PgzAQx/1b+gxmhTHNEl/YqGLcr0KLzPhQoWRdgSFD3WL8310xW1yMD5uJumRPvfve5e6bTy6Fhnb3CopyloiUu3kyOxUxaEPYtFrmuamBecUqMcvd7krUQMVZpsKGBhIWrQurrGQR34S5vOHPPN1kPVZFE39Z1B26GiMyPuQlKlnGe17dJ+aYs3hZb1E7n+a1nPGKdVnFQBu48trGBNkjgpqjIFavQ24Lm9Qatr1GXRtgR0Jf4rInrZbn0wGRUOkdiuSS5nQcOMVLOEWdCKbhw+ViyowFDGQc9J1+vuqzMUKWDzHuE+sxNNMhRRQpfUTHVzSbCEKommdzz70Ab9pXeDrcwqZ/4ga3uKnKGtxH/CNyje/I7erSOAiX5i+5NP73FYrdr7B5JLcnOetIbk9yrYP4U87+yOX9yTsNWFuT",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581426,
          "profile_id": 11456383,
          "ranking": -1,
          "statgroup_id": 6295955,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186581425,
      "steamlobbyid": 109775243596889060,
      "xboxsessionid": "0",
      "host_profile_id": 2763321,
      "state": 0,
      "description": "3 VS 3 SUPER NOOBS",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUslOwzAQ/Zd+QbNZ9NBDKgeIxNgKsluSWxshCwdIL5DYX894Cz6NPPOWWXavqqvx5aBnWy8Y0ZpA+rP3n5ML6WS5hiXkG3IL+ZLTexX+WgJdxIh5ObmI9gvXdeNCLmrEgAszruXNBUwAGeTh7SLP5iqr81kerpevh9/b87BCxobB7g+BuydQS49Fj0XyxgR68zoqR53HoNOTF9EETTqS9+Cp4HrMApdCLv+XMTub6DPn35PHMO0w3meF/fo/QO8Rs2JvVcBM+02TSqcZ427TZ1ptM+FizgJuxJnIkLcN5n1fBfa1xh5XsHOW9Bid1zD/Buc2LiflY+y3MayLNRZrPHdTcq2i5wm5VeDGPNB6iZwGaNpPuyKP9w26JSzuCjTg/r0Xg/o51L3ncV5Ay1gvCWz1ferDoJc87sdwOtvYM3pXT6F2crioD0W6D2b7tKsKdNorlP/5Md1cxnTy3xmu23hf200W7iajbrXtVWx7L4Gmm1Yr/9jH2SnkSncD271xcf8cl+Nx9wfJp/Gk",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkNFOgzAUhn2WXoNZYWwJiTdsVDHCto4WN+NFhS7rCgwZ6pbFd5ditrgYL8wSDVc95z8nPV8+aGgPe1CU64VIuZcv1pciAbbR75mmATWwqVgl1rk3BHbdVZxlquxoYMHiw6DuShbzY5nLO/7K02Pnsypehrui2dDVNyLjY16ikmXcnzZ7YoM5S3bNFXXzZdPEGa/YkFUM2MCTtw4myJkQ1J1EiXpdcl84pMmwM+00sxF2JQwlLn1p9aYhHREJVT6gSO5oTueRW7zNVmgQw3T2dL1dMWMLI5lEgRvk9Z6DEbJCiHFArOeZmY4pokjlEzq/odlSEELVf44vvCvwrn13p59q0794gyfe1OQg7rM+y1znJ3O/pTRaQWm2grLbCkqrFZS9P6KEZ1H2/4ny8eIDl8rNQg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581425,
          "profile_id": 2763321,
          "ranking": -1,
          "statgroup_id": 2493560,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186581423,
      "steamlobbyid": 109775243596889060,
      "xboxsessionid": "0",
      "host_profile_id": 3465546,
      "state": 0,
      "description": "[Rematch] Lise Çıkışı",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttOwzAM/Zd9wdZLJB47kk1FOKGQMJU3KKhaxtY9gNrm63Fil+XJyrF9ju2zeu5dhS8DP/xAAzEejW9VDLQH8UF4CWEIUCV8MpdTwo3sxRfVzMYrrlECqoZ6ymHcxkieRnMuZMLtMO7H+OeCOT9cDnJ7fFk/+M+w/Ybz9Ha4NNPH5Vm+H7q7J+qdGV/vqLYWOtTM41Bb4im0R54m8WTmuJ6Is88XnToMuaZehfEV/dlOANVn2l9LqmljTdJp7LCmP4X7qBI/WIX8Dc1uG5zTEb+Nu+NYxpj6GjmwlrY03rGWSmjCc7CIJ91d3B/PoALm8t7UGv+Z2yF3tae4FWDrDefky+7B9sLQ7ifUP90nvAuxN8iKe9bjsgOItyLdM94/47vNeOuZtNTI347bPvWJWmbN+TjzvOTj/nmOGrW0M/PgroFndqirJZ9Y9JFk/tAtXslvNzjN6BXG+xserr+Eu+zfa7JebliCXfCuWOp1OKE/E74x/17soxd35F8lHq1iL2Mvyi1wfp7Hleb8+rv6A9jD8zM=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrV1E9vgjAUAPB9lp5xsaXAYrJLlTqW6QYTmC47dFBj5Y8E2aYx++6zLMqI80B2mJ7ea9+DvvxCgUh53oAsX0xFzK10urgUIeioWNc0rCtgWbBCLFKrBzpQAQVniUzbCpiyYFfYrnIW8H2aRnf8ncf71YAVwWy0zsqOlnyNSPgDz2nOEj54LPvE0uEsXJenyDPfluV2wgvWYwUDHWBFt8RxKbFdim0/lNF0R4S45Z5D7KisDZkJZex6NFp7qTfxzexjPKfdAMbj1/5qztAK+lHoD03qbPuIY8ZURtub3HjJTLiuJ58nA2Fdg0/l0AYjZGAEazaosoGna3PPm9r0h81sEFS1GoxawaBTgXnKDmDsqCEMpb/C8GMw6pWhGXr9o8GVjXrCNo0vFG14oVp1ltaPHw2uucjKDuY7/5NM+5hM0ym1s5hSP4spjX+a8uXiCxjaNAQ=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581423,
          "profile_id": 2135,
          "ranking": -1,
          "statgroup_id": 8744,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581423,
          "profile_id": 2783220,
          "ranking": -1,
          "statgroup_id": 2512611,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186581423,
          "profile_id": 3465546,
          "ranking": -1,
          "statgroup_id": 3145961,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581423,
          "profile_id": 3685490,
          "ranking": -1,
          "statgroup_id": 3263351,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581423,
          "profile_id": 3875761,
          "ranking": -1,
          "statgroup_id": 3315246,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581423,
          "profile_id": 4227421,
          "ranking": -1,
          "statgroup_id": 3527606,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581413,
      "steamlobbyid": 109775243596889710,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"ffed3e9f-5ea0-4310-b4b0-9a0089e1e9c7\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 1061986,
      "state": 0,
      "description": "MOTO",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUk1PwzAM/S/7Bf3IInHgkCllirQkGqSD7rgOVaRAdwC1za/HiZ2RkxXbz+89e/M8HAW8SvtpETNEUnAt6C/cfncxlGOwXs+Yb/gFe5iVty3+Ka6P1OOmeRcj2c3WiyaG1gno0TEs4e8SA+M0169lY07XgyvK4vT2ubqv0+G1OX+0Lw/sGooHxO6AT5t6gWOtia9xwC3NGSrAfMI5HT+4BmfKnr8jp9r6vkSsIWsrTZhW4lnZL5Z6jO8zz631Kv1pJ/L8BbStek79WyNBZ/JmKO1HsVBcpBhxmfUN4Y7cEBctpxLz/QL5xNsE8M+hBg2+GCdo9hF8xdnGgXbRYQy70r6lmj57v1g5McRugH+jEFtH7FlLwvT3/a6gh3ir1fqO9qZg1wq5+CM3XuwRB7g4VVI97FHl+irr0OCfyb558Bq9qoE72w2pNvo60/wAOyCMvrLfI92KyvcVrLzn65w3sGPSW8Sbxfy43HcYhtxfW3fbYr5l91uU8RaTpwz0/xAW+8caQr4n40Z+3rePmz9jp++/",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrtk19PwjAUxf0sfR5mHdsQEl8Gq844/pS1A4wPdSthdBtzTIQYv7t0BnCJPBgfhMSn3nvOzb0nv6RQUx7eQJYvplHMnXS6uIxC0IKqCZtXpgKWBSuiRep0tpoCCs4SWaoKmLJgZ2y7nAV8X6binq94vO9cVgQzb5OVEzW5Jkp4n+coZwl3h+VctMSchZvyirz5sizlhBeswwoGWsARdxYmyBoQpA/8UL42Hs0sUmrYGqql18O2gJ7AuSsMc+jRHhFQ6m2KxIamdOLb2et4jtoBjMdPN+s509bQF6Hftbvpds7CCBkexLhLjOdxPe5TRJHUB3RyS5NZRAiV+yw3cq7Bu/IdO72pGxV02gEdPBF0ZJSdIrqGZjT1Crv6gZ32z+44uxqsYKt9+a71Cjfp7MB91r8ipx4j99OU+lmkNM4ipXkWKRt/lPLx4gMdNCyj",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581413,
          "profile_id": 104945,
          "ranking": -1,
          "statgroup_id": 13404,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581413,
          "profile_id": 1061986,
          "ranking": -1,
          "statgroup_id": 912662,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581413,
          "profile_id": 1072594,
          "ranking": -1,
          "statgroup_id": 920632,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581407,
      "steamlobbyid": 109775243596888770,
      "xboxsessionid": "0",
      "host_profile_id": 240022,
      "state": 0,
      "description": "PRIVAT",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFu2zAM/Jd+Qew4AvqQB3tSBqOlBHdyAeex3mBMTuqgyGBLXz9KpFI/HSjf8Xjk09vU1fiV4JatXhHJWkDNtXD710Qo52AcrPSuxAdxKiNvB6q1Ajrm2GVtIpLDalytIjS2Rg5EWGDtIwJtQZyvl+LXpbmOp8v97V03L+G3egntF8zv5hx2z6Q9oJ8+cdHjHtivtugt9ZlK1DxRn0G8WkU95Sj+kKe9cWNBWlOerdBh8eyzNNcqcbSLnOTzgPOmGtiYxxDhhrNtWo48U5d9Vdoud+gYy4jJo5HLxj1Qr6ceoRaafUU9ynf0xqmVsMKse85Q7bB+Ih+9QO5PwpiJbQv+B+dT7HUShubbDGr/SO9jiNoga9ZsH3sBpwT79phtydl4iNkkLy32H9ZmSjrRi9f8P87s8//a5Tla9DJwrm2VM9ShR18pQ28ij7OAMOZ97LW7HYg3+7wPCNP3e8j77svsX3/f3QEe9zBW5nPmvjPuk24Hd1GwVgUy3/W0mb873tHkc45GwuPmjL3N5+54fPoPrgrzPQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVklFPwjAUhf0tfR5m3diIJL4MVp1xg3VbJxgf6lbC6DZwTIEY/7u0BpQoiYZE5an3nnNz78mXQk25fQazajrKcuaUo+lploK21lRVTVPAvKZ1Ni2dLmhDBdSMFqJUFTCiycZYdxVN2LYs+TV7Yvm2c2mdjMPVTE40xJqsYH1WoYoWzA3kXDbHjKYreUXcfJxLuWA17dKagjZw+JWFI2T5EWr6cSpeOwixFUkNW4EqvR62OQw5rlxumEFIehGHQu8QxFekJMPYni0GE9RJYD64v1hOqLaEMU9jz/bK9ZyFETJCiLEXGQ8DPe8TRJDQfTK8JMU4iyIi9llu5pyDF+UzOgj1M91smTvwtHd48J/AwzfjLTyfS8/7PiyEJSz7azgs2AOnAXewND58Km2Hi3A2YN7qg8io+8j8NKV+FCmbv5QSHpTSOIqU5lGkbP1RyruTV+HW8vQ=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581407,
          "profile_id": 240022,
          "ranking": -1,
          "statgroup_id": 40762,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581407,
          "profile_id": 11393676,
          "ranking": -1,
          "statgroup_id": 6267819,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581405,
      "steamlobbyid": 109775243596888670,
      "xboxsessionid": "0",
      "host_profile_id": 9727766,
      "state": 0,
      "description": "Deimudda",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1uwjAMfpc9QWkhEsewdKgSTlSWaCq3UaGOFCgHtrZ5+jm1CzlZ/vt+nLd9X0p8KfguyB4jJQVIzoX77yaGqg3GQ0/1XBybqb406r6iXCGg5Bnb9ZsYqao3XuYxNFbiDMRwgbljDLQFcbhddge1h88Uku9kbfT5sThtf/6+2vuhtMma9wiw7oNmCqFDMe3U3j15aI+YxDM152SguSYzt5Z6Q5fpEoizzylnawE0n2qPOgkrM9elIs6zjjzqmPDB5sgFWFOJPjnCt90DSo5VjGmvUR1zqVbGO+YihaZ6hl4NxLsekRdryNFrN2MnmGdsh9rlluLoSbHgnmzWBLYRhm43IP/hfarXIe4GJXln8bwLeNRDvEe8f8p3HyF0I3EpEL/qN820J3IZNfej5nHuR/9ZR4FcqpFx0GtgzQ55VVOviXOK8UM9/7XsdYN2xBtwvcF6BJcB54LG+/LNMh3mfpfOenT8h1RfgZ3r9fL1D1pxIu8XeBv2o+kRb/LY4N/eWfLSxF3EbYl+8G3cylz3l7d/Zi727Q==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrV0l9PgzAQAHA/S5+ZAZwjkviCs4bF/YHRDmd8OEcXcKUQQOM0fndtddO5JyJRfLprr7m7/FLD1K6fUV5ky4QzVyyzwyRC9ollWlavp6GygirJhNtHtqGhikEqU11DS1hsCm+nAhZsm4rVJXtgfHsaQrWIg3WuXnRkmyRlE1bgAlI2nKp3SekziNZqipx5X6rrlFXQhwqQjdzVwPEJdjyCux5V8Rz0gYxOQDCW0QsjHOmyNh8Dz8PRLL67nT2alERduKAhFTygT7SY8Vh4K9Vj9NHrjNI89IXvEDXDx5Ope4petH2bjrHD0vniYuy4yMoG5j3/kYz+KWPWlwmcujLjJmXM1shc7f2ZuPafIQ3KHLVGhpDvMry2zNxoTqbbYpm8tkzUoMzxL8kYOzJ1t+z9iy2tP9ry5uAV70NYyw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581405,
          "profile_id": 9727766,
          "ranking": -1,
          "statgroup_id": 5630950,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581402,
      "steamlobbyid": 109775243596888620,
      "xboxsessionid": "0",
      "host_profile_id": 9913926,
      "state": 0,
      "description": "1vs1 regicida (explorado) edad iimperial",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUkFOxDAM/Asv2La7kTjsoZAAlXBDIUH0uhUqZIH2AEqT1+PEDvRkdeKZ8dgXj7Nt8avBLd8wQKq9dqNKRe9AnAg/QFwitBnf9Oc+41rO4pV6gnaKe5SAdiBOufirVMmzxx6ZcbNUtz79s1G7IVj39vJ8t8Kpen4z9VYN9bfX8mN9qtTlA3HXyH1DvZ3oY8c6Fr1lnX3vUGfIOrV+322kOTf660xv49L0xLXXrqV/ZhJA/XXv1gP1jE3xqU3xrjCPNuuDwdkMZaPNgHNa0jcpO65lqolXy4W9jAftLHtpRU94Awbx7HtK+fEMCnOxRXtXZgdjcfb2luoRfXQVv2lK9mBmoSn7Df1v1xmfYuIG2TJn50sGkHZFvgPuv+a9Bdx1IC8d6o/+as48yUvo+T3OHMp7zJ/n6NDLGFgHswae2aKvke4k9UnWj1O5leZ/B+dQ7gviLMAzHtcfwm39t0PZlR0ewBR82pf+Pp7xPjNe6b9bnNMt3tD9KnFvFNfIZRTfNZRcKm3Wj8kfjxe/r8Hy/g==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PwjAUhv0tvd7MOj4MJN5MqBlxfHRtRzBeHFkJcx/MbaJA/O/aEojEeGFINLs65/S86XnyYNu436G8WC2iRLrZYnUZhajb6eBGx24bqKygilaZ20NdbKBKQqpay0ALmB8Wn1MBc3lss/hOrmVynDyo5ku2yXXCVN9EqRzLghSQSs/XuaikEsKNvqJuvpT6OZUV9KAC1EVuPHAoJ86Ek+ZE6NoXfKCqwzhZqzphzhDS8pVhOvMs/AxbQkJLZWcjSPLpMFg+PQZvtuBhE27FVGQJE1tRBMky83WOjGg/xiymhRe32j4TI76/dSNEPqUZdbhmoLOx716jd+O7OxOfaDO/eMMn3tTmIG7fn2XO+sncbyntP6LEZ1E2akHZrAVlqxaU7VpQXv0T5cPFB2dVzgs=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581402,
          "profile_id": 9913926,
          "ranking": -1,
          "statgroup_id": 5704813,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186581399,
      "steamlobbyid": 109775243596888480,
      "xboxsessionid": "0",
      "host_profile_id": 4305562,
      "state": 0,
      "description": "123123 犹豫就会败北 的游戏",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstuwyAQ/Jd8QfxC6tGpSYpUQE5wJR8bK7KEk9iq0mLz9V3YdcJpxLKzM8Nujn1dwkmlHefSAapKJku689PvLsBq8NpKh3XOztiT62oq8E4wWVOPGd0uoKp12pY8QG1K6JEBJnB3DkAZyfTh6yY/ruK0ffDv7JrJ/fHvlE0/F7ObarN9Q+4W9DSxFzRmkvQqA9rinD4Fzj3Oadmn4Tiz6tgFNWXadgly9au3RPlxIZ2pvg+xR9nQE3UW2op4J03Iow1wBm+z9B15qldduTLjQ9aEq4BRo67GmWYAX4MzfMkU6Qp8mG+3aMsdYg5ZN5Qh38L9HnU0DHoPiCETIxJ6A/44ae2ZRn+zBu73WO984JZVSZzi+S/Scka6F8g2pWwWGbKJWgTMb92ujzxBy6LoPXhe1vfKrj4EaGkpV5HDzpDnBnTFDBfQ5UELzvfd+h+ZslOBfcOibznV+1fdr/UmXf2qsHcu1gv53Icuf/6nH9YdSOAvyH/vgB/3BXb5tS+CaXybg3/y0xT6Po2bf2X48Ws=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PwjAUhv0tvd7Mui8TEm8Gq864AWXtBONF3Uoo3ZdjKsT436UzEInxwnhhdtXT95yc8+SBpnb/BuqmWoqcB+WyOhcZGNiW4TiuqYFNy1pRlcEIDKAGWs4KVRoaWLL00Nj/GpbyY1nKW/7C8+MvZG26ind1N6GrNaLgE96ghhU8nHVzYoM5y3bdFXXzedPFBW/ZiLUMDEAgbzxMkDclyJ4mmXp9cld7pMuwNzO63hj7EsYSN6F03FlMx0RClQ8pkjta0kXi16/zNRqmMJ8/Xm3XzNzCRGZJ5Eflfs7DCDkxxDgiztPcyicUUaTyKV1c02IlCKFqnxeK4BK8a9/d6fBEm/7FGzzxpjoHcZ/1n8wZP5n7LaXZC0qrF5R2LyidXlC6vaC8+CfKh7MPnJ3NQQ==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581399,
          "profile_id": 4305562,
          "ranking": -1,
          "statgroup_id": 3582934,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186581398,
      "steamlobbyid": 109775243596888450,
      "xboxsessionid": "0",
      "host_profile_id": 1207946,
      "state": 0,
      "description": "Tuf",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFugzAM/Zd+QaEQqcd00I5tSURFpHJss4kplMFhG5CvnxM7XU5Pdmy/9+zNuas5vFTY0fEZUMGZiDE3/Rw8LHqnrJgxX7Ib5jNVTDnGKiZqqmnG+eBR0c7K8tJD1XCoER4myuqbB7IRTF5eXq/P74PZ7gdxOv62esrN5f55vctj3Wz32LuF3jrUAsdd5CYb4BbmdCnMOeKclr01Jc4sDPtATjtlTYK9OiZ4iCXSjSvxTNVXH2qk9TWBZ65sHWICuAveeriAtkU4Q5pqiAdemWzGb+KYycJj5KiKcaEZ0E/jDMeZJF6+H/prVmXLGXEJXmvysNxC/Ig8NIPaE2LwpKkS+gP6SuLaMYX6FgW9n0LeON9bFJx6Vo+9CFtGb1fwNiVvVuG9CVwqmN/Ohy708VxWSf9B8xr/Sxt1VMClJV+rDG6GNGvgFTxcgVcCXHC+M3EfO2mnHOv6VQ0Z5WFfM+Vd3LdOI3/p7w7zuXjcg8livXR9vIEEdkH6uxnyeC9wy//3UjGFfzPQT3p0robzffMH7Krxzw==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkE1PwkAQhv0tey6mWwtEEi8V1pRYPrbbpWI8jO021H5Q24qC8b/LLoFIjAdDoulpZmfe7Dx5sKHdv6OiXEZxKuw8Wp7HIephQ+9emh0NVTXU8TK3+9uZhmoBmWx1DUUQ7BfbVwmBOLR5citWIj28HKiDBVsXKtGS38SZmIiSlJAJx1W5uKICwrW6Im++VGqciRr6UAPqITsZWtQj1tQj5pSrOrjTh7JazCMrWafMGkFWvTJM546On2FDSKjL7HwMaeGPZounx9mbwb3QhBvu8zxlfMPLWbrIXZUjYzpIMEto6STtjsv42Nvduua88GlOLU8x0PnEta/Qh/bdXQsfaWt98YaPvMnNXtyuP8mc/pO531Iaf0SJT6K8aASl2QjKdiMoO42g7P4T5cPZJ4Jwzd8=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581398,
          "profile_id": 1207946,
          "ranking": -1,
          "statgroup_id": 1020542,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581390,
      "steamlobbyid": 109775243596888300,
      "xboxsessionid": "0",
      "host_profile_id": 11460638,
      "state": 0,
      "description": "kononenalberto's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstOxDAM/Be+YPuKtMcs6aJKOFFRsqhXCiqbCroSoDb5epzagZ6s2OOZ8fTuae0lfiX4JcgVKyUFSH6Lt59TKtUcjYeV+q14mfZ+bdStobdOQM8Yu6ynVKlhNV62qTRWIgZSWeDbSyq0BfFaverBvav+89xe3Fepz7enx7Kwl+vx2dnDkfcIsO5MmE7o2O07tXd/OrRHTtJZmuthI9xUmc+ZZuNS6R5Is2/pzY4CCF9qjz6JK2EUac4+2uRj5wfbohZgTz3eyRG/Xb6h51qlmvYatbCWoTHesRYpNPUrvNVGuseAuthDi7d2mfuA78zt0Lt8oDrdpCt4psqewE7CUHYb6t/u9/4Y025Qknd2f7mARz+kO2D+JeceIC6BtHTIP6ynad+TtATN8+g55Hm8P/voUMsQmAdvDezZoa5hnzUJp5g/jvlfqzCDhnBzMB819yfsJ3IZERe1HTbDt9MxZ+bK7Een/5AybcDm/lj//wezeCN8gdnwPaYV+bo9U5Xy7desz6R9pK/Gm3A+rjEfl5+7X7Ji+Bk=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrNlFtvgjAUgPdbeMaFgnObyV5A6jATBGlBlz1UqQG5SJBtumX/fRZv020uZCb6dE7P6SX98uUAkX9859JsMgoiqiWjyWXgcXUAqjWhJt3w3DQneTBJtMaiyHM5JTFLBZ4bkeG6sVhlZEg3aRI+0BcabVZtkg99e54WOyrsmiCmHZrBjMS03S32BVOLEm9evMLefJ4W5ZjmpEFywtU5LWzJFoKyiWDVdDwW1a6ty6ioWbIZFj3dDAGLCobhHCe476jpa28MlSGIeoPmbEzEGXBCz9FVaC32yZYKIYsm7t/j2A8Qwuy8TBXtjvvgf4IjCYJ0K+7AEbdwwKnh4CKqRGgVH7HR6oOuDz2B9foGiVJXd/zxwJmJGHlV0sQuTiIbv+HMifxkDRMt71IwTl0rsdawYaf7C5wK2MFS+SKNuMOFddZglvm/yAhbMuKf2li2/E0bopbVJiqnzQEy0unJrJyx0b4zaWlnPHA8Z6pn5Azed8YoPWogPJozV+frjA3LOmMcc87UznnOGKXnDDzenLk+Y2f00s4cnjNPF5+iBsiu",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581390,
          "profile_id": 11300392,
          "ranking": -1,
          "statgroup_id": 6227303,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581390,
          "profile_id": 11460638,
          "ranking": -1,
          "statgroup_id": 6297976,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581373,
      "steamlobbyid": 109775243596887710,
      "xboxsessionid": "0",
      "host_profile_id": 4515905,
      "state": 0,
      "description": "4v4 ARENA NOOBS",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwjAM/Re+oPQSaY9lKVA0N2MkiLxSTd1aWNE01DZfPyd2IU9Wju1zju3FR2NyfDG0/R/swceDavPCB1UL4kx4Bq53kAd8VNc04Eo24pNqJtUWXFMIyPfUU/bDykeyG7BGBlz3w2bwf8apy8Wer7vennZbZY4ncDt72Na/NvmKDkn98k69Y9SzptpSVK5kHoPaAk9atcizDzyx+o5G4mwS9dNRruuTinqlD2+6FkD1cdXeMqqxviboVLqP6K8YZn7Q6K2lnkrv0achfu1nx7H0MfVVsmctNlOtYS25qAhPQCMedNd+fuyhcJjLcysi/Gdug97zDcVWgC6XnJPMswfdCEWzH1H/+Brw2vneIHPuWT72C35XpHvC/ce8twl3PZGWEvntsGpCH69lqjgfPU9zPs6ffZSoxU7Mg7MG9mxQl6U78XWS+V0930ry3EE3zfcFrnni7nYn3MSPW5PlvMMM9IzX6VxfuQ7vM+BL9bjFxt/imu63EG+64FvGXpSbon/ehcnU9Xhf/ANwbvJO",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkk1PgzAYx/0sPYOhDPZC4oWNKkYWQQtuxkOFknW8hqGOGL+7tGabJPOweFB6eV7b599fC1Xp8R2UVRGzlNp5XJyzCBiaDvWJoktgU5OaFbk9AwaUQE1Jxl1FAjEJd4U2qkhI926e3NBXmu4jh9Th6r4pRYfMj2EZvaUVqkhGnTvRxzYeJVEjpvCZLxuRzmhNZqQmwAB2cm16GJkuRpobRNxa+KE0sch5ppuI2txNILdTHyWNn/vLwCrfFms0DWG6eL7crom6hUESBXMLeW2f6VkIcev6yys/WzGMfb7fdJh9AT6kY2wm7YIdNuqBDfzHbKh1Kht4GhuojNXxcKR04AwOcNQOHH7fHZ0v/1d4lJ/wHJUqd19Q/va9B71QqfVCpd4LlcNeqBz9kcqns09yAOof",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581373,
          "profile_id": 4515905,
          "ranking": -1,
          "statgroup_id": 3714521,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581373,
          "profile_id": 4599991,
          "ranking": -1,
          "statgroup_id": 3771640,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581373,
          "profile_id": 10828670,
          "ranking": -1,
          "statgroup_id": 6117318,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581373,
          "profile_id": 11429579,
          "ranking": -1,
          "statgroup_id": 6283523,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581373,
          "profile_id": 11453217,
          "ranking": -1,
          "statgroup_id": 6294251,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581371,
      "steamlobbyid": 109775243596887650,
      "xboxsessionid": "0",
      "host_profile_id": 8956661,
      "state": 0,
      "description": "3 vs 3 NOOOOBS Europe",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1uhCAQfpc+wapI0kMPbHE3JAtUgwe9dW1ji2ndpD8qT9+RGS2nCcN88/1wV/WlgJNqPwYxQSUF14Luwu3nuJZyCNbrCfsFv+IMs/KW453iuqQZN07HtZLNZL0o1tI6ATN6LRO4u66FcZpX4aW+hNPj9XT7rVzrm7T6es7eWJvOT2043CN2A9h1nAWOmSa+xgG3uKdPAfOEexp+cQXulB1/RU6Z9V2CWP2mLTFhXIhnaj+HOGN8t/HMrW/inXarH3H/DNoWPcX53EjQGb3pE/t+mKk+xBpxmfUF4Q7cEBctxwT73Qz9yNsE8M+hBg2+GCdod7lpn40D7aLB2o+z9jW96TbvZytHhtgF8C8UYusVe9KSMP2e7wJ6iLdaQC/lpiBrhVx8yY0XZ8QBLk4l9B5yVNv7dNOhwT/jFe0Br9GrDLizYx/fAq9yov0BMiCMbs/AOrX9r2Dl3s/2jCBjmj/Af6AMh9l+MOyH/j93d8uxX7P9L8r1L0ZPGej/Ju8YYFFufdhzcQNvz/XD3R9e7vDc",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkl1PgzAUhv0tvQYDuKEj8aYbVYybAqO4GS8qlIzxGahuxPjfXWs2xegF8UK5Ol9ve948Oaom3b+AsiqiOKVWHhXHcQiMs9FQ13VVAjUjLC5yawKMXcUoyXiqSCAiwX6wqyoS0EOaJ9f0maaHakpYsJo3pVDI/Js4o7e0QhXJ6NQVurh2KAkbsYXvfKpFO6OMTAgjwABWcgUdD0HbQwPbD3k03TmEnug50E7EbGYnKo9jjJIG53jpm+VmsUbjQE0XjxfbNdG2qp+E/sxEzk4HHRMhHm28vMTZKvY8zN9D6lrn4FX6ho0yUnS9hUb7QKP+EzTeXfkVzQ0xO6JBaTc0cvti5E8no7W48MkezHv+KzLKT2S6ujzphctBL1wOe+FS74XL0z9y+XD0BilJ6Nw=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581371,
          "profile_id": 809066,
          "ranking": -1,
          "statgroup_id": 666716,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581371,
          "profile_id": 8956661,
          "ranking": -1,
          "statgroup_id": 5357009,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581369,
      "steamlobbyid": 109775243596887630,
      "xboxsessionid": "0",
      "host_profile_id": 3524817,
      "state": 0,
      "description": "[Revancha] BF 4vs4 SEMINOOBS not same civ.",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstSwzAM/Jd+QZuHZzimdegEUEyKXciVlMmQtLgHGCf+emRLaX3SeCXtrqTVoTcFvgQG+wsNhNipoShDUA8gPgnPwVsPRcQndckirmQvvqhmVkPJNaWAoqGe0rptiOTosEZGXFu3d+HPeHU57J6TadLmpLvNUR7OT7bTZ3f6OMPbe/fwSr0T1PNItZWofcU8BrVFnqwekKeJPIn6Xk/E2afqZ6Rcb9OaemU3b7oTQPVJPVxzqmlDTdSptF3TX+kWftDoTRO/0g36NMSvw+w4liGmvkpa1tLmajCspRA14SloxKPuLsyPPZQec3lu5Rr/mdug92JPcRt0bDgnXWYPuheKZj+h/mkX8c6H3iAL7lnd9gthV6R7xv0nvLcZdz2Tlgr5W7ftY5+gZa45Hz3PSz7On31UqKWdmQdnDezZoK6W7kTjHUnm991yK+l9B+O83Bf4/o77BTfJ7dZktewwB339I7zL7nsf8T4jvlG3W+zDLT7S/ZbiRZd8y9iLcjP0z35Mri5Hv/oH3EbycQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkVtPwjAYhv0tvR5mHRsoiTcTakYch64tBOPFJyth7sDc5gGM/11bAkqCF8YLsqvv9Kbvk7fYMu7eUV6sFlEivWyxOo9C1Gk6ln2B2wYqK6iiVeZ1UQcbqJKQqtY00ALmu8PXVMBc7tssvpUvMtlPPlTzJVvnWtFQz0SpHMmCFJBKP9C6qKQSwrV2UZ7PpV6nsoIuVIA6yIv7LuXEHXNij4WuPcr7qrqMkxdVx8wdQFq+MkxnvomfYENIaCrtbAhJPh1Mlo8PkzdL8NCGGzEVWcLERhSTZJkFWkeGtBdjFtPCj51WwMSQb72uhcinNKMu1wx0Ngq8K/RhHMvOaV2azkF21nd2+CTZEXfEzOgobwMfoDZ+/LN1wKouO9ht/y9a8zfav1I2a0Fp14LSqQVlqxaU7RNR3p99AshL0P0=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581369,
          "profile_id": 2501177,
          "ranking": -1,
          "statgroup_id": 2240706,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581369,
          "profile_id": 3524817,
          "ranking": -1,
          "statgroup_id": 3200791,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581369,
          "profile_id": 3556905,
          "ranking": -1,
          "statgroup_id": 3230362,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581369,
          "profile_id": 11312976,
          "ranking": -1,
          "statgroup_id": 6232751,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581327,
      "steamlobbyid": 109775243596887260,
      "xboxsessionid": "0",
      "host_profile_id": 1699689,
      "state": 0,
      "description": "4 VS 4 AI EX",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttOwzAM/Re+YOtN4rEl2aggCUUJUB5bUEXL6ECb2uTrcWJny5OVY/ucY/vmeTAlvESM80k0wseLGkvuAzmKokM8F252ogz4qg5ZwBUbik+ssWrkVMMLUTbYk81L5SM2LVDDAq7nZb/4P+PUNG+7+4/q5XV90Kw6Src7d+b01719/zYTv33C3gno2WFtXUhXE48BbYEnkyPwNIEnUV+bFTmHVP1MmOvmVGKv7OJN94XA+kSOxxxrWl8TdCo9b/GPL5FfaPCmkV/pBnwa5Nd+dhQzH2NfxWbS0uZqNKSlLCTiqdCAB929nx954A5yaW58A//EbcB7uce49TqivjTOXuihUDj7FfSvdwHvne8tWEk968t+hd8V6raw/4T2ZmHXFrXUwN8u1RD6eC1WUj54tjEf5k8+atDSWuKBWQvybEBXi3ei4Y4Y8bs+3kp63cFk430JN1xxF3GTXHbI6rjDXOjjGfE+u+59gvsM+FZdbnHwt7jD++XFo+Z0y9ALczPwT35Mrg7v9uYfd+/yrQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtk+9PgkAYx/tb7jU2DwXTrTcoV7jEOOBIWy8uOCceICGVrvW/J9ekXLnCtlabr56fd8+zz74PlKXrJ5Bm80kYMSOZzI/DAHSg2m6rJ20JLHKah/PE6K1zEsgZjQu3LoEJ9TeFdZRRn5Vuwi/YA4vKaEBzf+qsUtFRK74JY3bJMpTRmA1s0RcuMKPBSkwpZt4vRDpmOe3RnIIOMHhfwy7SLBc1LS8orI4dpLkihzWLi5rpcljYLkF8RRIy9vT0cTRDXR9Go9uz5YzKS+jxwDN1hNd9GtYJKqxFxucknoauS4r3GrONU/AsfcKmBVW1DbfYyG9s4B9h4zj9D2ysymxQNTa1bSy1d5qRt7gUlQ2YV/9HZOq7yFTdsvEvtmz+0pbylypzr9JSZXZd1IZY59DhOBtwRbUdMvz+RZqJUB1CigMxNl3lbtSILgnacaFhdRUqB3J7klMP5PYk1zqQK8ndHL0A6iGmYg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581327,
          "profile_id": 1699689,
          "ranking": -1,
          "statgroup_id": 1478378,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581327,
          "profile_id": 1716691,
          "ranking": -1,
          "statgroup_id": 1494874,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "ukwest"
    },
    {
      "id": 186581326,
      "steamlobbyid": 109775243596887220,
      "xboxsessionid": "0",
      "host_profile_id": 6896313,
      "state": 0,
      "description": "Partie de pacoviry",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUl1PwzAM/C/8gq0fkXjsSIcq4YRNCaJ7gwpVpBsdEqhNfj1O7Iw+WT3bd87d3XG0DX4FuPkHDhDrRbumjYVyIN4JryHMAZqEr/pSJVzLUXzQjNeu5ZlWQHOgnXJedrGS04IzMuFmXh6X+M8GfVZvw+X8bV3v++lle3wZVtuer6fXyT8Vw/0z7S5Qz55mO6FCxzwWtSWeSjnkOSSeQn9uVuIcS/01UW+YS0W7qptOMwig+UK56y/N9GXWqU3W3i6ZHwze5minNge80xK/iW/HtYw17dVyZi19rZ1lLY1QhJdgEE+6h/h+fEMbsDdzb/A/c1u8vXmkuhdgui33lPkmMKPQ9PYr6l8fEj6EuBtkwzu7m78QvSLdHv0v2DePXnvS0iF/v+zGtCdq8Yr78Waf+/H9+Y4OtfSeefCtgW+2qKunnMQ5yfxhyFkp0YOas+JzviCM/3jIuC1u+ZRd9rAGkz0cqjyvwoT5TPhW37I4xizuKb+teDItZ7kTmnorvJ+9sLW+nPzdHz4680Y=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkl1PgzAUhv0tvWaG8qUu8YaNKkb2UWhxM15U6DJWYMhQtxj/uytmm8R4YbyYXPWc9z05582TQk25fwNFuZwlKXfz2fI0iUHXOr+wdKgrYFWxKlnmbh90oQIqzjJZqgqYsWhnbLuSRXxf5uKWv/B033msiubBpqgnOnJNkvERL1HJMu759VyywpzFm/qKvPm8quWMV6zPKga6wBU3NibIHhNkjMNYvk4Q2DapNWz7au0NsSNgIHDpCdPyAzokAkq9R5HY0JxOQ6d4nSxQL4Lp5PFqvWDaGoYiDgfOIN/O2RghM4AYD4j5NNHTEUUUSX1Mp9c0myeEULnP5r57Cd6V7+x00zRUw2qw0w7s4D9hR+6Ko7Hzkh/YdWADW+fLn9Ma3KSzA/dZ/4mceiAHG+R+m1JvRUqjFSnNVqS0WpHy7EgpH04+AM0L/OY=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581326,
          "profile_id": 3554046,
          "ranking": -1,
          "statgroup_id": 3227713,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581326,
          "profile_id": 6896313,
          "ranking": -1,
          "statgroup_id": 5094641,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581321,
      "steamlobbyid": 109775243596887140,
      "xboxsessionid": "0",
      "host_profile_id": 1757649,
      "state": 0,
      "description": "[Rematch] Bodakungen's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFuwjAM/Be+gJY20h7LGqDTnKioAXWPVFOlIFaEhtLm6+fEDsuTZcfnu7NXx7Gt8OVgp7lyGNWVUBXn/P25DWF99dqCo7oUF+opdH0vKdcIaLmnm9w2RHXvtK1kCHVXie8WQphh7hIC1YG4rGc47o8fcBgecDiJ89m4Sy4fYObNl1+/EXaP2Cb2IscNMF/VIbc4Z8wRc0dzevHZSZpZDzgz/t1oO2SENQogbZny08I8c/1zjT3KDolniXpjDpA7VH0IZ9Q2q65lTS3mI69CddMvcyxUHWLiqOtp5hmIZ2iGR3+ZV8Ajf4dFW+kolui1YQ/lGvM74mEE9u4pRk+6JuM/qE8y11Fo0jdrxH6P9cEHbKgrxmxeewErk7cLepuzNwsEbyKXBuf3bjtGnMBlUfwfNS/pv7JJR4Nceva1KZKHyhvkFT1ckNcaudB8P6R9bJS9l9R3XfSt4Druy3Hdp32bPPFX4e6oXsLrHobitU9/TTeQ4S5Y/+gQn+4Fb/n/Xl43XKB+3oUp9e30XP0BPHjxXg==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtk99PwjAQx/1b+jzMOjYWSHwZrDrj+FHWTjA+1K2E0W3MMQVi/N+lM4BL9AFNVBKeeve9y903n1yhpty9gCyfT6KYO+lkfh6FoAVNw2zoTQUsClZE89TpbDQFFJwlMlQVMGHBtrDJchbwXZiKG/7M413msiKYeuus7KjJMVHC+zxHOUu4Oyz7ogXmLFyXW+TOp0UpJ7xgHVYw0AKOuLYwQdaAIH3gh/K1yW1mkVLD1lAtaz1sC+gJnLvCaAw92iMCSr1NkVjTlI59O1uOZqgdwHj0cLmaMW0FfRH6XbubbvosjJDhQYy7xHgc1eM+RRRJfUDHVzSZRoRQOc9yI+cCvCqfsIOaqtebZgWetocHT/C+hleDFWy1D0enVbjJyhbce/wjcuqenPavyfH24eTqJ3LfvDn9l8hVf+uhLo2jcNk4CpfmH7m8P3sDhL9bxw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581321,
          "profile_id": 1757649,
          "ranking": -1,
          "statgroup_id": 1534421,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581321,
          "profile_id": 11204397,
          "ranking": -1,
          "statgroup_id": 6188054,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581317,
      "steamlobbyid": 109775243596888580,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"b7d2ee04-8915-47f3-b35e-66433397d14c\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 11359560,
      "state": 0,
      "description": "4 vs 4 ULTRA NOOBS ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFkkFugzAQRe+SEwQClrqE2o2QalukdlW6KyhCMknIohXg03fsGSesvmxm5v3v2Z3GtoIvl2721QKKV0xWdObvf3WQfPLayQXvBeuxptD8XuJZw2RLNWZe6qB4t2hXiSC1qaBGBpnBWR+EMpL9TGumbvVHf7TZyXxf+mnl5697Zy+n2pr9C/bugMfGWmA8SOJVBtjinDHXTrzhnI69G4Ez+cDOyHTQbsiw15i8ZcrPG3Hm+lrEGuVCTeQstWvjmTQhjy7IFbytyrTkqU1chTLzr2xJ86CRUfN5pRnQz+IMXzFFXKEf5jts4GFBLSBrSxmKffImjWVQe0QNmZgmo3/AnyDWkWn0t2ro/RrvBx96S15Rz+bxLtIJRtwbZJtTNpsM2USWBuZ3Sz3GPoFlU/Q/eN7S/8olHw2wdJRrU8DOkGcLXDHDDbg8sOB8P6T3OCh3L7Fu2tJ7SD8+7316b5snfhX2DvehlI99GAp9m2julHYgg7cg/+MC/XFfYJef+/LY4QL8kx9b6uun3/0DITDxrQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1FtvgjAUAOD9Fp51oVB0mOyFzW6agVpoUZY9dFIjcpEh87bsvw9q1JGFh2UPy5I99XJO6DlfU4DSeHyT0mw5CyLeS2bLy8CXOgComq615Ia0ylkeLJPebbHZkHLO4nJaBGZsegwUq4xN+WmahA98zaPTymT5dO7sUpHRLD8TxHzIM5SxmJu2yAtWmDN/J04pz3xdie2Y5+yW5UzqSL2wb2CCjBFBcETF2LVJvxwNh6B1OY4cw2LxauMA7JkyeGF7hHy5zPUGLErHljtfPLtbhRIfsjs6pknk0D3N3Gie2CIPDXA3BE6IMzPUWrZDB+Rw1g2l6Rgn2CCiBuwN7d619N74iqdDWYdq1U4524HftnN9YUfG6bEXo7b3EBx6R+GOJtRzu+lmskA3UxBNnu+2C6ZsgRv6rtW1ktIfI6QV9tgi2stEjYYUUSTuhXr3NJ4HhFBxX2ZQY6foV22o6hU79Wyn/NvV2xVPFkJQoYNnOvWfrp6uWWVrfvrVwYpbGTnCHeY/kpPr5L5bpfYnqmz9iSrbv1Tl08UHzk1dag==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581317,
          "profile_id": 359441,
          "ranking": -1,
          "statgroup_id": 187622,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581317,
          "profile_id": 2987439,
          "ranking": -1,
          "statgroup_id": 2703076,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581317,
          "profile_id": 9409430,
          "ranking": -1,
          "statgroup_id": 5500103,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581317,
          "profile_id": 10466760,
          "ranking": -1,
          "statgroup_id": 5959777,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186581317,
          "profile_id": 11359560,
          "ranking": -1,
          "statgroup_id": 6253137,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186581309,
      "steamlobbyid": 109775243596886940,
      "xboxsessionid": "0",
      "host_profile_id": 320567,
      "state": 0,
      "description": "Partida de Xpenditure",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9Us1uwyAMfpc+QUhSpB52oCLtkAosFV2X3tZ0ika0pdI2JeXpZ7ATThbGn78fVseuFnBy7YdJjFBJwbWgu3D/28ZS9sF6PWK/4lecKa28r/FOcV3TjBvGbaxkM1ovqlhaJ2BGx5LB3TUWxmn+fto839jucMzZy+vbztz2TX4Mx5/zmY2XkG0QuwE+pzQLHAtNfI0DbmlPlwPmDvc0/OAq3Clb/oGcCutbhljdrI2ZMDyIZ26/+zRjfJxJPNegN91pJ+b9E2ibaP/aSNCZvOmY/cwmqrNUI25pfUW4PTfERcuBYb+doJ94mwD+OdSgwRfjBO2uwVfcbRxoFw3WkJX2J3rTzt5PVg4lYlfAv1KIrSP2qCVh+iXfR9SDvNXD+oZyU5C1Qi6+5saLPeIAF6cYvYcc1fw+n3Vo8M94RXvA6xE1A/dy26W30deR9gfIgDDaJQPr1Py/gpVLv7BfJXoJGZPeDP4DZdhPSz9083xh3X2N/VO5/EUZ/2LytAT9v4RVAha97cKSi+v55U0/rf4BbA7vaQ==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrtk1FPwjAQx/0sfR5mHQwSEl8Gq4644bq1E4wPdSthdBtzTIUYv7u0BiJRo2iiIfHprnfX3j+/fwoN7eoRlNV8kmbcKSbz4zQB3aahm+2OBhY1q9N54fRBF2qg5iyXqa6BCYs3jfWpYjHfpoU45/c8255cVsfTcFWqiYZ8Js35Ba9QxXLuBmouXWDOkpXaInfeLVQ55zXrs5qBLnDEwMIEWT5BLT9KZLRxOLCIqmHLF6rncRvK2KNIrGhBx5FdPoxmqBfDbHRzupwxYwkjkUSejfB6zsI2RDL6dHxG82lKCJX3LR44J+BJe4umAXewNF5xgTtcZGcD5iX/ERn9IzL7qjR+SaXxqX/kstz6F+iqN8S2gKHAlSvMdhDSIRFf9dMrlJ8ImSHE2CPm7aiZXVBE3/XXTff3t/lP7pvkWgfxM8yDUNk+CJWdP1J5ffQMoPshVw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581309,
          "profile_id": 320567,
          "ranking": -1,
          "statgroup_id": 141754,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186581307,
      "steamlobbyid": 109775243596886940,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"f6a97de8-5c14-49f8-8313-fb3386f7d0db\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 927747,
      "state": 0,
      "description": "4v4",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFuwyAM/Jd+QZMmSH1MCqtSFVA6UJXXZVMkojWdtC4JXz+DTcvTCWP77rjNZWgrOLl0k69mQLxisqI7f3/UAfLRaydnrAv2gT2F5vcS7xomW+ox01wHxLtZu0oEqE0FPTLADO4+AlBGMnNsy8/rXlsh/y7m9HM97B/vpr6cs9PVmu0eZ3fAx8Ze4LiTxFcZ4Bb3DLl24g33dOxsBO7kPftCTjvt+gxnDUlbpvy0Es9c38bYo1zoiTxL7Wy8kyb40QW4gLZF8Z40tYlXocz0K1vCPGDkqPm00I7nPOUrpohXmIf+9itomBEL8NqSh2KbtEljGfQeEYMnpsnoDegTxHVgGvUtGmYfYr33YbbkFc1snv8inWDEewVvc/JmlcGbyKWB/d1cD3FO4LIqeg+a1/ReuaSjAS4d+doUkBnSbIFX9HAFXh644H7fp//YKZf+c1z1d0H14VX39xLrNk96Vcgd5qGUzzz0RepXfkwZyOAvSP8wQx3zAll+5eWZ4QL0kx5b6tt92vwD/Q7wxQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1c1PwjAUAHD/lp6HofseiZfBqjMOpGydYDzUrYSxD+aYCjH+79IZmIuZifEgB059fe+lr/kdWigK928gL1bzKGF2Nl+dRyHoGaKmyZoA1iUto1VmD0APCqBkNOVhVwBzGuwLu11BA3YIs/iGvbDksHNoGSzcbV51dPgxUcpuWYEKmjJnUvVFa8xouK2m8JnP6yqdspIOaElBD9jxtYk9ZI49JI/9kK8Wdk3Tq3LYnHSr2ghbMXRjXDixok5cMvJiyPN9guItycjMt/LX6RL1A5hMHy83SypuoB+H/tAaZrs+EyOkuBDjoac8TaXkliCCeH5MZlckXUSeR/h5phPZF+Bd+E4nq4YqG1LDTqzt4JHYeXf58dmJmqJBDTbspNpOPNn9YKfs5KDRsJNrO+lk124HDVlXdLlhp9R28smu3U7SoaRLasNOq+2Uk127Xaf51HW+/LFqw41X9nCf8Z/kum1yv72l9k+3fDj7AIIEu/s=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581307,
          "profile_id": 927747,
          "ranking": -1,
          "statgroup_id": 778551,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581307,
          "profile_id": 1948584,
          "ranking": -1,
          "statgroup_id": 1718150,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186581307,
          "profile_id": 2517119,
          "ranking": -1,
          "statgroup_id": 2256008,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581307,
          "profile_id": 2757171,
          "ranking": -1,
          "statgroup_id": 2487664,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581307,
          "profile_id": 3813836,
          "ranking": -1,
          "statgroup_id": 3293267,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186581307,
          "profile_id": 4696493,
          "ranking": -1,
          "statgroup_id": 3837305,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581305,
      "steamlobbyid": 109775243596886880,
      "xboxsessionid": "0",
      "host_profile_id": 9393348,
      "state": 0,
      "description": "[Rematch] Shoresy's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsluwjAQ/Re+gCTEEgcOoU5RpI6tUIcqvUGE3DrQIKQqy9d3bI9dn0aeecssq6OuC3wpmGEqRox4waCgv+Xxu7ch7xdpYPT5kl08ZiP5I/d/FYOaMGoY9zbi7ShNUdpQqgIxYMME/y42EAqY/Kiy95ft5/nePs9Z82zuX8fjaZivp9uhUeut527RT+Ow6DED8isUenM6OkXOV6/TsjdVek3esav3lEnTJZ5LB5+JWIaZfKbyp3cYYSzG+cyxX/cHKs5jwt5yj+nXUZM3VpPiOuoLE7VSqYbE4zqcSePzS4l511dmZ089TrAMSdATfJj8/EucWzfutYux33IWNdUsWOO4y400mjz3yK09N+aBFyNxzsDDfqoJeZxvMBUTtCswwEA7LzPqp1C0jsd6AdNQfcMg1rehjxm9pLSfWfJhoZ7Ruz742t7iSB+ycB9iacNN5WDCXmHzn4+7TIQJ/utZmoruK95khjdJ+C6Pe1U67HADPNy0nuT3mmankaunu4F4b1I9bhe9263+AOeh8gY=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrV0l9PgzAQAHA/S5/BrIDOkfjC1irGTWG2uBkfKpSs428Y6ojxu7titkmiD6jR7emuvYNefjmoKXcvIC+yUMTcTsPsUATA7Ok9XTdOFLAoWSmy1B4AEyqg5CyRaUcBIfPXhdWpYD7fpGl0yZ94vDkNWenPbqq87lDlb0TCr3mBC5bw4bjuEwuXs6CqX5FvPi7q64SXbMBKBkxgRxeWS7DlEGw4XiAjIre5Reo713KiujbiCMrYpziqaEqnHsqfJ3Pc92E8eThbzpm2hF4UeCOE3VWf5SKIZXTo9JwmM0EIld9bfGyfglflC5tu00bb2sDdtbkiUUsbTNvZqLDBon7YGa3hIitrmPf8RzKdrYz2ra1x2sog/LmMaC+j77RM651Bv7czxh/JwIZM2ymP9mLK472YsvtPU94fvAGABDP9",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581305,
          "profile_id": 9393348,
          "ranking": -1,
          "statgroup_id": 5492181,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581305,
          "profile_id": 9393378,
          "ranking": -1,
          "statgroup_id": 5492200,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186581303,
      "steamlobbyid": 109775243596886800,
      "xboxsessionid": "0",
      "host_profile_id": 1048501,
      "state": 0,
      "description": "4v4 nomad noob 1000-1200 NO BEGINNER",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9UstuwjAQ/Be+IE9LPfRg5BS5qm2BnErhBhFK6wDh0DbBX9+1d52cRt7s7OzMbg7DnsNXKDctfAYkOFOc3vzjdxugGL1xasZ6w87YUxnxqPFNMrWnHjvN24BENxvHmwCN5dCjAszh7RyAtopd2s9aX6fa3sf8lOmmvb39Hdy1Pl2/3o8+e0HuDvS0sRc0lor0agva4pyhAM43nNOxD9vgTNGzC2oqjetz5BrSbrn205N0FuY+xh7tQk/UWRvXxjdleZq/wG5ezbG/1gL2jN4MufnOFsJZxMhbGdcQ78g0aVFiyrHeL1CPurUH/yzuoMAXbTnN3oOvOFtb2J13iCErterrk/eLEVOF3A3obyRyq8A9K0Gcbs33CfuQbvk0rqPcJGQtUYvbM+34DnlAi5U5/Q85yvR/kfZQ4J92kuaA1+hVCdqr7RD/rcMd0XwPGRBHv2ZgrEz35Y1Y6+Wake2S/gzugTIcF3OrsO6H1F+a9Ubaar1FEW4xelrB/j/kXQVcNd2TT/ek7ciOu/Z18w+0V/Cb",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkM1Og0AUhX2WWYMZkKpp4gbrGBpbC4WBYFxcYQjIMBAYjdX47nbGtLExLowLw+rcv9zz5Vi2cfeGur4tKs48UbTHVY6mFnbOJ9gy0CBBVq3wZtuZgSSDRpXYQAVku8W26yFj+1LUN+yZ8X23AJmV4abTF6Z6UzVsxXrSQ8MWa31XDQGDfKNdlOfToMcNkzADCWiKvHruBhFx/Yg4PtV6leK5UjeMCFHqJ5zkWO3SW+BdsozLx4f4xaZR7sA1TajgIX2lfcxL4df6xzK1tF5S2iWBCNxIewTpau1doHfjezbmYSzml1ysg1zUZhfMZ/2nZPBPyfyW0h4F5ckoKJ1RUE5GQXk6Csqzf6K8P/oAZ8vDSg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581303,
          "profile_id": 1048501,
          "ranking": -1,
          "statgroup_id": 899470,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581293,
      "steamlobbyid": 109775243596886620,
      "xboxsessionid": "0",
      "host_profile_id": 2036214,
      "state": 0,
      "description": " 4 v 4 Arena - Nooobs - ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwjAM/Re+AHqJxGNZA6o0N+uUoOVxVFO0FigPsLb5+jmxC3mycmyfc2yvPp0p8CXQDXdoIMSj6goZgroDcSI8Bz94KCI+qUsWcVU68UM1s+ok10gBRUM9y2HchajsR6wpI66H8TCGP+PV1WbabP9OF5d+J/ezPe+z4/WWma+dsL3cflDvBPXsqbYSta+Yx6C2yJPVHfI0kSdRv+uJOF2qrj3l+iGtqVf29KZbAVSf1N0tpxobaqJOpYc1/clx4QeN3jrqqXSDPg3x6zA7jssQU19VDqzF5qozrKUQNeEpaMSj7jbMjz1Ij7k8N7nGf+Y26L04UGwF6GrDOekye9BOKJr9hPqnt4i3PvSGsuCe1XO/EHZFumfcf8J7m3HXM2mpkN+OOxf7BC1zzfnoeV7ycf7so0ItdmYenDWwZ4O6LN1JqONZgG+XW0lfO+jn5b7Auxfubw/CTfK8tbJadpiDXvA2e+29x/uM+EY9b9GFW9zT/UrxriXfMvai3Az98y5Mri7Hx+ofJlHyjw==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVlF9v2jAQwPdZ/Bym2InDhtSXtHFHNQI4sRMy7cElRgQnIQvZBq323dcYAY0mpFV7gD35/ul8/vnuIDK+PIOqXi+yXA7Lxfp9loIBMi0HQdsAm0Y02boc3oEBNEAjRdGKpgEWYn5wvGi1mMujWKrP8ofMj9pINPNluKt0RK9NkxVyImtSi0KOAh2XbagU6U7f0t75faPNhWzEnWgEGIChenApI+6UEXsape3p0ZC4TNuoG5jaN6aegqGi9UhhJwj5mCnY2m85UTte8iTyqp+zFbmdw3z2eL9dCbSFkUoj3/PLlziXEoJDSKnP8LeZlU844aS1T3nyiRfLjDHe5nNH2fAG/DL+ZPfRdmDfgR126MQOXpod16eXmA/6HSEj+/fFOUk1w2Qs8ir2o+XqMdoizlJb3POYl3nIn3gd5ctyqnQOP4Fkz5ZXMS3p4S/8SXCWTd9BGHfYWCc26Er6Kgjdi/WVPNdX0P4AMXQ67OwTO+tK2LG4ur6ZxH1k2bi7z/CJnX0tfRenR3aHGZPe37IiVLPy4NvY9Lqrqvdqz+MOl9ZzALOX/4mMeY7MW6t0/osq+xeq8uu73zfjeAE=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581293,
          "profile_id": 1481516,
          "ranking": -1,
          "statgroup_id": 1267952,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581293,
          "profile_id": 2036214,
          "ranking": -1,
          "statgroup_id": 1803183,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581293,
          "profile_id": 5723454,
          "ranking": -1,
          "statgroup_id": 4514292,
          "race_id": -1,
          "teamid": 4
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581289,
      "steamlobbyid": 109775243596886420,
      "xboxsessionid": "0",
      "host_profile_id": 11346744,
      "state": 0,
      "description": "Epiikka's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstOxDAM/Be+gO0jEscsCagSTiiki8oNCqqUsnQPi9Lm63FidzenkR2PZ2zfvIytxFeAnxcZECkpIHAsnv72CaopWg+B8lp8Uk1l1ammWCOg5Ro3h31Cqg/WS52gdRJrIMEdxj4TMA5E59/Vt/oR7ev5+aM8fLxNJhz0+fh6/Hpu3e0dcfcCZJdrUWMJrNc41Jb7jAVyPlCfXjw5TT3VsOksrR92xDUiV47tTJxX1lnYY5VrjB/Ed5t11tZ3OQaoHWSf4ILeFogDe2o3XZVx8xlaxiph0mjVvHCPC5+JUhjKl4mP5jus1utAWOOsO56hvsX4A+noBNY+EsaZuGbHf9CfZq2jsORvsch9n/NDTNygJHM2l72A14J1rzjbgmezQppN1tJg/z7sx8yTtKyG/6Pndftv/OajQS09z7Wp8GbYc4e68gzXpMs47h+HbR+l8ds+p3XbB8Txmo+nmvJdsek317ur4XIPQ2V/J+474T5p37gL9j8G5Kd7wVu+3suFq0L/vIuutsfD380/dLLyJw==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVk99PwjAQx/1b+jwM3QZLSHwZrDoj6IbtBOND3Uoo+8EyprIQ/3fXGsAlgwQ1Ck93vbv2vv3kDqrK4wqk2XzCI2Ynk/k5D0AHQk1vG7qugEVOcz5P7F4ZVEDOaCzcpgIm1F8nylNGfbZxk/CGvbJoc+rT3J/eF6msaIhneMzuWIYyGrP+UNbxhctoUMguoufLQoZjltMezSnoADu8Nl2MTAcj3fECYS38kJpYxlzTCWVugEMobJegsCAJGXtW+jaaoa4Po9Hz5XJG1SX0wsAbWMgt60zXIkhYh4yvSDzlGBNx32RD+wK8K7VwWtBoGhU46hYOPF44t9Q6EA6KauH0+T44uqZV4GhbOGoFjvjvms6n/yM8zV14aqU2YEVk48t8ayehUv8jleq3Rs05dA8Rqt/DXaO2h0zrmMkMDiZj/R6Z9klMtvFPKp/OPgAFjDWE",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581289,
          "profile_id": 11346744,
          "ranking": -1,
          "statgroup_id": 6247588,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581289,
          "profile_id": 11351433,
          "ranking": -1,
          "statgroup_id": 6249589,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581289,
          "profile_id": 11351707,
          "ranking": -1,
          "statgroup_id": 6249718,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581284,
      "steamlobbyid": 109775243596886300,
      "xboxsessionid": "0",
      "host_profile_id": 9734444,
      "state": 0,
      "description": "  noobs 2v2",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9Us1ugzAMfpc+QflppB12SBXoIs3J2EIleiyd2IJWetgEzdPPxE45WTj+fvx58z40Er8c/BTkjJWSAiT/C7e//VqqMVgPM/UrcaaZ0qrbjv5pAQ3PuGner5XqZutltZbWSZyBtcysb89rYRyIc357s/VRwFg7qC+HU3H8MNev8XKo1Slsnwi7Qz1tnEWNBbBe41Bb5Bly5KmJpxOvriJO1YtP0lRY32eENSRvmQnTnXXm9jrGGePXmahzh37jP3Ay8S/orTA0vzMKfcbdDJn93i5cb2NNuKX1FeOOwrAWUFNG/X7BftRtAu7PkQfAvRgnmbvBvRK3QW6QHdV+WsC3/KZPu1+smkrCrlB/pQkbVuwZFGP6R7539MO69d36jnPTmLUmLb4RxssD4aAWpzN+jznq9D5PPgD3Z7xmHtz1TJ5Re7kf4lvUpTPmD5gBY/S5/Sn5VnS6r2DVo188MsKM2e8W74EzHJc0b8KQ5gvrbjvqt+XjFtV6i3GnJfr/ZawSsTi3IaR7Mm4Ulxf9vPkHR2bvPQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtk0tvwjAMx/dZci5T0wdsSLsUCAOtBUKTFqYdAg2i9EEpHa9p3300CBjSOExIQ0jLxXZsxX//rEBFev0ASTod+SFvxKPpve+B8mNJ1bZHAvOMZf40blRBGUog4yzKXVkCIzbcJ7ZRyob84MbBC1/w8BCZLBuO7XUiKgr5M37E2zxFKYu42RV1/hxz5q1Fl7zn+1xcRzxjVZYxUAaNoGlggowOQVqHClvDpJlbwyZokduObVgsmi9tiPumDGdsg5An57X9FgsT13LGk4GzUijxNFanLo1Dm25o6oTjuCvqUAvXAmgHODUDvdi1aYvselUoTVwcY4MIDbjZ7jaewKf0Azu59CAX5RN2ypEdvDY7xxPsiJvsZzHOzh7A3ewoWNOY9p1asuxNUGUIw96gvpowZQWdwHOsmhXn/DFC+pY9tog+66lhmyKKxF5o/5lGY58QKvZl+mfYKUVZ0x9LJ+zUIzvln915dgV4gq3w7b+qJ9zyzB7czr+InHyO3G9Van+kEl6kUr8JlcWbUFm6ksq3uy8J+y2U",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581284,
          "profile_id": 2604597,
          "ranking": -1,
          "statgroup_id": 2341013,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581284,
          "profile_id": 9078060,
          "ranking": -1,
          "statgroup_id": 5395640,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581284,
          "profile_id": 9734444,
          "ranking": -1,
          "statgroup_id": 5633511,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581283,
      "steamlobbyid": 109775243596886300,
      "xboxsessionid": "0",
      "host_profile_id": 4381768,
      "state": 0,
      "description": "2vs2 NOOBS",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFuwyAM/Jd9QdIkSH2kIp2YBlY2mJa9rdEUjahNN6lKytfPYMh4srB9dz774WXsOL6dcvPKF4wEZyr/+evtEEIxeXBqoXzLTpSvQVwb+pNMdanHzMshRKJfwPE2hGA49qgQluDsKQTaKGaKj8fX95ff7nLo397b2k62+vre/3wen3bWFHvC7pniNvaixipr0wa1RZ5xB649Ek/Pnk1LnGJgX6SpAjeUhDUiVvwrtZ/vSecOLlPs0S70RJ0NOBn/FGpP/CvOtib+RgucM3ozlvBdrCkuYky4NepKuBPTSYsSc0n5Yc26tUf/DD8Sn2La8MTdoa/ErQ3OznuKcVfK2VQzZO9XEHNN2C3qbyVhq4C9KJEwHc8e3MM8pFvewfVpbxJ3LUmL65h2/JFwUIuRZarHPcpcv/mv0D+dfXPo9UIzo/b6MMba4OuS+D3uIGEM2w7AyHxfHsSWr+Bck5emz/oLvAdP+Wnd8n7M/RWYa0N6Le5CJd/HBWvpXvCW/+9lu+Fa+eyLbeD8dnv4AysR73c=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkFtPwjAYhv0tvd4MHRPIEm8Kq84IcR3rAsaLunWhdKdsVSHG/y6dgUiMF8Z42NX7Hd72e/JCy7h9BlVdpiLjXpGWpyIBjt0fweFgZIBGMSXKwpsABxpAcZbrsmeAlMX7xa6rWcwPZSGv+SPPDt2UqXg131atw9TfiJzf8BrXLOfToPWJhnCWbNsr+uZD045zrtiEKQYc4MkrREKM/BDbfpRodYM5QWE7I8iX7W7mS6h1TLHc0oIuI7d6WqzxOIbZ4v5is2bWBkYyiWYuJjsfIi7GWn26vKT5SoQh1e8RD7xz8GJ8zMaER7GY73KBP5dL77NcvspoHTHqzR7yrf4flP1OUNq/RAm/RXnWCcpBJyiHf0R5d/IKuAjC3A==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581283,
          "profile_id": 4381768,
          "ranking": -1,
          "statgroup_id": 3630177,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581268,
      "steamlobbyid": 109775243596832640,
      "xboxsessionid": "0",
      "host_profile_id": 2393996,
      "state": 0,
      "description": "[Rematch] ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1uwyAMfpc+QZISpB12oKNrkQYoE1mVHptV0ci29NAqKU8/g02XkxXj789evQ+NgK/SfgpihkoKrvO/cLltYinHYL2esb/lJ+wzKy81/lNcNzTjpnkTK9nN1ottLK0TMKNjWVrfnmJhnOb9ri3P+6M97jfho70WTft5OLxcu37/fWtd8YTYHdeiTbOgcZ21GQfaEs9QAc8r8nT8zW2RU/b8jJrW1vclYg2Alf6VJkx30lnZ3zHNGB9nks7aesTRoJ34F/C2Jp+1keAzZTOU9qtYqC5SjbgsYxg/ckNatJxK7PcL9JNuEyA/hx405GKcIO4GckVuE7lFh7WfFu1betPn7BcrJ4bY26hfIbaO2LOWhOlFzuAOfki3ulvf0d4U7FqhFt9w48UOcUCLUyW9hz2q/L7KPjTkZ7wiHsh6Rs+gnW2G9LaOc8QfYAeE0T92YJ3K9xXAD2XZr+0Pwyxhx+S3gHugHY7Lox+G/727S439lj1uUcZbTJky8H8lLAZYxDWEfE/Gjfx4YM+rP+x27+s=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkE1PgzAYgP0tPYNZYc5A4qUbnRg3BUbJZjxUKFnHZ6DqiPG/u9ZscTEezBINp/ezfZ880NAe3kDdVCnPmVum1TlPgG2YlmlZIw20ggpele4E2FADgtFCpgMNpDTeD3ZVQ2N2SMvslr2w/FDNqIjXi65WG7r8hhfsnjW4oQWbBWqPtz6jSaeuyJvPrWoXTNAJFRTYwM1ukB9i5IV46EWJjE6wwChUPR95mZrdMQfKOCY460hJVpFTvy43eBzDfPk03W6osYVRlkRzB/u7PeRP51hGj6yuSbHmYUjke8QC9wq8a9/d6PBIi/7FCzzyIid7MZ/5SWYGP5n5LaXxR5TwJEqzF5TDXlBe9IJy1AvKy3+ifDz7ANyWwys=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581268,
          "profile_id": 2393996,
          "ranking": -1,
          "statgroup_id": 2136895,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 120,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186581264,
      "steamlobbyid": 0,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"b27aae2b-53a3-42f5-96db-6a20c0ad20d9\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 9345537,
      "state": 0,
      "description": "noobs 2V2V2",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstuwyAQ/Jd8QfADtUenOJWlAnILSd1b4laWsFJHfcg2X9+FXRpOI2BnZ2Z38zy0FZxMuslXMyBRcVnRnb/+7gIUo9dOzvhe8zPWFFpcS7xruGypxkzzLiDRzdpVdYDaVFAjA2Rwdw5AGclPL3eFvRxOx9f263BkbzZjwhzL70O+79799h65O9BjYy1ozCXpVQa0xT5DBpx77NPxJ1NjT9HzD9SUa9cz5BqSN6b8tJLOTF+KWKNcqIk6S/Ab76QJeXQBLuBtkb4nT23SVSgz/ciWsAgYNWoxLdQD+Cz28BVXpCvwYb79ql09I64ha0sZ1lu436MOy6H2ETFkYhpGf8BfTVoHrtHfooH7Ib73PnBLURFn8z8X6WpOulfINqNsVhmyiVoa6N/NuyHyBC2rov/geU3/lUs+GtDSUa5NkTJU3oKumOEKuqCW+vs+zSNXLs1zXNM8pB9u7/5a4rvNkn5127tS/u9DX+jPkfqOaQcYzIL8DzPw477ALt/2peEa/xbgn/zYUl9YsfkDVtjwlw==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkNFOgzAUhn2WXoNZYWxxiTdsVDHCto4WN+NFhS7rCgwBdcT47q6YLS7GC7NEw1VP/3NyzpcPGtr9G8iLzVIk3M2Wm3MRg8GF2bUss6+BsmKV2GTuCAygBirOUlV2NLBk0b6x+xUs4ocyk7f8hSeHn8eqaBXUeTOhqzUi5RNeoIKl3Js1c6LEnMV1c0XdfC6bOOUVG7GKgQFw5Y2NCbKnBHWnYaxeh9zlNmkybM86TW+MHQkDiQtPWr1ZQMdEQpUPKZI1zegidPLX+RoNI5jMH6+2a2ZsYSjj0Hf8bDdnY4SsAGLsE+tpbiYTiihS+ZQurmm6EoRQtc/2hHsJ3rXv7nR4pE3/4g0eeVOdvbjP+iRznZ/M/ZbSaAWl2QrKbisorVZQ9v6IEp5E2f8nyoezD9wXzU4=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581264,
          "profile_id": 9345537,
          "ranking": -1,
          "statgroup_id": 6285181,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186581220,
      "steamlobbyid": 109775243596832080,
      "xboxsessionid": "0",
      "host_profile_id": 4127423,
      "state": 0,
      "description": "DM RS",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpNUk1PwzAM/S/8gn5G4sAhU8oUJCcqS+m64yZUkQLdAdQuvx4nTjpysmL7vednP7yOLcdXgJ0dXzASnKn0566/Ox+KyWkLC+UbdqZ8pcW1pj/JoI09Zl52PhLDoi1vfKgNxx7wYa5td/aBMsAOOWSXfS76/vQB4uU2HD/7w1GunXgTrckeCXtgMHahFzWWELUpg9oCz1jcebCWkzblrjXlL0y5ToS8SNq6UlsZepQd2HvU7nuIc2KwhL8VfM8Y5l61bQq1BC21EnMBbUdcZv6J81dq4xgqrI8cE1OULxEvj7o83nPIO/TP8BAD+qIMzQOmZZFjRY4S+ECxnVewXay5JO9XnK8i7KZGbEnY4LEXEBHT8uTRDXe10n7lTdsh6pa4a0labMuU5XvCQS1G5rEe9yhTfZHmAIteR1/BjsnDErVX5KGsfV/kd8ohP3lR6O8p7lCm+3I4Txbzpf6qyMv7jjN/s5Sf1i3vxtRfapNuoKu2GxH+Fmlv8G9viBW1jG7bi5nYqa+eHv4ATWvwEA==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtkl9PwjAUxf0sfR5mLRtEEl8Gq844/pS1E4wPdSuhdBtzTIEYv7t0BpQYHowPZolPvfecm3tPfilExv0ryIvlTCbCy2bLcxmDjgVR20JNA6xKXspl5vVABxqgFDzVpWmAGY/2xq4reCQOZaZuxYtIDp3Py2gebPNqoqHXyFQMRYELngp/XM3JFRE83lZX9M3nVSWnouQ9XnLQAZ66cQjFzohiaxTG+nXpXe7QSiPO2Ky8AXEVDBQpfGW3xgEbUAW13mVYbVnGpqGbrycL3I1gMnm82iw42sBQxWHf7We7OYdgbAeQkD61nybNZMgww1ofsek1S+eSUqb3Ob70LsGb8Z0dujBbEMIjduiTHfxnd5pd4xhb48ufQ0fctLMH91H/ipx5itxPUzZrkdKqRUq7FilbtUjZ/qOUD2fvYtT8/Q==",
      "matchtype_id": 61,
      "matchmembers": [
        {
          "match_id": 186581220,
          "profile_id": 2906111,
          "ranking": -1,
          "statgroup_id": 2629269,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581220,
          "profile_id": 4127423,
          "ranking": -1,
          "statgroup_id": 3463075,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581212,
      "steamlobbyid": 109775243596831790,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"993c475f-0766-4fba-a605-7e9e745858cb\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 11433235,
      "state": 0,
      "description": "2V2 BF NOOB!",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFksFugzAMht9lT1BoGmmHHdKFTpGWRFShHTuWTaihLRy6QXn6ObHDOFmx+f39tp/2bSngy7XvH2KESAquBb3Nw882hLKbrdcj5gv+XcY8s3LY4JviuqR/XD9uQyTr0XpRhNA6wU+tDmEGb6cQGKd5eb5/uPXh1RYV21f36+E2bI+Xy+/huDt+zatn1K6Bp4r/AuNaE69xwBb7tDlo7rBPzd9dgT1lkzjX1jcZarWJMzNz/yDO3F5Z/Mf4JnFuwG98006k/hN4m6j/xkjwGWfTZva8mihexRh1mfUF6XbcEIuWfYb5ZoJ85DYzzM+hBw1zMU5Q7xJ4sbdx4F3UGHvg8BXVNMnTZGXPULsA/kKhtg7ao5ak6Zf9PoIf5FYP62vam4JdK2TxJTdevKEOsDiVUT3sUaX6PPnQMD/jFfWBWY/oGdjZto21wKUy6j/DDkijye2to1tRsAPMW7nk18uOXJ34V+FmMd9NS35u//fuhg3mK7bcogy3GGfKwP+dZsdAi2rbOd2TcR3/PLKXpz9Swe+v",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVlE1vozAQhve3cCYrbD6aVuqFBHdTLSQYbAjVHtzgKMRAKGHbpNX+9w2O0hRVlRr10PY0Y8+IeefxDACqN09KVa/mWc5H5Xz1M0uVCwAMXYe6qSrrhjXZqhwNd5eq0nBWtK6mKnM2OwR2p5rN+LNbit/8nufPJ5c1s0W4rWRGr/1MVvAJr1HNCu4GMi9bY87SrazS1vy7ltcFb9iQNUy5UEbi2sYE2T5Bhk+ldTC5bq0dEnTfWj+0PVasH0KAE1cDd+wRoVRrc5Mxy6vYixbL22gDKUkNdkVjWuYhfaR1lC/KQOahMXYECAWuXWFaQUjHZF9rQGkV4xLbRGrAySQYXSr/1NfwrH6/DwHssDOP7MBns4tSyS6Iq0Mvti9kzCMC7HtFYktLmkRO9TBdosEM5NPbq82SwQ2IRBp5DsItb+xQJLnT5BctFhkhVL6Hm73BBoAzcA6sDhv9yAZ+ETb4BZs35+LdrLxSskLI3M0l9oh5N9XzCUUnsoO6ZkHzvMPOOLLTv95O7vuL03fv4GEO/VN3rgc6WHov/lVGh0sbOYDZ+x8iox3JgA6ZU1Wa30Kl9S1Unn2Syj8//gOHOknn",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581212,
          "profile_id": 1171916,
          "ranking": -1,
          "statgroup_id": 992166,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581212,
          "profile_id": 2306259,
          "ranking": -1,
          "statgroup_id": 2052342,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581212,
          "profile_id": 6888212,
          "ranking": 35263,
          "statgroup_id": 5089757,
          "race_id": 0,
          "teamid": 1
        },
        {
          "match_id": 186581212,
          "profile_id": 11433235,
          "ranking": -1,
          "statgroup_id": 6285038,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186581211,
      "steamlobbyid": 109775243596831730,
      "xboxsessionid": "0",
      "host_profile_id": 3278040,
      "state": 0,
      "description": "1v1 DeathMatch ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstOwzAQ/Jd+QZM0lnrowcUBVbC2UtmFHEmEDE6FcwAl8dezfgWfVp6dndnH7qpbiq8EYx2dMWKU8Pznpt+zD9nohIE54g3pI34QbKrj34VAmzjSzmcfsW4WhjY+FJIiB3xY4F/vAy6BPBfXe/9wtPBaVzcFDgyf3t9un7fyRyq5P8baHQGtAhc9VpC8cYnego4uhWkeo05HXmQTNdlAPqKnSpihiLU0ARr+Cu7smnyW4nsMHG48J/iss3dA74mzYG915Ix7xKMmU14zxe2mz43eZiKkLSJvwJmoiLsG8dBXhX0tQFXUcLbIepzZJc6/wbkN81mH2Pe78jblOMwJtZuDMDp5HrG2jrURB0bnVHMFlvdzWfLcwFwIz/0ayPNeUb8E2oU63gsYlfIVgS2/y32s6KVM+1kFsy71jN71U8wdPS/pQ5VnzF2Xb6oGk/cKh398yHjBTfbfrniT6b62m6zwJhN/qLe9ym3vB2D5pvUivvZpdhpr5buB3E8h5HTv9em0+wNi0fHG",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVklFPwjAUhf0tfR5mHdsgJL4UVp1xwMraBYwPdSthdBs4pkKM/106BCXGROKD7qn3nnNz78mXQkO7fQHLYjFNUuHm08V5EoNO02i1dVPXwKrkZbLI3R7oQA2Ugmeq3BpTHu2NbVfwSBzKXN6IJ5EeOo+X0SzYLKuJhlqTZGIoClzwTHijai5ZEcHjTXVF3XxcVXImSt7jJQcd4MprRChGPsWmH8bqdYKAIVppBI30yhsQR8JAksKTlj0K2IBKqPQuw3LDcjYJneXzeI67EUzH95frOTfWMJRx2Hf6+XYOEYytABLSp9bDuJkOGWZY6T6bXLFsllDK1D7kJe4FeNW+sjNty2rb5hE744Md/CfsaIAO7Hy5Y+f/mBUm76xOY9OAR1gan/6UccRFOXswu/pXZPTvyJyaslmLlGYtUlq1SGnXImXrj1Lenb0BOjXyyg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581211,
          "profile_id": 3278040,
          "ranking": -1,
          "statgroup_id": 2971242,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581211,
          "profile_id": 4655864,
          "ranking": -1,
          "statgroup_id": 3810051,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186581210,
      "steamlobbyid": 109775243596831700,
      "xboxsessionid": "0",
      "host_profile_id": 8792105,
      "state": 0,
      "description": "Langeooger Tech Mod",
      "visible": 1,
      "mapname": "my map",
      "options": "eNp1U9FuqzAM/Zd9AVCItMdUoV2kJRFtUEvfRiaFhW3sYfcG8vXX4KR3L6tUyY3tc4593IczbSh8CuGmmXqIGCUivYWvP/s1ZGNQTnjM16Qf7JqfocfxRfz2rdcixSzprVjDRblarYF0NXnWdSF1W0ptKhkMx3fgdrRQenzB3w05XYfsdqnG26Wx5vjoXy/z8Hp8/9u/7V13pcihaeLIlaP91qsF6Y9+OetT1l1l9ZJ9n+XTLb8dhu9LOyyNzh5xng7mbbdemGcnLM4u9Ve1XyNmC8A8IE+36o5zGeDcanfKmRyxbNpdLsO0YH9XqM+xxnlM0lkp121vArQL2+I+9ZSrZuuvJJs87t7m6i2bY5xtMeKWsM+IOxKJfTvBphzzZob8plsGToDngHyCSE0jd0NEg9xSw+y0wxhuQbg21hio2bBnxaYSsWvQX6NnQazYXrCI6e73s8A8UTcH7zuPvRxuiaMW8Bc8PyIOaNE8j/XgI0/1RZpDwP6k45EHdu1xZtBe7u1WC7paH/kDeBAxzN0DpXnyLSh2z+/uHuku6c/gHqKH46w+SswH+993nf4fLXjB496th1q8F1b/uBee9liKkLxtK/Vxen/4B3AOEKE=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PwjAUhv0tvR5mHQyUxJvBqjNusLJ2gvGibiWU7ssxkcX436UzEInxwnhhdtXT95yc8+SBhvbwBooyX4qEO9kyPxcxGF4MLg2omxrYVKwSeeaMwRBqoOIsVaWugSWLDo39r2QRP5aZvONbnhx/LquiVVAXzURHrREpn/ISlSzl7qyZExvMWVw3V9TNl00Tp7xiY1YxMASOvLUwQZZPUM8PY/Xa+L6wSJNha6Y3vQm2JQwkLl1p9mcBnRAJVT6iSNY0o4vQLl7nazSKYDJ/ut6tmbGDoYxDz/ay/ZyFETIDiLFHzOd5N5lSRJHKfbq4oelKEELVPssVzhV4176768ATbZ0v3uCJN9U5iPus/2RO/8ncbymNVlB2W0HZawWl2QrKfisoB/9E+Xj2AbV1zUU=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581210,
          "profile_id": 8792105,
          "ranking": -1,
          "statgroup_id": 5316552,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581197,
      "steamlobbyid": 109775243596831330,
      "xboxsessionid": "0",
      "host_profile_id": 8731395,
      "state": 0,
      "description": "[Rematch] gremaud.fabien's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttugzAM/Zd+QblF2iMddGKbE1GFSextpVOm0IpKawfJ189JHJqnIzu2zzn25qDaEl8KeprLGVFVMigpZq/3nYPVaIUGytfsu/X5XFTXIsQaBi3VyGneOVT1s9Bl7aCQJTsqcDDB2NEBLoG9Zacf2L7e2qwxB/n5e0qu9muc/yA9nzu5fQq9e+TT+VrkmAHx5RK5+TkqxZ77MKdn77IOM6sBZ/q/mdBDEnqpyDPhdjLEMxWX3NdwPaA2z7NAvT4G0vnRO7igtoXLljS1kVfO5XSDlnDlcOAoqmmhGdivCzNsyXjIZ65f8HcwQtdzwDV63ZGH9Rbj+8CjY1j7EjB6IpuE/qC+mrgqJsLuFoG9n31+sK43VCX1bNa9gK4Z8TbobUp7N+C88VwanN/PO+X7OC6G03/UbOJ/rqOOBrn05GuTRw+57ZCX99AIV0degB3irWVcx32OJu4DrHrkbcx3aeTP3d2FHRew3sOQr/u0Y7zVBHdB+tWM+XAveMuPe1lvOH/o7wpx+bhv/gFn3PH3",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt0lFPgzAQAGB/S5+ZWWFsY4kvbFQxjkmhxc34UKHLWIEhQ91i/O8OzDZJfBBNpkt86vXu0rt8KZSl2xeQZotpGHEzmS5OwwD0uh0FKpoqgWXO8nCRmAPQgxLIOYuLsCmBKfO3hc0tYz7fhYm44k882t2GLPdn7jotOxrFM2HMr3mGMhbzoVP2hUvMWbAupxQzH5dlOuY5G7CcgR4wxaWOCdJtglq2FxSnQW5mOilzWHeaZW2EDQFdgbOhUNuOS0dEwCLfp0isaUInnpE+j+eo78NofH++mjN5BT0ReJZhJZs+HSOkuhBji6gPYyW6poiiIm/TyQWNZyEhtHhP5455Bl6lT+w0Teto3YqdvLeDf8Yu3dnZoqxZ9petEC6tDFTPpgErLI0Pf0quuBSVLcx7/COZ5l5GriVz8F8V1pdT/uW+Kdc6kBysyNXdUj2KLdtHsWXnl7a8O3kDuuNR+w==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581197,
          "profile_id": 8731395,
          "ranking": -1,
          "statgroup_id": 5304594,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581197,
          "profile_id": 8999798,
          "ranking": -1,
          "statgroup_id": 5370431,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581185,
      "steamlobbyid": 109775243596831100,
      "xboxsessionid": "0",
      "host_profile_id": 520349,
      "state": 0,
      "description": "Lord Of The Rings By Sirak BFME",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFU+1uozAQfJc+QTAfUn7C2Zyc1nZBDir919Ard6Yc6KQU4qe/tddOIyGtvLszszubh3ZrSvgRYZa93CCiZSHK8GbXa+VCOlllxIZ5VlxGn88UXXN844VoQo9etspFtN+UKZkLlS6hR7gwgbeLC6QWhZ6P14H9Jm919fxGuq6dJGnS+qv5XJJ3ezgidl+I7ex7QWMqkJtIvebIMxLArJGnL540Q046RJ2pMkOCWGOcLZF2uQWdRP2dfI80Q/Gr8TrzqF2AdtF4/h1mS8KcuaQwp9/NmKg/hz3EBx8jbqYMC7hTIbEvFXRJMD/skPe6pYX9aZxBwF6kjtzNnVtqmL3sMQavhDmHmiHufld0yRCbgX7GEVs47E3QgGnu/t5gnqCb35Tpg28cvOaoxTSFNOVPxAEtmiehHnzksZ7EOQTsTxoeeGDXeFspaM+q0dfmri/wW/AgYAxEzVm4FR59szDP5t2gIlefch3m+t/LYX/u6tNHM73Ktjsy+H60XVu9G0YEO4+PlK1Pc/31qk+2J921fzmtl6jD3bPHO5O7N+52kS8XOuaHLOqRdop6Eqcn3NwGebw5+D983xyPu82EjfdxztXcXR/+A28hBas=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVlM9vgjAUgPe39IwLFBQx2QWlDjOdIBR02aFKDcgPCbJNt+x/n8UpI9OD2cHJ5bV9r+3XLy8IkHv6AGm2nAcR1ZP58jbwQKsOeVFSOLDKSR4sE70DWgIHckpiNuQ5MCezfWI7y8iMHoZJ+EBfaXSY9Uk+861NWlTU2DFBTIc0QxmJaX9U1AUrkxJvU9zC7nxZFcsxzUmH5AS0gB72VNNGqmEjyXA8FrWRpap2sWaqRljkBlQTWGxjFG5wgieOlr6NF6g9E6LxtLteELgWnNBzBhoyt3WqiRBi0cCTexz7gW1jtl+lbf0OfHJH1EiwoUC54gaWboRLu8FF1AjfK95h2d/vcz3k8Sw3eSRR6g4cfzF11hDbnkS62MVJZOF3nDmRn+xd2ruz2hinrpmYe9doODrhRmwqoiJW1IilGvhP2sZ0019tY4Rnto12ZtuIMlSgVFEjlWrEi6hB6tDig6O40vaT680Kb73klSq8DGEPvBv/iZg/RXyUtCZUIGs//lP1q6BsXAWlfCHK55sve00SDw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581185,
          "profile_id": 372924,
          "ranking": -1,
          "statgroup_id": 203092,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581185,
          "profile_id": 389393,
          "ranking": -1,
          "statgroup_id": 222182,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581185,
          "profile_id": 520349,
          "ranking": -1,
          "statgroup_id": 369856,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581185,
          "profile_id": 4444758,
          "ranking": -1,
          "statgroup_id": 3668120,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186581185,
          "profile_id": 5426927,
          "ranking": -1,
          "statgroup_id": 4324836,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581167,
      "steamlobbyid": 109775243596830640,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"1d210f93-c7c2-4add-bce7-a359d25fd66c\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 213198,
      "state": 0,
      "description": "ruinshik",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFugzAM/Zd+AVCItMMOQaFTpCURVWjHcaUTW1BLJ20C8vUzscNysmL7+b1n7459zeFlyo2eTxAJzhSnP//4LddQDN44NWG+YhfsyY14FPgnmaqpx45TuUainYzj1Roay6FHrWEKf5c10FYxlRWiaw7p9XB0x0af3t8+b/asv8+nsr365AmxW+DThF7guFfEV1vgFub0GWAecE7LXm2FM0XHPpDT3rguRaw+8ky1HxfimZn7EHq06yLPwjgZ/pTlcf4M2haD/YUWoDN406fmK5kpTkKMuLlxFeEOTBMXJcYU890M+cBbe/DPogYFvmjLaXYNfHG2tqCdtxi7cVauoZouapqNGHPEroB/JRFbrdiTEoTptv0uoId4y8W4lvYmYdcSubiaacdfEAe4WJlSPexRxvos6lDgn46+OfB6Qs3APS/7ULv6mtJ8DzsgjG7bgbEy3pc3YsvvzS1HL2HHpDeBeyCvh3nL+/5/7/ZRYL7Jt1sU6y0GT3PQ/0NYOWBRbe/jPWk7sO7ePO/+AE8R75w=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkl1PwjAUhv0tvR5m3QcqiTdTihA3oFu7MeNF2Uo29sEcUwHjf5eVABJjjDGRcHVOe970vOc5hYr08AaKcjaJU97NJ7PzOAQtBarw6lIC84pV8Szv3oIWlEDFWVansgQmLNgW1qeSBXyX5sk9f+Hp7mSyKoicZSEUjfqZOOMDXqKSZdy0hS6eY87CpehS93yei+uMV+yWVQy0QDfpGZggY0iQNqQith3Sq6PhEPRSx6FjWCybvzoQ+6YMn9gKoVCutX6fpYVnudF07C4USkKNdahH89ShK1q6aZTbQof6uJ1AJ8GlmehN26F9sul1Q2nh4RwbRHjA/sDuXoN36Ss6CDVZ1TX1AJ6yhwePDc8NBTzbS7fDGN8On8DN8ChZ0pz6brt4HU3RTQDT0bizmDJlAd0kdK22ldcLwAjpa/jYIvrTSE0HFFEkFkP9O5pFMSFULIx/B68BD7A1Pn065YBbXdmC2+R/IifvySk/kiNecTRyZvx7cuo/kYMH5H7rUjsJl/pJuGyehMuLI7l8PPsAFM0tBA==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581167,
          "profile_id": 213198,
          "ranking": -1,
          "statgroup_id": 7402,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581167,
          "profile_id": 11403543,
          "ranking": -1,
          "statgroup_id": 6272122,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581094,
      "steamlobbyid": 109775243596829150,
      "xboxsessionid": "0",
      "host_profile_id": 2471081,
      "state": 0,
      "description": "2v2 noobish",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9UttuwyAM/Zd9QZJStD3sgYqsQiqgdqRT9tamUzTSNp20KZevn8EmPFnYPj7n2E+Hdi/gFdr3kxggkoJrQX/z428TQtnN1usB8yU/Yw+z8rHGP8X1nnpcP2xCJOvBelGG0DoBPTqEOfydQ2Cc5jq73Ct/vR5v4+5QXU6n8jo22+vP8f2ZVS57Qewa+FSxFziuNPE1DrjFOW0BmG84p+Y7V+JM2fAv5LSyvskRq03acjP3E/Es7L2LPcaHnshzbb2Kf9qJNH8EbZNFzLWRoDN60+b2OxspzmKMuMz6knA7boiLln2O+WaEfORtZvDPoQYNvhgnaPYefMXZxoF2UWPs+1H7imqa5P1oZc8QuwT+pUJsHbAHLQnTL/udQA/xVpP1Ne1Nwa4VcvF7brzYIg5wcSqnetijSvVF0qHBP5N88+D1gJqBO9u0sTb4mtP8GXZAGM2yA+tUuq/ZyiW/sjeGXsKOSW8Wbhbz3bjk5zb1r6x7rDFfseUWZbjF6CkD/b+ExQCL9tbO6Z6M6/jnB3t9+gfpePBA",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVk01PwkAQhv0tewbT3bZQSbwUulpjQZbuFjAe1nYJpR/UUhVi/O+yNYCN8WBItJxm5p3JzJsnGYga928gy5ezMBZ2OluehwHoIK0NFQM2wKrgRbhM7R7obKtC8ESmSgPMuL9rbKuc+2KfptGteBHxvnJ44c/dTVZONOWaMBF3Isc5T4QzKufCFRE82JRX5M3nVSknouA9XnDQAXZ0YxKKzSHF2tALZLTc8dykpUbMkVL2BsSKoBuR3In01shlAxpBqXcZjjYsZVPPyl4nC9z1YTx5vFovOFpDLwq8vtVPt3MmwVh3ISF9qj9N1PiOYYalPmTTa5bMQ0qZ3Gc6oX0J3hvf2enIMFBLqbBDB3awJuyIi+vHDrbRhaoZFXbqgR2qCTs6zurHrll91+aXf1Ur3GRnB+4zP4qc8hO537rU/sglPMqlfhIuWyfhsv1PLh/OPgDD+iyu",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581094,
          "profile_id": 1729348,
          "ranking": -1,
          "statgroup_id": 1507105,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581094,
          "profile_id": 2471081,
          "ranking": -1,
          "statgroup_id": 2211518,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581094,
          "profile_id": 5288260,
          "ranking": -1,
          "statgroup_id": 4228242,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 180,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581089,
      "steamlobbyid": 109775243596829120,
      "xboxsessionid": "0",
      "host_profile_id": 10342225,
      "state": 0,
      "description": "[Revancha] Partida de luis.borgessz",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOwzAM/Re+oO3aSBw4ZEqHAiRRp0yiu7GCIlJBCwK1zdfjxM7I6Sm2n9+zfXN0HYdXKT8FvgASnClOf2H+3UcoxmC8WjDesrcuxWsj5gb/JFMd1dhp2Uck+sV43kZoLGcXpyIs4e8SgbaKPQa3vX4cP4/l/P0SHubzeCjs7vBln1/NORS3yN2DnlOqBY07RXq1BW2pj6uA84B9evZkW+wphqxzZ/xQIpfLOksdpo10VuZzTDXax5qkszG+S3/K8tx/BW+bwfpGC/CZZuNK816shIuEkbc2viXekWnSosRUYnxYIZ506wDzs+hBwVy05dS7A73YW1vwznvEflqVP1HOkD2tRkw1cregv5XIrSL3ogRx+ut+N/BDuuVmfE97k7BriVp8x7Tn98gDWqwsKR/2KHN+lX0omJ/2kvrArBf0DNrrvUu5Tayj/gF2QBxDZT5quhUJt4JxI67x3XVHts/6i3izGB/XXK+D+9+7nRuMn+rrLcJ9v+FMa/D/Q7OrgYtyXcj3pO3Izs/q7uYPhBXwYg==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt001PwjAYAGB/S8/DrIUhkngZUJ1xIN3aAcZD3UoY3cYcUyHG/+46A7h4AhPlwKnvV9rmSQuR9vAO0mwxDSNhJdPFeRiANtTrDYSQoYFlzvNwkVjdoqiBXPBYhboGptzfNIos477Yhom8E68i2mY2z/2Zu07LiZraJozFvchwxmNhO+VcuCSCB+vyFHXmy7IsxyLnXZ5z0AaWvDUJxeaQ4sbQC9Tac0aRScsaMR297A1IT0JXksyWRtNx2YBKqOodhuWaJWzi9dK38Rx3fBiNn65Xc45W0JOB1+/1k2LOJBgbLiSkT43ncT26Z5hhVR+yyQ2LZyGlTO1n2qF1BT60n3gtA+lG67Jih3Z28Ejs6Cg9PrsarLDVvr05VHFTnQ3cV/wrOX0nh45brrO/XP0kV+TC2V+ucZJTcgf8VuMkd+Bvbf6RHKzI7XvLi3+65ePZJ7V7uhc=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581089,
          "profile_id": 8520589,
          "ranking": -1,
          "statgroup_id": 5251452,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581089,
          "profile_id": 10342225,
          "ranking": -1,
          "statgroup_id": 5899161,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186581084,
      "steamlobbyid": 109775243596828820,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"baeb36a9-9324-4a17-a724-64caf56b18e3\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 2523595,
      "state": 0,
      "description": "4 vs 4 Michi",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUl1vgzAM/C/7BXxG2iOMdGNbEtFBNfq20gkpqANprQL59XNip+PpZMfnu8MP+7Ep4EuEnm1hAFUFk6Fml1vpYDVZpYXBPmcn7GeqWnKs1Uw0NNPOpnSo6o3SBXdQtQXMCAdjqJ0ckK1g+2i57i/S9J/ly+Hj2h/T8+tbWkZf/Px7tNEjcvdMFJ2fBY2pIG2yBW1+z5gA5w739Oy95bizGtg3akqVHmLkGoHL12Jp5410Jupn8jNSuxmvM1e68zUB2kXRO7iCt1W2DXlqgq5MtvNVNIQrh1GjquaVdtz5pIV8SZfjw3yHTWluEHPIuqMMeQT1HeroGMw+I4ZM2jqmN+CPk9aRKfS3KuB+8v3BOm5RFcRZ3/+L0JyR7g2yTSibTbhsvJYa9vemHD2P07JJeg+et/Be6uCjBi095VpncDPkuQNdPsMNdFnQgvvtEP5HKvWS49y0qUtG/ZHJ0Lfhf3dJ0C/d3Rnfz8X9HoYszEs7hRuI4V+Q/9FAH+8Fbvn/Xmqm8G0G/slPl6vL4fbwByI48Ys=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1E9PwjAUAHA/S8/DtN0GkcTLgCpE/pW1A4yHykoY3cYcU0Hjd9cVARfDwXggJJxeu9e8vvfbMoSN+3eQpItpEMpmPF1cBj6oYhub9pVtgGUmsmARN+ugigyQSRHlS2iAqZhsE1+7VEzkbhmrO/kiw92uLbLJzF0n+kQpLxNEsidTkopItgf6XLCkUvhrfUt+5/NSP45kJuoiE6AKmqrlUEacPiNWn+vYcFkrj47LCMlj33WID/PcuCvCZNjxZvNHb4U58y1xw4c8Dl3+xlMvnMV9pWt0v2vVOE+GNKYO03fQcW/QvAYfxm8bBE0TWahcwMF7HHRsHM/XOGyYbIdxBnAzLG0o5CqatpVdHri8yxTaDE/Umsd87DWS19Gc1CYoHD3erOYCr5CnfK/T6MQ5MCXEdhGlHWY/jcywxwnfwPPxLY9mAWNcv5B2cAgPwwqsFD8sc2+Hz3aH7TCENsRFO2tvZ57tDtuVUIGt9ONnZhXc8swWbrP+lxw8JPfXLu2T6LJ8El1WjtTlw8UnOWVS2w==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581084,
          "profile_id": 1207075,
          "ranking": -1,
          "statgroup_id": 1019839,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186581084,
          "profile_id": 2005025,
          "ranking": -1,
          "statgroup_id": 1773042,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186581084,
          "profile_id": 2523595,
          "ranking": -1,
          "statgroup_id": 2262373,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581084,
          "profile_id": 10331416,
          "ranking": -1,
          "statgroup_id": 5894605,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581033,
      "steamlobbyid": 109775243596749730,
      "xboxsessionid": "0",
      "host_profile_id": 10108979,
      "state": 0,
      "description": "[Rematch] maglou's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOwzAM/Re+YO3aSBw4dCSdKuFELSnQHVemiFTQIYHa9OtxEmfk9GTn2c/PvutMW+HLwc5LtSDiFZMptl1/Dx7yaVMWKC/YOeYLxa9ljDUMWuLoeTl4xIdF2Up4qHSFHPAww9jZA6mBnUXHutdMn/oa4PiSPb+9fHf1SV9e37tW7+5j7YGB6QMXNe6BtEmN2kIfk2PNOvYZ2JMWsScf2SVq2is7ZrGWYVCFWCa32ZHOXH0WgSOt5wSdpbJDiAFqh2rwcMXZVvxDM7UYD7oKqecfaAlzj6NGxeeVemC9PvbY0F/S5etFf0enrFgiFuh1Tx6KHcbrqKNnyD1GjJ7oJqM/OJ8grYapON+qsPZjyI+brw28oprNbS9gBSPdDr3NyRsH3pugpcH+w3IwoY7X4iT9x5ld+i9tmqNBLQP52hR4MzRzj7qChw51IZf6b2Pax17aaxl5k1NfE+XNzSu5pXyfJ/3y/+5KuN3DWCS+3CbcZ7wd3EVJvQrg6a7Nqj52tCPjko+Kw+3mlL5Op/bh4e4PyYPynA==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtlVFvmzAQx/dZeCYVhlDSSnshxV2iQYLBhmTqgxschRgIJaxNOu27D7tKMqRGWzap6UOf7nx3cL4ffxugq99+KGW1mqcZGxTz1UWaKNdAA1rvyrpSlXVN63RVDG6aoKrUjObC1VRlTme7RLOq6Izt3YJ/ZY8s269cWs8W4baUFR3xmjRnY1bBiubMDWRdukaMJlvZRfT8vpbhnNX0htZUuVYGfGgjDG0fw64fJcI6QZzYWMaQ7XOZ83wOhO0TyLekINPIKZ8mS9ifgWxyf7tZUn0DIp5EngNRU2cjB0JhfTL9QvJFijERz9ssGHxWfqqvwAFdTbcsowVHP8AB54ZDpHUm2lAOEmL4KAcMbY/m66cQoKmrgQf6DGGiidrpiGZl7EWL5X200QlOuvSWxKTIQvJMqihbFIGsgyPkcBByVLncvAxCMsIvvfqElDEq0O5jDMfH4HVAC1vnN1HpLW4iswP34v8XOe1ATv+jrHBc7mV1dPK/lplXSJlBaDbkkYfNh4mRjQkkr8suPZ2c8UGuWbv908l1P8gJcsdOq2H1LLPXvumMAz3znfwGznpe/0F1l2+kuja5U3dpnWmXd59+AUu2sWM=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581033,
          "profile_id": 3787583,
          "ranking": -1,
          "statgroup_id": 3285432,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186581033,
          "profile_id": 10108979,
          "ranking": -1,
          "statgroup_id": 5801991,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186581033,
          "profile_id": 11402773,
          "ranking": -1,
          "statgroup_id": 6271810,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581031,
      "steamlobbyid": 109775243596749580,
      "xboxsessionid": "0",
      "host_profile_id": 5225192,
      "state": 0,
      "description": "Noobs Please ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpNkk1ugzAQhe+SEwRILHWRhSO7EVLHllOjKllCIytGKixaYXz6jvFAy+ppPPP45md3dYbjV4IfIp9QCc6AUyyOP+ckRR+1hym/S9bmmoMW4zHHagaGauwwnZMSt0l7LpPUlmMNJFlgrE1CWWBtdX7e/f39egnm2kBs959XJb/946Owxu5fyIeBhddcUzMV68VT+WbjUH4IxFnq5z7kOlfprz7nxqFSBjIzMSnbMaDelR+P9K9UIzLzQD4y9XFJEqxEFlPleL/H+MKlRcPerCRtkiZGt80F/Ypc16FfQ1zoZ5okK5x/AL7oAHEoaAdBibU3ibPrprNbdKm9nJWhnLixYn9OZtYevV32xncQfCLPGcS6ozqgz8INHmdLswEPOJuFZcb/l8Bvi09iAd9QfsNgy7+tfczIUtJcZy2GSD0ju8sz9Mjla5oFVNs+4o09cj9H8Hh3+f1vX7Fb3wvcN/GbWfuabmy7yyrdJf33uN2AdetdH0Csd+3Cv3tBr5yrBaz9FNqO/d2cTrtfOjXyiQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkVtPwjAUgP0tfR6GdhQiiS+DVWccl27tAsaHupVQug0cUyHG/y6dASXqE4lmTz23nPPlK0TW3StYFcuZSqWXz5bnKgFdjBCGF8gC61KUapl7fdCFFiilyEzYtMBMxPvGLitELA9hrm/ls0wPmS/KeB5uV9VEw6xRmRzJghQik35Qzak1lSLZVlfMzad1Vc5kKfqiFKALPH3jUEacMSOtcZSY16UhdVhVo07QrHpD6moYalr4GreDkA+Zhqbe40Rvec6nkbt6mSxIL4bp5OFqsxBoAyOdRAN3kO/mHEoIDiGlA4YfJ3Y64oQTUx/z6TXP5ooxbvY5vvIuwZv13Z3dslEHd47coU938Mid0bGX9xGfZK/5m70fSRvwCLLx5YfRH1HCkyjtWlC2akGJa0HZrgVl558o78/eAZwkzgg=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581031,
          "profile_id": 3432757,
          "ranking": -1,
          "statgroup_id": 3115767,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186581031,
          "profile_id": 5225192,
          "ranking": -1,
          "statgroup_id": 4186541,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186581012,
      "steamlobbyid": 109775243596749060,
      "xboxsessionid": "0",
      "host_profile_id": 2697680,
      "state": 0,
      "description": "BAMBOO NOTHING",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFU0FyozAQ/EtegACrisMe5BXxaisjFbvCLnwzJEss4uCDU4BevwMjCKcpjdTd0z08/RkKgV8Mrh/FgJUUHEQ48/ev/VzKzhsHA/VzXl/nthjB3X9WJ3at4+yfvWXR5fDxdWZZDCwzNXt9fz0cp5fP34+GOFIj7zvCUByKwGH7YT9XshqME/lcGit43cJcMjyr50Jb4OdfR//39t5d2Adc4ucSpkd+ZkfedI9TaaOMsCvUXy5vcaYEWuLR9r4jnjZGzGfiqfiLzYlTNsi53E2MaxhhtasXTPt+Cjpj89ktb7Rr+Fux6NwZVyxngNqhLckf2zNDc+60xDkXL1tmrtEY6mipCTc1Lg+4Hdf0LgHZM+o3I/YX3dqjf5ZmAPRFWxG4C/SVuLXF2UVFNWYLrgx3mtX70cg+Jewc9eeKsGHGHkAGTLftw4TzBN1qMq4KuSncDUVaXMG1EwfCQS1WsXAfc1Tr/XidA9A/7VTgQa9pTxLUnu7b5e7s6xD4PWYQMJotA2PVmps3cusnW0aYcZg3wn3w1O9Gc0up79vv3LcdKdNtF/F/eCNPU5z/EbDS+X8J++TXfdK24+dT+uPpPwsv/6o=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkEFPwkAQhf0tey6GLbRoEy8LXa2xhS7dbcB4WNslLNsWbKtCjP9dtgYiMR6MB9PTzLw3mXn5oGncv4FNuV7ITHjFYn0uU+CY9uXAvugaoKp5LdeFNwIONEAteK7bvbHgycHYTyVPxLEt1J14Edlx8nmdLKPdptno6DMyFxNR4pLnwp82e7Iigqe75ov++Vw1ci5qPuI1Bw7w1C0iFKOQ4n4Yp7q6NEKINhpB027jjYmrYKRI6SvLnkZsTBXU+pBhtWMFm8fu5nW2wsMEZrPH6+2Km1sYqzQO3KDY7yGCsRVBQgJqPc162YRhhrUesvkNy5eSUqbvIV96V+Dd+M6uA0+wdb5wgyfctHMA99n/iVz3J3K/TWm2ImWvFSn7rUhptSKl3YqUg39K+XD2AepGzRw=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581012,
          "profile_id": 2697680,
          "ranking": -1,
          "statgroup_id": 2430531,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westindia"
    },
    {
      "id": 186581010,
      "steamlobbyid": 0,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"92aa9bce-f445-4edc-a566-4aba9b8c73b5\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 3127909,
      "state": 0,
      "description": "Partida de Khanzerberoh",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwyAM/Zd+QXND2mM6aJWpgLJCtTyuUcVE1aYP3RL4+hkMLU9HNj4+Pvbq0/QtvJLbaW5nQLQlPMf8/XcTIL14aXnKM3LCfC3pvcFYR3ifatQ0bwKiwyxtywKUqoUaHmABsVMAQnFyvgmmvV72xY86qo/DYff4Hqz541/bW6/Wb8g9EN7qWAsaq6xNqHuDfUwJnFvsM5C9YtiTjllnJe1YIJcBrhgrhJ9c0lnKax1rhB3JuY86G2l1jHEV/BgCXGC2hXuTZuqzrlqo6cH7hGnAqFHSaUk9nnzCt0Rgvgp86O/opGUzYgZe6+QhW0N8izo0gdodYvBEdUX6A/OxpNUQifMtErjfY370gZvTNnF2z71wy0jS7cDbMnnjePAmaumg/zBvTOQJWpxI/2Fml/8Lm+foQMuQfO1quJk0swZd0UMHujxowf5+zPuohM37vLi8D/A631Ulwi3GvC6zfhHuDusbrnJ+rJ/79BfYJ+4bdpHmNzPk8V7gll/38rzh+jW/buT16Ff/GWXx2A==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkE1PwkAQhv0tey6mWwoEEi8V1pRYPra7S4PxMNJtqP2gthUF43/XXQKRGA/Gg+lpZnbe7Dx5sGXcvaGi3ERxKt082lzGIRq0sdXrm30DVTXU8SZ3h2iADVRLyFRrGiiC1XHxOZWwkqc2T27lVqanyYN6tWa7Qida6ps4kzNZkhIy6fk6F1dUQrjTV9TN50o/Z7KGIdSABshNxg7lxJlzYs+FriPOx6o6jJOtqnPmTCCrXhimS8/ET7AnJDRVdjmFtAgmi/Xjw+LVEjy04UYEIk+Z2Ityka5zX+fIlI4SzBJaekmn6zMx5Ydb10IUAc2pwzUDXc589wq9G9/dtfCZttYXb/jMm9ocxR36P5kzfzL3W0qrEZTtRlDajaDsNIKy2wjK3j9R3l98ACprzfw=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186581010,
          "profile_id": 3127909,
          "ranking": -1,
          "statgroup_id": 2833386,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186580992,
      "steamlobbyid": 109775243596828940,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"781faafc-f42a-4d83-8cae-7ebe2ec085be\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 1079219,
      "state": 0,
      "description": "NICO BOCO",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1u2zAMfpc+QeQfATn04EBOkGGU5tYK4N4Wt9AmZ0uGJZPlpx8lSq4vJkTy+yH59OK6Br8C7NU3DiPRcGjS23J77EIopkVZcJRv+fnHFPIz2Ntes23//XDy78X239t+eziXXy5j2T3GX2zZhSphKvV7EiFEjpnehlnZpg2htCtfDeL2IA7NYfc3vDHU8Od0Affyevfv/n7S7O31Yy8P3Qb/4lJ+6zeCcBA7atVe2dEnHobckUeJAXl05MHaO3SRs5LBY6wduVy0oNqsU5fKHpPOgX9QT4E9NemcuDQdzUJcPfG36E3X1D9t0OeeMDX/2rcp7kKccA1PWgrVX1nS4hCD8kuL+ai7DPNLHmZYrizNbZYie28Zenc7E+NC2dbLLtUs2VNbKWsiNvQTYhvCxjyIxiVMj34c1R/RD+kGe+Qy7Q0scDBRi0f+Apoh4gQtYHWqxz2u9UP24VFLATQ3j7NOdzKidnOgWtRldeKHcr2VZd1BjbeX9gbVZ37kZ8JluOPU3/m8Q9W3OV8qse69zjcie5NvsQq3SDM1s/q5SbMziJXvafXPVH+7jO75+ek/mHQCHw==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt0ltvgjAUAOD9Fp5xoSguLtkLjjrNQC20qMseOqkRC8iQzcuy/z5bIpvJll2TvfB0TtsTTs9Hga7ePClptpyFEesms+VpGCjnQDtr6aClKquc5uEy6V7u91QlZzQWqaYqMzo9HOxXGZ2yMk34NXtkUbmyaT6de9tUVtTEZ8KYDVgGMxoz25V14QoxGmxlF9HzYSW3Y5bTS5pT5Vzp8p6JMDSHGDaGREYL4Z6Ipofho4hDz3RovFp7AE1sDdzTHYSBJmonfRqlI8efL+78jU5w0KAdMiJJ5JEdyfxonriyDvaRxYHHUWZzo+l6pI+LXm1C0hFKkInlHVBv4HYvlGf1HTvQMIx6yzjC01/xwH/j+YHEc71yGHPIi+GpBYphId+ShEx8K12PF7A9BdH4rrNZUH0DfB74jgWRAEcwghKeTK5IPA8xJvKHsI9wauCIpfbmUelHLuLkAFPkv5LRXmX0T2XwKC1lPnwW/KtSTlJIQWP/LJGDjftxPRoQSP5Mrl7J/VCuUckJufD7ckYl90O5ZiW3X9vt78udVXKl3O3JCxkcD2c=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580992,
          "profile_id": 1079219,
          "ranking": -1,
          "statgroup_id": 945838,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580992,
          "profile_id": 11455395,
          "ranking": -1,
          "statgroup_id": 6295381,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580990,
      "steamlobbyid": 109775243596748580,
      "xboxsessionid": "0",
      "host_profile_id": 2899386,
      "state": 0,
      "description": "[Rematch] Mawk's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOwzAM/Re+YF2zSBw4ZEqBSEuiTt6mcqSgQgrrDqB0+Xqc2B05WbH9/J6f7/ZDq/CtbZhmFTHSSlrFf+nyu82hHpMPNlK+ka/UI7y+bOjPSNtyD0xxmyPdRR9Uk0MPCntsDiv8e82BAytd+oiQjrvj837enx599/UW3fnSQb09tbC6J+wO+RxKL3KsLfN1gNzKnGGNmI80p5M7aGim7uU7cap96CvCGhaelUvTlXmu/bcoPS7knsJzg3rLnwW1zJ9R2+yof+M06iy7GSr/uZo5XpWYcIUPDeOOkvtqq6eK8v2M+cLbJdwfkAab9wKKZ7fIl2Y7QO2qoxi9suHANf2iafZ6EoTdIP/GELbN2NFqxgw3f69ZD/E2Vx869s2g14a4hFa6oJ4IB7mAqbgefTRL/XrRYXF/Lhieg7uOpBm5i+1QavNeI89P6AFj9DcPPJjlvhLqSZyv/XmkXUK38F/hPbCH43zzMA3/vsNlQ/mDuN2izrdYdipQ/w/vTuT753tKyz05GOXLSTzc/QG3ivBC",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt0l9PwjAQAHA/S5+HWTeGQOLLYNUR+detnWB8qFsJo9uYYyrE+N2lM4CLDwZNBBKfer279C6/FGrK3StIs/kkjLidTObnYQCaWr3R0Os1BSxylofzxG6DJlRAzlksQ1UBE+ZvCutbxny+DRNxw595tL11We5P3VVadFTkM2HMBzxDGYt51yn6wgXmLFgVU+TMp0WRjnnO2ixnoAls0TExQeaQoOrQC+RpuS4ySZHDpqMWtT62BHQFzrrCqDku7RMBZb5FkVjRhI49K30ZzVDLh9Ho4Wo5Y9oSeiLwelYvWfeZGCHDhRj3iPE40qMBRRTJ/JCOr2k8DQmh8j2TO/YleFO+2kG1rhtqtYyn7fDg0eB1jg+vAktslU+fTiu5ycoG7iP+lZy6k9O+lSO36eHkwv3l9H+5H8pV/0gOluT23dI4iS1rJ7HlxYG2vD97B2+sW7k=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580990,
          "profile_id": 2899386,
          "ranking": -1,
          "statgroup_id": 2622972,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580990,
          "profile_id": 10835046,
          "ranking": -1,
          "statgroup_id": 6120248,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580964,
      "steamlobbyid": 109775243596747890,
      "xboxsessionid": "0",
      "host_profile_id": 503007,
      "state": 0,
      "description": "Nomad 4v4 1.3k+",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUk1PwzAM/S/7Bf1II+3AIVMKirQkKmRD3Y0VVJHC2gOoXX49TuyWnJ5i+/n52bvnvhHwCu3HRcyApOBa0F+Yfg8RyiFYr2eM1/yKNczKqcI/xXVDNW6cDxHJdrZe1BFaJ6BGR5jD3zUC4zR/O0/Hl9PjxRRLo+v9DfDX+7CvW3deGpftkbsFPadUCxpLTXqNA22pT18A5yP2afnR1dhTdvwDNZXWdzly9etsuQnjnXQW9pulGuNjTdJZWd+kP+3E2n+B2YKeU31lJMyZvOlz+5kthLOEkZdZXxPvwA1p0XLMMd4tEE+6TQD/HM6gwRfjBPVuwFfsbRzMLlrEsCvtT5TTrd4vVo4MuWvQXyvk1pF71pI4/bbfO8xDutXd+pb2pmDXCrX4hhsvnpAHtDiVUz7sUa35xTqHBv+MV9QHvEavStDODn3KrWId9Q+wA+LoCnsb6FbUel/Byi1ebjty7ao/g3ugHQ7LFg/9/97dVGH8xLZblPEWk6cM5v8h7xhwUW4f1nsybuCXV/aw+wM2Du9w",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtlFtPgzAYhv0tvWaGchhuiTdsVDHCpIPiZryo0GWswJChbjH+dwe6TeIhzkSdiVf9Tvn65umbQkm4uAdZPh1FMTPT0XQ/CkFbFWVR1AQwK2gRTVOzC9pQAAWjSRmKAhjRYNVYZjkN2DpM+Sm7ZfE6s2gRjN1FVk00yjVRws5YjnKaMKtfzUUzzGi4qG4p77yZVeWEFbRLCwrawOQnOvaQ7nhIcfywPA3vPNO9qob1vlj1etjg0OU4t7ja7Luk53FY1jsE8QVJydA3srvBBHUCGA+ujuYTKs2hz0PfNux0OadjhFQXYmx76vVAjs8IIqisO2R4TJJx5Hmk3KdbkXkIHoTX6FotqSnDGjppgw7uIDqHVz2bGp9FhXCFyoi3Q9OoY2m8sJT0fVzE97i8qVGC8oHWqulUNjLl3X2+LZz+/HzbOlvRNCiqNTTqBo3y/yl8yflqjVvZWYF7in/Q+x+obP4JldovqbzcewTTHEe5",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580964,
          "profile_id": 213879,
          "ranking": -1,
          "statgroup_id": 8220,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580964,
          "profile_id": 477105,
          "ranking": -1,
          "statgroup_id": 321895,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580964,
          "profile_id": 503007,
          "ranking": -1,
          "statgroup_id": 350532,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580964,
          "profile_id": 992631,
          "ranking": -1,
          "statgroup_id": 843530,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580951,
      "steamlobbyid": 109775243596747460,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"d75a77de-e109-4612-9b97-a60e51a413ad\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 10788725,
      "state": 0,
      "description": "4v4 nomad random noobs ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUkFOxDAM/Mu+YNttI3FMSYBKJFEhWakcKaiQAu0B1Davx4md3ZxGdjwej314GjsOr1R+DnwFJDhTORaWvyZCMQXj1Yp5yV4xXxmx1Bhrmeqoxs5rE5HoV+O5jNBYDjUqwsJ49xqBtoqdz8txKJpP598elHz71dPNU2fP5fPXh34Jxxvk7pniLtWCxlPWpi1oS33GEvrcYZ+ePVqJPcXA3lHTyfihQK4RuFKs0GHeSWdpfqZUo32sSTpr47sUU6Bd8T7CDWbbtCB+22Vdlbbzr+oIi4hRoxHzRj2Az2GPwJkmXZEP/R124+WKWILXjjyUR4jfoQ7HoPYeMXhi24L+wHyStI7M4HybAe7blB9C5FaCE2d72YvykpHuHbwtyZtdRW+Slhb692szJp6oZdf0H2be83/t8xwtaOnJ17aCm6GZHehKHu4m1gnqH4a8j5P2S411026+K8qP13zI+3Zl1q/j3eE91OpyD0N12WeY8g0UsAvya1yBH+8Fbvl6L5cbrmB+2oWrzff57/APFDbxXg==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1UFvgjAUAOD9Fs64UKCAJrugdGMZKlXqdNmhgxqxgAzZpln23ycsysiimdlhHjz19b2XtvmSlwJZfHgX0mwxDSNmJ9PFZRgILSDphqHLUBSWOc3DRWJ3NklRyBmNi1AShSn1t4XNLqM+24UJv2OvLNrtHJr7s+E6LTsaxTFhzPosQxmNmTMo+8IlZjRYl7cUd74sy3TMctqhORVags1vTewh0/WQ6o6CYrW8+9T0yhw2B1JZ62GLgyHHmcOhNhiSnsdBkW8TxNckIZORlb6N56jtg2j8dL2aU3kFRjwYda1usukzMUJwCDDuevB5rER9gggq8i6Z3JB4FnoeKc4zndC+Ej7En3iqpGsKrNvJlR04QTuXl7Xu760QLq2sI20AlDRd0Wo2SmUjn7CNe7QNOs7G0IGuNms0akWjnEfuwMgZUJKb9ZGDlZ16tjswkpKhGFCv2WmVHTzb7bdrgBpb49sXqdXcisoW7iv+k5y0T+7YV+r/9MrHi0/s9qh+",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580951,
          "profile_id": 871749,
          "ranking": -1,
          "statgroup_id": 723558,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580951,
          "profile_id": 1083857,
          "ranking": -1,
          "statgroup_id": 928941,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186580951,
          "profile_id": 1506736,
          "ranking": -1,
          "statgroup_id": 1304832,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580951,
          "profile_id": 4076355,
          "ranking": -1,
          "statgroup_id": 3426210,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580951,
          "profile_id": 4850295,
          "ranking": -1,
          "statgroup_id": 4647381,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580951,
          "profile_id": 10788725,
          "ranking": -1,
          "statgroup_id": 6099896,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 120,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "ukwest"
    },
    {
      "id": 186580927,
      "steamlobbyid": 109775243596746940,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"1d8e9eec-2c48-4d0e-a24c-3385b3817d7c\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 5729377,
      "state": 0,
      "description": "krustenkäs",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1ugzAMfpc9AVCI1MMOQWFdpCURU+jGjmUTauhKNa0C8vRzYsNysuL4+/GXh9e+5nAy5caZT1AJzhSnO3+7l6EUgzdOTdiv2AlnciNuBd5JpmqaseNUhkq0k3G8CqWxHGZUKFO4O4VCW8XUcLx24rOqz/v78f1ysdnw8/bcLUqUvrbJHrFb0NPEWdC4U6RXW9AWefoMMJ+Qp2UvtkJO0bEv1LQzrksRq1+9pdqPC+nMzHceZ7QLM1FnYVwT75TlK/8M3mbiL7QAn3E3fWrOyUx1EmvEzY2rCHdgmrQoMabY72boR93aw/4selCwF205cdewV+TWFrzzFmvISm36unX3sxFjjtgV6K8kYquAPSlBmG7Ldwl+ULdcjGspNwlZS9TiaqYdPyAOaLEypfeQo1zfZ6sPBfvTThIP7HpCz6A9L/v4tghzxO8hA8LotgyMlev/8kZs/Z25DrhLyJj8JvAfKMNh3jL0/X/u9lZgv8m3vyjCX4w7zcH/L2HlgEVve7/lYgf2cWgeH/4AecfwDQ==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVk1tPwjAUx/0sfd4M7W6BxJfCqjOCbrBOMD7UrQtjF8iYykL87tIZwEl8WEgUns615/zzyylE0tMaLPJ5GCXcysL5ZRSAjmagtmIYElgWrIjmmdUDHSiBgrNUuC0JhMzfFjZRzny+c7P4jr/xZBf1WeFPR+Wi6pDFmCjlDzwnOUt5f1j1RUuHs6Cstoidr8sqnfKC9VjBQAdY8S12XIJtl6i2FwhrDkcOdqucg+24qg3cGArbpSQuaUYnnrl4H89I14fJ+OV6NWNoBb048AYmcTZ92DEpEdamkxuaTiPXpeI95kPrCnxIh2zUNtL1NqqxQXs28ETYjB6nB2yY2ZRN0owNhIquIk2rwVH2cNDJHA7+Cee+8eGQhocjwxoW+duHUmpcRGUL5ss/ikzrNzJNVapnoVI7C5X6H6mER6k0/knl88UnUGYPIQ==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580927,
          "profile_id": 4926692,
          "ranking": -1,
          "statgroup_id": 3990131,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580927,
          "profile_id": 5729377,
          "ranking": -1,
          "statgroup_id": 4518039,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580927,
          "profile_id": 11364255,
          "ranking": -1,
          "statgroup_id": 6255137,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580893,
      "steamlobbyid": 109775243596685100,
      "xboxsessionid": "0",
      "host_profile_id": 10561185,
      "state": 0,
      "description": "[Rematch] johan_wennberg9's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9UttOhDAQ/Zf9Aq5NfPChpGgabRu0YNjHJRticYUYDWy/3mlngKcJ03OZM3N6GxsOX6bc7PkKleBMcfrnl78qlGLyxqkV+zW7IKYwYinxn2SqIYyd1ypUol+N43UojeWAUaFM4d8lFNoq9v7V/FxF93Ke0k49qdT66nbJl65z5+zskwfk7ple24gFj7kiv9qCt6gzZsD5hDo9e7U1aoqBXdFTbtyQIte4z5ZqP9/JZ2a+p4jRLmCiz9I45FE25BH1N5htU2vEl1rAnDGbMTWfyUZ1EmvkLXYO7SamyYsSc4r9YYN+9K095GdxBgW5aMtJu4FcUVtbmJ33WDvw4Vp6M+zZb0bMBXLXwb9EbhW4VyWI0x37vYd50Le8G9fT3iTsWqIX1zDt+DPygBcrU3oPe5T7+2yfQ0F+2knSgawxqxy8F9UY35YBR/oedkAcw7EDY+V+X96Io5+bW4FZwo4Jn8A90A6n7ej7ccfnxi4l9lvYRUt3EW4xZlrA/L+UXQFcpDX6/Z60ndj5o3g8/QN89vBZ",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PwjAUhv0tvR5mHWwaEm8Gq844PsraCcaLupVQui/HFIjxv0trIBLjhSHR7Kqn7zk558kDLePhDZRVMRcp9/N5cS4S0IWm7UB4aRtgVbNaFLnf34UGqDnLVGkaYM7ifWP3q1jMD2Uu7/grTw+/gNXxItyWeqKl1oiMj3iFKpbxYKLnxApzlmz1FXXzZaXjjNesz2oGusCXty4myB0T1BlHiXo9cl+6RGfYnZi6N8SehKHEVSBtZxLSIZFQ5T2K5JbmdBZ55Xq6RL0YptOn682SWRsYySQaeIN8N+dihOwQYjwg9vO0nY4ookjlYzq7odlCEELVPjcQ/hV4N77La8Ejba0v3uCRN9XZi/usTzJn/mTut5RWIyjbjaDs/BElPInSbgSl0wjKi3+ifDz7AMWxzXc=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580893,
          "profile_id": 10561185,
          "ranking": -1,
          "statgroup_id": 6037437,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580876,
      "steamlobbyid": 109775243596684540,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"5ff650d2-9e1e-4edc-8406-49ed35aa6f7a\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 9441693,
      "state": 0,
      "description": "Michi 3v3 noobs only",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFktFugyAUht+lT1CtkuySTrq4FIgOunlbu9hgOrtkjcLT7wAH69Uf4fzn+w9n0w4NhS/nZnJ0BlVRwtM/d3/svaxGJw2f4zkj53heyOpexn814Q3WqGnee1V1szSUeSkVhRruZSaNPnshFCeX7PSlD9dfxdjcfp4WcXhvP9j185K1x0ZtX6J3RzjVoRYYd4lNKGALfYZcGnaIfTpyBLOgq558R6adNH0WvYbEmQk3WeTM5c8YaoTxNYGzhLzhHwd2TjsvF8i2CNVgpiZxFUJNf7xBXXkdGWU1LdgD/HTs4SgRyOX94nx7CxnmqBnMWuMM2TZl40oTqH2LGmai6gzvQD6GrAORNHgvErxfw3nvvDevKHrW67twwwhyW5htzmOt5X42gaWG/t28H4KPZ7EC70Nmm+4Lk3LUwNLhXOsizVA4DVxhhha4HLDE/q4n6LET5l7GutHKW4Hnw/PcpffWecornntX8nUf+mJ9TzemHcjgLTD/MIN/3BfY5ee+rF4F5Mc8upS302PzD+v98Yg=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrN1VuPojAUAOD9LTzjhnITTPYFh846WVALLcpmHzpSA3KRQXZGZ7L/faWuMiRjMmYflBfac5q2fOkpQBZ/vglltV4mGRsVy/XXJBIGpqoC3VREYVPTOlkXozthAEShZjRvmpIoLOnimNj3Krpgp2aR/mDPLDv1HFovYn9X8hG9ZpokZxNWwYrmzPH4uGSDGI12fJVmzd8bHs5ZTe9oTYWBMEofLIShNcVQnQZR87Z9n1iYx5DlSTw3RnYK/BRVTqrpnk/GOAVNfEhguiMFCQO7fJmv4HABsvnj/XZF5S0I0ihwbbfYj7MQhJoPEHKx9jRXsgmBBDbxKQm/kzxOMCbNfBbzRt+EP+IHdoZhmkq/Yye3duBG7DwfneymKc+5009bQcStbHiZDZD2T1/ROjhKiyNfG4fAw8HCD/xDfPzvA2cxjPgBC8c0K2duEK8eg61McKTSezIjReaTV1IFWVwcMfFhriEh5QwVJ2x3cvbg6JKma3rHRm1tlBuxQa3NM7fxLZfmm5d90YSOBJ7oK/y01dmi/dguPGsnG7qiGnLHTmvt1BspOjwrr3ZhOckZO7VvGkCTOnZ6a6fdyoX1zu5YY8y+9MICl9n0QIel9+4nqHdcmswR5tD+LxmplQEdmUt32b/SLn99+QtynJ8w",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580876,
          "profile_id": 2863482,
          "ranking": -1,
          "statgroup_id": 2607379,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580876,
          "profile_id": 4798150,
          "ranking": -1,
          "statgroup_id": 3905131,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186580876,
          "profile_id": 9441693,
          "ranking": -1,
          "statgroup_id": 5515302,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580876,
          "profile_id": 9605656,
          "ranking": -1,
          "statgroup_id": 5585625,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580876,
          "profile_id": 9889937,
          "ranking": -1,
          "statgroup_id": 5693042,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580876,
          "profile_id": 10000735,
          "ranking": -1,
          "statgroup_id": 5752092,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 600,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580866,
      "steamlobbyid": 109775243596684200,
      "xboxsessionid": "0",
      "host_profile_id": 3102482,
      "state": 0,
      "description": "2 vs 2 noob Fresco&Batata",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFugzAM/Zd9AVAaaYcdUoVOmZpEVIGVHkEVWthGJ22D5uvnxE6XkxXbz+89++E41hxeodx84wtEgjOV/vz1ZxdCMXnj1IL5ivWYL424bvFPMlVTj52XXYhEtxjHqxAay6FHhTA3rulDoK1i3Xt7aG23tm07H1/3v5fm/NW7F9WfZt/Y7BGxO6Z4E3uB4yZx0xa4xTljAXP2OKdjB1vhTDGwC3LaGDfkiDUCVvzLtZ9vxLMwn1Ps0S70RJ5b42T8U8Cd5q+gbSWdWy1AZ/RmzM1btlKcxRhxS+Mqwp2YJi5KzDnmhxXykbf24J9FDQp80ZbT7Bp8xdnagnbeYeyAh2uoZkjer0bMJWJXwL+SiK0C9qIEYTqePLgFPchb3ozraG8Sdi2Ri6uZdvwZcYCLlTnVwx5lqi+SDgX+6eSbA68X1Azcy90Ya4OvC833sAPCGArzUdKtyHRf3oh7fnPfke0S/yzcLOanNfVrP/7v3V63mG/K+y2KcIvR0xL0f5N3JWBR7ejTPWk7sfNJPT38AVA28LU=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkElPwzAQhfktPqcozlJQJS5pYwgiXdzYIUUcTOIorrOUNEArxH+nDmpFhTggxNLTvHkzmvn0oKHdPINFXaUi516ZVsciAT0T6oZ1amhg2bBGVKU3AD2ogYazQkldAymLt4NNV7OY72Qpr/gjz3edz5o4C9aLdqOjzoiCj3mNalZwf9ruiSXmLFm3X9TPh2VrF7xhA9Yw0AOevHQwQc6EIGsSJqq6+DpzSOthZ6q3sxF2JQwkrn1pd6cBHREJld+nSK5pSWehu3iK5qgfwzy6O1/NmbGCoUzCoTssN3sORsgOIMZDYt9HZj6miCLlT+jsghaZIISqe44vvDPwon3MrgP3Yuu8yw3+XG76Z7l9ldHYY1STLeSb/h+U5kFQWr9ECb9FaR8EZfcgKE/+iPL26BXRjszZ",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580866,
          "profile_id": 3102482,
          "ranking": -1,
          "statgroup_id": 2809409,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "brazilsouth"
    },
    {
      "id": 186580815,
      "steamlobbyid": 109775243596682690,
      "xboxsessionid": "0",
      "host_profile_id": 4302777,
      "state": 0,
      "description": "Lo Yaso!",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstuwyAQ/Jd8gZ9IOZLiRJYKyCkocm61VVnCbZxDKxu+vgssDqcRsLMzs3u4Th2FU3CzOLoCYpTwdOeefycP2eyk4Wt8b8gQ3yvJnnW8awnvsEYt68kj1q/S0MZDqSjUcA9zafTggVCcDN/38qPU9louxWeRudt5rgd1v9zmY3Z32TFy94RTHWpBY5m0CQXaQp+pkKY5xz49eVdN7MlG8hU1ldKMeeSagCvc5cItFnUW8jGHGmF8TdBZg99wx0E7p72HG3jbhOrQU5d0VUItv7xDzDyOGiVbNuwBfDr2cJQI1OX5Yr6jBQ9rxA1krTHDJkveuNIEai8RQyaqzfEP+GtQ60Rk9LdJ4H4L76Pz3JxR5Gz3uXDTENRtIdsCs7HcZxO0tNC/X09T4PFarMD/4Nmm/8IkHy1o6THXtkoZCqdBV8jQSl/HsL8b0zxKYZ51rJut/KnwfUp7VQqX5q2L5Fe89q7m+z6M1T5PN6cdyGEW6H9agT/uC+zya192rgr84yx0LR9Xe/gHLzHxSg==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1FtPwjAUAGB/S5+HWcsuSuLLlCrGDejWDmZ8qKyEsQtzTASN/11WArgYTIyJxsSnnrYnO+d8TQaRcvsC8mI2jhLRycaz4ygELa2pItM0FTAveRnNss4FaEEFlIKnVagqYMxH24v1ruAjsQuz+EYsRLLb2bwcTbxVLjMa1WeiVPREgQueCtuVedGcCB6uZJWq5uNcHqei5Be85KAFOvG1RSi2+hRrfSbXtkuvq9XyKF5Ua9+zHJ7OnzxIAluFD/wZ41CtcoMuT/KB40+m9/4SMRpq/JINWJZ47JkVfjLJXJmHu6QdQy8mhR3rhuuxLt3UOmcsH5CMWFT2QIKe2zkDr8pHu1MTnuqmWrNDezv423Z+KO3oIN/OYh2cPYab2XG8YhkL/Hb+NJzi8xFMhveXyylHS+jHoe+0nazyJxjra3viUP1h2Ex6DDMs34UFVyydRJQy+V52dMjOMCBCes2uubdD/3af2JlIhSdGzU7b2zX/7SxxyK4Ba2yNd/86reZW3WzhNvG35NRDcl/tUv+hLuG3ujT+RJfmL3V5d/QGo+Rdig==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580815,
          "profile_id": 4302777,
          "ranking": -1,
          "statgroup_id": 3580903,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580815,
          "profile_id": 9661225,
          "ranking": -1,
          "statgroup_id": 5606048,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580815,
          "profile_id": 9719570,
          "ranking": -1,
          "statgroup_id": 5627912,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580815,
          "profile_id": 9720186,
          "ranking": -1,
          "statgroup_id": 5628134,
          "race_id": -1,
          "teamid": 3
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 120,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westindia"
    },
    {
      "id": 186580809,
      "steamlobbyid": 109775243596682500,
      "xboxsessionid": "0",
      "host_profile_id": 2735685,
      "state": 0,
      "description": "3 vs 3 seminoobs",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFugzAM/Jd9QaEQqY90oRvSkogtoWJvK5rowjr6sCqQr58TOx1Ppxif785+eB3bCr5c2NlXDhCvmKjozV9v+wD55JUVDus1O2FPofi1xLeGiZZ69Oz2AfHeKVvVASpdQY8IMIO3UwBSC3a8uPzj+dz1m8PUHTt9+j6/nb523hz270Zvdsjdgx4Te0HjVpBeqUFbnDPmwHnAOT170TXO5AP7RE1bZYcMucbkLZN+Xklnrn6m2CNt6Ik6S2Xb+CZ0yKMPcAFvi+TJU5t0FVLPv6IlzANGjYrPC80APoMzfMUk6Qp8mO+wKls7xDVkbSjDegPvB9RhGPQ+IYZMdJPRP+CvJq0jU+hvUcD9GOuDD9yCV8TZ3PcibM1I9wrZ5pTNKkI2UUsD83u3HyNP0LJK+h88r+l/aZOPBrT0lGtTwM2QZwO6YoYr6PKCMhR+SPvYSnstsW9a1aWgOuzLUd2nusmTXxnuDu+hFPd7GIr7Pv2UbiCDXZD/0QE/3gvc8v+93G+4AP+0C1OqS3d7+AP30PGT",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkt9PgzAQgP1b+gxmZWMQEl/YqGKECIOSzfhQoWQdP8NQRxb/d1fMpkR9IEbdnu56d+19+VIoCXdbUFZFzFJq5nFxziKgScpQHquyANY1qVmRm1OgQQHUlGQ8HQggJuG+sTtVJKSHNE9u6BNNDyeL1OHSa8p2QuTPsIze0gpVJKPWrJ1ja5eSqGm38J2P67ac0ZpMSU2ABszkWnd9pDs+GjlBxKMx87DutzVXd5K2Z/sJ5HGCUdLgHC8Co3yer9AkhOn84XKzItIGBkkU2AZyd3O6a2DEo4MXVzhbMt/H/L5uMfMCvAhfu1EVteNGencDj8SN69mf3Di93aB+bkTY0SJ++DPS73kZfOelL+Oww8g7e8i3/DgoRydBKZ8E5fiPKOGPKJV/orw/ewV+YOih",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580809,
          "profile_id": 2735685,
          "ranking": -1,
          "statgroup_id": 2467032,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580809,
          "profile_id": 2735878,
          "ranking": -1,
          "statgroup_id": 2467214,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580796,
      "steamlobbyid": 109775243596682180,
      "xboxsessionid": "0",
      "host_profile_id": 11235162,
      "state": 0,
      "description": "[重赛] nongzhuanfei",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwjAM/Re+gN6i7bGQgroticpSpPI2oqlSqlGkMZXk6+fEDuTpyI7tc469OoxdDS8Xdl7qBRCvmagp5q9/mwD55JUVlG/YGWtKxa8VxlomOqrR87IJiA+LsnUToNI11IgAM4idA5BaMLkz7nN768z+xX0Vx7fz+vh70ofT+1pmJ79+xd4D8OljLXAsBPGVGrjFOWMOPXc4Z2AfusGZ3CSehbImw15j0pZJPzvimavLFGukNey7izwr0BtjQgc/hgDvoO0uuSFNXeJVSj3fREeYB4wcFZ/vNAP69TjD10xivgj90F/jlG0WxA143ZOHzRriO+TRM6jdIwZPdJvRH9DXENeRKdR3V9B7G/PGh96C19SzfexF2IYRbwfe5uSNE8GbyKWF+cOyGWOfwMVJ+g+aXfovbdLRApeBfG3L5KH0PfCKHjoV6jjN9ybto5D2WmHd5NRPSfnxmfcp3+eJvwx3hzuuxOMeTJnqpZ9gn7hv2AXpHxfI473ALT/v5XHDJeinXfSVulzn1T8FCvD0",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrt01tPgzAUAGB/C8/MrFymLvGFSeeIu1BoGTM+dNBlrMCQoW4a/7u2Xpe4mGnUmOyph3MO9OTLAWjq+Z1SlPNJkrJOPpnvJ7HSBEDTTdDQVGVR0SqZ552Tx6SqVIxmIqyryoRGL4XHp5JGTPYYIs75Gbtm6XMl511aRVN/VciWmvhOkrEBK2FJM9b1ZF+yQIzGK3mNuPRqIdMZq+gJrajSVDoc6ghDy8VQd4k8bZcgcVrEd/rjtlOhPJ2S2xSFPG73SBF6vEjGxFmMMISizx3GLXnikTeG6bBrO/J9P4iOBl7nWLlXP9QwDoB2tKahvWmAjRrm72qgrTWmX9LQD/VDY01Df9PQNmnUfxLDsZ4xDDeIJYbvQwvLHLK8uqz1kc2Bz1HZ5WbD80kfcyDyLQL5iuRkFNjFTTiDrQik4bi9nFFtCQIeBz27lwsYBKHpA4R62LwM9XRAIHmCJKNTkk0TjIkEZJvwamCNrfbun9LX3ETlBe4p/pZcfZPctlMa/2JK85em1D7dQjws/m4Lk+23sLGT+6LcwU7uVe5i7wHjrJ3u",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580796,
          "profile_id": 11235162,
          "ranking": -1,
          "statgroup_id": 6200136,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580796,
          "profile_id": 11238384,
          "ranking": -1,
          "statgroup_id": 6201434,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580796,
          "profile_id": 11247129,
          "ranking": -1,
          "statgroup_id": 6205092,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "koreacentral"
    },
    {
      "id": 186580772,
      "steamlobbyid": 109775243596681580,
      "xboxsessionid": "0",
      "host_profile_id": 11427844,
      "state": 0,
      "description": "[Rematch] s Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9UsFOwzAM/Re+YN2ySBw4ZEqGAiRRR8Yot61MhVTQHYB2+Xqc2GlOT7H9/Pzsm11XC3hLE4YoRkBScCPoL15+NwnKPrpgRowrfsIa5uRljX+am5pq/DBuEpLN6IJQCTovoMYkWMHfKQHrDT++Pny36uPjeHh/Mep2d1bN9HzYPj3G/V/tF7fI3YCefa4FjStDeq0HbblPtwTOLfZp+JNX2FO2/IyaVi60FXJ1ZbbKxuFKOpfuu881NqSarHPtgs5/xovSf4LZJuq/thLmzN50lftcTIQXGSMvc0ERb88taTFyqDDeThDPum0E/zzOYMAX6wX1rsFX7G09zC4axAF0hD3ltMX7ycmBIbcC/Uojt0nco5HEGeb9XtM8qFtfXWhobxp2rVFLqLkN4h55QIvXFeXDHnXJX5Y5DPhni28BvB5xZtDONl3OTb5W1D/CDoijnXfgvC73FZ2c46t5R74p+hdwD7TDfnJfDOOxK/Ur5y9rjO/ZfIsy3WL2lMH8P+QdAy7aWxfLPVnf87cDu7v5B3Hd8Dg=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrV019PwjAQAHA/S583Q8dkhsSXwaozQlyhnWB8qFsXyv5mmwohfnfpDOCimCwkCk93vbu1l18yqCmPK5DlaSAibidBei580IVQ14xLXVdAUbJSpIndXxcVUHIWy7SlgIB5m8b6lDOPb9MkvOOvPNqeBqz0ZuNlVk2o8hoR83ueo5zFfDCq5kSBOfOX1SvyzZeiKse8ZH1WMtAFdnhrYoJMhyDdcX0ZLTzGJqlq2HTCqjfkFpSxR1G4pAmdulb2NpmjngejyfP1Ys60BXRD3x1aCK/nTGxBJKNDpzc0nglCqPze5CP7Crwre3E6NRxthwOPBIc8ZN9wWGOc6Gcc8SuOYdRw2jsc7YhxSNgUhzbDUWGNRf3yR7VrLrKzgfnMD5Jp7ZNpuqX+R1vCg7a8OIktOyexpfFPWz6dfQACPQ+q",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580772,
          "profile_id": 11427844,
          "ranking": -1,
          "statgroup_id": 6282765,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580772,
          "profile_id": 11427846,
          "ranking": -1,
          "statgroup_id": 6282767,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580772,
          "profile_id": 11427877,
          "ranking": -1,
          "statgroup_id": 6282780,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580736,
      "steamlobbyid": 109775243596586640,
      "xboxsessionid": "0",
      "host_profile_id": 8870210,
      "state": 0,
      "description": "Forest Nothing FFA",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstOwzAQ/Be+IM3DUg8cXMVUlVibgE1Ij00rF5fiHoA4/no2tpPmtMruzszO+OF1UBS/HIz9gQamehCGsqngBshBh34F3nqgoe/EtQx9UWtyijujMCztMAK0iZi1HTZTVV8G3KlDX9phO0z/lBcG3Kk9kgM7Z29+89ypn/e3tsqanLPmo1+/ROwc557i7o5wv0s8CrkDT8mNdZsm8OTiM3ORUxezTu5twSNWudwmewI66uTm9ht3ukJ8X4JOIa2P/xj6AdupBIm3STqmmzLEeoo+KPIsWaqbqU4aNYGoMUe8VdzrEU8lXYjXBH8L9N8BDbVDr1fJQ8fr+Ta2EqYfNjrU6AkbeZNmvE03M7xPs6j1gtg6YmMfajokzPGey84hTtANBr1N3gDmDjH3EflzoF3AmbSAUWleEVjmu/mOEbXkyddR1LOHPWrX0UODujxN/FAsefhuzrOCJQ+Y8jqFPX8hr9f1uP/g2Y5Vf8ft+Xa49r9du/6Cb272bXXur19/ie+evezmDDL0eM7O3d+Gxjce+oWQtyr21fJORE2xH3wsQVrMY/GxRLx0h/bzW+Do+74tHx/+AS6hBBU=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkEFPg0AQhf0te6aGRbQNiResa2hsLRQWgvEwwhIQWAisxtr43+2uaWNjPJgmGk5vZt5k5svDhna/QW3XZEXFHJ41p0WKrMlkrBtY11AvQBQNd6bIwhoSDGpZbo0Mkp2x7TpI2L7k5S17YdW+m4NIcn/dqo2RPFPUbMk60kHN5iu1V/Qeg3Stvsifz70a10zAFAQgCznlzPYCYrsBMV2q9DrWZ1JtPyBEqhulJNWlF99B1UaLMH96DF8NGqQm3NCI8sqnb7QLq5y7pbqxiLHSK0rbyOOeHagfHlmunEv0rn3PZoQPYhl9yQUf5CKdXTCf9VHJ6D8l81tKYxCUZ4OgNP+IEh9FeT4IyotBUI7/ifLh5AMQxcM5",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580736,
          "profile_id": 8870210,
          "ranking": -1,
          "statgroup_id": 5333072,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580734,
      "steamlobbyid": 109775243596586640,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"be2c169a-0c25-4f90-8e13-44fd7ee6c294\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 10980289,
      "state": 0,
      "description": "4v4 AI的游戏",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwyAM/Zd9QRoSpD2mg1ZIA5YNOmWPi6Z0ZG2qXZSEr5/B0PJkcWyfc2zfPQ+2gVdKN/3KVoZ41k7wECgn6TvitfSTl03EF32qIq7ZQD+wZtWOpxpOZdNiTzbN2xCxcYYaFnEzbfZz+LNen3bqjRy+XkhLVPnzfeDH8+u+LbrD9mhGfv+EvUvtmh3WCqp81mZBW+SplAOeNvKU+rNYkHMg+jxirp+Iwl7VVafpqcT6UrnLH9Z0oSbq1KAT//ic+aUBbw57atOCT4v8JswuxSzE2FezKWnpau1s0tJQhTiRBvCouw/zSx64h9w0N17Af+K24L3ZY9xRaUTWR7InaQaqcfYL6F8eIt770FuyJvUUwQ/mh12h7hX2X6a9rbDrFbUI4O/m7RD7BC2rSvngec35MP/kQ4CWbk08MGuZPFvQ1eGdmKkALcjv+3wrBHZQp1tZ831JP9xwn3FbZv2KibzDWpq8w7667X2E+4z4Rl9vcQi3uMP75fTR8HTLgmrMrW7+ba3Pl+nuH7FS8ZA=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1N9vojAcAPD7W3jGhVZxbsle2OjO5UQtbVEue+ikRiwgQ27TXe5/H9QoI5nZ7nKbPuypv76h7affLwDqP39rabaYhpHoJtPFSRho58A46xiwc6Zry5zn4SLpXhWTupYLHpddQ9emfLJdKEYZn4hdN5E/xIOIdqMezyczsk5VRKP8TBiLgchQxmPRc1VcuMSCB2u1S7nnr6WajkXOr3jOtXOtK28sTJE1pKg1ZKq1XXpTthah6KFsh8RyeLx8JAD7PQPc8yeEAqOM9fs8SkeON5vfeSvIaNDi12zEkoiwJ5Z50SxxVRzqY1sCInHWk2bbJaxPN3tdMpaOcIItqs6A/YHbvdD+6K/gAdAq9No1PFjhgUPjeYHCI8TaXsbae3kJNpdHcs0S5nt2+jieo8sJiMZ316s5hyvgycBzbCcpHwAjZBb42KHm/bgZDRhiSD0M87+zeBZSytSDiX14DVBja7xIOvhxbkblBt90wwQdzi3c4wbNTrtp1vFOK7vmseTcKD2+nCvqFcKOUf/bmRVe62gKtkq8oVRrzvuxEFZY9v8rSLPmUq5sYTb9zytJesi0Cv9erv0l949yp19yO7nbb89ZRBCb",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580734,
          "profile_id": 2586351,
          "ranking": 102995,
          "statgroup_id": 2323445,
          "race_id": 0,
          "teamid": 3
        },
        {
          "match_id": 186580734,
          "profile_id": 10980289,
          "ranking": -1,
          "statgroup_id": 6161259,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580734,
          "profile_id": 11148026,
          "ranking": -1,
          "statgroup_id": 6181405,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580734,
          "profile_id": 11422809,
          "ranking": -1,
          "statgroup_id": 6280544,
          "race_id": -1,
          "teamid": 4
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "koreacentral"
    },
    {
      "id": 186580709,
      "steamlobbyid": 0,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"a3575704-2606-4e5b-9e36-0c5e9cac9676\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 5783431,
      "state": 0,
      "description": "siegetowers only",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOhDAQ/Re/AJbSxIOHrmW1idOKKdmwN5cYtKjsQQPbr3fKDNjTpNN57817vXnpa4VnB2GMasJKKwmK7+Lld59KPUQXYKJ+Jc80I5y+lHRnJNQ848dpnyrdTi6oKpXOK5yBVOZ4d06F9SBfPz/v62P5XGdZhIemaOL7aB9PFyhehsZnt4Tdop5mmUWNBbBe61HbwtPvXKgOxNPKJ18Rp+7kG2kqXOhywurX3XIbxyvr3LnvYZmxIc0sOstVO3i18s+4W2GJv7Qa91y86XP3kc1cZ0tNuAJ1Me4gLWsBPebU7+ZVt43on1cH4gNp/cpdo6/EbZEbVEt1GGcIDb/pVu9np0dB2BXqrwxhQ8KeQDNm2PK94j6s21xdaDk3g1kb0hJqaYN6IBzU4k3O7zFHs77f/Af0zwbDPOj1RDujdrHvl7dlmmP+iBkwRrdl4LxZ/1d0eusX7kuQl5gx75vhf+AMh3nrx/4/d38pqd+I7S/q9BcXTwXu/8NYArE4tx73pyysH+TpKO5u/gCYnO9z",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkNtKwzAYgH2WXLeytJ2TgjfpGq24YWMPbOJFbFOW9UgbdWP47jaRDYd4IQOlV/8x+T8+aGiPO9C0dcYL5lVZfc5TYI8nl6ZlQg10ggpeV94U2H0lGC1lOtJARpP9oK9amrBDWuV37JUVh2pGRbIKto3a0OU3vGT3rMUtLdnsQe3xjjCabtUVefOlU+2SCTqlggIbePktIiFGfogtP05ldIOAoFD1CPJzNZtTF8roRDjfRlW0jN3mbbHGTgKLxfP1Zk2NDYzzNJ67mPR7iLgFltGPljdRueJhGMn3iDneFXjXvrvRj7XoX7zAIy9yshfzmZ9kZvSTmd9SGn9ECU+iNAdBaQ2CcjwIyotBUE7+ifLp7AMGKsM1",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580709,
          "profile_id": 5783431,
          "ranking": -1,
          "statgroup_id": 4552511,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580705,
      "steamlobbyid": 109775243596748900,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"c68e471f-61d2-4daa-852a-ed029df626f5\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 4344780,
      "state": 0,
      "description": "ARENA 4v4 seminoob 1000+",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwjAM/Re+AHqJxGNZCuo0NwMStD6OClUEQZEYapOvnxO7kCcrx/Y59vFs15kCXwK2/4MthHhQtihDUFsQR8Jz8L2HIuKjumYRV7ITJ6pxypZcUwoottRT9sMqRPIyYI2MuO6HzRD+jFfXPm0Ou8fx9mn3fnU/nR9j87NOdm75u9+0y2/qnaCeNdVWovYV8xjUFnmy2iLPNvIk6jwfibNL1e1Cub5Pa+qVvXTqVgDVJ7W951TThJqoU+l+Tn/lMPGDxtks9VR6i3Ma4tdhdxzLEFNfJXvW0uTKGtZSiJrwFDTiUXcb9sczlB5zeW/lHP+Z2+DsxYbiRoCuFpyTTjOB7oSi3Y+of/yIeOtDb5AF96xe/kLwinQ79D9h3xx67UhLhfzNsOpin6DF1ZyPM7spH/fPc1SopXHMg7sGntmgrobuJNRJ5vftdCvp24OLm+4LfPfG/YSb5OWhrCYPc9D3J+Ft9vb9gvcZ8YV63WIXbnFN91uKL13yLWMvys1wfvbC5Op6eM7+AexR8t8=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1U9PgzAUAHA/C+dp6B8oLPGCUp1x0xXoNo2HOrqIBTYZ6hbjd3egjqEucTcOO7V9fWmTX/r6AGzdvmmzbDqJYtlJJ9OjKNTaGGFMLL2lzXORR9O0c6q1QUvLpUiK6WpjIsbfG6tVJsZyPU3VpXyR8XrVFfn4wV/OyozD4pgokdcyo5lIZNcr86I5kyJclrcUdz7Py3Aic3EqcqG1tY66cFhAnX5AcX8QFqPL/AsnKGPM8fRy74q5CviKZV1lmJ7PrwIFivgJp2rJU34zcGevo0d6Mgbx6P5s8SjgAgxUOOi5vXSV5zBKDR8w1guMpxGKrznltIj3+c05Tx6iIODFeU436hxr763fdhBhiIlds4OVHWiInTcM13Z99Wn3fyvKPq3+tpHeFhtsYhMSs2aDKhvYEJtgOPtp09vZxt3x3QBkIQKtmg2ubFADbRpTcxjYhk1A/b/a+LDwHm87nkl0nSBcwzMrO6Mhdr7v/CpK4e5alPFuNki3sQXrjdCqbMz9u3Lk1kZoAwhtUi/KjU5I9nhfD+/u4AMEhf5F",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580705,
          "profile_id": 1383728,
          "ranking": -1,
          "statgroup_id": 1173441,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580705,
          "profile_id": 2342479,
          "ranking": -1,
          "statgroup_id": 2087274,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580705,
          "profile_id": 2912297,
          "ranking": 10756,
          "statgroup_id": 2634980,
          "race_id": 0,
          "teamid": 7
        },
        {
          "match_id": 186580705,
          "profile_id": 3094820,
          "ranking": -1,
          "statgroup_id": 2802318,
          "race_id": -1,
          "teamid": 6
        },
        {
          "match_id": 186580705,
          "profile_id": 4195971,
          "ranking": 20324,
          "statgroup_id": 3511153,
          "race_id": 0,
          "teamid": 4
        },
        {
          "match_id": 186580705,
          "profile_id": 4344780,
          "ranking": -1,
          "statgroup_id": 3608087,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580705,
          "profile_id": 4646276,
          "ranking": -1,
          "statgroup_id": 3803530,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580705,
          "profile_id": 6700734,
          "ranking": -1,
          "statgroup_id": 4984691,
          "race_id": -1,
          "teamid": 5
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580693,
      "steamlobbyid": 109775243596585470,
      "xboxsessionid": "0",
      "host_profile_id": 633986,
      "state": 0,
      "description": "1v1 10x  civ bonus",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9UstOwzAQ/Be+IA/HEgcOrhyQBbaVyhFKbzRCKQ6QHoqS+OtZe9fNaZT1zM7O7sNx6gR8lfbLJlZAUnAt6F+4/h0ilHOwXq9Yb/kZOczKa4P/FNcdcdyyHiKSw2q9aCO0TgBHR1jCv3MExmlu28t+rG781H9L3d4u5/liX4PaPsq5PoXiEbUH8NMnLnisNfk1DrylPlMFms/YZ+BvrsWecuSf6Km2fixRa8qzlSYsO/ms7O+cOMZHTvLZZO/aidx/g9mYWRO/MRLmTNlMpf0qNsJFwqjLrG9Jd+aGvGi5lFgfN6gn3yZAfg5n0JCLcbl3B7lib+NgdjEghl1p39ObMWe/Wbkw1G7Bf6tQW0ftVUvS9Pf97jAP+Va79QPtTcGuFXrxHTdevKAOeHGqpPewR5XfV3kODfkZr6gPZI1Z1eCdHab0tok86h9gB6QxVvaH0a2ofF/Bynu9znXjhuy/gHugHc7bvR6mzK+tuzZY79n9FmW8xZQpg/lvlB2L90/3FPI9GTfz0zt7evgHK6vv6w==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkVtPgzAUgP0tfWaGwsC5xBc2qhjZpaMlm/GhQsm6ApsM3Rbjf3fFbErUpyUannpuOefLV2ho969gVSwTkXIvT5bnIgZd2zQvO7YG1iUrxTL3+qALNVBylqlQ10DCokNjnxUs4scwl3f8hafHzGdlNA92q2qipdaIjI94gQqWcX9SzYk15izeVVfUzed1Vc54yfqsZKALPHnrYIKcMUHtcRir1yUBckhVw85Er3pD7EoYSFz40rInAR0SCVW9R5Hc0ZzOQne1mS5QL4Lp9PF6u2DGFoYyDgfuIN/PORghK4AYD4j1NDXTEUUUqfqYzm5oNheEULXP8YV3Bd607+oMU7eMTk2d8akO1tQpGwd3H/FJ8vTf5P0I2oI1yNaXDzb+iBKeRGk2grLdCEqrEZR2Iygv/ony4ewdFLfNnQ==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580693,
          "profile_id": 230528,
          "ranking": -1,
          "statgroup_id": 28762,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580693,
          "profile_id": 633986,
          "ranking": -1,
          "statgroup_id": 492896,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186580685,
      "steamlobbyid": 109775243596585260,
      "xboxsessionid": "0",
      "host_profile_id": 11082489,
      "state": 0,
      "description": "3v3 4v4 BF.",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9ks1urDAMhd+lTzAwEKmLu8gotDdSk4hRmIouSyvmGnVgcVuYPH2d2IGVheNzPv88nMdW4lcamINcMVJSGMn/wvJ9iqGaggOzUr4R71RTObXU9E8L03KNn9dTjFS/OpBNDJ2XWGNiWDjo3mNgvRHm7wKvt+vPh7+czxfbD7crnC/L1X/ZuvWHR9LukadLtch4NMxrPbIln7FEnyfy6cWLb8hTDeKTmI4OhoK0xsxZ2DDfmbN0tynVWIg1ibN20KZ/xsvsv2FvG/vXVmGfaTZj4f4dNo4PKSbdykHDupOwzGLUXFB+2DCfuG3A+XnqweBcrJfs3SIveVuPvcueYkAO6PjNkHvanJor0m6Qv9GkbaL2ahRrwr7fe+yHuPXdQc9707hrTSzQCgvymXSQxeuC3+MedX5f5j4Mzs+CZh+c9Uo9I3t1GtNb5NIF+wfcAWsMpfuq+FZ0vq/g1J4/7jvyfeY/4D3wDqct19sw5vqj80tN+a7ab1HFW0wzrbD//zy7CrV4b2PY9+In8fbc/Xn4Bc2V8Ko=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrN1E1vmzAYB/B9Fs7phAFDqLQLKe5SDRIMNoRpBzc4CuEllLA26bTvvkDUUJRGGqdywn5s2fKPR38gjX7+EYpyu4pTPs1X269xJNwCII4lZayPhF3FqnibT++OxZFQcZbVQ3EkrNjybeE4K9mSn4d58oM/8/Q8s1i1XHuHotlxUx8TZ3zOS1SyjFtusy/eYc6iQ3NLfefvXVPOeMXuWMWEW2GaPBiYIMMhSHH8qP6armcbpKlhwxWbtRk2E+AluLQSqLoenZEE1PUJRcmB5jT0zeJlsUGTJUgXj/f7DZP2wE8i3zbt/LjPwAhBD2BsE/i0kNM5RRTVdYeG32m2jgmh9XmGFU+/CX9HH+DpUIcS7NqJLR4YCB4JijOek5zw/h8L4RNWTxwZAFXVxQ6O3tpIA7HBQXph4/S2QT0bByiqCFXQwVFaHHkwOBeNY3OzJ44JPsTh13B0TZQU2LWBrY0yEBvPQxc2rLdN2s9GkjVdU9Vu4ryLa/jZOBSdGoc8NA/xCHpuHugZNst2L8e4DS0RPLFXhKImxsMZS4vA9tebR38vURIp7J4GNE89+kpLP13nV+P+dNeE0iLAOX77GeHcvZZI+lgfi108rbVTB9NY9CKRejcWSnumtaIpUJY7NuPWRhtIX/mf3le/vvwDslLsDw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580685,
          "profile_id": 1959525,
          "ranking": 27182,
          "statgroup_id": 1728900,
          "race_id": 0,
          "teamid": 1
        },
        {
          "match_id": 186580685,
          "profile_id": 2379766,
          "ranking": 28763,
          "statgroup_id": 2123168,
          "race_id": 0,
          "teamid": 5
        },
        {
          "match_id": 186580685,
          "profile_id": 3116690,
          "ranking": 13725,
          "statgroup_id": 2822766,
          "race_id": 0,
          "teamid": 2
        },
        {
          "match_id": 186580685,
          "profile_id": 3474533,
          "ranking": -1,
          "statgroup_id": 3154182,
          "race_id": -1,
          "teamid": 7
        },
        {
          "match_id": 186580685,
          "profile_id": 3989806,
          "ranking": -1,
          "statgroup_id": 3369544,
          "race_id": -1,
          "teamid": 6
        },
        {
          "match_id": 186580685,
          "profile_id": 9702451,
          "ranking": -1,
          "statgroup_id": 5621328,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580685,
          "profile_id": 11082489,
          "ranking": -1,
          "statgroup_id": 6173098,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580685,
          "profile_id": 11460561,
          "ranking": -1,
          "statgroup_id": 6297931,
          "race_id": -1,
          "teamid": 3
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580681,
      "steamlobbyid": 109775243596584980,
      "xboxsessionid": "0",
      "host_profile_id": 3295588,
      "state": 0,
      "description": "NO NOOBS 2 vs Extreme AI black forest US EAST ONLY",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1unDAQfpc8wRYvlvYIsYOoNHao7Kbk1qWVUy8boiop2E/fscdkOY0Yz3x/c/dttQ1+FfjlHQZI9ap9I1OhPPCzy/0a4hKhyf1NX4+5r4Xjv2kmaC/LjOTQDLRTLGubKnFZcUbkvlnWbk3/bNTzc7RmfpxE+zLM9q/qtvexOlXw45eGWZ4eaXelPTzQbM9V7AuOReyMc1QecYaMU+k/h40wHdt5qrgwRbuOnzzNxMERT+XfapoZmX69ZJ7aLF/on0Q/ZMYHI7kyA2k3A+q0hG+Sd6UWqaa9WiyFy1hrbwuXhivqMzDYz7yn5F/RICO+Lb7Jww3bovamo3rkYPqdH9s1gXFck/cb8t/uc3+KaTeIpuzsP/OFlBXxDph/VXILmHUgLj3ij2vr8p7EJajyHjWH/T36X3T0yGUMBQe9hqLZIq+R7gR9RS6EH6f9Vtgtg0vYc4PoOLTpWJqozdv9uXvwP0PbndnXeWLDx/h0muFV+een+mW6zv9ofkoZlozRJ/L6gPoKr8t2uwu33xDD/TVpsOlGircu3W1Pt45emWHduWvR79yP6FfJztb6+v3j7j/PdgIf",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVlFtPwjAUgP0tfR6GjqskvgxWhAiysXYD40OhJYxdWMZU0PjfpYOBixAzMaJP57TnrD398mVQlu5fQRDOJ7bLW/5kfmkzUCvIV6VStSqBRUQje+63GqAGJRBx6ok0L4EJHSeF9SqkY75LfeeWP3F3t+rQaDw1VkHckRPH2B7v8RCF1OOdftxnL3RO2Sq+Rdz5uIi3PR7RBo0oqIGW01Z0jBQNo6JmMhHVvsUUHO/piubEtS5VoYh1gpwV8cnQVIPnwQzVx9AdjJrLGZWX0HSY2VWRvu5TdBUhETUyvCHe1MaYiO8V3m9dgzfpM5s1mnylUE6xKezZwHOzIXFUddyO32Hg7fsshlhe1IZ31A2srjmdjcylTDAr0iaxiO8a5IWEpjv1E5Z4c1adkMDSfT1h3e4dY5ODKSy5D87IKS6ikoDZ5CeRye/JyF9bYyifrNGcrNa4B63p1LOTKZyfzNYZ4wecYfCgM93vOFP8M84YBjrdGXTkT2NnJ1P6JTIwRSbrlOV/MWXlTFM+XLwDzxpY9w==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580681,
          "profile_id": 2950736,
          "ranking": 3508,
          "statgroup_id": 2669543,
          "race_id": 0,
          "teamid": 1
        },
        {
          "match_id": 186580681,
          "profile_id": 3295588,
          "ranking": -1,
          "statgroup_id": 2987244,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580628,
      "steamlobbyid": 109775243596583870,
      "xboxsessionid": "0",
      "host_profile_id": 11369614,
      "state": 0,
      "description": "joeting123 的遊戲",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOwzAM/Re+YG3TSBw4ZEoZkUhCIR0qx3VTRSroDqB2+Xqc2Ck5PcX28/Oz717HVsArtZ+DWABJwbWgv3D93Ucop2C9XjDe8BPWMCuvNf4prluqcfOyj0j2i/WiidA6ATU6wgL+ThEYp/lHV/9ejsfbyR3f9OFxMu8sdP78osv7pnW7e+TuQU+XakFjpUmvcaAt9RlL4HzEPj1/dg32lAO/oKbK+qFArjHPVpgw30hnab9YqjE+1iSdddauncj9V5ht1Uuqr42EOZM3Y2E/dyvhXcLIy6xviHfihrRoORcYH1aIJ90mgH8OZ9Dgi3G5dwu+Ym/jYHbRI/agw3eUM2TvVytnhtwN6G8UcuvIvWhJnH7b7y3Og7rVzfqe9qZg1wq1+JYbLw7IA1qcKigf9qhyfpnn0OCf8Yr6gNfoVQXa2X5MuXWso/4BdkAcQ2m/J7oVle8rWLnFq21Hrs/6d3AP5PW0bvEw/u/dXWuMd2y7RRlvMXnKYP4f8o4BF+WOId+TcRM/Pw0Pd3/m1e90",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkF1PwjAUhv0tvd4MZWxGEm8Gq864AWXtBONF3Uoo3ZdjCovxv7vOQCTGC+OF2VVP33NyzpMH9rWHN1CU+Uok3M1W+bmIwRBCw7q04EAD24pVIs/ccRNqoOIsVWVPAysWHRrNr2QRP5aZvOOvPDn+PFZF66Au2gldrREpn/ISlSzl3rydE1vMWVy3V9TNl20bp7xiY1YxMASuvLUxQfaMoMEsjNXrkPvCJm2G7Xmv7U2wI2EgcelJ05oHdEIkVPmIIlnTjC5Dp9gtNmgUwWTxdL3fsP4ehjIOfcfPmjkbI2QGEGOfmM8LI5lSRJHKZ3R5Q9O1IISqfbYn3Cvwrn2Xp8MTbfoXb/DEm+ocxH3WfzLX+8ncbyn7naA0OkE56ASl2QlKqxOUF/9E+Xj2AdhYzXc=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580628,
          "profile_id": 11369614,
          "ranking": -1,
          "statgroup_id": 6257487,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "koreacentral"
    },
    {
      "id": 186580625,
      "steamlobbyid": 109775243596583710,
      "xboxsessionid": "0",
      "host_profile_id": 10265806,
      "state": 0,
      "description": "極限AI ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpNUstuwjAQ/Be+IE9LPXAIskEgNm6qBJUeSZFVR9RItMrj67v2bkJzWmW8szOzu3ozTYFfAtb9QAW+7rUtlC9KC+JCeA6Tm6AI+KBvWcC1NOJKPaO2inuUgKIiTun6ja9k12OPDHjt+l3v/zWTtof4mDyiy+30gO0pv3YHq98P4nL7GE9b9fJK3Anq2VLvXpTTnuc0qC3MyUqLc6owJ9Ff0UAzTaq/O3o7ubQkrmzxVrcCqD8p7T2nnrPvCTp17WL6p3weO19Cjd7qJmJP0axLy0Yca8V15WvWaARUNOPJ1yJfw7qQrwr5ppj/AEWoB8w65gyHUrqBvKlY27bfmFBjJmosK34zOfas0J9RpLVDbkPciIMseuYcn3vZD8gTdIPFbDkbwL0D7X3E+QkU58DjtYBt+H0jYHl/nn2MqCXhXEct3cSeUbuhDG0nStRC/yFd9jGd533mYO+/jKMfYLzFWwt4HPYd8GqccY274f5Uy3mfbb7cQG3mu8xAIn/I1Az/7mW5YS1h9hPr+h599uv16g/gkvMU",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtlNtOwkAQhn2WXhfTLbQqiTfFLmJsgaU7hRovlnZJSw/UUhUwvrt0CSiJxKiJxsSrmf1nsjPz7QGp8s2TlBezSZTwTjaZHUeB1ESKqmunii5L85KV0SzrXKxFWSo5SytXkaUJ87eB9apgPt+5WXzNH3iyW1ms9ENnmYuMWrVNlPIeL3DBUm4NRF40J5wFS1Glqnk/F3LKS3bBSiY1pU58ZRCKjT7Fjb4bVNYkw9ygQiPGQBGxLjFj5MSksGJNHzjQpTGq9BbgeAkZeK6ZP46muOWjZDRuL6ZMXSA3DlzbtLN1nkEw1hxEiE21u1E96QEGXOl98C4hDSNKodrP4IPOufQsvwdPO9M0XdmDp77CQ78ND4Q1PeVKDOJQ/CAGdAybpfPH9fCepaA7tsI4EFC9Lkvyoe2G07G7UIEGDdaGIWSJAyso3CTMDsLf1GoB5EOSke1heb1D8GpoD1vtzaVT97hVkS24jf8tcsohcp/tsv4numz8iS61H+pS/fCjob/40VjR59+K/k/ui+RO/sntyN0evQBK54vT",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580625,
          "profile_id": 10265806,
          "ranking": -1,
          "statgroup_id": 5870371,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580625,
          "profile_id": 10595560,
          "ranking": -1,
          "statgroup_id": 6035143,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "southeastasia"
    },
    {
      "id": 186580588,
      "steamlobbyid": 0,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"d2710a2a-d849-45e2-b354-41f80effdd56\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 9499502,
      "state": 0,
      "description": "ms rewards",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttu5CAM/Zf5glwI0j7sAyPYiqpA02FmlT5OWkUl2s1o1VUyfH0NNilPR9g+Pj724WXqBbzGhCWKFZAU3Aj6i7f/xwTlHF0wK8YVv2INc/LW4Z/mpqcav6zHhOSwuiBUgs4LqDEJ1vB3TcB6w0/z5+NQnf/ZcHSXy9vpqlR7aernd6W63lc/kHsAPedcCxpbQ3qtB225z9QA5y/sM/Anr7CnHPk7ampdGGvkmspstY3LnXQ27g/LNTakmqyzK9qNF6X/BrNtZs31nZUwZ/Zmqt1HtRGuMkZe5oIi3plb0mLkUmN83CCeddsI/nmcwYAv1pfePfiKva2H2cWAOICOcKacsXi/Obkw5FagX2nkNol7NZI4w77fe5oHdeu7CwPtTcOuNWoJPbdBPCAPaPG6pnzYoy75TZnDgH82aOoDXqNXLWhnxynndqmO+kfYAXGMjfs7063ocl/RyT3e7jvyQ9FfwT2Q1/O2x+P0vXd/6zB+ZvstynSL2VMG83+Sdwy4KHeK5Z6sn/nrb/bz8AWLiu7E",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkE9PwkAQxf0sey6mWyiGJl4KXa2xhS7drWA8rO0Slu0/SxWI8bvL1kAkxoMHoz3NmzeTmV8eNLT7V1BWxUKk3M0XxblIgDXoDQambmhgXbNaFLk7AhbUQM1ZpqSugQWLD4N9V7GYH2Uub/kLT4+dx+p4Ge7KZqOjzoiMT3iFKpZxb9rsiTXmLNk1X9TP53VjZ7xmI1YzYAFX3tiYIDsgqBdEiaoOuStt0njYnurNbIwdCUOJK0+a/WlIx0RC5Q8pkjua03nklJvZCg1jmM4er7YrZmxhJJPId/x8v2djhMwQYuwT82nWTScUUaT8gM6vabYUhFB1z/aEewnetK/ZdeBJbJ1PucHfy03/LrefMhonjGpygPzQ/4Oy2wrKXisozVZQ9ltBefFHlA9n72t1zPI=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580588,
          "profile_id": 9499502,
          "ranking": -1,
          "statgroup_id": 5543851,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580503,
      "steamlobbyid": 109775243596535660,
      "xboxsessionid": "0",
      "host_profile_id": 4659942,
      "state": 0,
      "description": "FQNLTR",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFkt1ugzAMhd9lT8BPiLbLoLAp0xKLLqiidyud0IJWejMBefqZOGm5snB8/PnYT4exFfgV2s2rWDCSguv0z9/+6j2UkwenF8o3/Ex5BvJW0T/FdRtr7LzUeyT7BZxo9hCswBq9hzm47rwHxmp+bPKv1tYM7Htz6J637nrJQZ4+2+Opu/jshbR7rkUXapGxTGzGIlvoMxbY55X69PzDNtRTDvybmEpwQ05aI2qFf7nx8xY5C7hOoca4IXFWyBn+aWSP/VecbQWqr4zEOYM3Yw4/2RrjLMSky8A1UXfiJrJoOeeUH1bMB27j0T9LM2j0xVgRe7foK/U2FmcXPcW4K33nG5L3K8iZkXaD/I0ibb1rL1pGTSeSB9s+D3GrDVwf96Zw14pYXMuNE2+kgyxW5fE97lGl90WaQ6N/xqnYB71eaGZkZ/UY3iJXu8T+HncQNYb7DsCqdF8e58livoRfRl7aPvFn+81SflrveT+m+hLsrSLejj3mGxd8S/eCt/y4l/sNM+2TL10F18P29A8DmO9/",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkE9Pg0AQxf0se6amSwHTJl5oWcVI/2zZJdR4WGFJtwu0UtSSxu8ui2ljYzyYJhpOM/PeZOaXB3XtYQ82xToRKXfzZH0pYjAwLLPfN3QNbEtWinXujsAAaqDkLFNtVwMJiw5GPRUs4sc2l/f8lafHyWNltPSrTbPRUWdExqe8QAXLuDdv9sQWcxZXzRf182XbyBkv2YiVDAyAK+9sTJA9I8iYBbGqztynNmk0bM+7jTfBjoS+xIUnTav2J0RCpQ8pkhXN6SJwNm/hCg0jmIZPN7sV03cwkHEwdsZ5vWdjhEwfYjwm5nPYS6cUUaT0GV3c0mwpCKHqnu0J9xq8a9+z68CT2DpfcoMnuSnnENxnf1Zy3Z+S+y2l3grKXisojVZQmq2gtP6IEp5FefVPlI8XH0umzTE=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580503,
          "profile_id": 4659942,
          "ranking": -1,
          "statgroup_id": 3812807,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580479,
      "steamlobbyid": 109775243596535070,
      "xboxsessionid": "0",
      "host_profile_id": 3832158,
      "state": 0,
      "description": "AAA welcome BF BF BF",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUktuwyAQvUtO4C9SFl0Q4VZIBeQIp3WWtSJa3NRZtLXD6TswY5fViGHeZx67o2s5nEL5KfAZKsGZ4nQXbj+HWIoxGK9m7DfsDWcqI2413kmmWpqx03yIlehn43kTS2M5zKhY5nD3FgttFVOf59eufC+Pvs1O3f735aplm5+FOenQ2myP2D3o6dIsaCwV6dUWtCUeVwDmI/L07Nk2yCkGdkFNpfFDjlhu9ZbrMN1JZ2G+xjSjfZxJOmvj23SnLF/5F/C2EH+tBfhMu3G5+cgWqrNUI25lfEO4I9OkRYkpx/6wQD/p1gH2Z9GDgr1oy4m7hb0it7bgnfdYe9DhO3ozrLtfjJgqxG5AfyMRW0XsWQnC9Fu+9+gHdcu78T3lJiFriVp8y7TnT4gDWqzM6T3kKNf3xepDwf60l8QDu57RM2ivDi69BV0yJ/4AGRDGsGVgrFz/VzBi65dbRpAx+c3gP1CG42KuFfaD+8/d3mrsd9X2F0X8i2mnFfj/JqwKsCg3F7Zc7MguV/ew+wO0I+/j",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1k9PwjAUAHA/S8/DtN1fSLwMVsU4cIUVwXioUMIoGzimQgzfXTYCczEjGi8edurrey9t8strUoSVxw+wipfTYCHa0XR5GUxAQ7VUjHRLAeuEJ8EyardAAykgETxMQ6iAKR8fC/tdzMfiFEbyTryJxWnn8mQ8629XWUctPSYIxb2IScxD4fayvmBNBZ9ss1vSO1/XWToUCW/xhIMGaMtbm/rE9nyieYNJujr+w8r2sxy1ezCrdakjUV/S2JW60euzri9Rmm8yIrcsYqOBs3ofzklzjBbD5+vNnOMNGsjJoON0on2fTQnR+4jSjq+/DNXFPSOMpHmPjW5YOAt8n6Xn2W7QvgI75bsdqkOsm2bBDud2qLKz3V6ZnWlhwyjOnZrb4cqufO4w1OqaWi/YabmdWtmV2xmmoRkQFuz03E6r7M7MXR2qpqUW7IzcTq/sztjp2MLFJ4tgbmf8QztPHux+bkXoweqXNjVUcKl9+X+YBZe0coQ5xH+SgWUyYPd08QlC8uIg",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580479,
          "profile_id": 252829,
          "ranking": 30467,
          "statgroup_id": 57101,
          "race_id": 0,
          "teamid": 6
        },
        {
          "match_id": 186580479,
          "profile_id": 1782668,
          "ranking": -1,
          "statgroup_id": 1558443,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580479,
          "profile_id": 1902577,
          "ranking": -1,
          "statgroup_id": 1673943,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580479,
          "profile_id": 2049439,
          "ranking": -1,
          "statgroup_id": 1815894,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580479,
          "profile_id": 2903783,
          "ranking": -1,
          "statgroup_id": 2627100,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186580479,
          "profile_id": 3832158,
          "ranking": -1,
          "statgroup_id": 3299817,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580479,
          "profile_id": 6764600,
          "ranking": -1,
          "statgroup_id": 5010716,
          "race_id": -1,
          "teamid": 4
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "southeastasia"
    },
    {
      "id": 186580421,
      "steamlobbyid": 109775243596533860,
      "xboxsessionid": "0",
      "host_profile_id": 309514,
      "state": 0,
      "description": "Coomy5mmie",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFS4zAM/Be+ICSNZ+4xwQbM4PgCNjSPTYZJz2lJZ66Q2l+PbCnUTxpJ3l1Je/OytBW8XLk5VAtEvGKqolw4fdUx5FPQTi1YF6zf21i/KHfamamWH9v6MBye9v3x5bt/LX2/VSI2aD6yj1bF0GsnUq5x4orP56WuEv6ijxue6mZeHhKPDfrw5HfZ+e790xb9+/98dzxnbdg/Phcn022HP38RO9euuse/kjVBEo8F7sSzaRzw4By5/pddkHMsgBN7w1w0iLUBLMyZgakRdTbuVOKfrtCfU9KpzZxhTizaycSvjGCNmXB208KcFvnNfFYtxTzGiKv5TFq6UjtLWirWYL1QBupJ9xD3RzMIuIWlvYkM8sRtYfbqAeOOKSNvqadYd6/MyDTu/gL6L3epPoSIrXhFmHJZd6DirVC3B3/kdDevwuxRiwT+bqnHhBO1+Ib6YWa/9sP+aQ4JWjpPPLBrRTNb0NWhT+I/TvxhWL1SXG8w+fVuKozXevRqqtv894ZcrjcslVnrw+Z692n1yK3+9eIYvXiP/hXs2QjyMmCRn2B+uoUt9fHt6+YHbfb9ig==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1U9PgzAUAHA/S89o2kKpLPGC0jnjmOtG52Y8VNZl2MEmQ91i/O4KUQn+ixxMOOxE+17TNr++FoSNqyewSpezaKE6yWx5EE1By4QOQZYB1pnMomXSOQEtZIBMyThvQgPMZPieeO2lMlQfzUSfqwe1+Oh1ZRbOh9tVMWI/nyaK1YVKWSpj1R0U46I1V3K6LVbJ17xfF+FYZfJEZhK0QEefuTxgbj9gVn80zb9ecLlygyLG3QEscj3uaTTUPO1qYg+GohdolMePBdNbkYjJyFs9jm/ZcYgW45v25lbiDRrp6cj3/OR1nMsZI0PEuR+Qu7G5uBBMsDzeF5NTEc+jIBD5fG436hyBZ+MrHaHw0DTtih0u7VAD7fq6yPl/t2K8sPJq2lAECTQrNGZJg5tL06tNU7dsMKYWpLhiY5U25u7K/XLliAMPSYWOlHRWg8tKeTXLqu3Xo3EwQZRWaOyShjT4MapN46F6NCZC2LI//eRgiWP/Hw78Cef78nYoJbh6iE65T7p7Gt4O+XrvBZclxBk=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580421,
          "profile_id": 309514,
          "ranking": -1,
          "statgroup_id": 128212,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580421,
          "profile_id": 559085,
          "ranking": -1,
          "statgroup_id": 412538,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580421,
          "profile_id": 710503,
          "ranking": -1,
          "statgroup_id": 573615,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580421,
          "profile_id": 925177,
          "ranking": -1,
          "statgroup_id": 775983,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186580421,
          "profile_id": 2274072,
          "ranking": -1,
          "statgroup_id": 2021432,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580421,
          "profile_id": 3112464,
          "ranking": 28278,
          "statgroup_id": 2818789,
          "race_id": 0,
          "teamid": 6
        },
        {
          "match_id": 186580421,
          "profile_id": 5708336,
          "ranking": -1,
          "statgroup_id": 4504533,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580421,
          "profile_id": 5977527,
          "ranking": -1,
          "statgroup_id": 4674506,
          "race_id": -1,
          "teamid": 7
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580412,
      "steamlobbyid": 109775243596455780,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"479cc012-c7d7-4217-9603-353336701efa\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 4816596,
      "state": 0,
      "description": "2v2v2v2 EARTH NOOBS EPIC BATTLE ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFuwyAM/Zd9QZMSpB12oCOtqAYoHV2VHJtN0cja9NApKV8/g52M0xO2n9+z/XToKgEv134IYgQkBdeC/sLtdxOh7IP1esR4yc9Yw6y8FfinuK6oxg3jJiJZj9aLMkLrBNToCDP4O0dgnOZ11oRj+VN+9PfTwe1375fta3NtzGe2z5uwekbuGvQcUy1oXGvSaxxoS326HDi32Kfmb67EnrLlX6hpbX2bIVc368xMGB6kM7cXlmqMjzVJZ2H9Mf1p0K6r1H8Cb4XB+sJI8Jlm02X2ezURXiWMvMz6knh7TnVrLYcM4+0E8aTbBJifQw8a5mKcoN7V0ts48C5qxH6Y9KKvnT1NVg4MuUvQXyrk1pF71JI4/bLfB/gh3ephfU17U7BrhVp8xY0XO+QBLU5llA97VHN+PvvQMD/jFfWBWY/oGbSzTZdyi3hH1D/ADoijze21p1tR830FK5f4etmRq2f9q3izGO+nJR66/727W4HxI1tuUcZbTDNl4P9Os2PARbldWPbiet6c2MvTH8077zs=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrNlFtzojAUgPe38OzukHBRnNkXLOnaWVEjCUhnH1KJA3KRIttqO/vfV3CUocpMeSpPJ5dDMvn4zgGw9/gupNl2HUR8nKy3PwJPGMoDoCqa2hN2OcuDbTK+E4agJ+ScxcVQ7AlrtjpvHGcZW/HLMAl/8xceXWYTlq9865CWGd+LY4KYz3iGMhbzyaLMC3aYM+9Q3lLc+XdXLsc8Z3csZ8JQGIcPOiZInxMkz22viMbC0nVSrmF9HpZ7JglBEUcUhQeaUNc20tflBo1WIFo+3e83DO6BHXq2aSB8zNOxQVER59T9RWM/IIQW3+t8Mf4p/Otds5EkVdNkpcYGVmzAV7OhZTSW4kP5Doug0/ucCHlisedOWZQ6pu1vnuw9pMST2T11aBJZ9I1mduQnZ5YuQCeWNHVwgs+szVkTG1kCitwHNTZyxQZ2xBvs+FfezFt7g9p5AwdQ64s1NEqFRuqINm6lzUv5PEs3Wbx7tQB2JyJ4Zm/o0xotyjw0xUYIrBBnk1BRFxadEnpTK9qslSZCAOQaO7ViJ3elHTneR62mrdsRamhHQQMbRQYiFAc1Nv2KjdKZVn35z3qjF59mZSYnVkg5eolNojwvpWhGG9hNmrw6klMHUNJq8AYVPLUjRWmRj708bd3Lvdu9HDcWndqXoAZgjY1Wsel3RCzipFdFx4y2RRfdFmdUsPnz7T8rB+B3",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580412,
          "profile_id": 282970,
          "ranking": -1,
          "statgroup_id": 94958,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580412,
          "profile_id": 3369945,
          "ranking": -1,
          "statgroup_id": 3056834,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580412,
          "profile_id": 4315471,
          "ranking": 29014,
          "statgroup_id": 3589689,
          "race_id": 0,
          "teamid": 2
        },
        {
          "match_id": 186580412,
          "profile_id": 4816596,
          "ranking": -1,
          "statgroup_id": 3916630,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580412,
          "profile_id": 4902114,
          "ranking": -1,
          "statgroup_id": 3972170,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580412,
          "profile_id": 5410208,
          "ranking": -1,
          "statgroup_id": 4313545,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186580412,
          "profile_id": 6732912,
          "ranking": -1,
          "statgroup_id": 4988002,
          "race_id": -1,
          "teamid": 7
        },
        {
          "match_id": 186580412,
          "profile_id": 10268239,
          "ranking": -1,
          "statgroup_id": 5869825,
          "race_id": -1,
          "teamid": 6
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580406,
      "steamlobbyid": 109775243596455630,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"1c45f49f-20d7-497c-8bf8-4b988b85146d\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 508981,
      "state": 0,
      "description": "Euro Diplo",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFU8FymzAQ/Zd8AQKjqQ85QIUTpiOppFJsfDNKBlemxjNuBsTXd6UVLqed1du3b98uT7+KpoAv5XZMigkiVlC+5pbbV+lDdlmk5RO+V7Trw/tGstsX5mrKmwlr1Eg4YAUzuVT61SeFBU7bz/w8Boxgo5OscgdSDuYqbiZ7G7pr0zfp1plXMZgp8Of8wa8pL+8+R0BTK5J7+qnz88e1mI7vRyYqne31lnK3vf5UCcOe44LatZPWuNInWUvk9VL5ULIWNOvQB7B/eYMzCT9zwBoqFs0QO86Y05m0dYX8Lf3EmtTXoM4LFejNzNk4lX3wa5a2IgI9zYXPB109kb+TOcZJiFHjBvCxB/Bhjwz4SNTl+XbhfQHfVRFirjgVqqgwbtbZZqHGjBctxnacudURY2iceYb5Nshd5cBdIzf33BNnkdM+7sLBjqPuGrxtJ6yt4UZq1GIbCjt/QR7QomoS8QQwKz5d5+AWvI6+wp1QjvvPQPsGPaxzXxf7L2IZI4dJH/tU9XqXC8wz/QjvPJeXfPhwpTvud/fTQSSnPe/fDu+uy8qhfiFn8z0/d6l2JhVD92fnTvtv6P1iVj7ifcN+jVv3L9XjP8j8fxD15KseofrVr42/47jn+f+ee+Aq4i2C10XYF5HqNnT98/PTP763GO0=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrllW1vmzAQx/dZeJ1VGGwSIvUNKW5TLUlxsKFMe+EGRxAegghbk0377gP3AaFqlVAqDWmvzuc7n+Wf/ncG2ujrL6Uo99s4FfN8u7+IQ2WK1Ik5ASPlUPEq3ufzK2Vae5XgWbNUR8qWb14CtVfyjXhd5skX8UOkr96CV5vIPRUy43NTJs7EnShxyTOxWMu8+EAED0/ylubO7we5nYmKX/GKK1NlntxahGLLoRg6XthYm/ipReUesZxExpbcBo2dMZycWM4Czy4e73d4tgHp/cP1cce1I/CS0FvamNR5FrEZbqzDghuWRTGlrDlvidn8Uvk9eotG13UNoUmHjdayAf+aDZPWdumtfIdL8dP7/BCHahMLVjwt/KUX7R68o8ZoCPk181meuuwnK700ytcyD6+InQA3IeUiQcbaZSv6VHvGWOGTnLywx3frv7ACqoagqnVh6S0sbSBCcv3ojZCcpK+QcD8hAXUMETQ6bGDLRh+IkOgZQnpmuQpAT+HU88cwgdlhg1o2cCBsAvV8Nk7fphojZABd77AxWjZoID1F/eL8nsI9hzMy1frngh0245aN8T/3FDSQBmBXN2bLZjyUT921PmAWp+/o5tunP7zW0Q8=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580406,
          "profile_id": 508981,
          "ranking": -1,
          "statgroup_id": 357168,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580406,
          "profile_id": 1074546,
          "ranking": -1,
          "statgroup_id": 922085,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186580406,
          "profile_id": 3332558,
          "ranking": -1,
          "statgroup_id": 3021786,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580406,
          "profile_id": 4652143,
          "ranking": 14346,
          "statgroup_id": 3807491,
          "race_id": 0,
          "teamid": 7
        },
        {
          "match_id": 186580406,
          "profile_id": 5086919,
          "ranking": -1,
          "statgroup_id": 4097494,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186580406,
          "profile_id": 5900894,
          "ranking": -1,
          "statgroup_id": 4627565,
          "race_id": -1,
          "teamid": 6
        },
        {
          "match_id": 186580406,
          "profile_id": 7556133,
          "ranking": -1,
          "statgroup_id": 5156021,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186580406,
          "profile_id": 10254028,
          "ranking": -1,
          "statgroup_id": 5864326,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 60,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580315,
      "steamlobbyid": 109775243596453340,
      "xboxsessionid": "0",
      "host_profile_id": 277791,
      "state": 0,
      "description": "[Rematch] NANELITO LÄGER",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1yozAMfpc+QQqBmR6dBTLu1NaS2smQW5fuMIVNyIHUwU+/siXvcvJI4vvRp6eDawV+mRpnJxy+KlEqwTV/u+/Cs5o8jIr7dflriP0tVLc71WSpWkf/mDnX1eDBWKe8fA1FPSKmEYXy/dqEQtVtYCq+ZaNv59PnH9l8fveXxX/sX9wu9icHl20V/zWz20cO6+HyeD9fpTtcX0/v2bIcpqU4nM7z8XrcnZv65WerogYYRUP/ylJ7WZMGW/5uSbdGr+wrg6/NgziHHDlp1qMHwtoiFtVMXyrynekR90I+crhOUSeYmXFql/iVqdE38YNpca+W+M28qJbfVXgTLlQJoytgtKxFlJr6uQocUXe/wlizhxqzsby3eoN15rboXezp3QUdzzyT40xN9aEEyvoR9P+I/d4HbFUJxpQu7UCN6Id0r3gvGd/Jqvy8khaJ/J3bDREnaFk1z6PnNc3j/tmHRC3dyjy4a8WeLerq4mzQpQ3z+z7dZo4ZFHwra8pN+eF/36e+zf5lGO6UMiyUSRn2W8yQead0I8+YBfsfwi3GnQLe/puh3QFiAd8T+ucsbAGX4/3pL5hTA20=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrV019PwjAQAHA/S5+HoRWZLvGlsOqMEDdoJxgf6lZC2R+WMZWF+N2lM4CLS8yCQXy6a69rL7/cINIeVyBJ5xMZCiuezE+lDwyk6/ol1MAi45mcx1YXGOtVJnik0qYGJtzbFNarlHtim8bBnXgV4XbV45k3HeZJcaKhrpGRuBcpSXkkeoPinFw4gvt58Yp682VRbEci412ecWAAK7jFDiXYpqRlu76K5uAhwbTYc7AdFLU+DaCKHUaCnMVs7JrJ22hGOh4MR8/XyxlHS+gGvts3ibM+hx2TERVtNr5h0VRSytT3WAysK/CuVdBctBHUSzRoRwOPhMYZ4m80dm0aUo+mUZ6YxpeRQSUXVdnAfOZ7yTR3MuhHGVoxNNysKxNWy8j6MmdHLSNqy8Bfk2kdSKb8N9Xt8vxfdNk+UJdwry71P+ry6eQD0T4zXg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580315,
          "profile_id": 277791,
          "ranking": -1,
          "statgroup_id": 88349,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580315,
          "profile_id": 286217,
          "ranking": -1,
          "statgroup_id": 99090,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186580181,
      "steamlobbyid": 109775243596379600,
      "xboxsessionid": "0",
      "host_profile_id": 3304505,
      "state": 0,
      "description": "4X4    AI    140% 不要菜鸟NO NOOB",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttOwzAM/Re+YOsl0h47kk1BuKEomejjKFNFKtY+gLrm63Fid8uTlWP7nGP76b13Fb4M/PgLDcR4Nr5SMag9iE/CSwhjgCrhN/NTJNzIXlyoZjFecY0SUDXUU47zPkZymLFGJtyO83GOfy4Yf9IXtXtvrtNH5/fyNXuZzj9frbue8nPW7d6od4Z6DlSrRR008zjUlniK2iNPk3gy8725EWefm+tAuWHMa+pV3L3ZTgDVZ7Wf/qimjTVJp7Hjhv7UvPKDRW+eehrboE9H/DbOjmMZY+pr5Mha2tJ4x1oqUROeg0U86e7i/NiDwrk4npva4D9zO/ReHSluBVi95Zx8nT3YXhia/Q31354T3oXYG2TFPfV9vxB3RboX3H/Ge1tw1wtp0cjfzvs+9Ylalprz0fOy5uP82YdGLe3CPDhrYM8OdbV0J7FOMn/o1lvJHzsYlvW+IPQPPEwl4S6771DqdYcl2LW+Kx57H/A+E74191vs4y0e6H6VeLWKb1kLQ7kF+mc/rjTXaXz6B8vl8sI=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtk11PwjAUhv0tvR5m3RgmJN4MVp2Rwbq1E4wXdSthdBs4pkKM/11awyJRo5BoNOHqfLbnzZO80NCun8C8nI3TjLvFeHacJqBtmnrT0i0NLCpWpbPC7YI21EDFWS5TXQNjFm8G66pkMa/TQlzyB57VVY9V8SRczdVGQ36T5nzAS1SynPcCtZcuMGfJSl2RN+8Xqp3zinVZxUAbuOLCxgTZPkFNP0pkdILQtonqYdsXaub5AsrYoUisaEFHkTN/HE5RJ4bZ8PZsOWXGEkYiiTwH4fWejR2EZPTp6Jzmk5QQKt/bPHBPwbP2nk0DbmFpvOECf46L/hmXXTUa/0CjuaVRTjYiX/O/obL5SyqNL31Arua1DwJdzfrYETAUuOwJqxWEtE++7QuvUL5AyAohxh6x7oZmNqCIfuyTdHefWAdye5JrHcjtSe7kQK4md3P0Av3ff84=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580181,
          "profile_id": 3304505,
          "ranking": -1,
          "statgroup_id": 2995562,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "southeastasia"
    },
    {
      "id": 186580135,
      "steamlobbyid": 109775243596378110,
      "xboxsessionid": "0",
      "host_profile_id": 11445265,
      "state": 0,
      "description": "[重赛] kumo 的游戏",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFO5DAM/Re+oNN2Iu2BQ4akqGidqChFlBsMKLsp0JEQapuvx4ndktOTYz8/P/vqfu4kvhLCFOWMSEkBWyxevk8JqjHaADP9a/Hi839t1eVIsVZAxzVumk8JqWG2QeoErZNYAwkeMPaSgHEgXGjuHvrm0TWvX8/x7tm5f+1T835j9NN354o/zCPAQUM1rTCxzZwm9LsOE7An6Szt/2KhOl/Zz5Fy41SZDkhz0BRzZwFUX5pwOXKvVKNI81RQTKc5bhMEp1HLECk+FhjPuqzqxV+nGXcJs0a/+4J8B6o7I1/PupCv6xOs0P8FZMYLxOkAMtctRk0LzabRu/N88hmXOMdqOs6JE8+scT6vSeuI3J648R+UnJlzBbXtqF2QJ+uGgN7yviAAepO1rNi/BDlknqQFQs/5vYA9f9jmWFFLyb6uVk3s1Rm1e/IwjMI4yf2h2m7ExEG80TxHCHh39I/zyLwPiKNgrt+9OuxLMxXo38p7WexHzZx+46ys23bc1/tdqnSX2aMa7xa93j2qkY/zfdz2bNDTtw9/ffUD5bz2jg==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrt0k9vgjAUAPB9Fs64WP64xGQX1DrMRKm0oMsOFWrAAjJkm27Zd5/UqfNglrHDLpzea1/zXvprgSI/vEtZvlpEMTPTxeo6CqQ2AJqmKy1dltYFLaJVanZ3m7JUMJqUaVOWFtQ/FHarnPrsmKb8nr2w+Lga0sIPnW0mTjTKNlHCxiyHOU3YcCLORWvEaLAVU8qZz2uxnbCCdmlBpbZk8oGBMDRsDDWbiNhz8KCMhoMhLKPtBTBolrXZiMaZZ7nhcu5uFIIDjfaJR9LYIW8kd+MwtbnoYX316hCSeShFBhYz0GA8MW+lD/kCjtpUz3CUEw74bxw32OM48HAZYyJQ4Aj1OHA4yodcb00cMsIc7C8P+ZakZOb2stfpEnZ8EE/n/c2SKhvg8sC1elZaAiMIdQcgZGH9aarGYwLJHp7M7kgSRhgT8SDsEl4DnLE1vn0q5cytrBzg9vmf5JonOeVHOexl/ycX/V5OreUqymm1XEU5vZarKNeq5SrK3dRyR7nHq0/JJA+c",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580135,
          "profile_id": 11445265,
          "ranking": -1,
          "statgroup_id": 6290384,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580135,
          "profile_id": 11445303,
          "ranking": -1,
          "statgroup_id": 6290398,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "southeastasia"
    },
    {
      "id": 186580124,
      "steamlobbyid": 109775243596299940,
      "xboxsessionid": "0",
      "host_profile_id": 1293897,
      "state": 0,
      "description": "[Rematch] Sweet Caroline",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUk1vwyAM/S/9BfkgSDvsQEW6Mg1QKtKJ3dpoykbWpYdNSfn1Mxg6Tha2n9979uYwdgxeJd28sgUizqjMf/76uw0hn7x2csF8S8+YJ5pfG/wTVHapx8zLNkTcLtqxNoTaMOiRISy1688hUEbSQ99YM33Y4dLUcr9rT5ev49Htng/746kzxQNiWypZH3uBY525KQPc4pyxgjk7nGPpi2lxJh/oO3KqtRtKxBozz1L5+ZZ4VvpCYo9yoSfybLQT8U8C9zR/BW1rmt8oDjqjN2OpP4s1xUWMEZdo1ybciarERfK5xPywQj7yVh78M6hBgi/KsDS7A744WxnQzizGsCvp+lQzZE2r5jNB7Bb4twKxZcBeJE+YLuiJ9begB3mLm3Y27U3ArgVycR1Vjj0hDnAxokz1sEeR66usQ4J/KvvmwOsFNQN3sh1jbfB1SfM97CBhDPcdaCPyfXnN7/laf0/opbGZfxFuFvPTet+hH//3bq4N5ntyv0UebjF6SkD/T/KOAFaqHX2+J2Um+vZKHjd/cyLvfg==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrV0l9PwjAQAHA/y56HWQeIkPgyWHFEkJWtGzM+lK1kY39YxlTQ+N2lxYGIJhKJyNO1veZ690uBLN69CGk2HQcR1ZLx9DzwhAaQ6+XLek0UZjnJg2mitZZnopBTErOlJApj4haJ5S4jLl0vk/CGPtJoveuS3PWNRcpvlFiZIKZ9msGMxLQ74PeCGaLEW/BX2JsPM34c05y0SE6EhqCFHQWZUNFNWNExj6ojdVhUDBNCFnXbh57Ecs4tiVK7Z/mTkTWXselVSBvbOIkM/IwzK/ITPeQ1euaqVhPj1EYJUkz+BnL6A+1KeBW/sAGSVP1kI29swLFtLI/bIKNTzKIUs+ohWM0KwwVOsGOp6dNwApsuiIaj9nxC5DmwQs/qqRAxT6S+u2LnGsd+YJqYe3eDb2xKYIul9OHPyFsuLFPArNa/kpE2MvIPZOCODFH3lYkOJlP+NzID29+RoXvLgIPJVP5IBmzJ7Ntl9SS6vDiJLmtH6vL+7A2cpzNs",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580124,
          "profile_id": 1100597,
          "ranking": -1,
          "statgroup_id": 941446,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580124,
          "profile_id": 1293897,
          "ranking": -1,
          "statgroup_id": 2767756,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580121,
      "steamlobbyid": 109775243596299900,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"0a41da1d-cf25-4e1f-a679-9ca21dbcbdf5\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 1591350,
      "state": 0,
      "description": "noob 2v2v2v2 host here join NOW!",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstugzAQ/Jd8QXhZ6hFqN6KqbRGZVOQWUIVkFMghEdhf37W9JpxGXnZ3ZnYO57Ep4Uu5Xmy5AqIl4SW+2cercpBOVmq+hjojfejJJX0U4a0mvMEetayVQ7RbpS6Zg1KV0MMdTOCtd0AoTvqkmjn73vr5spx/v8jNPLPbac3a03W+2uNHmN0Bn9b3AseMI1+hgJvfM6ZSs6+wpyM/ioWddCB/gVMm9ZCEWWPUlgi7GOSZynnyPUK7Hs+zkLrxb1w5PzoHN9C2CTqgpibyyoVanrxBTB0OHCVdNtwB89qww5ZEIC83L/g7GNCwBszA6xY9ZMeojauWQO8pYPBE1Qn+A/oYch2JDPo2CbM/fX2wbjanJc6s97twzQjyNuBtit4Y7rzxXGrY363V6Oc4Lkbg/6DZxP+Fjjpq4NKhr3UOmUHNLfDyHhrp+ijut0O8RyZ0vOdk5D3H+viu21hv08hfuNyFPBR8z8OQ7/e0U8xAArdA/eMK80NeIMvvvOwZzkE/3qIt5P3yOvwDj7nyDg==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrN1ltvmzAUAOD9Fp6TCXMLVNoLKe5SDRIMNgnTHtzgKIRLKGFt0qn/fcFVQ1HGtDxM4cm3I4w/zgGANPj+SyjK7SpO2SRfbT/HkXADVAPIqjgQdhWt4m0+uT3ODYSK0azuHhdWdPm+cByVdMlO3Tz5xp5YehrZtFqu/UPBI4b1ZeKMzVgJS5ox2+Nx8Q4xGh34LvWeP3d8OmMVvaUVFW6ESXJvIgxNF0PFJby1fHxft6aP4VPdur7p0Gz37AMU2iJ4pC8QRmIdG05pWsydYL15CPYSwZFC78ic5KlPXkgZpOvc43FwiqwE+Akq7UTVPJ9M8dteY0KKOcqRifk9oHDmTb4Ir4NzO01XgdSmkxo6cG26IOJ0ng/fj2K6CV9z3AS8HRUmB5KTMLCK58UGjpcgXTzc7TdU2oMgiQLHgqjmRhaEnJ2EX0m2jjEm/HGwLhpFU0VZ1Fo2cmMj9cQGzYuTTWda/LOVk3MrCNVjWiIHq48LOZ0RSP5oZ4877AxDlUZtOq2hk3tDF52lFb44rTpoutIKiIquaaLRwhk1OEpvag5dLa9Y/Bc8XZblFp7e4Kl9wbtiUXbiyaKhy7re/k5+eNtrvck886wsqXVpWaaXleUQtFyGH34gRv/PRexyEV5/fPoNBHLOIg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580121,
          "profile_id": 685120,
          "ranking": -1,
          "statgroup_id": 547008,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186580121,
          "profile_id": 995276,
          "ranking": 22825,
          "statgroup_id": 846199,
          "race_id": 0,
          "teamid": 3
        },
        {
          "match_id": 186580121,
          "profile_id": 1591350,
          "ranking": -1,
          "statgroup_id": 1373252,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186580121,
          "profile_id": 3098388,
          "ranking": 42697,
          "statgroup_id": 2805628,
          "race_id": 0,
          "teamid": 6
        },
        {
          "match_id": 186580121,
          "profile_id": 4650306,
          "ranking": -1,
          "statgroup_id": 3806251,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186580121,
          "profile_id": 10486609,
          "ranking": 23848,
          "statgroup_id": 5971535,
          "race_id": 0,
          "teamid": 4
        },
        {
          "match_id": 186580121,
          "profile_id": 10488333,
          "ranking": -1,
          "statgroup_id": 5972579,
          "race_id": -1,
          "teamid": 5
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580082,
      "steamlobbyid": 109775243596299220,
      "xboxsessionid": "0",
      "host_profile_id": 1289929,
      "state": 0,
      "description": "[Rematch] Antoine go AOE2 ~!",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9Us1uwyAMfpc9QZISpB12oCKbkAYoEW2V3bZsika0JodNoTz9DDblZGH7+7H9MMy9gNdovwaxQyQF14L+4vZ3TKFcovV6x3zHP7CHWbm1+Ke47qnHrfsxRXLcrRddCq0T0KNTWMPfRwqM03x0XbBuWIbrMLxXn9V03tj5FNrhsoXeVY+IPYKeU+4FjQdNeo0DbZlnbgDzGXlG/uo65JQT/0JNB+unGrHm4q02cb2Rzsb+sNxjfOrJOlvwm/+0E4U/gLdA/K2R4DPPZq7tdxUornKMuMz6jnAXbkiLlmuN+SlAPus2Eebn0IOGuRgniLuHuSK3ceBdjBjDrrQ/Uc1UZh+sXBlid6C/U4itE/auJWH6+35vyQ/qVjfrR9qbgl0r1OJ7brx4QRzQ4lRN9bBHVeqb4kPD/IxXxAOz3tEzaGfHOde2qY/4I+yAMKbGXhe6FVXuK1p5zx9K3rix6K/gHiLml3DfYZxL/8G6rcX8id1vUaZbzDNl4P+XZscAi2rnWO7JuIW/XdjTwz/CzO/g",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkEtPwkAUhf0tsy6mUwsKiZsKY0osj+nMQGpcXOkQah/UtqJg/O8yQyAS48KoMV3d18k9Xw62jNtXlBfLeZRIN5svT6MQdbB10W5bbQOVFVTRMnO7252BKgmpak0DzWG2P2ynAmby0GbxjVzJ5DB5UM0WbJ1rRUO9iVI5kgUpIJWer3VRSSWEa+2iPJ9KvU5lBV2oAHWQG/cdyokz5sQeC117lPdVdRgnK1XHzBlAWj4zTAPPxI+wISQ0lTYYQpJPB5PFw/3kxRI8tOFaTEWWMLERxSRZZL7WkSHtxZjFtPDiZstnYsh3XldC5FOaUYdrBhqMfPcSvRmfs2vgo9gaH3LDf5eb+VVu32W0asB4dsSoLnvIXf9blPhHlHYtKJu1oGzVgvL8nyjvTt4BMRbNTw==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580082,
          "profile_id": 1289929,
          "ranking": -1,
          "statgroup_id": 1086565,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186580033,
      "steamlobbyid": 109775243596382140,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"a4a4cc0a-72ca-4b4d-90fa-bf3b2979814a\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 950197,
      "state": 0,
      "description": "Restart 4VS4 MICH 4v4 post imp NOOBS WELCOME",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFugzAM/Zd+AVCItCMdtEOaE1ElrdixaGIK6uBQBuTr58SmzenJju33nr07d3WOLwE7RPmMqMiF3GJunA4eFr1TFmbKl+JG+VQVY0axSkDNNXqYDx4VzaxsXnqodI414GGMsZsHUoOA+0NfT1/R1TTL2cDf5eNnukXZ1PSjq3X0Rr0bAZ0JtchxD8xNauQW5nQJ9jzSnEZ86pJmFq34Jk57ZduYenUC8hCLpRtW5pmo3z7USOtrAs9M2TrEALlD3ni4oLZF6po11RgPvFKphwfUjAuPiaMqhoVnYD9DMxz6y7x8P/K3XZUtZ8Ilem3YwzLC+JF4GIG1J8Loia5i/oP6SubaCUX6FoW930O+db43FDn3rJ57AVsK5r2itwl7s4L3JnCpcH4zH7rQx3NZJf9Hzev2X9pNR4VcGva1SvFmWLNBXsHDFXlFyIXmu3bbx17aMaO6flX3lPPdK++2fZtk0yv93c0hn8HzHtp0q5eu324gxl2w/m7GfdO94C2/7uV5wynqZz0mU/fLtPsHv83x1g==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkEtPg0AUhf0ts6aGQWjTJm6wHUMjfQzDQDAurmWaIo8iYLU1/nedadrYGBcujLK65849mfPlYEO7fUVltV4mmXCK5fo8idGgb+m439NQ3UCTrAtniAZYQ42AXEpdQ0tYHA4fWwULcZRFeiM2IjtuLjSLFduWytGR3yS5mImKVJAL11O+pKYC4q1KkZlPtXrORQNDaAANkJOObeoTe+4Tc87VHEX6WE6b+WQj55zZE8jrZ4Zp5Or4EXaExLr0RlPIynASrB7ugxeD+7EJ1zzkRcb4jldBtio85SNTOkoxS2nlplbXY3zq77OuOC9DWlDbVww0mnnOJXrTvlbXwSe1dT71hn+vN/273n7KaLSA8aIFjOYJo7wcIPf6f1BaraDstoKy90eUd2fvevrMmA==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186580033,
          "profile_id": 950197,
          "ranking": -1,
          "statgroup_id": 801015,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186579872,
      "steamlobbyid": 109775243596192080,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"a7427fbd-e53e-458c-93d5-1cc1c536242d\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 4585290,
      "state": 0,
      "description": "3 vs 3 Black forest! Join!! Noobs only",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1uwyAMfpc+QZISpB12ICKdkAqoFW2XHptO0Wi39NAqCU8/g52Mk4Xx5++H1b7bCTiF9n0mBqik4FrQXXi8qljKW7BeD9iv+QVnmJWPEu8U1zuacf1QxUo2g/WijqV1AmZ0LHO4u8TCOM23YTPp0+Z5/K2K/eex0oW5n+7Xs6uPr2vI3hC7AT6HNAsc15r4Ggfc0p6uAMwN7mn41tW4U7b8CzmtrW9zxOpmbbkJ/UQ8C/vD0ozxcSbxLEFvutNOzPtH0DbS/tJI0Jm86XL7nY1UZ6lGXGZ9Tbg3boiLln2O/XaEfuJtAvjnUIMGX4wTtHsHvuJu40C7aLD2wMMf6E07ez9a2TPEroF/rRBbR+xBS8L0S75T1IO81WR9Q7kpyFohF7/jxosPxAEuTuX0HnJU8/ti1qHBP+MV7QGvB9QM3FnVpbfR14H2B8iAMNolA+vU/L+ClUt/vWTkmpl/Bv+BMryNSz90/7m7R4n9A1v+oox/MXnKQP+TvGOARW+7sOTibvx8Yu+rP+fP7zc=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVk99PwjAQx/1b+jzMOlYQEl8Gq87Ij3VrBxgf6lbC6DbmmAox/u/SGVBifDBqhKfefe9y98k3PWhoN88gLxbTOBFONl2cxhFoN1vIMHWogWXJy3iROV3Q3mSl4KkKdQ1MebgtbLKCh2IXZvJaPIpkl/V4Gc78dV511NSYOBVDUeCCp6LnVX3xkggerastaufDspJTUfIuLzloA0deWYRiy6XYdINIvTYZRRatNGJ5elUbEFtCX5KiJ1HD89mASqj0DsNyzTI2Cez8aTzHnRAm47uL1ZwbKxjIKOjb/WzTZxGMkQ8J6VN0P64nQ4YZVrrLJpcsncWUMjXPEp5zDl60z97V9m2rffAN/p1v+le+fZfROALG+qEwmugMGS19/07Md1DzQA6FjvKjOhR0BJ+wsceoKlvIt/i3KOGPKJv/RHl78gqox/vJ",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186579872,
          "profile_id": 4585290,
          "ranking": 18120,
          "statgroup_id": 3761632,
          "race_id": 0,
          "teamid": 4
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186579773,
      "steamlobbyid": 109775243596190080,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"a0f5af7f-9858-41e7-b23c-857829c533fc\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 9151072,
      "state": 0,
      "description": "4x4 NOOBs MICHI",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUstugzAQ/Jd8QXhZypEUp6KqbVGZtOQIqpCMEjg0Avvru/auCafRLjs7M97D19iU8KXCzMdyBVSVTJRUc8vz7GE1OWXEin3OepzJVbUUWKuZaGhGz+vZo6pblSm5h0qXMCM8TKDWeyC1YFdefA9pnsmfy/Panpo+uU39Y16v6XW5ueMJuTvQ04ZZ0JgJ0is1aAt7xhQ4L7inY5+a485qYL+oKVNmSJBrjN4S6WZLOlP1mMKMNH4m6CyUaUNNaJ9H5+EG3japG/LURF251POfaAhXHqNGVc0b7dj5pCuZJF2eD/MdrDJ8Rcwh65Yy5EeoX1BHy2D2HTFkouuE/gF/nLSOTKG/TQH3W+gPznOLqiTOen8XYTgj3RayTSkbK3w2QUsN+7v1PAYer8VK+h882/i/NNFHDVo6yrXO4WbIcwu6QoYWdDnQgvvdEN8jk2YpcG6y6p5Tf3z1Xey3adQv/d3hPRRiv4ch39/TTfEGEngL8j+uwI/3Arf8upf9hnPwT37aQt0/7OEfLgrwyQ==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkEtPg0AUhf0tswbDYB+RxA22Y2ikLcPMQGpcXMsQkEcRsNo2/ndljI3GuHBhDKtz752TOV8ONrWbA6rqTZzm0injzWkaIescD7ExNjXUtNCmm9KZIAtrqJVQdKOhoRjWHw9vWw1reRzL7FpuZX7cXGjXCdtVyqF336SFXMqa1FBI11e+tKESop1K6TIfG3UuZAsTaAFZyMlmNuXE9jgZeELp1OezTm3GybZTj9lzKJonhunKNfAD7AmJjM67WkBehfMgub8Lnk3BowFciVCUORN7UQd5UvrKRxZ0mmGW0drNhiOfiQV/z7oUogppSW2uGOhq6TsX6EX73p2Ov9Smf+oN/11vxk+9/ZbR7AHjWQ8YBz1gHPaAcdQDxvG/MN6evAIUg8tw",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186579773,
          "profile_id": 9151072,
          "ranking": -1,
          "statgroup_id": 5419707,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186579678,
      "steamlobbyid": 109775243596102460,
      "xboxsessionid": "0",
      "host_profile_id": 5280069,
      "state": 0,
      "description": "WWWWWW",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFkstu2zAQRf8lX2C9CGSRBR3KhYCQhFLJgbyr2YAoFUdC0UAiv75DztDR6oKjuXPm8fBqew5fKd3i+QZKcCbzW1i/jlGKOWgnN4y37IrxWou1wbeOyZ5yhmU7RiWmTTveRqkHDjkyykK78RqFGiT7NZ8+p9v683K7vJ3Ppnqfi+btw/69nPvtdzg8ovfEJB9TLjBWmU0NwJbq2BLqnLDOxF6GFmsKkzkr7UyBXjZzFiosnjhL/TmnHOUMe+8TZwOc6U0Cu+RTlDv0tithqKc+c9VqWP7JnrSIGhm1WHaqcfdTgTOF8Sr64XyN167dULcw65Fm2B7g/YQcI4PcH6hhJkNX0D/QX0uslmmevHcN3s8pbkL0loKTZ3ffi3QtI24Psy0l5noZZ5NYOqg/bUebfCKLV/Q/9Ozz/8rlPjpgmWiuXQ03Qz2PwJVm6IErAAvWD4aRR6Xc2mDe7PWtpjjsa6N4yPGxzPzq++4aeb8HU+d8FWbYJ94O7KKgWrUU+a7trv8caEfW5zlqIe83p4f142qfnh7+A40x87g=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrN1EFv2jAUAOD+Fp/DFBtCC9IuaeMWVAJxYicw9eASI4KTkIZ0g03771vMUhoJpKWrVk7Pji0/+9N7gUj78gNk+XoRxWKQLtafohD0DXSl692eBjYFL6J1OrgBfaiBQvCkHOoaWPB5tfB7lvO5eBmm8l58FfHLbMSL+dLbZWpHqzwmSsRE5DjniRi5al+0IYKHO5WlzPm8UZ8TUfAbXnDQBwM5NAnFpkNxx2EqWoQOy2h6FOMyOkGIQ71cm415nAW2v1w9+lvEaNjhtyxgaeyx7yz342XqSHWG/eesa8aygKTEpCoHGU7cwWfwUzti00M66nVrNuhgAz/axg+VjRtk1VvM6q1Uwv1bsdyxlM18K/s2XeHrOYynj7fbFUdb6MvQty1MSk9isb0rm92xZBlRypS3OGmDUK+NLms27YMNOhMb+srGVfWCx8SS0JMkH0mj63ps/PdWdqqsMDY8SIhNjadpO54wfNxuFJ2wa8EaW+tVv7VrbuVKBbcf/5OcfpBDjeSqqhJW06qCx6vqDTKdc5YZO037DeN3kzHOWqbxn+hEN71FpvufZGBNpuktLz/olg8XvwBBLYlP",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186579678,
          "profile_id": 5229327,
          "ranking": -1,
          "statgroup_id": 4189146,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186579678,
          "profile_id": 5280069,
          "ranking": -1,
          "statgroup_id": 4222047,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186579678,
          "profile_id": 5920296,
          "ranking": -1,
          "statgroup_id": 4638913,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186579675,
      "steamlobbyid": 109775243596102450,
      "xboxsessionid": "0",
      "host_profile_id": 4934874,
      "state": 0,
      "description": "Голямото завръщане",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpNUttO5DAM/Re+YHqV9oGHogQYgZPNKtmhrwwoIrNDBgnUNl+/TuwW+mTVORcf++qPdwN+NYT4CQZyPekwyFyoAP0z9TtIMcFQ+rM+t6Wvhe9fCbPoIBkjexgMcYo43eRKnCbEiNK3cbqb8j+X9PvLg31S9+owdofz5+PBmvT3fPkYn14qJ+Wv38Rdo59bwu57lfas49Bb0WlVQB1TdGr9tptJ0zf6/URvU2wUcbWbT3vsgfC1CpcvwowZU3xqG2v6J3Med7kEi7NZt+OZdqsvLVz/aCXXJtfs0fdgSAP5KsIdkc+xL+QzJd8G859hKPWMWVec4axEnGk2WelwnG58qTETuSjDb1LkmSXO5yV5PSG3J27sgxgm5ly+97Kfkaf4hoDZ8t4B9w609wX1axjGwpO9QHD83vWwvR/XORb0UnOuixYx8czo3VOGAX2lgfWh2W4tjes+O9j2Ae13/4i3VvpV2XfpG7w7ugeNu2F8o8WlY91uuwHr17tsQSB/ydTPP+5lu2EtYJ2n0vby79lfX1/9B63D9BM=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrt00lPg0AUAGB/y5yp6bAVm3ihZRQjXQZmaGs8jDBNKUuRorYx/ncLpq0kJiZ4kAOneVveS75koCg8vIM02yyDiJvJcnMZ+KAvX0my1pMFsM1ZHmwScwj6UAA5Z3ERdgWwZN6xccgy5vFTmIT3/JVHp8xiubdy9mk50SnWBDGf8AxlLOaWXc4FW8yZvy+vFDdftmU55jkbspyBPjDDOx0TpE8JkqeuX7yGPfN1UtawbnfL3hgbIXRCnFmhotoOHZMQFvUBReGeJnThGunbfI0GHozmTze7NRN30A19d2SMksOcjhFSHIjxiCjPcymaUERRUZ/SxS2NVwEhtNinc9u8Bh/CT3aaJqtaxU4828GG2GEHN9HuCqqiWLGTznZiQ+wcR2+eXQdW2Drf/qtUcSs6R7iv+E9y3bOc+KscmaX/JmfVkJNbuZpySitXU05t5WrK9Vq5k9zjxSe+ohiJ",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186579675,
          "profile_id": 4934874,
          "ranking": -1,
          "statgroup_id": 3995931,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186579675,
          "profile_id": 4988468,
          "ranking": -1,
          "statgroup_id": 4032877,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186579675,
          "profile_id": 4991622,
          "ranking": -1,
          "statgroup_id": 4035015,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186579351,
      "steamlobbyid": 109775243595978690,
      "xboxsessionid": "0",
      "host_profile_id": 11281251,
      "state": 0,
      "description": "[Rematch] Spiel von MarylinSue",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFksFOwzAMht+FJ1i7NoIDh45kqGhO1JEKym0UVJEC3QHUJk+PUzujp19xbX/+7avj0FT45eAmX82oZCWg4rdw/t1FKcdgHMwUV+KVcgojzyW91QIazrHTvItKdrNxlYrS2ApzIMoM316j0BbESTXhcSyf21bvj0/Z5/H+4XB6vF7g+Xh4C5sbqt0hT7vmIuMWmFdbZFv7DDnW3FOfThysop6yT5xb4/qMag2JM9Nh8syZm69izdGuT5wlzru+gY1+dFEuONsCoeeZmsRVaDv9QMNaRk2MRk4L98B6LfUIldAU38Z65G/vjVMzaYVet+yh2uD7njhagbn3pNETW2f8D86nmHUQhna3GKx9t8b7EGuDrLhmfdkLOCWY26O3Oe/dQ/RmZamxfzfvhrVOZPGa/8eZffpfuzRHjSwd+1oXyUMdWuRaPfSRC1mof+jTrW21S/scfdoHhOE/Hs4lxds88et4d7TjEi730Bfme+S+o3gn3gx3EbhWATLd9bCYjw3vaPDJRyPhcnPGnseX5vb26g+X1PMP",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrN0l9PwjAQAHA/S5+HoQXEkPhSWHFGwA3aCcaHupVQ9odlTGUxfnfpDOCiPlSJ7umud7e1+eUgMu5eQJKu5jIUVjxfnUofdCBE5xC1oAHWGc/kKrZ626IBMsEjldYNMOferrE9pdwT+zQOrsWTCPenAc+8xSRPioma+o2MxI1IScojMRgXc3LtCO7nxS3qzsd1UY5Exns846ADrOAKO5Rgm5Km7foqmvQ2wbSoOdgOit6IBlDFLiNBzmI2c83kebokXQ+G04f+ZsnRBrqB7w5N4mznsEMYUdFms0sWLSSlTH2Pxdi6AK/GVziwgdr1ZgkHHXBgRXCcCf6EY2vjED2cWnlnah+WBpVcVGcH857/SqZ+kEE/WZuh9tqY36yN1JdpVFpGmLoy8GgyzSrLjLiuDAmPJtOqtIz2zvSHR5M5+yMZWJLRfWX7n155f/IGCDB+5A==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186579351,
          "profile_id": 11132704,
          "ranking": -1,
          "statgroup_id": 6176145,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186579351,
          "profile_id": 11281251,
          "ranking": -1,
          "statgroup_id": 6219233,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186579176,
      "steamlobbyid": 109775243595881600,
      "xboxsessionid": "0",
      "host_profile_id": 3421356,
      "state": 0,
      "description": "Nomad 4v4 1k2++",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUttuwjAM/Re+AHqJtMeyBKiGk5UlSH2lmrqVsfIwVJKvnxO7kCcrx/Y5x/bi0LsKXwbD+AcNxHgyQ6VioAcQJ8JLCGOAKuF3cykSbmQvPqnGm0FxjRJQNdRTjtM6RvI8YY1MuB2n7RT/XDCXr/3p59h87DZv7fK4O1xc7uzBH50rtFMv79Q7Qz0bqq2FDjXzONSWeAo9IE+TeDLzvbwTZ5+b3zPlhjHX1Kt4eLOdAKrP9HAtqaaNNUmnsaOnPzXN/GDRWwDybhv06YjfxtlxLGNMfY0cWUtbmsGxlkpownOwiCfdXZwfe1ABc3luaon/zO3Qe7WluBVg6xXn5PPswfbC0OzvqP/+mvAuxN4gK+5ZP/YLcVek2+P+M96bx1170lIjfzut+9QnavGa89Gzn/Nx/uyjRi0tz63GWQN7dqirpTuJdZL5QzffSv7cwdnP9wWhf+LheiPcZY9bk/W8wxLsjHfFXK/DGe8z4SvzuMU+3uKG7leJvVV8y9iLcgv0z7twpbkcb4t/t5fyFA==",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkMtOwzAQRfkWrxNU54VUiU3aGIJIH07s0CIWJnFU13mRBmhU8e/UkahAiAULhLKamTtXM0cXGtr9AdRNlYmc+2VWnYsUjE3LgKbtaGDXslZUpT8FY6iBlrNCtSMNZCz5WBynhiX81Jbylr/w/DQFrE02UVf3Dl2dEQVf8AY1rOBB2PvEDnOWdv0X9fN518sFb9mUtQyMgS9vXEyQuyTIWsapqh65q13Sa9gNR/1ujj0JI4mbQNpOGNE5kVDpE4pkR0u6jr36dbVFkwTmq8er/ZYZexjLNJ55s/LoczFCdgQxnhH7aWXmC4ooUvqSrq9psRGEUHXPDYR/Cd6079np8Ets+qfc4N/lNvopt98yGgNgNAfAaA2A0R4AozMAxot/YXw4ewe298q8",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186579176,
          "profile_id": 3421356,
          "ranking": -1,
          "statgroup_id": 3105070,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 180,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "southeastasia"
    },
    {
      "id": 186578964,
      "steamlobbyid": 109775243595767380,
      "xboxsessionid": "0",
      "host_profile_id": 6906635,
      "state": 0,
      "description": "[Rematch] private 250 pop ",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFu2zAM/Zd+QewoAnroQYGcTkApwZm8wDnWHYzKSB1gHWzr60eJVKYTIZLvPT7y6Ty2Cl8NYV7VgpFWEspfvP89plBP0YVpoXwj3ykvnL4f6M9IaLnHz8sxRbpfXFBNCp1X2AMprFzo3lNgPUh7u3btBeqfn98STnY7/2i2X6fzDU4ffz7i7pmwewmqy72ocV+0WY/aMs9YI8+JeHr55hvi1IP8TZr2LgwVYY2Ilf8qG+eNddbua8o9NqSerPPgQp//ALUz/4qzbXbJ/Qercc7szVi5z93K8S7HhCtcaBh3kpa1gJ4ryg8r5rNuG9E/TzNA8sUr5m7RV+K2HmdXPcW4Kwgd1wzF+9XpWRB2g/obQ9iQsBfQjBlU8WDDeVi32XBe3pvBXRvSElppg3olHNTiTcX1uEdT6usyB6B/NhjmQa/Jqz1qF8cx16IuWJg/4g4YY6jdTfCtmHJf0elHfv/Yke+L/h3eA+9wWku/jeP/vfv7gfKdeNyiTreYPRU4/zd7J9L98z3Fx178JK8X8fL0D3ta8Js=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtkk1PwkAQhv0tey6GLbRGEi/FrkKkwLY7LRgPK11C2bbUUhU0/nftKihRYyQaY8JpPjMzed7BunZ+j7J8No5i0UrHs/0oRA3zsGqaNUND84IX0SxtHaMG1lAheFK6VQ2N+WhVeIpyPhJrN5Vn4kbE66jDi9HEW2aqo1KOiRLREznJeSI6ruqL5lTwcKm2lDuv5yqdiIIf84KjBmrJtkUZsfqM1Pt+WFqbBrHFVI5ablXVutSW2JM070jDdD3oMonLfBOIXEIKQ9/ObgdT0hzheHB5sphyfYF9GfqO7aRPfRYlxPAwpQ4zrga1uAcESJnvw/AUkknEGJTzrE7UOkIP2nt2FbyBrfKGG/49btXPuH14o3mIdaOubxxae71T/2t9QVnbZW3F2mPkWYMgJKHSedjlcRY4/mR66S90YGGdn0AAaezBHeR+PEn7Us1wXmY1AbKApnT1L+2e+339ahtcysoKzLP/UwrqX34+C7J/9fn1HbktyRk7cluSM3fktiR3sCO3Jnex9wi5dd81",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578964,
          "profile_id": 6906635,
          "ranking": -1,
          "statgroup_id": 5100905,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186578964,
          "profile_id": 6912542,
          "ranking": -1,
          "statgroup_id": 5104531,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186578757,
      "steamlobbyid": 109775243595661100,
      "xboxsessionid": "0",
      "host_profile_id": 2148086,
      "state": 0,
      "description": "Gooz on gooz",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOwzAM/Zd9wbqmkThwyJQORSKJCtmm7sbKVEgHnTRQ23w9TuyWnKzYfn5+z6uXthLwNtr3oxggkoJrQX/h9ruNoeyC9XrAfMnP2MOsvBX4p7iuqMf1wzZGsh6sF2UMrRPQo2OYwd85BsZpfilZ8bo3b4erqQ/udD919XSUH3ezux7ew/oBsWvgs0+9wDHXxNc44JbmtBvA3OGcmj+7EmfKhl+QU259kyFWO++WmdBPxHNjv7vUY3zsSTwL66v0p52Y54+wW26G1F8YCXsmbdrMfq5HitcpRlxmfUm4HTfERcs+w3wzQj7xNgH0c7iDBl2MEzS7Al1xtoHZWtQYg1fa76mmmbUfrewZYpfAv1SIrSP2oCVh+sXfCfYh3mqyvibfFHitkIuvuPHiCXGAi1MZ1YOPaq7fzHto0M94RXNAa9QqB+5s26baIvbR/AAeEEazeGCdmu8rwD6B8vnikatn/mu4B/KwG+0Xw3xo/313twLze7bcooy3mDRlsP8PaccAi2rbMN+TcR0/Hdnj6g+YmPAk",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrtlVFPwjAQx/0sfR6GDoaGxJfBiiMyoKzdwPhQthJGtzHHVND43aVFiMTwANG3Pd1d73J3+f0vKdS1xw+Q5ctZFHM7nS2voxA0dVi/rd42NLAqWBEtU7sNmlADBWeJdKsamLFgn9hGOQv4wU3FA3/l8SHqsSKYu5tMVVRkmyjhA56jnCW8N1J10QpzFm7UFDnzZaWeE16wNisYaAJbdE1MkDkkqD6kylqYdKU1XYKQtEM/RGFV5iZ9Fme+480XU2+tUxLWWYf6NI1d+k5zL56nQ6F6ON+9WpRmPk6xSdQM3B2M7Dvwqf1mU4FHWCo/uMD/41I9xeXcHfWjHWVmv+TO/6st9dPqeaFSj/jZnrY5UqqhPrYEdAXOe8JojFzaJwLu1EFiQ1M68azsbbxArQDG42lnvWD6Gnoi9BzLSeUFYIQMF2LsEON5XIsHFNHdZdDJPU3mESFUXQyPzle3VpK7kFy9JLeNe63zyRkluQvJNUpyktwFv9hNSe5A7unqCy7f3mY=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578757,
          "profile_id": 2148086,
          "ranking": -1,
          "statgroup_id": 1911303,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186578592,
      "steamlobbyid": 109775243595658720,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"6654689f-723b-457e-bfb8-2c7b6656d8c0\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 3451124,
      "state": 0,
      "description": "hllkydl",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpNUstOwzAQ/Jd+QfOopR56SGVTVerauNiCciQgg6OSHoqS+OtZe51ATqusZ3Z2dlZnZxv8SvD9HTTEelC+EbGQHtgb9TcQ+gBN6o/qWqe+4o59EGZSXmSMYNBo4uT9sI8V7wbE8NQ3/XAY4j8b1PXzdH55DWCker7ejTUP9mnaClm9720nto/EXaKeB8IemQzHPMeitjSnlh7n6DSnVF/rkWa6Sn139Db0lSSuetnNtAwIX0p/2xDmEjFJpzJ9oH8i+nGIJRjczUCVd1rPuhS37GRErnWss0bHQNMM5CsI1yKfzbqQTyd/K/R/hCbVI3pdZA9HyfuRdhOF8u2wd6lGT8QkdX4T+ryzwP2cIK0dcjvixj7wZsic099djiPyJN3g0dvsDeDdge4+4fwSmkviiVrA2/zeMljeX+Y9JtRSZl8nxWcPW9TuyEPfRVyeD9Vyj3DBLGnKmr/95H695Cq0c79I9059jbmjPCi8Tc5DpfiMbzdLBoybc1lD7CdP3fgvL0uGFcf96RaFMrd163a71S8lkfO2",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrN1FtvgjAUAOD9lj7jQsvFS7IXlDqW6QZaiC576KBG5KJBtmnM/vsoizISfWhMNng5pzd68uUARNLLAWyy9SKMmZUu1rdhAHqKqkGIVAlsc5qH69QagB6UQM5owlNZAgvqHxeKUUZ9dkrT6JF9sPg0GtHcX073m3JHi78mTNgzy3BGEzaalPvCrcNosC9v4Xe+b8vphOV0QHMKesCKHgyHYMMmWLW9gEeTTLFByjnHsKNybWxHkMe+i6O9m7pzz9x8zla478N49jbcrSjaQS8KvLGJnWKf4ZgY82i783s3WYaEuPy8wSbWHfiSztm0FaTrNRtU2cAG2xBhG1fMBspdqMgaquEoFQ5qMA41RXHi8zjhpcbR2sWj1Gy0ykZprs2TsA2OxRqnU3xSHb1bs9ErG7XBNkzUZjgW65sWrLG0fv2ItZoLXznC/ORXyciXZESr1P+oSnhVle1/qvL15hsunFpe",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578592,
          "profile_id": 3451124,
          "ranking": -1,
          "statgroup_id": 3132570,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186578592,
          "profile_id": 3473266,
          "ranking": -1,
          "statgroup_id": 3153017,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186578592,
          "profile_id": 3577773,
          "ranking": 77131,
          "statgroup_id": 3249519,
          "race_id": 0,
          "teamid": 3
        },
        {
          "match_id": 186578592,
          "profile_id": 8326869,
          "ranking": -1,
          "statgroup_id": 5217956,
          "race_id": -1,
          "teamid": 4
        },
        {
          "match_id": 186578592,
          "profile_id": 10913052,
          "ranking": -1,
          "statgroup_id": 6135778,
          "race_id": -1,
          "teamid": 2
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186578579,
      "steamlobbyid": 109775243595658480,
      "xboxsessionid": "0",
      "host_profile_id": 11201556,
      "state": 0,
      "description": "Lolik a tie jeho onanery",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFkt1ugzAMhd+lT1D+Iu0SFuiYlkRMoRK7W6MKKaylF+uAPP2c2Gm5OrKx/R3Hu8+xK+FLhZ3XcgHFSyZKirnbvfKST05ZsWC+ZiesyRW/FRhrmeioRs9L5RUfFmXL2kulS6gRXiYQO3khtWDnQ1Ppn/7P8GMn3ib33bx3Ihmy0/Ur/3L7F+w9AE8faoExE8QrNbCFOWMKPRucM7APXeNMbtgZmTJlTYK9xugtkW7eiDNV1ynUSOtrAmehbBdiQvt9DF6u4G2V3JCnLnLlUs+/oiPNvUZGxeeVZkC/Hme4kkni8v1wv2ZTtl5Q17DrnnZY7yHeIEfPoPaAGnai24T+AX81sY5Mob9VQe/XkDfO9xa8pJ7t412ErRlxb7DblHazCb+bwNLC/GGpxtDHs2yS/gfPW/xf2uijBZaB9trmcDPkuQeusMMNuByw4Hxn4ntk0sb3nDZ1ySk/PvPuVmC+TyO/9He3hHwhHvdg8lgv3RRvIIG3IP/jAnm8F7jl5708bjgH/+SnL9TleN/9A3f08Us=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrt00FvgjAUAOD9Fs64UBSJS3ZBrdNM1EoLuuxQoQYsIEO26Zb990mJOrN40CXbDpzea1/z2n4FoMoP71KSLudByLrxfHkdeNINAKoCNK0uS6uMZsEy7ra2k7KUMRrlqSJLc+ruCttRSl22T2N+z15YuB/1aeb61iYRKyp5myBiQ5bClEasPxbrghVi1NuIXfI9n1diOmIZbdGMSjdSl/cMhKExwrA2IiK2Me7l0bAwhHkcOT70lLw2HdAwcUzbX8zstUqwV6Md4pA4tMgbSe3Qj0dc9DBx0atJSOKgGBlY7IF6w3H3VvqQv+Noel3VATiyUQ824K9tbK+wcZLdXYyxMIED1ObA4ijtc60+tsgAc1DcHfINicnUbievkwVsuiCczDrrBVXXwOaebbbNOPdFEGoWQMjE2tOkGg4JJIU7md6RyA8wJuI92Ck7AECjoTX0I7zqAU8t8U7jVY6/ucqXH7J65JZXdnBF/iM55ZTcuaes/dIp1f/9vsH576uVchfK1Uu5C+X0Um4v93j1CWLa4Os=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578579,
          "profile_id": 5762711,
          "ranking": -1,
          "statgroup_id": 4539186,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186578579,
          "profile_id": 11199597,
          "ranking": -1,
          "statgroup_id": 6186263,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186578579,
          "profile_id": 11201556,
          "ranking": -1,
          "statgroup_id": 6187031,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186578563,
      "steamlobbyid": 109775243595658160,
      "xboxsessionid": "0",
      "host_profile_id": 2904731,
      "state": 0,
      "description": "[Revancha] CORONAMANCOS",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUsFOwzAM/Re+YG3XCA47ZKSwSjhRR7qpHFdNESnQSYDa5utxEyfkZMX2e89+vjuahuPLwY6OTxgJzoDTn7v97tdQDE5ZmEK+YpfQs1XiVoa/mkFDPXqc9mskuklZXq2h0hx7YA0z/LusgdTAms/jozrfT5AfD6fzaTmeZN0fbqfX/OP7zW0eAnaHelrfixoLIL1SozbPY3LEfAo8HXvRVeAUPbsGTYWyfRawTJwtk25cSGeuvgbfI+3a43WWytb+D3Tax4yzlaFn2CRO0a6cFDeJX1qTdqL0mIW+HnfShryrMO/nKnCumWacwY1Z5JNinMP+K9xbP+2Nj3HeapEN1Tis8djVVllDmgfENgEb8yD4RJgLiOhPPSOO1w22ZpK8AgsMjNeyIH8OvPM4qxawLdW3DFJ9F+dYUEtO/ixKjI5mRu3mOdSiLtsSPxTxPqTrolcl2OgrbP/zyctM2qi/WaJHSqebLPAmqb8vk686+b4FEW/azOp9Q7sziDXQ3UC6N6VvP1e+2939ASaS8Z0=",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkEFPgzAUx/0sPYOhbGyRxAsbVYxso9DiZjxU6LKuwJChbjF+dylmi4vxYDwYTn3v/176fvlBU7t/A2W1WYqMe8Vycy5SYJsXRn/YgxrY1qwWm8IbA7vpas5yVRoaWLLkMGi6iiX8WBbylr/w7Nj5rE5W0b5sN3T1jcj5jFeoYjn3w3ZPbDFn6b69om4+b9s45zUbs5oBG3jyxsEEOQFB/SBO1euSu9IhbYad0GhnU+xKGElc+dIahBGdEglVPqJI7mlBF7Fbvs7XaJTAbP54tVszcwdjmcYTd1I0ew5GyIogxhNiPc172YwiilQe0MU1zVeCEKr+c3zhXYJ37bs7/VSb/sUbPPGmJgdxn/WfzBk/mfstpdkJyl4nKPudoLQ6QTnoBOXwnygfzj4AolzNQg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578563,
          "profile_id": 2904731,
          "ranking": -1,
          "statgroup_id": 2627979,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "eastus"
    },
    {
      "id": 186578404,
      "steamlobbyid": 109775243595979900,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"39602e75-7d63-40a1-9f0b-b51e7b454cd9\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 339891,
      "state": 0,
      "description": "DrkBroCode",
      "visible": 1,
      "mapname": "my map",
      "options": "eNo9UsFuwyAM/Zd+QdIQpB12oCKrmAYoE1mVHZtV0ci29NAtCV8/g005PWH7+fnZu9exFfD22s+bWABJwfVCf+H6e4hQTsF6vWC84WesYVZea/xTXLdU4+blEJHsF+tFE6F1Amp0hCX8nSMwTnMX3vjlayjOxyXo5nbqmueiLeq/zn+w1hUPyN1zLbpUCxorTXqNA22pz7gHzifs0/MX12BPOfALaqqsH0rkGoEr/ZUmzBvp3NufKdUYH2uSztp6lf40aKf+K8y2kTe1kTBn8mYs7WexEi4SRl5mfUO8EzekRcu5xPiwQjzpNgH8cziDBl+ME9S7BV+xt3Ewu+gR+3nVvqOcIXu/Wjkz5G5Af6OQW0fuRUvi9CJ7sME8pFtt1ve0NwW7VqjFt9x4cUQe0OJUSfmwR5Xz93kODf6Z7Jsf8x1VoJ0dxpQbfV2of4AdEMdw34F1Kt9XsPIer+w3Qy9dn/UX8WYxPq33eBhzfWXdtcZ4x+63KOMtJk8ZzH8j7xhwUe4Y8j0ZN/H3E3vc/QMc5u/W",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrt01tPgzAUAGB/C8/MrDB2S3xho4oRNgrtLsaHCl3GCgwZ6hbjf3fUbJN410Rd4hPn0rQnXw5Akc/vpDSbT8KImclkfhgGUltVW80WkKVFTvNwnphdqb3OckbjIqzK0oT6m8Y6y6jPtmHCz9gNi7aZRXN/6q1ScaJSXBPGrM8ymNGYWa44Fy4Qo8FKvFK8eb0Q5ZjltEtzKrUlk5/qCEPdwbDmDILiayAP6ljUkO5WRa+HDA48jjKLa3XXIz3MQVHvEMhXJCHjgZHejmaw44NodHm8nFFlCQY8GNiGnazP6QhCzQMI2Vi7GqlRn0ACi7pDxicknoYYk+I+3QrNI+lefk4HQE1tKc1GCU/Z4YG/gjecbvEcLno2NT6KBZHAMqIXcZj7Ck6lvFOVJ0ullFyKzgbmMf6WTHUno7wrg4fp31urN+TUf7kvytV+SK78N352Sm0vpqzvxZSNX5ry4uABkAlRhg==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578404,
          "profile_id": 339891,
          "ranking": -1,
          "statgroup_id": 164769,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186578404,
          "profile_id": 11439287,
          "ranking": -1,
          "statgroup_id": 6287737,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westus2"
    },
    {
      "id": 186578019,
      "steamlobbyid": 109775243595485440,
      "xboxsessionid": "0",
      "host_profile_id": 5294539,
      "state": 0,
      "description": "hobbit",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFU82OmzAQfpd9AjA/ag57IGtovartghwCuQXSpXFCiVStAD99xx6T5TTy2N/fDC/VXGbwEa4nk81Q0SzlmT8zj8+9LenNSM1n7OdpN7h+LOkjwTOW8tK/UdO8txVtZ6mz3JZSZfCG2zKEs84WQvFU/HgP1du/5Ejv1dmcojbg5FTU12NTmIsJdojdpnw+uLegMeLITYR6JMgzEMAskKdNf6ocOWm/6Yyk7kPEGjZvoTDT6nUSOcbujdB9+rt0OhPw6864snk4/gW8LZ4/ERR8umyGUF6DxdeBqxE3ljr3uLdUYD4Rp1OI/X6BvtMtDOSn0AO3uajMc5eQK3ILBd6zFmsNOvTB3+m37BdJpxixc9CfM8TmFnvm1GPq53xX6wd1s1Xq1s+NwawZatFlKnT2HXFAi2Khvw9zZNt9svngkJ/QzPNA1rhbEWiP94O7m9h3nt/ADDxGT+Tfm98Vts3NgB9EoDyR92o61TvWkffruak+ap0bcSw+alKsTbAbm8j1f/WjMA0pPk/FLr9A7zLWpgmqolmTPx05rD0R924s1vPxG87GPPcktLminhLyYF5P/rVHFP4H1JtseoV67lTMof+GO2lnG0Dm3t+wPv8Fyrd9CqV63Lvh9fXlP261D5w=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrt1U1vgjAYB/B9lp5xoeVtmOyCUscyiVSB6bJDBzUiLzJkm2bxu09IJuKyA3FLOHhq+/RJm/zyp0DEPX2CNFvNg4gZyXx1HfigKyFVlASVA+uc5sEqMfqgCzmQMxoXU54Dc+p9b+xXGfXYYZqED+ydRYfVkObeYrJNy45OcUwQsxHLcEZjNhyXfcGaMOpvy1uKO9/WZTlmOe3TnIIuMMJ7jdhYs2wsWq5fjLr9mGp2WSOaFZZ7phXCYuw5ONw6iTNz9fRjusQ9D0bTl8FmSdEGuqHvmrqZ7Ps0grE0gYSYtvQ6FaKRgx1c1C1ndufEi8C2neI8jfWMW7DjfloJiIe8UqdSKyvYEqvxWVaYlFYDs6GNqEJFrtvIlQ1qiQ35CxsdN7OBNwLk6zRCRSNcPrEjKiggUYKoriVWWmJrgrQ4P0i4YZCQqqroJElSZSNdknSUJEmVlVMspcKS2/JaT8w/eJEa4nRgzaVz9MdX/s+F/80F7J6vvgA0SrTS",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186578019,
          "profile_id": 18310,
          "ranking": -1,
          "statgroup_id": 207447,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186578019,
          "profile_id": 299920,
          "ranking": -1,
          "statgroup_id": 116292,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186578019,
          "profile_id": 320107,
          "ranking": 14310,
          "statgroup_id": 141169,
          "race_id": 0,
          "teamid": 1
        },
        {
          "match_id": 186578019,
          "profile_id": 349176,
          "ranking": 34209,
          "statgroup_id": 175734,
          "race_id": 0,
          "teamid": 2
        },
        {
          "match_id": 186578019,
          "profile_id": 1596720,
          "ranking": -1,
          "statgroup_id": 1378524,
          "race_id": -1,
          "teamid": 6
        },
        {
          "match_id": 186578019,
          "profile_id": 5294539,
          "ranking": -1,
          "statgroup_id": 4232807,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186578019,
          "profile_id": 11324512,
          "ranking": -1,
          "statgroup_id": 6237968,
          "race_id": -1,
          "teamid": 4
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186577873,
      "steamlobbyid": 109775243595380690,
      "xboxsessionid": "0",
      "host_profile_id": 4317731,
      "state": 0,
      "description": "rodney.campbell1's Game",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpNUl1PwzAM/C/8gn4LHvbQkWyahBs6NRPljRWUkW50QqC2+fW4sdvRp1Mdn+/OvtsbneMXge1+oIQJ98pqOYHCQnakegquc5D7+qAuia8rYbIP6hmVldwjM8hL4hRdv56QaHvsEb5edeG2n/5pp86nRx02wf7lVL1tDuFB338jVu9ReHq9NA/PxB0pm2+od5cVbsdzNGrzc5LC4pzSz4nUZzDQTBOrr5beui4uiCtBLvpXNRlQf1TY6y/11PGsU6FO+icxj3w7QajQWyUD9hTMupTQ2VMlGZcTZo0mg5Jm3PiaW74O+Uqfb4z5D5B7PGDWIWc4FKIbyJsMlW36tfEYM5FjUfIb17Fnif6MJK0tchvixjqIvGfO8baX3YA8XjdYzJazAdw70N5HnB9BXnueSQtYze91Bsv7evYxopaIcx2V6Bx7Ru2GMrTt1MfzIV724ep5nyks+wD0U3O9mesh7pv9lnh3QLeIu+F6rMTc36TLDVRmvssExDWlTM3w716Qq+W7XvyHqrqej2a1uvsDUWPzbg==",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrVkl1PgzAUhv0tvQazAo5liTdsVDGyCNqyzXhRoWQdnwHUkcX/LsVsStQL4oVydb7e9rx5cqAi3e9BXmQhj5mVhtkpD8BUU6Guq1ACZUUrnqXWHEybqmI0EelIAiH1D4OmKqjPjmkaXbNnFh8rm1b+5q7OW4UsvuEJu2EFKmjC7NtWx0uX0aBut4idT2XbTlhF57SiYAqs6MpwMTIcjDTHC0Q03WVg4LbnGk7UzhY4giLOCIpqkpK1Z+Yvqy2a+TBePV7stlTZQS8KvIWJ3EZnuCZBIjpkfUmSDceYiPeGza1z8Cp9y2aijicdNsoHG/hP2OBl/oWN05sN6sdG7p6M/OlmlA4XMTmAec9/RWb0E5m+LtVBuNQG4fJsEC7Hg3Cp/5HLh5M3B+TpJA==",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186577873,
          "profile_id": 4317731,
          "ranking": -1,
          "statgroup_id": 3591196,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186577873,
          "profile_id": 4318368,
          "ranking": -1,
          "statgroup_id": 3591624,
          "race_id": -1,
          "teamid": 1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 1,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "ukwest"
    },
    {
      "id": 186577475,
      "steamlobbyid": 109775243595209780,
      "xboxsessionid": "{\"templateName\":\"GameSession\",\"name\":\"24a391c3-ba2a-442e-8bdb-c01c2918616c\",\"scid\":\"00000000-0000-0000-0000-00007b08b821\"}",
      "host_profile_id": 489858,
      "state": 0,
      "description": "4 v 4",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUs1ugzAMfpc+QYESaYceqMIqqjkRXajEtbTKFqbSQycgTz8ncbKcrNjfj382Z91W+HIwk61mjHjFoKI/+/w9uJCPVhqYQ75m14DZSf4sw1/DoCWMmuaDi3g/S1PVLpSqQgy4MMO/qwuEAnbuTq9P9XUU+Umdu9d0276OF3OR98dB3uz2LXD36KfzWPRYAPkVCr15HZ0j53vQ6dmHqoMmH9g9eCqkGbLApWNvmbDTSj5z+Rg9RhiH8T5LaVr/ByrNY8HeyoAZt0mTd06T4jbpC6PTTKSasoAbcCZdyNsa876vAvtaqMcF7JRFPcGnJcy/xrkN80H7GPutV9FSjcUaz13vpNHkeURuHbgxD7yaiXMFHvfTLMjjfYNpmKBdgQEG2ntZUT+Hqvc8zguYjuo7Bqm+j32s6CWn/ayST5Z6Ru/6GGpHhyN9KOJ9CNvHXZVg4l5h958f4s1lwkT/7SpNQ/eVbrLAmyT8UKa9qrT3HfB403qR31uanUaueDeQ7k2q589V7/ebP7bx8c0=",
      "passwordprotected": 0,
      "maxplayers": 8,
      "slotinfo": "eNrVkEFPg0AQhf0te6amS6FiEy+0rGKkLQu72BoPK2zT7QJFQG1j/O92MW1sjAcPRjnNmzeTmS8P6trdKyjK9UKk3M0X61ORgIFhnVumpYGqZrVY5+4IDKAGas4yJbsaWLB4P9h1JYv5Qebyhj/z9NB5rI6X4bZoNjrqjMj4lJeoZBn3gmZPVJizZNt8UT+fqsbOeM1GrGZgAFx5bWOCbJ8gw48SVR1yW9ik8bAddJvZBDsShhKXnjT7QUgnRELlDymSW5rTeeQUL7MVGsYwnT1cblZM38BIJtHYGee7PRsjZIYQ4zExH2e9dEoRRcr36fyKZktBCFX3bE+4F+BN+xpdBx7F1vmUG/y93Lrf5fZTRr0FjL0jRjXZQ37o/0FptILSbAVlvxWUZ39EeX/yDsM+zGo=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186577475,
          "profile_id": 489858,
          "ranking": -1,
          "statgroup_id": 336064,
          "race_id": -1,
          "teamid": -1
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    },
    {
      "id": 186576826,
      "steamlobbyid": 109775243595010420,
      "xboxsessionid": "0",
      "host_profile_id": 6224156,
      "state": 0,
      "description": "denizsarisulukgri Oyunu",
      "visible": 1,
      "mapname": "my map",
      "options": "eNpFUtFugzAM/Jd+QaEQaY+wZB3VkowudOK16YQUtMJDJ5p8/RzstDydHHy+O3tzHNoKvly6KVQLIF4xWVEtzH91hHwM2skF3wU7Y0+h+VxirWGypR4zLXVEvF+0q0SE2lTQIyPMoHaOQBnJvk51afeza7e3TylU+W0O76ddk11Oh+MlbF+Quwc93doLGneS9CoD2tY5Qw6cbzinZx9G4Exu2Q9q2mlnM+QakrdMhcmTzlz/FmuPcjbpLLVr15o0MY8+wjt4u8tgyVObdBXKTDfZEuYRo0bNpzvNAL4OZ4SKKdIV+TBf67UTC2IBWXeUodhC/Q11dAx694ghE9Nk9A/4E6R1YBr93TVwv67vNkRuySvibB57kU4w0u0h25yy8TJms2ppYH6/1MPKE7V4Rf+DZ5/+Vy75aEBLT7k2BdwMee5A15qh17GP0/xg0z52ys0l9o0+7UOG4fke0r67POlXz7sr5eMebKGvI80d0w1ksAvyPyzAj/cCt/y8lwdXAf5pF12pr0e/+QcPv/Db",
      "passwordprotected": 1,
      "maxplayers": 8,
      "slotinfo": "eNrt1kFPwjAUAGB/S8/DtNu6IYmXwaoYGdBtRTAeKpQwysYcUyGG/y6bgbkY0OjFw059fe+lTb60TZGq3L+BOFlOg4VoR9PleTABDUNVdYQNBaxSngbLqN0CDaSAVPAwC6ECpny8L+xmCR+LQxjJW/EiFodZh6fjmbeJ845atkwQip5ISMJD0XHzvmBFBZ9s8l2yPZ9XeToUKW/xlIMGaMsbi/rE6vtE7w8m2Wj7d7Hl5zlquTCvdaktkSdp0pHYcD3W9SXK8k1G5IZFbDSw49fhnDTHaDF8vFrPubpGAzkZOLYT7fosSgj2EKWOj5+G2qLHCCNZvs9G1yycBb7PsvUs4bYvwVb5aoeQjlUI6yU8tcBDFZ4lghN4ugm1Ep5W4Kn/EK8v85rzcyxCcyz7NzgXCJZw9AJHq07WN3i4jkt4RoGnV3in3zQMkVnCMws8XOGdPHkGrJvla1sv8IwK7zheDZXYap9+IWbJLavs4T7iP8nBY3Jg+3D2DlvG47M=",
      "matchtype_id": 0,
      "matchmembers": [
        {
          "match_id": 186576826,
          "profile_id": 6224156,
          "ranking": -1,
          "statgroup_id": 4837224,
          "race_id": -1,
          "teamid": -1
        },
        {
          "match_id": 186576826,
          "profile_id": 11452008,
          "ranking": -1,
          "statgroup_id": 6293733,
          "race_id": -1,
          "teamid": 1
        },
        {
          "match_id": 186576826,
          "profile_id": 11454585,
          "ranking": -1,
          "statgroup_id": 6294934,
          "race_id": 0,
          "teamid": 4
        },
        {
          "match_id": 186576826,
          "profile_id": 11454703,
          "ranking": -1,
          "statgroup_id": 6294994,
          "race_id": -1,
          "teamid": 2
        },
        {
          "match_id": 186576826,
          "profile_id": 11454910,
          "ranking": -1,
          "statgroup_id": 6295104,
          "race_id": -1,
          "teamid": 3
        },
        {
          "match_id": 186576826,
          "profile_id": 11455017,
          "ranking": -1,
          "statgroup_id": 6295175,
          "race_id": -1,
          "teamid": 5
        },
        {
          "match_id": 186576826,
          "profile_id": 11460870,
          "ranking": -1,
          "statgroup_id": 6298106,
          "race_id": -1,
          "teamid": 6
        }
      ],
      "observernum": 0,
      "observermax": 512,
      "isobservable": 0,
      "observerdelay": 0,
      "hasobserverpassword": 1,
      "servicetype": 0,
      "relayserver_region": "westeurope"
    }
  ],
  "avatars": [
    {
      "profile_id": 710503,
      "name": "/steam/76561198025231211",
      "alias": "Xerxes-BFG",
      "personal_statgroup_id": 573615,
      "xp": 483,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 1757649,
      "name": "/steam/76561198206337519",
      "alias": "Bodakungen",
      "personal_statgroup_id": 1534421,
      "xp": 156,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 10342225,
      "name": "/steam/76561198961680301",
      "alias": "luis.borgessz",
      "personal_statgroup_id": 5899161,
      "xp": 40,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 5519049,
      "name": "/steam/76561199038653710",
      "alias": "GuilhermeBraga",
      "personal_statgroup_id": 4384301,
      "xp": 86,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "br"
    },
    {
      "profile_id": 1207075,
      "name": "/steam/76561198101880741",
      "alias": "garantimannen",
      "personal_statgroup_id": 1019839,
      "xp": 238,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 871749,
      "name": "/steam/76561198033192448",
      "alias": "Diso",
      "personal_statgroup_id": 723558,
      "xp": 268,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "no"
    },
    {
      "profile_id": 11454703,
      "name": "/steam/76561198327608199",
      "alias": "WUUUUHHHHUUUU",
      "personal_statgroup_id": 6294994,
      "xp": 4,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 2783220,
      "name": "/steam/76561198088194632",
      "alias": "kaya",
      "personal_statgroup_id": 2512611,
      "xp": 180,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 2604597,
      "name": "/steam/76561198172112438",
      "alias": "R-A-V-N",
      "personal_statgroup_id": 2341013,
      "xp": 279,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "dk"
    },
    {
      "profile_id": 2757171,
      "name": "/steam/76561198904661622",
      "alias": "Timber",
      "personal_statgroup_id": 2487664,
      "xp": 1086,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 9409430,
      "name": "/steam/76561199035445455",
      "alias": "agusloza445",
      "personal_statgroup_id": 5500103,
      "xp": 249,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 9605656,
      "name": "/steam/76561199244187045",
      "alias": "nsmirnov1",
      "personal_statgroup_id": 5585625,
      "xp": 43,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ru"
    },
    {
      "profile_id": 4076355,
      "name": "/steam/76561198202003020",
      "alias": "wonder_of_alice",
      "personal_statgroup_id": 3426210,
      "xp": 854,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 11351707,
      "name": "/steam/76561198119259166",
      "alias": "itq",
      "personal_statgroup_id": 6249718,
      "xp": 7,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fi"
    },
    {
      "profile_id": 11445303,
      "name": "/steam/76561199185911395",
      "alias": "mlxtfhymlc",
      "personal_statgroup_id": 6290398,
      "xp": 31,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 6888212,
      "name": "/steam/76561199215432942",
      "alias": "Erazem",
      "personal_statgroup_id": 5089757,
      "xp": 703,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "si"
    },
    {
      "profile_id": 8326869,
      "name": "/xboxlive/9C7FEFF0628DCFFFE480E1F7ABC0B0B54C62C9CB",
      "alias": "NakdFanatic",
      "personal_statgroup_id": 5217956,
      "xp": 190,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 9661225,
      "name": "/steam/76561199058404708",
      "alias": "yasin.cetin3128",
      "personal_statgroup_id": 5606048,
      "xp": 91,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 349176,
      "name": "/steam/76561198336801929",
      "alias": "Magnus",
      "personal_statgroup_id": 175734,
      "xp": 164,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 1171916,
      "name": "/xboxlive/7CAA76F7B8CADCA8B8960B90874A6A3F0B49B039",
      "alias": "horsesnboatszz1",
      "personal_statgroup_id": 992166,
      "xp": 2144,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 10595560,
      "name": "/steam/76561199365833417",
      "alias": "查無此ID",
      "personal_statgroup_id": 6035143,
      "xp": 657,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tw"
    },
    {
      "profile_id": 2912297,
      "name": "/steam/76561198953791177",
      "alias": "Aymeline",
      "personal_statgroup_id": 2634980,
      "xp": 1370,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ua"
    },
    {
      "profile_id": 3474533,
      "name": "/steam/76561199092064239",
      "alias": "L4NDA",
      "personal_statgroup_id": 3154182,
      "xp": 433,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 359441,
      "name": "/steam/76561198308366316",
      "alias": "TeaWrex",
      "personal_statgroup_id": 187622,
      "xp": 22,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "be"
    },
    {
      "profile_id": 3295588,
      "name": "/steam/76561197973509635",
      "alias": "Benjamin Franklin",
      "personal_statgroup_id": 2987244,
      "xp": 140,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 5977527,
      "name": "/steam/76561198077953414",
      "alias": "Simon",
      "personal_statgroup_id": 4674506,
      "xp": 111,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "no"
    },
    {
      "profile_id": 5498259,
      "name": "/steam/76561198015663718",
      "alias": "Hiradhor",
      "personal_statgroup_id": 4371230,
      "xp": 84,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "br"
    },
    {
      "profile_id": 4991622,
      "name": "/steam/76561198158945525",
      "alias": "smartview",
      "personal_statgroup_id": 4035015,
      "xp": 238,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "bg"
    },
    {
      "profile_id": 3094820,
      "name": "/steam/76561198997600316",
      "alias": "[MALV] Pro meteus 33",
      "personal_statgroup_id": 2802318,
      "xp": 708,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 3577773,
      "name": "/steam/76561199097886846",
      "alias": "azapoglan",
      "personal_statgroup_id": 3249519,
      "xp": 172,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 104945,
      "name": "/steam/76561197980701026",
      "alias": "AS.",
      "personal_statgroup_id": 13404,
      "xp": 9,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 5229327,
      "name": "/steam/76561198008296516",
      "alias": "Amfet",
      "personal_statgroup_id": 4189146,
      "xp": 54,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 9393348,
      "name": "/steam/76561198300494050",
      "alias": "Nippleless Cage",
      "personal_statgroup_id": 5492181,
      "xp": 146,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4195971,
      "name": "/steam/76561198368095970",
      "alias": "[ESTG] JoyStick_OnE",
      "personal_statgroup_id": 3511153,
      "xp": 1545,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 3787583,
      "name": "/steam/76561199100106471",
      "alias": "jastetes",
      "personal_statgroup_id": 3285432,
      "xp": 2329,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 1506736,
      "name": "/xboxlive/53473CEEE189B76EC7F64D18C3BE4DB7B3F55E28",
      "alias": "ElPincheApodo",
      "personal_statgroup_id": 1304832,
      "xp": 516,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2903783,
      "name": "/steam/76561198262756206",
      "alias": "TinTin_911",
      "personal_statgroup_id": 2627100,
      "xp": 122,
      "level": 1,
      "leaderboardregion_id": 5,
      "country": "au"
    },
    {
      "profile_id": 6912542,
      "name": "/steam/76561197991310083",
      "alias": "The Killer",
      "personal_statgroup_id": 5104531,
      "xp": 36,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "no"
    },
    {
      "profile_id": 8870210,
      "name": "/steam/76561198045361662",
      "alias": "HugoWullAmA",
      "personal_statgroup_id": 5333072,
      "xp": 175,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4646276,
      "name": "/xboxlive/F5E47220EBD31AB161CCF283B043E7C9798B60BC",
      "alias": "battlesergant",
      "personal_statgroup_id": 3803530,
      "xp": 682,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 2306259,
      "name": "/steam/76561199045345611",
      "alias": "Trulline",
      "personal_statgroup_id": 2052342,
      "xp": 115,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2379766,
      "name": "/steam/76561199007246585",
      "alias": "Daniel.D.Dog",
      "personal_statgroup_id": 2123168,
      "xp": 67,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "no"
    },
    {
      "profile_id": 5280069,
      "name": "/steam/76561198201676734",
      "alias": "Martijn",
      "personal_statgroup_id": 4222047,
      "xp": 107,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 2697680,
      "name": "/steam/76561199059748332",
      "alias": "[B] Robo12",
      "personal_statgroup_id": 2430531,
      "xp": 1471,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "ae"
    },
    {
      "profile_id": 4650306,
      "name": "/steam/76561199125141118",
      "alias": "Oblo",
      "personal_statgroup_id": 3806251,
      "xp": 1120,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 2863482,
      "name": "/xboxlive/718DE94AF2073E48CEA6943576C6B5A78216E650",
      "alias": "HungryBOGdog",
      "personal_statgroup_id": 2607379,
      "xp": 235,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 11235162,
      "name": "/steam/76561198366650596",
      "alias": "苟上黄金四后不怕掉分",
      "personal_statgroup_id": 6200136,
      "xp": 70,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 10000735,
      "name": "/steam/76561199267026432",
      "alias": "issa_houmani",
      "personal_statgroup_id": 5752092,
      "xp": 84,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "lb"
    },
    {
      "profile_id": 4599991,
      "name": "/steam/76561199041719282",
      "alias": "fcureklibatur",
      "personal_statgroup_id": 3771640,
      "xp": 1313,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 11393676,
      "name": "/steam/76561199016515175",
      "alias": "LaGoidi",
      "personal_statgroup_id": 6267819,
      "xp": 10,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 9720186,
      "name": "/steam/76561199148301540",
      "alias": "mafce840",
      "personal_statgroup_id": 5628134,
      "xp": 48,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 1083857,
      "name": "/steam/76561198167754027",
      "alias": "EDMO",
      "personal_statgroup_id": 928941,
      "xp": 255,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 5920296,
      "name": "/steam/76561198853706129",
      "alias": "silkevk2504",
      "personal_statgroup_id": 4638913,
      "xp": 96,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 5086919,
      "name": "/steam/76561198354770269",
      "alias": "andyf.1904",
      "personal_statgroup_id": 4097494,
      "xp": 428,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "co"
    },
    {
      "profile_id": 8956661,
      "name": "/steam/76561198282699853",
      "alias": "Korni",
      "personal_statgroup_id": 5357009,
      "xp": 29,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 6764600,
      "name": "/steam/76561199045095108",
      "alias": "DING",
      "personal_statgroup_id": 5010716,
      "xp": 253,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 6732912,
      "name": "/steam/76561199209539085",
      "alias": "Mikey",
      "personal_statgroup_id": 4988002,
      "xp": 2208,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 5762711,
      "name": "/steam/76561197980784183",
      "alias": "K0miK",
      "personal_statgroup_id": 4539186,
      "xp": 64,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "sk"
    },
    {
      "profile_id": 11359560,
      "name": "/xboxlive/BADE8485FA00ED99DDB67980F8A07C34D1EFACBA",
      "alias": "AboveCrib586140",
      "personal_statgroup_id": 6253137,
      "xp": 54,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "cl"
    },
    {
      "profile_id": 4444758,
      "name": "/steam/76561198288168291",
      "alias": "Mr Krabs",
      "personal_statgroup_id": 3668120,
      "xp": 147,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 11454910,
      "name": "/steam/76561199059798539",
      "alias": "KİLİJE",
      "personal_statgroup_id": 6295104,
      "xp": 2,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 11247129,
      "name": "/steam/76561198362836117",
      "alias": "拉妮拉妮我的拉妮",
      "personal_statgroup_id": 6205092,
      "xp": 46,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 11411665,
      "name": "/steam/76561198312746624",
      "alias": "电子榨菜",
      "personal_statgroup_id": 6275602,
      "xp": 12,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 4302777,
      "name": "/steam/76561198297189316",
      "alias": "Mete",
      "personal_statgroup_id": 3580903,
      "xp": 231,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 4381768,
      "name": "/steam/76561199116141435",
      "alias": "Marko Z",
      "personal_statgroup_id": 3630177,
      "xp": 212,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "rs"
    },
    {
      "profile_id": 10108979,
      "name": "/steam/76561198005108284",
      "alias": "maglou",
      "personal_statgroup_id": 5801991,
      "xp": 52,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gr"
    },
    {
      "profile_id": 11199597,
      "name": "/steam/76561198001774992",
      "alias": "Jerryno(SK)",
      "personal_statgroup_id": 6186263,
      "xp": 33,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "sk"
    },
    {
      "profile_id": 5900894,
      "name": "/xboxlive/CE4CCF8C1DB514462C3A9C96DA6EF8159B63DCBB",
      "alias": "Luisca191007",
      "personal_statgroup_id": 4627565,
      "xp": 222,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 6896313,
      "name": "/steam/76561198304200229",
      "alias": "knight_rusher",
      "personal_statgroup_id": 5094641,
      "xp": 178,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 10788725,
      "name": "/steam/76561198117247577",
      "alias": "Rum Ham",
      "personal_statgroup_id": 6099896,
      "xp": 162,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "is"
    },
    {
      "profile_id": 1289929,
      "name": "/steam/76561198217603360",
      "alias": "luccahockey",
      "personal_statgroup_id": 1086565,
      "xp": 49,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 10466760,
      "name": "/steam/76561198144067448",
      "alias": "Loominakis",
      "personal_statgroup_id": 5959777,
      "xp": 35,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2904731,
      "name": "/steam/76561199044683839",
      "alias": "xNautx",
      "personal_statgroup_id": 2627979,
      "xp": 251,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "co"
    },
    {
      "profile_id": 1061986,
      "name": "/xboxlive/781B0CC0AEC927AD994538EB9A634DAFDD68D617",
      "alias": "Motobiff2211",
      "personal_statgroup_id": 912662,
      "xp": 18,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 4652143,
      "name": "/steam/76561198869275462",
      "alias": "dcbarii",
      "personal_statgroup_id": 3807491,
      "xp": 517,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ch"
    },
    {
      "profile_id": 2906111,
      "name": "/steam/76561198036841588",
      "alias": "[Decrepit] Mosselman",
      "personal_statgroup_id": 2629269,
      "xp": 1577,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 3524817,
      "name": "/steam/76561199095607702",
      "alias": "ttbenitez",
      "personal_statgroup_id": 3200791,
      "xp": 791,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 10828670,
      "name": "/steam/76561199066423487",
      "alias": "pericoplass",
      "personal_statgroup_id": 6117318,
      "xp": 0,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "cl"
    },
    {
      "profile_id": 2049439,
      "name": "/steam/76561198155538533",
      "alias": "常州楚云",
      "personal_statgroup_id": 1815894,
      "xp": 959,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 213198,
      "name": "/steam/76561198053871083",
      "alias": "Ruinshik",
      "personal_statgroup_id": 7402,
      "xp": 33,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ru"
    },
    {
      "profile_id": 9499502,
      "name": "/xboxlive/6F83A9FBEAF7D950AA373A7F7B950F99AF49B529",
      "alias": "RogueMermaid374",
      "personal_statgroup_id": 5543851,
      "xp": 8,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 10265806,
      "name": "/steam/76561199168524507",
      "alias": "天音",
      "personal_statgroup_id": 5870371,
      "xp": 98,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tw"
    },
    {
      "profile_id": 4988468,
      "name": "/steam/76561198027334127",
      "alias": "houseusss",
      "personal_statgroup_id": 4032877,
      "xp": 66,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "bg"
    },
    {
      "profile_id": 3989806,
      "name": "/steam/76561198020392218",
      "alias": "Zybrov",
      "personal_statgroup_id": 3369544,
      "xp": 96,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ru"
    },
    {
      "profile_id": 4585290,
      "name": "/steam/76561198055653229",
      "alias": "KIng James II",
      "personal_statgroup_id": 3761632,
      "xp": 19,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "no"
    },
    {
      "profile_id": 520349,
      "name": "/steam/76561198200202593",
      "alias": "Vis",
      "personal_statgroup_id": 369856,
      "xp": 722,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 299920,
      "name": "/steam/76561198258969153",
      "alias": "tmrakshay",
      "personal_statgroup_id": 116292,
      "xp": 1079,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11454585,
      "name": "/steam/76561198168439312",
      "alias": "Devo",
      "personal_statgroup_id": 6294934,
      "xp": 5,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 10980289,
      "name": "/steam/76561199379945970",
      "alias": "lyq8911276",
      "personal_statgroup_id": 6161259,
      "xp": 105,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 1959525,
      "name": "/steam/76561198338259129",
      "alias": "Old Man Cam",
      "personal_statgroup_id": 1728900,
      "xp": 2237,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 2237040,
      "name": "/steam/76561199038027691",
      "alias": "proteus",
      "personal_statgroup_id": 2014095,
      "xp": 62,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "co"
    },
    {
      "profile_id": 5225192,
      "name": "/steam/76561199148521837",
      "alias": "Merowinger",
      "personal_statgroup_id": 4186541,
      "xp": 2191,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 992631,
      "name": "/steam/76561198361147995",
      "alias": "jaylin700110",
      "personal_statgroup_id": 843530,
      "xp": 2769,
      "level": 2,
      "leaderboardregion_id": 2,
      "country": "tw"
    },
    {
      "profile_id": 477105,
      "name": "/steam/76561198060990772",
      "alias": "Maelstaem",
      "personal_statgroup_id": 321895,
      "xp": 1345,
      "level": 1,
      "leaderboardregion_id": 5,
      "country": "au"
    },
    {
      "profile_id": 1782668,
      "name": "/steam/76561199021280380",
      "alias": "青口宋小宝",
      "personal_statgroup_id": 1558443,
      "xp": 736,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 2148086,
      "name": "/steam/76561199042016988",
      "alias": "ALIBOOMAHYEH",
      "personal_statgroup_id": 1911303,
      "xp": 69,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 3875761,
      "name": "/steam/76561198061026968",
      "alias": "Duhn",
      "personal_statgroup_id": 3315246,
      "xp": 241,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 3832158,
      "name": "/steam/76561199021801239",
      "alias": "浩南",
      "personal_statgroup_id": 3299817,
      "xp": 1415,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 5288260,
      "name": "/steam/76561198960452496",
      "alias": "yacatecuhtli",
      "personal_statgroup_id": 4228242,
      "xp": 309,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ro"
    },
    {
      "profile_id": 3421356,
      "name": "/steam/76561198851380602",
      "alias": "Mr Dô",
      "personal_statgroup_id": 3105070,
      "xp": 1352,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "vn"
    },
    {
      "profile_id": 18310,
      "name": "/steam/76561198036422402",
      "alias": "DRuiD",
      "personal_statgroup_id": 207447,
      "xp": 1299,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ru"
    },
    {
      "profile_id": 1481516,
      "name": "/steam/76561198807343354",
      "alias": "lauxkyle2",
      "personal_statgroup_id": 1267952,
      "xp": 101,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 8999798,
      "name": "/steam/76561199230188358",
      "alias": "yodebure",
      "personal_statgroup_id": 5370431,
      "xp": 65,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ch"
    },
    {
      "profile_id": 5723454,
      "name": "/steam/76561198168013902",
      "alias": "Champu_AOE",
      "personal_statgroup_id": 4514292,
      "xp": 816,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "in"
    },
    {
      "profile_id": 10488333,
      "name": "/steam/76561199351815854",
      "alias": "KC222",
      "personal_statgroup_id": 5972579,
      "xp": 111,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 685120,
      "name": "/steam/76561198012712773",
      "alias": "CKWeather",
      "personal_statgroup_id": 547008,
      "xp": 1475,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 8731395,
      "name": "/steam/76561198062673817",
      "alias": "gremaud.fabien",
      "personal_statgroup_id": 5304594,
      "xp": 67,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ch"
    },
    {
      "profile_id": 5410208,
      "name": "/steam/76561199113807855",
      "alias": "Ozin",
      "personal_statgroup_id": 4313545,
      "xp": 287,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "be"
    },
    {
      "profile_id": 11460561,
      "name": "/steam/76561198002649464",
      "alias": "Conny",
      "personal_statgroup_id": 6297931,
      "xp": 0,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 4816596,
      "name": "/steam/76561198082077373",
      "alias": "elvaP",
      "personal_statgroup_id": 3916630,
      "xp": 116,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "rs"
    },
    {
      "profile_id": 3112464,
      "name": "/steam/76561198985516802",
      "alias": "宋钟基",
      "personal_statgroup_id": 2818789,
      "xp": 585,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 10561185,
      "name": "/steam/76561199346430582",
      "alias": "johan_wennberg9",
      "personal_statgroup_id": 6037437,
      "xp": 95,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 282970,
      "name": "/steam/76561198032745457",
      "alias": "Raxx | Christoph",
      "personal_statgroup_id": 94958,
      "xp": 983,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 213879,
      "name": "/steam/76561197998161895",
      "alias": "Ciapanos",
      "personal_statgroup_id": 8220,
      "xp": 1720,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "pl"
    },
    {
      "profile_id": 2036214,
      "name": "/steam/76561197996833392",
      "alias": "K.G-39år",
      "personal_statgroup_id": 1803183,
      "xp": 973,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "no"
    },
    {
      "profile_id": 4315471,
      "name": "/steam/76561199041816424",
      "alias": "mmemedovic",
      "personal_statgroup_id": 3589689,
      "xp": 482,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "rs"
    },
    {
      "profile_id": 11427877,
      "name": "/steam/76561198303857769",
      "alias": "Grosutz",
      "personal_statgroup_id": 6282780,
      "xp": 23,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ro"
    },
    {
      "profile_id": 10913052,
      "name": "/steam/76561198188648528",
      "alias": "Fringless",
      "personal_statgroup_id": 6135778,
      "xp": 157,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 11364255,
      "name": "/xboxlive/C1AC4B4D1054213273B1BB9C9AC7A46F38C31AFF",
      "alias": "S4mFisher8244",
      "personal_statgroup_id": 6255137,
      "xp": 13,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 8863869,
      "name": "/steam/76561199228030121",
      "alias": "weitgasser.alex",
      "personal_statgroup_id": 5331726,
      "xp": 144,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "at"
    },
    {
      "profile_id": 4305562,
      "name": "/steam/76561198014372032",
      "alias": "捷克猎人V",
      "personal_statgroup_id": 3582934,
      "xp": 86,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 1293897,
      "name": "/steam/76561198108186659",
      "alias": "YoGZ",
      "personal_statgroup_id": 2767756,
      "xp": 35,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 10697326,
      "name": "/steam/76561199019399558",
      "alias": "escribano walter",
      "personal_statgroup_id": 6297700,
      "xp": 2,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 11132704,
      "name": "/steam/76561198050420993",
      "alias": "Kaiser",
      "personal_statgroup_id": 6176145,
      "xp": 60,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 1699689,
      "name": "/steam/76561197968049222",
      "alias": "C0Y0T3²",
      "personal_statgroup_id": 1478378,
      "xp": 272,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 4696493,
      "name": "/steam/76561199095092183",
      "alias": "完颜阿骨打",
      "personal_statgroup_id": 3837305,
      "xp": 1736,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 9913926,
      "name": "/steam/76561198833542604",
      "alias": "eg75148",
      "personal_statgroup_id": 5704813,
      "xp": 21,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 2135,
      "name": "/steam/76561197996245959",
      "alias": "Glea",
      "personal_statgroup_id": 8744,
      "xp": 370,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 429847,
      "name": "/steam/76561198000225321",
      "alias": "ReyO",
      "personal_statgroup_id": 268556,
      "xp": 1940,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 10107540,
      "name": "/steam/76561199167704287",
      "alias": "开局率先倒地,激发队友潜力",
      "personal_statgroup_id": 6272091,
      "xp": 20,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 4655864,
      "name": "/steam/76561199124875796",
      "alias": "Garçon de salon",
      "personal_statgroup_id": 3810051,
      "xp": 670,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 230528,
      "name": "/steam/76561198136838913",
      "alias": "Daniel_CZ",
      "personal_statgroup_id": 28762,
      "xp": 595,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "cz"
    },
    {
      "profile_id": 6906635,
      "name": "/steam/76561199083053695",
      "alias": "BlackBelt",
      "personal_statgroup_id": 5100905,
      "xp": 271,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 10254028,
      "name": "/steam/76561199302338666",
      "alias": "Victios",
      "personal_statgroup_id": 5864326,
      "xp": 158,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 11427846,
      "name": "/steam/76561198419548837",
      "alias": "Giga Pepe",
      "personal_statgroup_id": 6282767,
      "xp": 13,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ro"
    },
    {
      "profile_id": 11204397,
      "name": "/steam/76561198073902672",
      "alias": "robi robi chöz",
      "personal_statgroup_id": 6188054,
      "xp": 17,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 10486609,
      "name": "/steam/76561198441973024",
      "alias": "josa",
      "personal_statgroup_id": 5971535,
      "xp": 168,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 372924,
      "name": "/steam/76561198333784008",
      "alias": "Samchy",
      "personal_statgroup_id": 203092,
      "xp": 262,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "si"
    },
    {
      "profile_id": 925177,
      "name": "/steam/76561198098146755",
      "alias": "Ra-Horakhty",
      "personal_statgroup_id": 775983,
      "xp": 199,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 9441693,
      "name": "/steam/76561199217139245",
      "alias": "Harmala",
      "personal_statgroup_id": 5515302,
      "xp": 178,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "lb"
    },
    {
      "profile_id": 10835046,
      "name": "/steam/76561198186651659",
      "alias": "boom roasted",
      "personal_statgroup_id": 6120248,
      "xp": 55,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4711081,
      "name": "/xboxlive/62BFF97DCDFFC519CDB136CA884490893184C584",
      "alias": "DrkoMtko123",
      "personal_statgroup_id": 3847321,
      "xp": 18,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "si"
    },
    {
      "profile_id": 11452008,
      "name": "/steam/76561198088274013",
      "alias": "one_TAP",
      "personal_statgroup_id": 6293733,
      "xp": 7,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 2899386,
      "name": "/steam/76561198100345624",
      "alias": "Tito",
      "personal_statgroup_id": 2622972,
      "xp": 42,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4344780,
      "name": "/xboxlive/A422574FF7F28EFE6DF4FE751881742D54EDB6C8",
      "alias": "DeathSquad2240",
      "personal_statgroup_id": 3608087,
      "xp": 1612,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 503007,
      "name": "/steam/76561198032359207",
      "alias": "BobLaMenace",
      "personal_statgroup_id": 350532,
      "xp": 381,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 4318368,
      "name": "/steam/76561198301997491",
      "alias": "w.wallace4",
      "personal_statgroup_id": 3591624,
      "xp": 232,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 11312976,
      "name": "/steam/76561198306105717",
      "alias": "Wolffer",
      "personal_statgroup_id": 6232751,
      "xp": 11,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 3432757,
      "name": "/steam/76561199037747622",
      "alias": "LVRT.travelconi",
      "personal_statgroup_id": 3115767,
      "xp": 1051,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 7556133,
      "name": "/steam/76561199218290934",
      "alias": "Yondaime",
      "personal_statgroup_id": 5156021,
      "xp": 401,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11201556,
      "name": "/steam/76561197999262434",
      "alias": "Lolik",
      "personal_statgroup_id": 6187031,
      "xp": 58,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "sk"
    },
    {
      "profile_id": 4850295,
      "name": "/steam/76561198162453423",
      "alias": "chillerjk",
      "personal_statgroup_id": 4647381,
      "xp": 288,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 9345537,
      "name": "/xboxlive/0D3E6AA1C18CAB9F97B7E4BFD814C5960CEFA69A",
      "alias": "Enano444",
      "personal_statgroup_id": 6285181,
      "xp": 8,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 2393996,
      "name": "/steam/76561198274014164",
      "alias": "jacleepri023",
      "personal_statgroup_id": 2136895,
      "xp": 156,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 339891,
      "name": "/xboxlive/44B866A17B7EFD56925F9EA14532DE8A992B85FB",
      "alias": "CluffDaddy12",
      "personal_statgroup_id": 164769,
      "xp": 9,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11439287,
      "name": "/steam/76561198176062062",
      "alias": "bobericbob",
      "personal_statgroup_id": 6287737,
      "xp": 4,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11346744,
      "name": "/steam/76561197963299931",
      "alias": "Epiikka",
      "personal_statgroup_id": 6247588,
      "xp": 17,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fi"
    },
    {
      "profile_id": 5729377,
      "name": "/steam/76561198158930680",
      "alias": "ॐ ॐkrustenkäsॐ ॐ",
      "personal_statgroup_id": 4518039,
      "xp": 15,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 3886604,
      "name": "/steam/76561197988404150",
      "alias": "benediktibk",
      "personal_statgroup_id": 3319739,
      "xp": 187,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "at"
    },
    {
      "profile_id": 1729348,
      "name": "/steam/76561198910214009",
      "alias": "PietrusIV",
      "personal_statgroup_id": 1507105,
      "xp": 672,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "be"
    },
    {
      "profile_id": 633986,
      "name": "/steam/76561197961100041",
      "alias": "shiryu",
      "personal_statgroup_id": 492896,
      "xp": 3363,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 5708336,
      "name": "/steam/76561198393244942",
      "alias": "Maykoto",
      "personal_statgroup_id": 4504533,
      "xp": 699,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "pe"
    },
    {
      "profile_id": 9151072,
      "name": "/steam/76561198190304301",
      "alias": "Ursinho Brown",
      "personal_statgroup_id": 5419707,
      "xp": 184,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "br"
    },
    {
      "profile_id": 3465546,
      "name": "/steam/76561198001217675",
      "alias": "ishbara",
      "personal_statgroup_id": 3145961,
      "xp": 278,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 2987439,
      "name": "/steam/76561199039823418",
      "alias": "KENP4CHI",
      "personal_statgroup_id": 2703076,
      "xp": 268,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 4934874,
      "name": "/steam/76561198375391332",
      "alias": "BIROV",
      "personal_statgroup_id": 3995931,
      "xp": 206,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "bg"
    },
    {
      "profile_id": 11148026,
      "name": "/steam/76561199387145966",
      "alias": "653490838",
      "personal_statgroup_id": 6181405,
      "xp": 99,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "id"
    },
    {
      "profile_id": 809066,
      "name": "/steam/76561198116897437",
      "alias": "SH4FT",
      "personal_statgroup_id": 666716,
      "xp": 24,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 4926692,
      "name": "/xboxlive/AC52F9F9887A9A620A3C7FC82A2ADB33E340AC78",
      "alias": "Hxnwrk",
      "personal_statgroup_id": 3990131,
      "xp": 19,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 3429679,
      "name": "/steam/76561198318774254",
      "alias": "Wen",
      "personal_statgroup_id": 3112888,
      "xp": 21,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 1383728,
      "name": "/steam/76561199014674112",
      "alias": "Combi | Kobe",
      "personal_statgroup_id": 1173441,
      "xp": 2916,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 2950736,
      "name": "/steam/76561198446024302",
      "alias": "Lupin823",
      "personal_statgroup_id": 2669543,
      "xp": 567,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "in"
    },
    {
      "profile_id": 11369614,
      "name": "/steam/76561199166876984",
      "alias": "joeting123",
      "personal_statgroup_id": 6257487,
      "xp": 17,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "hk"
    },
    {
      "profile_id": 4317731,
      "name": "/steam/76561198078916045",
      "alias": "rodney.campbell1",
      "personal_statgroup_id": 3591196,
      "xp": 409,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 11281251,
      "name": "/steam/76561198125986376",
      "alias": "MarylinSue",
      "personal_statgroup_id": 6219233,
      "xp": 62,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2005025,
      "name": "/steam/76561199029196663",
      "alias": "Feed3",
      "personal_statgroup_id": 1773042,
      "xp": 238,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 9734444,
      "name": "/steam/76561198279378653",
      "alias": "NCB",
      "personal_statgroup_id": 5633511,
      "xp": 99,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 2763321,
      "name": "/steam/76561199024379625",
      "alias": "Alicangri",
      "personal_statgroup_id": 2493560,
      "xp": 622,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 2735685,
      "name": "/steam/76561198210578913",
      "alias": "KORAYINANC",
      "personal_statgroup_id": 2467032,
      "xp": 753,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "at"
    },
    {
      "profile_id": 11403543,
      "name": "/xboxlive/6BB0A2A4CD4ECAFAF6D5B09A11BA2F320585A28D",
      "alias": "Tatar4onok4458",
      "personal_statgroup_id": 6272122,
      "xp": 2,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11445265,
      "name": "/steam/76561198919922381",
      "alias": "kumo",
      "personal_statgroup_id": 6290384,
      "xp": 34,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 1596720,
      "name": "/steam/76561197987277684",
      "alias": "фінська",
      "personal_statgroup_id": 1378524,
      "xp": 498,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fi"
    },
    {
      "profile_id": 11324512,
      "name": "/steam/76561198949352692",
      "alias": "Ghost Thamizhan",
      "personal_statgroup_id": 6237968,
      "xp": 85,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "in"
    },
    {
      "profile_id": 489858,
      "name": "/steam/76561197989780866",
      "alias": "Juk3",
      "personal_statgroup_id": 336064,
      "xp": 2332,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 6224156,
      "name": "/steam/76561199167260957",
      "alias": "Earthquake",
      "personal_statgroup_id": 4837224,
      "xp": 23,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 11351433,
      "name": "/steam/76561198008240943",
      "alias": "kakeman",
      "personal_statgroup_id": 6249589,
      "xp": 16,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fi"
    },
    {
      "profile_id": 11456383,
      "name": "/xboxlive/C8296F8A4D24F23FB537C84CEF669FA8CE09D4F6",
      "alias": "CARTRUH",
      "personal_statgroup_id": 6295955,
      "xp": 4,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "cl"
    },
    {
      "profile_id": 11460870,
      "name": "/steam/76561198162235073",
      "alias": "Ch1c",
      "personal_statgroup_id": 6298106,
      "xp": 0,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 2586351,
      "name": "/steam/76561198858273706",
      "alias": "這個月還沒來",
      "personal_statgroup_id": 2323445,
      "xp": 51,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tw"
    },
    {
      "profile_id": 320107,
      "name": "/steam/76561198888552605",
      "alias": "sliu132",
      "personal_statgroup_id": 141169,
      "xp": 1083,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 3102482,
      "name": "/steam/76561198229093192",
      "alias": "Okaah",
      "personal_statgroup_id": 2809409,
      "xp": 71,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 4515905,
      "name": "/steam/76561199040188321",
      "alias": "Tilikoglu",
      "personal_statgroup_id": 3714521,
      "xp": 1229,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 1902577,
      "name": "/steam/76561199009311623",
      "alias": "youshang",
      "personal_statgroup_id": 1673943,
      "xp": 900,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 11460638,
      "name": "/steam/76561199416707703",
      "alias": "kononenalberto",
      "personal_statgroup_id": 6297976,
      "xp": 1,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fi"
    },
    {
      "profile_id": 5426927,
      "name": "/steam/76561198384301066",
      "alias": "Dijiboss",
      "personal_statgroup_id": 4324836,
      "xp": 902,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gr"
    },
    {
      "profile_id": 3278040,
      "name": "/steam/76561198963976908",
      "alias": "TheOutlander",
      "personal_statgroup_id": 2971242,
      "xp": 4181,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11427844,
      "name": "/steam/76561198333395309",
      "alias": "Thot Wheels",
      "personal_statgroup_id": 6282765,
      "xp": 20,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ro"
    },
    {
      "profile_id": 11238384,
      "name": "/steam/76561199141706334",
      "alias": "448480495",
      "personal_statgroup_id": 6201434,
      "xp": 62,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 559085,
      "name": "/steam/76561198342056971",
      "alias": "NuclearPasta",
      "personal_statgroup_id": 412538,
      "xp": 1962,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "ca"
    },
    {
      "profile_id": 252829,
      "name": "/steam/76561197966014985",
      "alias": "Rani",
      "personal_statgroup_id": 57101,
      "xp": 1755,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 4127423,
      "name": "/steam/76561198169111310",
      "alias": "arfan6220c",
      "personal_statgroup_id": 3463075,
      "xp": 820,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "be"
    },
    {
      "profile_id": 1948584,
      "name": "/steam/76561198061866587",
      "alias": "qsHyper",
      "personal_statgroup_id": 1718150,
      "xp": 192,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 9727766,
      "name": "/steam/76561199192398653",
      "alias": "Kritlich",
      "personal_statgroup_id": 5630950,
      "xp": 24,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2523595,
      "name": "/steam/76561199053115700",
      "alias": "APEREXUS",
      "personal_statgroup_id": 2262373,
      "xp": 315,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 1072594,
      "name": "/steam/76561197960366915",
      "alias": "Klimbim",
      "personal_statgroup_id": 920632,
      "xp": 18,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 3369945,
      "name": "/steam/76561198074034531",
      "alias": "Smoke Weed Everyday",
      "personal_statgroup_id": 3056834,
      "xp": 525,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "cl"
    },
    {
      "profile_id": 6700734,
      "name": "/steam/76561198420124970",
      "alias": "Gene Hong",
      "personal_statgroup_id": 4984691,
      "xp": 1690,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tw"
    },
    {
      "profile_id": 1716691,
      "name": "/steam/76561199007218592",
      "alias": "jadanne",
      "personal_statgroup_id": 1494874,
      "xp": 106,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 1100597,
      "name": "/steam/76561199006486406",
      "alias": "xiegcemjan",
      "personal_statgroup_id": 941446,
      "xp": 22,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4227421,
      "name": "/steam/76561197993314250",
      "alias": "Preator",
      "personal_statgroup_id": 3527606,
      "xp": 211,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 1074546,
      "name": "/steam/76561198021879155",
      "alias": ";hasdfk",
      "personal_statgroup_id": 922085,
      "xp": 918,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 9719570,
      "name": "/steam/76561199249374676",
      "alias": "mk.ismailyilmaz",
      "personal_statgroup_id": 5627912,
      "xp": 159,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 9393378,
      "name": "/steam/76561198119616719",
      "alias": "Doomhauer",
      "personal_statgroup_id": 5492200,
      "xp": 129,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 2274072,
      "name": "/steam/76561198077675700",
      "alias": "Argh",
      "personal_statgroup_id": 2021432,
      "xp": 1711,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "pl"
    },
    {
      "profile_id": 286217,
      "name": "/steam/76561198106497869",
      "alias": "Sharia4Renteria",
      "personal_statgroup_id": 99090,
      "xp": 100,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 4902114,
      "name": "/steam/76561199133986685",
      "alias": "APZz_",
      "personal_statgroup_id": 3972170,
      "xp": 1226,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "br"
    },
    {
      "profile_id": 10268239,
      "name": "/steam/76561199261743301",
      "alias": "fahrettinerdem",
      "personal_statgroup_id": 5869825,
      "xp": 19,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 3127909,
      "name": "/xboxlive/E165F63B42878F924EF2028552F901157B9A6D74",
      "alias": "Khanzerberoh",
      "personal_statgroup_id": 2833386,
      "xp": 290,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "cl"
    },
    {
      "profile_id": 11082489,
      "name": "/steam/76561199128334961",
      "alias": "brucknerjonas09",
      "personal_statgroup_id": 6173098,
      "xp": 101,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "at"
    },
    {
      "profile_id": 3116690,
      "name": "/steam/76561199075510050",
      "alias": "ThomaToThomas",
      "personal_statgroup_id": 2822766,
      "xp": 298,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 389393,
      "name": "/steam/76561198110123903",
      "alias": "MarkBondemand",
      "personal_statgroup_id": 222182,
      "xp": 59,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "dk"
    },
    {
      "profile_id": 11455395,
      "name": "/steam/76561198055574292",
      "alias": "kostratoxa",
      "personal_statgroup_id": 6295381,
      "xp": 3,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 1207946,
      "name": "/steam/76561198086576840",
      "alias": "Hasenik",
      "personal_statgroup_id": 1020542,
      "xp": 3,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 3332558,
      "name": "/steam/76561198913013894",
      "alias": "Grogrick",
      "personal_statgroup_id": 3021786,
      "xp": 117,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 11300392,
      "name": "/steam/76561199397626665",
      "alias": "Snake",
      "personal_statgroup_id": 6227303,
      "xp": 1,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fi"
    },
    {
      "profile_id": 3098388,
      "name": "/xboxlive/6D923360036C896089976436756C649541C25DAD",
      "alias": "Kolovorot7388",
      "personal_statgroup_id": 2805628,
      "xp": 745,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ua"
    },
    {
      "profile_id": 4798150,
      "name": "/steam/76561198026213314",
      "alias": "Wicket",
      "personal_statgroup_id": 3905131,
      "xp": 214,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 3304505,
      "name": "/steam/76561198817717619",
      "alias": "骚卵",
      "personal_statgroup_id": 2995562,
      "xp": 239,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 11403033,
      "name": "/steam/76561198283529934",
      "alias": "我有独特的装逼技巧",
      "personal_statgroup_id": 6271898,
      "xp": 18,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 320567,
      "name": "/steam/76561198102261200",
      "alias": "Xpenditure",
      "personal_statgroup_id": 141754,
      "xp": 69,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 8520589,
      "name": "/steam/76561199055094673",
      "alias": "aaron.gc34",
      "personal_statgroup_id": 5251452,
      "xp": 180,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "mx"
    },
    {
      "profile_id": 950197,
      "name": "/xboxlive/677BC2E2F3023893C51EA33DD623D19891F95AAF",
      "alias": "NasalDiamond990",
      "personal_statgroup_id": 801015,
      "xp": 109,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 3554046,
      "name": "/steam/76561198048387861",
      "alias": "Azaie",
      "personal_statgroup_id": 3227713,
      "xp": 29,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 3813836,
      "name": "/steam/76561197985542688",
      "alias": "AlLaN",
      "personal_statgroup_id": 3293267,
      "xp": 436,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 1048501,
      "name": "/steam/76561198068232921",
      "alias": "[AirBunny]",
      "personal_statgroup_id": 899470,
      "xp": 1089,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ch"
    },
    {
      "profile_id": 2342479,
      "name": "/steam/76561199046334208",
      "alias": "TimTam",
      "personal_statgroup_id": 2087274,
      "xp": 784,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 240022,
      "name": "/steam/76561198111257121",
      "alias": "momoca99",
      "personal_statgroup_id": 40762,
      "xp": 67,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 11455017,
      "name": "/steam/76561198800962939",
      "alias": "PIAES",
      "personal_statgroup_id": 6295175,
      "xp": 3,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 3556905,
      "name": "/steam/76561198007772616",
      "alias": "Rusty Shackleton",
      "personal_statgroup_id": 3230362,
      "xp": 466,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 3451124,
      "name": "/steam/76561199091717267",
      "alias": "hllkydl",
      "personal_statgroup_id": 3132570,
      "xp": 262,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 277791,
      "name": "/steam/76561198051682918",
      "alias": "Naranga",
      "personal_statgroup_id": 88349,
      "xp": 106,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 11422809,
      "name": "/steam/76561198394965603",
      "alias": "叫我羊駝王",
      "personal_statgroup_id": 6280544,
      "xp": 55,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tw"
    },
    {
      "profile_id": 309514,
      "name": "/steam/76561198390380850",
      "alias": "Maytox",
      "personal_statgroup_id": 128212,
      "xp": 865,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 5294539,
      "name": "/steam/76561199148970015",
      "alias": "witcherkiller",
      "personal_statgroup_id": 4232807,
      "xp": 1302,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "hu"
    },
    {
      "profile_id": 995276,
      "name": "/steam/76561198225002948",
      "alias": "Hideous Kojima",
      "personal_statgroup_id": 846199,
      "xp": 383,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4002068,
      "name": "/steam/76561198033620242",
      "alias": "Kakao",
      "personal_statgroup_id": 3375908,
      "xp": 188,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "at"
    },
    {
      "profile_id": 2471081,
      "name": "/steam/76561198951059532",
      "alias": "Ebi tempura",
      "personal_statgroup_id": 2211518,
      "xp": 1338,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "dk"
    },
    {
      "profile_id": 11402773,
      "name": "/steam/76561198039996646",
      "alias": "Godfather",
      "personal_statgroup_id": 6271810,
      "xp": 1,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 1079219,
      "name": "/xboxlive/F251739D90F80D8488703FD4DEB0839D704AAA18",
      "alias": "RuntyCybin",
      "personal_statgroup_id": 945838,
      "xp": 72,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "es"
    },
    {
      "profile_id": 927747,
      "name": "/steam/76561198417235104",
      "alias": "西班牙大西瓜",
      "personal_statgroup_id": 778551,
      "xp": 3101,
      "level": 2,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 5783431,
      "name": "/xboxlive/373B7181E66B92ED4B0039AA3E3D3B5F572C9B11",
      "alias": "Jul 20075873",
      "personal_statgroup_id": 4552511,
      "xp": 969,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "at"
    },
    {
      "profile_id": 2517119,
      "name": "/steam/76561198798645350",
      "alias": "Feijue",
      "personal_statgroup_id": 2256008,
      "xp": 444,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 9702451,
      "name": "/steam/76561199247754252",
      "alias": "bobby chamora",
      "personal_statgroup_id": 5621328,
      "xp": 0,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 2735878,
      "name": "/steam/76561199000700603",
      "alias": "Goganius",
      "personal_statgroup_id": 2467214,
      "xp": 911,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 8792105,
      "name": "/steam/76561198336100435",
      "alias": "Lerone",
      "personal_statgroup_id": 5316552,
      "xp": 81,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 3473266,
      "name": "/steam/76561199042034211",
      "alias": "pekerayberk",
      "personal_statgroup_id": 3153017,
      "xp": 55,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 11433235,
      "name": "/steam/76561198097469052",
      "alias": "DannerSwain",
      "personal_statgroup_id": 6285038,
      "xp": 5,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 1591350,
      "name": "/steam/76561198441403588",
      "alias": "tadborowski",
      "personal_statgroup_id": 1373252,
      "xp": 2917,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 5859566,
      "name": "/steam/76561199126035008",
      "alias": "Vighna RK55",
      "personal_statgroup_id": 4602181,
      "xp": 98,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "in"
    },
    {
      "profile_id": 10331416,
      "name": "/xboxlive/322A32D8352B058A8C5DDB103BE9857B9BC3CAAB",
      "alias": "P4Roberto",
      "personal_statgroup_id": 5894605,
      "xp": 160,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "br"
    },
    {
      "profile_id": 508981,
      "name": "/steam/76561198865764681",
      "alias": "ManBearPig",
      "personal_statgroup_id": 357168,
      "xp": 381,
      "level": 1,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 4659942,
      "name": "/steam/76561199125294830",
      "alias": "FQNLTR",
      "personal_statgroup_id": 3812807,
      "xp": 31,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 9078060,
      "name": "/steam/76561198072962839",
      "alias": "Othen",
      "personal_statgroup_id": 5395640,
      "xp": 52,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "tr"
    },
    {
      "profile_id": 9889937,
      "name": "/steam/76561199261032359",
      "alias": "ali.amer",
      "personal_statgroup_id": 5693042,
      "xp": 111,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "lb"
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "matches": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "steamlobbyid": {
                        "type": "integer"
                    },
                    "xboxsessionid": {
                        "type": "string"
                    },
                    "host_profile_id": {
                        "type": "integer"
                    },
                    "state": {
                        "type": "integer"
                    },
                    "description": {
                        "type": "string"
                    },
                    "visible": {
                        "type": "integer"
                    },
                    "mapname": {
                        "type": "string"
                    },
                    "options": {
                        "type": "string"
                    },
                    "passwordprotected": {
                        "type": "integer"
                    },
                    "maxplayers": {
                        "type": "integer"
                    },
                    "slotinfo": {
                        "type": "string"
                    },
                    "matchtype_id": {
                        "type": "integer"
                    },
                    "matchmembers": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "match_id": {
                                    "type": "integer"
                                },
                                "profile_id": {
                                    "type": "integer"
                                },
                                "ranking": {
                                    "type": "integer"
                                },
                                "statgroup_id": {
                                    "type": "integer"
                                },
                                "race_id": {
                                    "type": "integer"
                                },
                                "teamid": {
                                    "type": "integer"
                                }
                            },
                            "required": [
                                "match_id",
                                "profile_id",
                                "race_id",
                                "ranking",
                                "statgroup_id",
                                "teamid"
                            ]
                        }
                    },
                    "observernum": {
                        "type": "integer"
                    },
                    "observermax": {
                        "type": "integer"
                    },
                    "isobservable": {
                        "type": "integer"
                    },
                    "observerdelay": {
                        "type": "integer"
                    },
                    "hasobserverpassword": {
                        "type": "integer"
                    },
                    "servicetype": {
                        "type": "integer"
                    },
                    "relayserver_region": {
                        "type": "string"
                    }
                },
                "required": [
                    "description",
                    "hasobserverpassword",
                    "host_profile_id",
                    "id",
                    "isobservable",
                    "mapname",
                    "matchmembers",
                    "matchtype_id",
                    "maxplayers",
                    "observerdelay",
                    "observermax",
                    "observernum",
                    "options",
                    "passwordprotected",
                    "relayserver_region",
                    "servicetype",
                    "slotinfo",
                    "state",
                    "steamlobbyid",
                    "visible",
                    "xboxsessionid"
                ]
            }
        },
        "avatars": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "profile_id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "alias": {
                        "type": "string"
                    },
                    "personal_statgroup_id": {
                        "type": "integer"
                    },
                    "xp": {
                        "type": "integer"
                    },
                    "level": {
                        "type": "integer"
                    },
                    "leaderboardregion_id": {
                        "type": "integer"
                    },
                    "country": {
                        "type": "string"
                    }
                },
                "required": [
                    "alias",
                    "country",
                    "leaderboardregion_id",
                    "level",
                    "name",
                    "personal_statgroup_id",
                    "profile_id",
                    "xp"
                ]
            }
        }
    },
    "required": [
        "avatars",
        "matches",
        "result"
    ]
}

Clan Endpoints (Community)

Public endpoints for searching clans and viewing clan information without authentication.

Note: These are unauthenticated public endpoints. For authenticated clan operations (create, join, manage), see /game/clan.

Endpoints

EndpointMethodDescription
findGETSearch for clans by name or tag
getClanInfoFullGETGet detailed clan information including members

[GET] /community/clan/find

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
joinPoliciesarr[int][0,1,2]
namestr“GL
tagsarr[str][]
startint0
countint100

Response

AoE2:DE

{
    "result": {
        "code": 0,
        "message": "SUCCESS"
    },
    "clans": [
        {
            "id": 9221,
            "name": "SME",
            "fullname": "Swiss_Martial_Eagle",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 458620
        },
        {
            "id": 8254,
            "name": "GTwn",
            "fullname": "Glendorians",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 414313
        },
        {
            "id": 8771,
            "name": "SLA",
            "fullname": "Globul",
            "description": "Shockwave <3 Ari",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 438219
        },
        {
            "id": 14331,
            "name": "SSCG",
            "fullname": "SilverStarCowboyEagles",
            "description": "They fall from the sky upon you, when you least expect it. Eating the women and enslaving the men for sexual uses.",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 655385
        },
        {
            "id": 12792,
            "name": "ERS",
            "fullname": "EagleRidge",
            "description": "We are dope",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 589067
        },
        {
            "id": 9743,
            "name": "2GE",
            "fullname": "GamersGlobalElite",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 478049
        },
        {
            "id": 3365,
            "name": "VIP",
            "fullname": "LongLiuLan",
            "description": "",
            "tags": "",
            "icon": "CR-001",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 204825
        },
        {
            "id": 7161,
            "name": "MGL",
            "fullname": "Mrrggll",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 367495
        },
        {
            "id": 3913,
            "name": "NBTD",
            "fullname": "MugLife",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 224347
        },
        {
            "id": 2941,
            "name": "tada",
            "fullname": "glublque",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 183064
        },
        {
            "id": 1972,
            "name": "GLInd",
            "fullname": "GLInd",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 121314
        },
        {
            "id": 2147,
            "name": "KEKW",
            "fullname": "English",
            "description": "Clan to find people to party with. English only please!",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 131377
        },
        {
            "id": 1057,
            "name": "GLD",
            "fullname": "GoldshirePictures",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 76269
        },
        {
            "id": 11906,
            "name": "FGLVa",
            "fullname": "ValkyrieResistance",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 556528
        },
        {
            "id": 13927,
            "name": "MGLS",
            "fullname": "LESMONGOLS",
            "description": "Ma bite sur ton nez",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 636568
        },
        {
            "id": 14214,
            "name": "CHORO",
            "fullname": "CHIPAMOGLIS",
            "description": "Somos chilenos \r\rSaludos",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 651632
        },
        {
            "id": 13368,
            "name": "DNG",
            "fullname": "Donglers",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 615351
        },
        {
            "id": 918,
            "name": "OSG",
            "fullname": "OldSmuggler",
            "description": "Old Smuggler!",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 69644
        },
        {
            "id": 15157,
            "name": "Globe",
            "fullname": "Globetrotters",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 695016
        },
        {
            "id": 7732,
            "name": "ANGLO",
            "fullname": "AngloSaxons1234",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 393521
        },
        {
            "id": 10261,
            "name": "1616",
            "fullname": "zouglou",
            "description": "rerreezzezez",
            "tags": "",
            "icon": "",
            "membercount": 9,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 497597
        },
        {
            "id": 7052,
            "name": "UGX",
            "fullname": "Risk_Conglomerate",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 364863
        },
        {
            "id": 13936,
            "name": "GLMDC",
            "fullname": "GoodLifeMyDeluxe",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 4,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 637071
        },
        {
            "id": 763,
            "name": "Gloge",
            "fullname": "Gloge_isch_glei",
            "description": "serv",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 61390
        },
        {
            "id": 3808,
            "name": "LSR",
            "fullname": "La_rose_sanglante",
            "description": "La rose sanglante est un ordre de chevalerie avec des chevaliers honorable.",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 221027
        },
        {
            "id": 9507,
            "name": "Monte",
            "fullname": "Montegliones",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 467403
        },
        {
            "id": 14223,
            "name": "BIGLY",
            "fullname": "Waooswelcome",
            "description": "Kickin Ass n' Taking Names",
            "tags": "",
            "icon": "",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 652007
        },
        {
            "id": 14983,
            "name": "DGLS",
            "fullname": "DARGUELOSOS",
            "description": "EL CLAN DE LOS PRO NO DE LOS NOOBS",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 684392
        },
        {
            "id": 14746,
            "name": "Glans",
            "fullname": "Glans",
            "description": "The army of the Glans",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 675971
        },
        {
            "id": 10542,
            "name": "DDG",
            "fullname": "DieDreiGleichen",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 507335
        },
        {
            "id": 13416,
            "name": "FdrgY",
            "fullname": "FeedOrGlory",
            "description": "Amici cazzo...\rSiamo i Feed Or Glory che altra descrizione ti serve?\rInchinati e porta rispetto!!!",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 616694
        },
        {
            "id": 15084,
            "name": "INV69",
            "fullname": "BEASTHARDSGLORY",
            "description": "BASTARDI SENZA GLORIA EX SC2 ITA CLAN.\rCHECKMATE!",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 691251
        },
        {
            "id": 14277,
            "name": "GLS",
            "fullname": "Genzlandsoldaten",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 653348
        },
        {
            "id": 7588,
            "name": "glob",
            "fullname": "Glob",
            "description": "Glob.",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 384694
        },
        {
            "id": 14717,
            "name": "KöLe",
            "fullname": "KönigsbergLegacy",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 16,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 674763
        },
        {
            "id": 1875,
            "name": "Inglo",
            "fullname": "Ingloca",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 116569
        },
        {
            "id": 11045,
            "name": "CANAG",
            "fullname": "Canaglificio",
            "description": "Solo per vere canaglie!",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 526137
        },
        {
            "id": 14555,
            "name": "Mangl",
            "fullname": "Mangl",
            "description": "bona tishma",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 667590
        },
        {
            "id": 416,
            "name": "FgL",
            "fullname": "ForgottenLegends",
            "description": "Bunch of Guys who just wanna have a good time.\r[German/English]\rJoin if you wanna play some games :D\rDiscord and TS3",
            "tags": "",
            "icon": "CR-003",
            "membercount": 17,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 46937
        },
        {
            "id": 5954,
            "name": "OnlyD",
            "fullname": "OnlyDeagle",
            "description": "Only Deagle and AWP",
            "tags": "",
            "icon": "0",
            "membercount": 6,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 318085
        },
        {
            "id": 6528,
            "name": "GLU",
            "fullname": "GluGlu",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 345319
        },
        {
            "id": 5573,
            "name": "RLC",
            "fullname": "Kingsglaive",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 303602
        },
        {
            "id": 6025,
            "name": "GGL",
            "fullname": "GreaterGamersLounge",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 321296
        },
        {
            "id": 5172,
            "name": "GSGL",
            "fullname": "高速公鹿",
            "description": "特色马鹿",
            "tags": "",
            "icon": "CR-002",
            "membercount": 6,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 286305
        },
        {
            "id": 661,
            "name": "AVN",
            "fullname": "Anglerverein",
            "description": "Anglers",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 57724
        },
        {
            "id": 4915,
            "name": "DGL",
            "fullname": "DasgelobteLand",
            "description": "Wir stehen für die totale Zerstörung!!",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 275092
        },
        {
            "id": 12548,
            "name": "SCA",
            "fullname": "Gli_Scannatori",
            "description": "Bisogna scannare e basta.",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 581720
        },
        {
            "id": 13879,
            "name": "MLGA",
            "fullname": "MingLeesClan",
            "description": "",
            "tags": "",
            "icon": "CR-002",
            "membercount": 6,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 635380
        },
        {
            "id": 1885,
            "name": "GLHF",
            "fullname": "ElephantStompGG",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 116977
        },
        {
            "id": 2699,
            "name": "JKS",
            "fullname": "2Tangled",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 169460
        },
        {
            "id": 8956,
            "name": "DNGZ",
            "fullname": "DangleZone",
            "description": "Official Age of Empires II Clan for Richard Dangles",
            "tags": "",
            "icon": "CR-001",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 445476
        },
        {
            "id": 13598,
            "name": "Digl",
            "fullname": "Daigual",
            "description": "Daigual",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 622309
        },
        {
            "id": 1927,
            "name": "L2G",
            "fullname": "Lags2Glitches",
            "description": "Waiting for connection...",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 118954
        },
        {
            "id": 8971,
            "name": "GGLtv",
            "fullname": "Ladhood",
            "description": "Long live the lads",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 445828
        },
        {
            "id": 14771,
            "name": "G8L",
            "fullname": "Gluecksbaerchiland",
            "description": "Teamspeak g8l.de",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 676695
        },
        {
            "id": 4530,
            "name": "Dingl",
            "fullname": "DingleBerries",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 253368
        },
        {
            "id": 14495,
            "name": "GLE",
            "fullname": "GlassEmpire",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 663923
        },
        {
            "id": 2076,
            "name": "Dangl",
            "fullname": "JumBops",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 127532
        },
        {
            "id": 11308,
            "name": "GLORD",
            "fullname": "ElMASCAPO",
            "description": "El mascaporongas",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 534858
        },
        {
            "id": 12636,
            "name": "CGL",
            "fullname": "Crazygamers",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 583581
        },
        {
            "id": 2621,
            "name": "Rawr",
            "fullname": "BigLion",
            "description": "XD",
            "tags": "",
            "icon": "1",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 163869
        },
        {
            "id": 5219,
            "name": "Peglu",
            "fullname": "Peons",
            "description": "Une bande de noobs, avec peut-être une différence de niveau noobisme, mais à heure de jeu égales, ça se vaut ! \r\r\rSalut les G@m3rz",
            "tags": "",
            "icon": "0",
            "membercount": 5,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 289158
        },
        {
            "id": 2505,
            "name": "EGL",
            "fullname": "EmpireGamersLAN",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 4,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 154648
        },
        {
            "id": 9950,
            "name": "G4L",
            "fullname": "Global4Life",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 484592
        },
        {
            "id": 4141,
            "name": "HGLDS",
            "fullname": "Highlands",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 233484
        },
        {
            "id": 10746,
            "name": "DNGL",
            "fullname": "MRBLISTERTHESISTERFISTER",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 513666
        },
        {
            "id": 2478,
            "name": "scrnt",
            "fullname": "BingleBoppers",
            "description": "Fuck the teutons.",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 152746
        },
        {
            "id": 2992,
            "name": "NZLL",
            "fullname": "LongLink",
            "description": "NZ Longlink",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 186239
        },
        {
            "id": 4774,
            "name": "GLT",
            "fullname": "Elettodomestici",
            "description": "Ognuno nel clan deve avere un nome che raffiguri un eettrdomestico.",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 267970
        },
        {
            "id": 6677,
            "name": "Wiggl",
            "fullname": "wiggle",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 351207
        },
        {
            "id": 846,
            "name": "FGGT",
            "fullname": "Glatzen",
            "description": "Hier sind nur Glatzen.",
            "tags": "",
            "icon": "0",
            "membercount": 4,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 66878
        },
        {
            "id": 13695,
            "name": "GLC",
            "fullname": "GreenLanternCorp",
            "description": "In brightest day, in blackest night,\rNo evil shall escape my sight,\rLet those who worship evil's might,\rBeware my power, Green Lantern's light!",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 626586
        },
        {
            "id": 13179,
            "name": "Oogly",
            "fullname": "Pubert",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 605906
        },
        {
            "id": 2637,
            "name": "MAC",
            "fullname": "Global",
            "description": "",
            "tags": "",
            "icon": "CR-002",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 164888
        },
        {
            "id": 14668,
            "name": "Erz",
            "fullname": "Erzeagle",
            "description": "Open for all!",
            "tags": "",
            "icon": "0",
            "membercount": 6,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 672743
        },
        {
            "id": 3060,
            "name": "KingL",
            "fullname": "TheKingsClan",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 189397
        },
        {
            "id": 6056,
            "name": "HGL",
            "fullname": "BULL_BALL",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 322580
        },
        {
            "id": 6332,
            "name": "UdG",
            "fullname": "Underglow",
            "description": "",
            "tags": "",
            "icon": "CR-001",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 335784
        },
        {
            "id": 11480,
            "name": "GG88",
            "fullname": "GeilerGlan",
            "description": "geil",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 539585
        },
        {
            "id": 2494,
            "name": "UglyD",
            "fullname": "UglyDucklings",
            "description": "LOOK AT IT! WHY DON'T YOU JUST LOOK AT IT!!!",
            "tags": "",
            "icon": "0",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 153432
        },
        {
            "id": 1797,
            "name": "DGS",
            "fullname": "Dan_Gleesacs",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 112057
        },
        {
            "id": 2125,
            "name": "HAM",
            "fullname": "HAMBURGLARS",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 130260
        },
        {
            "id": 10839,
            "name": "DAD9",
            "fullname": "GeorgeoftheJungle",
            "description": "Dad9EsportsGamingOrg. in disguise just like certain robots... in disguise... ",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 516340
        },
        {
            "id": 8867,
            "name": "PDL",
            "fullname": "Puddinglovers",
            "description": "We Love Pudding <3\r",
            "tags": "",
            "icon": "0",
            "membercount": 2,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 441578
        },
        {
            "id": 12332,
            "name": "Baggl",
            "fullname": "BagelBoys",
            "description": "We them Bagel Boys!",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 571021
        },
        {
            "id": 15208,
            "name": "LGl",
            "fullname": "Lepenica",
            "description": "",
            "tags": "",
            "icon": "CR-001",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 696863
        },
        {
            "id": 2527,
            "name": "BMF",
            "fullname": "BagglemeFingies",
            "description": "If you like to Baggle Fingies then come on in!",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 156458
        },
        {
            "id": 8487,
            "name": "tgl",
            "fullname": "TheGameLul",
            "description": "lo siento ?",
            "tags": "",
            "icon": "CR-001",
            "membercount": 4,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 428626
        },
        {
            "id": 15053,
            "name": "LGDNB",
            "fullname": "BNDGL",
            "description": "水水水达萨达萨达是撒旦大苏打实打实打算水水水水水水水水水",
            "tags": "",
            "icon": "0",
            "membercount": 6,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 689002
        },
        {
            "id": 5011,
            "name": "dUl",
            "fullname": "dieUnsäglichen",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 2,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 279561
        },
        {
            "id": 7551,
            "name": "GLAD",
            "fullname": "GLAD",
            "description": "GLAD EPOCA DO ZONE SE GALERA DA ANTIGA VEM SO ENTRAR",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 381357
        },
        {
            "id": 5496,
            "name": "Gød",
            "fullname": "FromHonorToGlory",
            "description": "From Honor To Glory.\r\rWork hard in silence, let succes make the noise.",
            "tags": "",
            "icon": "",
            "membercount": 5,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 300108
        },
        {
            "id": 4683,
            "name": "MNGLS",
            "fullname": "Mongols",
            "description": "True Mongols",
            "tags": "",
            "icon": "CR-003",
            "membercount": 60,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 262468
        },
        {
            "id": 8007,
            "name": "WWWWM",
            "fullname": "LONGLONGMAN",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 404539
        },
        {
            "id": 2022,
            "name": "SNOW",
            "fullname": "EnglishUSA",
            "description": "Come represent the USA!",
            "tags": "",
            "icon": "",
            "membercount": 1,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 123603
        },
        {
            "id": 9175,
            "name": "MPQQ",
            "fullname": "single_push",
            "description": "my push so QQ today",
            "tags": "",
            "icon": "0",
            "membercount": 3,
            "joinpolicy": 0,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 457106
        },
        {
            "id": 2260,
            "name": "Cwamp",
            "fullname": "CyanBoglands",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 1,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 137221
        },
        {
            "id": 107,
            "name": "BuG",
            "fullname": "Besoffen_und_Glücklich",
            "description": "",
            "tags": "",
            "icon": "0",
            "membercount": 5,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 33828
        },
        {
            "id": 10165,
            "name": "DLU",
            "fullname": "DongLoversUnited",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 491233
        },
        {
            "id": 14526,
            "name": "joina",
            "fullname": "asogjoiwanglkasdg",
            "description": "",
            "tags": "",
            "icon": "",
            "membercount": 3,
            "joinpolicy": 1,
            "metadata": "",
            "messageoftheday": "",
            "statgroup_id": 666146
        }
    ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "clans": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "fullname": {
                        "type": "string"
                    },
                    "description": {
                        "type": "string"
                    },
                    "tags": {
                        "type": "string"
                    },
                    "icon": {
                        "type": "string"
                    },
                    "membercount": {
                        "type": "integer"
                    },
                    "joinpolicy": {
                        "type": "integer"
                    },
                    "metadata": {
                        "type": "string"
                    },
                    "messageoftheday": {
                        "type": "string"
                    },
                    "statgroup_id": {
                        "type": "integer"
                    }
                },
                "required": [
                    "description",
                    "fullname",
                    "icon",
                    "id",
                    "joinpolicy",
                    "membercount",
                    "messageoftheday",
                    "metadata",
                    "name",
                    "statgroup_id",
                    "tags"
                ]
            }
        }
    },
    "required": [
        "clans",
        "result"
    ]
}

[GET] /community/clan/getClanInfoFull

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
namestrgli

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "clan": {
    "id": 52618,
    "name": "gli",
    "fullname": "TheClick",
    "description": "",
    "tags": "",
    "icon": "CR-001",
    "membercount": 4,
    "joinpolicy": 0,
    "metadata": "",
    "messageoftheday": "",
    "statgroup_id": 2254028,
    "permissions": [
      {
        "rank": 1,
        "chat": 1,
        "promote": 1,
        "demote": 1,
        "invite": 1,
        "remove": 1,
        "disband": 1,
        "editinfo": 1,
        "editpermission": 1,
        "name": "Leader",
        "locstringid": -1
      },
      {
        "rank": 2,
        "chat": 1,
        "promote": 1,
        "demote": 1,
        "invite": 1,
        "remove": 1,
        "disband": 0,
        "editinfo": 0,
        "editpermission": 0,
        "name": "Officer",
        "locstringid": -1
      },
      {
        "rank": 3,
        "chat": 1,
        "promote": 0,
        "demote": 0,
        "invite": 0,
        "remove": 0,
        "disband": 0,
        "editinfo": 0,
        "editpermission": 0,
        "name": "Member",
        "locstringid": -1
      }
    ],
    "members": [
      {
        "avatar": {
          "entityversion": 15609,
          "profile_id": 238631,
          "name": "/steam/76561198114433482",
          "metadata": "{\"icon\":\"PR7-019\"}",
          "alias": "Timinator",
          "clanlist_name": "gli",
          "personal_statgroup_id": 38975,
          "xp": 622,
          "level": 1,
          "leaderboardregion_id": 3,
          "presence_id": 0,
          "presenceproperty": []
        },
        "membershipstatus": 1,
        "playerlistpermission_rank": 3
      },
      {
        "avatar": {
          "entityversion": 5612,
          "profile_id": 2107872,
          "name": "/steam/76561198125039468",
          "metadata": "{\"icon\":\"PR4-010\"}",
          "alias": "Matt Bootsma",
          "clanlist_name": "gli",
          "personal_statgroup_id": 1872571,
          "xp": 195,
          "level": 1,
          "leaderboardregion_id": 3,
          "presence_id": 0,
          "presenceproperty": []
        },
        "membershipstatus": 1,
        "playerlistpermission_rank": 3
      },
      {
        "avatar": {
          "entityversion": 7676,
          "profile_id": 2327018,
          "name": "/steam/76561198300477799",
          "metadata": "{\"icon\":\"PR7-031\"}",
          "alias": "Atashwong",
          "clanlist_name": "gli",
          "personal_statgroup_id": 2072253,
          "xp": 276,
          "level": 1,
          "leaderboardregion_id": 3,
          "presence_id": 0,
          "presenceproperty": []
        },
        "membershipstatus": 1,
        "playerlistpermission_rank": 1
      },
      {
        "avatar": {
          "entityversion": 3579,
          "profile_id": 2407155,
          "name": "/steam/76561198449514731",
          "metadata": "{\"icon\":\"PR7-033\"}",
          "alias": "ekorvee",
          "clanlist_name": "gli",
          "personal_statgroup_id": 2149677,
          "xp": 136,
          "level": 1,
          "leaderboardregion_id": 3,
          "presence_id": 0,
          "presenceproperty": []
        },
        "membershipstatus": 1,
        "playerlistpermission_rank": 3
      }
    ]
  }
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "clan": {
            "type": "object",
            "properties": {
                "id": {
                    "type": "integer"
                },
                "name": {
                    "type": "string"
                },
                "fullname": {
                    "type": "string"
                },
                "description": {
                    "type": "string"
                },
                "tags": {
                    "type": "string"
                },
                "icon": {
                    "type": "string"
                },
                "membercount": {
                    "type": "integer"
                },
                "joinpolicy": {
                    "type": "integer"
                },
                "metadata": {
                    "type": "string"
                },
                "messageoftheday": {
                    "type": "string"
                },
                "statgroup_id": {
                    "type": "integer"
                },
                "permissions": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "rank": {
                                "type": "integer"
                            },
                            "chat": {
                                "type": "integer"
                            },
                            "promote": {
                                "type": "integer"
                            },
                            "demote": {
                                "type": "integer"
                            },
                            "invite": {
                                "type": "integer"
                            },
                            "remove": {
                                "type": "integer"
                            },
                            "disband": {
                                "type": "integer"
                            },
                            "editinfo": {
                                "type": "integer"
                            },
                            "editpermission": {
                                "type": "integer"
                            },
                            "name": {
                                "type": "string"
                            },
                            "locstringid": {
                                "type": "integer"
                            }
                        },
                        "required": [
                            "chat",
                            "demote",
                            "disband",
                            "editinfo",
                            "editpermission",
                            "invite",
                            "locstringid",
                            "name",
                            "promote",
                            "rank",
                            "remove"
                        ]
                    }
                },
                "members": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "avatar": {
                                "type": "object",
                                "properties": {
                                    "entityversion": {
                                        "type": "integer"
                                    },
                                    "profile_id": {
                                        "type": "integer"
                                    },
                                    "name": {
                                        "type": "string"
                                    },
                                    "metadata": {
                                        "type": "string"
                                    },
                                    "alias": {
                                        "type": "string"
                                    },
                                    "clanlist_name": {
                                        "type": "string"
                                    },
                                    "personal_statgroup_id": {
                                        "type": "integer"
                                    },
                                    "xp": {
                                        "type": "integer"
                                    },
                                    "level": {
                                        "type": "integer"
                                    },
                                    "leaderboardregion_id": {
                                        "type": "integer"
                                    },
                                    "presence_id": {
                                        "type": "integer"
                                    },
                                    "presenceproperty": {
                                        "type": "array"
                                    }
                                },
                                "required": [
                                    "alias",
                                    "clanlist_name",
                                    "entityversion",
                                    "leaderboardregion_id",
                                    "level",
                                    "metadata",
                                    "name",
                                    "personal_statgroup_id",
                                    "presence_id",
                                    "presenceproperty",
                                    "profile_id",
                                    "xp"
                                ]
                            },
                            "membershipstatus": {
                                "type": "integer"
                            },
                            "playerlistpermission_rank": {
                                "type": "integer"
                            }
                        },
                        "required": [
                            "avatar",
                            "membershipstatus",
                            "playerlistpermission_rank"
                        ]
                    }
                }
            },
            "required": [
                "description",
                "fullname",
                "icon",
                "id",
                "joinpolicy",
                "membercount",
                "members",
                "messageoftheday",
                "metadata",
                "name",
                "permissions",
                "statgroup_id",
                "tags"
            ]
        }
    },
    "required": [
        "clan",
        "result"
    ]
}

Community Event Endpoints (Community)

Public endpoints for querying community events without authentication.

Note: This is an unauthenticated public endpoint. For authenticated event operations (progress tracking), see /game/communityevent.

Endpoints

EndpointMethodDescription
getAvailableCommunityEventsGETGet all active community events

[GET] /community/CommunityEvent/getAvailableCommunityEvents

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "communityEvents": []
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "communityEvents": {
            "type": "array"
        }
    },
    "required": [
        "communityEvents",
        "result"
    ]
}

External Endpoints

Public endpoints for accessing external service data through the WorldsEdgeLink proxy.

Endpoints

EndpointMethodDescription
proxySteamUserRequestGETProxy requests to Steam API (get player summaries, avatars, country)

[GET] /community/external/proxysteamuserrequest

Example request

Request

parametertypevaluecomments
profile_namesarray[str]e.g. [“/steam/<steam_id>”]
requeststre.g. “/ISteamUser/GetPlayerSummaries/v0002/”

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "avatars": [
    {
      "profile_id": 209525,
      "name": "/steam/76561197995781128",
      "alias": "aoe2companion.com",
      "personal_statgroup_id": 2818,
      "xp": 416,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    }
  ],
  "steamResults": {
    "response": {
      "players": [
        {
          "steamid": "76561197995781128",
          "communityvisibilitystate": 3,
          "profilestate": 1,
          "personaname": "aoe2companion.com",
          "commentpermission": 1,
          "profileurl": "https://steamcommunity.com/profiles/76561197995781128/",
          "avatar": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/15/15b212855bc63aa40651d31a5239a9285751cf56.jpg",
          "avatarmedium": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/15/15b212855bc63aa40651d31a5239a9285751cf56_medium.jpg",
          "avatarfull": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/15/15b212855bc63aa40651d31a5239a9285751cf56_full.jpg",
          "avatarhash": "15b212855bc63aa40651d31a5239a9285751cf56",
          "personastate": 0,
          "realname": "Baal",
          "primaryclanid": "103582791434874752",
          "timecreated": 1200164646,
          "personastateflags": 0,
          "loccountrycode": "DE"           // country
        }
      ]
    }
  }
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "avatars": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "profile_id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "alias": {
                        "type": "string"
                    },
                    "personal_statgroup_id": {
                        "type": "integer"
                    },
                    "xp": {
                        "type": "integer"
                    },
                    "level": {
                        "type": "integer"
                    },
                    "leaderboardregion_id": {
                        "type": "integer"
                    },
                    "country": {
                        "type": "string"
                    }
                },
                "required": [
                    "alias",
                    "country",
                    "leaderboardregion_id",
                    "level",
                    "name",
                    "personal_statgroup_id",
                    "profile_id",
                    "xp"
                ]
            }
        },
        "steamResults": {
            "type": "object",
            "properties": {
                "response": {
                    "type": "object",
                    "properties": {
                        "players": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "steamid": {
                                        "type": "string"
                                    },
                                    "communityvisibilitystate": {
                                        "type": "integer"
                                    },
                                    "profilestate": {
                                        "type": "integer"
                                    },
                                    "personaname": {
                                        "type": "string"
                                    },
                                    "commentpermission": {
                                        "type": "integer"
                                    },
                                    "profileurl": {
                                        "type": "string"
                                    },
                                    "avatar": {
                                        "type": "string"
                                    },
                                    "avatarmedium": {
                                        "type": "string"
                                    },
                                    "avatarfull": {
                                        "type": "string"
                                    },
                                    "avatarhash": {
                                        "type": "string"
                                    },
                                    "personastate": {
                                        "type": "integer"
                                    },
                                    "realname": {
                                        "type": "string"
                                    },
                                    "primaryclanid": {
                                        "type": "string"
                                    },
                                    "timecreated": {
                                        "type": "integer"
                                    },
                                    "personastateflags": {
                                        "type": "integer"
                                    },
                                    "loccountrycode": {
                                        "type": "string"
                                    }
                                },
                                "required": [
                                    "avatar",
                                    "avatarfull",
                                    "avatarhash",
                                    "avatarmedium",
                                    "commentpermission",
                                    "communityvisibilitystate",
                                    "loccountrycode",
                                    "personaname",
                                    "personastate",
                                    "personastateflags",
                                    "primaryclanid",
                                    "profilestate",
                                    "profileurl",
                                    "realname",
                                    "steamid",
                                    "timecreated"
                                ]
                            }
                        }
                    },
                    "required": [
                        "players"
                    ]
                }
            },
            "required": [
                "response"
            ]
        }
    },
    "required": [
        "avatars",
        "result",
        "steamResults"
    ]
}

Item Endpoints (Community)

Public endpoints for viewing player inventories without authentication.

Note: This is an unauthenticated public endpoint. For authenticated item operations (manage, equip, purchase), see /game/item.

Endpoints

EndpointMethodDescription
getInventoryByProfileIDsGETGet inventory items for specified players

[GET] /community/item/getInventoryByProfileIDs

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profileidsarr[int][196240]

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "itemInstancesByProfileID": [
    {
      "\"196240\"": []
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "itemInstancesByProfileID": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "\"196240\"": {
                        "type": "array"
                    }
                },
                "required": [
                    "\"196240\""
                ]
            }
        }
    },
    "required": [
        "itemInstancesByProfileID",
        "result"
    ]
}

Leaderboard Endpoints (Community)

Public endpoints for querying leaderboards, player statistics, and match history without authentication. These are the most commonly used endpoints for third-party tools and websites.

Note: These are unauthenticated public endpoints. For authenticated leaderboard operations, see /game/leaderboard.

Endpoints

EndpointMethodDescription
getAvailableLeaderboardsGETGet list of available leaderboards with metadata
getLeaderBoard2GETGet leaderboard rankings with player stats
getPersonalStatGETGet a player’s statistics across all leaderboards
getAvatarStatForProfileGETGet avatar/profile stats for a player
getRecentMatchHistoryGETGet a player’s recent match history

[GET] /community/leaderboard/GetAvailableLeaderboards (Definitions, Translations)

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "leaderboards": [
    {
      "id": 1,
      "name": "SOLO_DM_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 2,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 60,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    },
    {
      "id": 2,
      "name": "TEAM_DM_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 3,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 4,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 5,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 61,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    },
    {
      "id": 3,
      "name": "SOLO_RM_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 6,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    },
    {
      "id": 4,
      "name": "TEAM_RM_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 7,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 8,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 9,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    },
    {
      "id": 5,
      "name": "SOLO_BR_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 10,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    },
    {
      "id": 13,
      "name": "SOLO_EW_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 26,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    },
    {
      "id": 14,
      "name": "TEAM_EW_RANKED",
      "isranked": 1,
      "leaderboardmap": [
        {
          "matchtype_id": 27,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 28,
          "statgroup_type": 1,
          "race_id": -1
        },
        {
          "matchtype_id": 29,
          "statgroup_type": 1,
          "race_id": -1
        }
      ]
    }
  ],
  "matchTypes": [
    {
      "id": 2,
      "name": "1V1",
      "locstringid": -1
    },
    {
      "id": 3,
      "name": "2V2",
      "locstringid": -1
    },
    {
      "id": 4,
      "name": "3V3",
      "locstringid": -1
    },
    {
      "id": 5,
      "name": "4V4",
      "locstringid": -1
    },
    {
      "id": 6,
      "name": "1V1",
      "locstringid": -1
    },
    {
      "id": 7,
      "name": "2V2",
      "locstringid": -1
    },
    {
      "id": 8,
      "name": "3V3",
      "locstringid": -1
    },
    {
      "id": 9,
      "name": "4V4",
      "locstringid": -1
    },
    {
      "id": 10,
      "name": "FFA",
      "locstringid": -1
    },
    {
      "id": 26,
      "name": "1V1",
      "locstringid": -1
    },
    {
      "id": 27,
      "name": "2V2",
      "locstringid": -1
    },
    {
      "id": 28,
      "name": "3V3",
      "locstringid": -1
    },
    {
      "id": 29,
      "name": "4V4",
      "locstringid": -1
    },
    {
      "id": 60,
      "name": "CUSTOM_DM_1v1",
      "locstringid": -1
    },
    {
      "id": 61,
      "name": "CUSTOM_DM_TEAM",
      "locstringid": -1
    }
  ],
  "races": [
    {
      "id": 0,
      "name": "Aztec",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 1,
      "name": "Berbers",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 2,
      "name": "Britons",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 3,
      "name": "Bulgarians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 4,
      "name": "Burmese",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 5,
      "name": "Byzantines",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 6,
      "name": "Celts",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 7,
      "name": "Chinese",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 8,
      "name": "Cumans",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 9,
      "name": "Ethiopians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 10,
      "name": "Franks",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 11,
      "name": "Goths",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 12,
      "name": "Huns",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 13,
      "name": "Incas",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 14,
      "name": "Hindustanis",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 15,
      "name": "Italians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 16,
      "name": "Japanese",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 17,
      "name": "Khmer",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 18,
      "name": "Koreans",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 19,
      "name": "Lithuanians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 20,
      "name": "Magyars",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 21,
      "name": "Malay",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 22,
      "name": "Malians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 23,
      "name": "Mayans",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 24,
      "name": "Mongols",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 25,
      "name": "Persians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 26,
      "name": "Portuguese",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 27,
      "name": "Saracens",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 28,
      "name": "Slavs",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 29,
      "name": "Spanish",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 30,
      "name": "Tatars",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 31,
      "name": "Teutons",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 32,
      "name": "Turks",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 33,
      "name": "Vietnamese",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 34,
      "name": "Vikings",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 35,
      "name": "Burgundians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 36,
      "name": "Sicilians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 37,
      "name": "Poles",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 38,
      "name": "Bohemians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 39,
      "name": "Bengalis",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 40,
      "name": "Dravidians",
      "faction_id": 0,
      "locstringid": -1
    },
    {
      "id": 41,
      "name": "Gurjaras",
      "faction_id": 0,
      "locstringid": -1
    }
  ],
  "factions": [],
  "leaderboardRegions": [
    {
      "id": 0,
      "name": "Europe",
      "locstringid": -1
    },
    {
      "id": 1,
      "name": "Middle East",
      "locstringid": -1
    },
    {
      "id": 2,
      "name": "Asia",
      "locstringid": -1
    },
    {
      "id": 3,
      "name": "North America",
      "locstringid": -1
    },
    {
      "id": 4,
      "name": "South America",
      "locstringid": -1
    },
    {
      "id": 5,
      "name": "Oceania",
      "locstringid": -1
    },
    {
      "id": 6,
      "name": "Africa",
      "locstringid": -1
    },
    {
      "id": 7,
      "name": "Unknown",
      "locstringid": -1
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "leaderboards": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "isranked": {
                        "type": "integer"
                    },
                    "leaderboardmap": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "matchtype_id": {
                                    "type": "integer"
                                },
                                "statgroup_type": {
                                    "type": "integer"
                                },
                                "race_id": {
                                    "type": "integer"
                                }
                            },
                            "required": [
                                "matchtype_id",
                                "race_id",
                                "statgroup_type"
                            ]
                        }
                    }
                },
                "required": [
                    "id",
                    "isranked",
                    "leaderboardmap",
                    "name"
                ]
            }
        },
        "matchTypes": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "locstringid": {
                        "type": "integer"
                    }
                },
                "required": [
                    "id",
                    "locstringid",
                    "name"
                ]
            }
        },
        "races": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "faction_id": {
                        "type": "integer"
                    },
                    "locstringid": {
                        "type": "integer"
                    }
                },
                "required": [
                    "faction_id",
                    "id",
                    "locstringid",
                    "name"
                ]
            }
        },
        "factions": {
            "type": "array"
        },
        "leaderboardRegions": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "locstringid": {
                        "type": "integer"
                    }
                },
                "required": [
                    "id",
                    "locstringid",
                    "name"
                ]
            }
        }
    },
    "required": [
        "factions",
        "leaderboardRegions",
        "leaderboards",
        "matchTypes",
        "races",
        "result"
    ]
}

[GET] /community/leaderboard/GetAvatarStatForProfile

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profile_namesarray[str]e.g. [“/steam/<steam_id>”]

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "avatarStatsForProfile": [
    {
      "profile_id": 196240,
      "avatarstat_id": 1,
      "value": 1845,
      "lastupdated": 1664821730
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2,
      "value": 2257,
      "lastupdated": 1664824306
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 3,
      "value": 102,
      "lastupdated": 1664543322
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 4,
      "value": 115,
      "lastupdated": 1662126936
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 5,
      "value": 73,
      "lastupdated": 1664375288
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 6,
      "value": 78,
      "lastupdated": 1661174868
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 7,
      "value": 65,
      "lastupdated": 1664805235
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 8,
      "value": 86,
      "lastupdated": 1664738137
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 9,
      "value": 41,
      "lastupdated": 1663857093
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 10,
      "value": 70,
      "lastupdated": 1664801959
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 11,
      "value": 93,
      "lastupdated": 1664550298
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 12,
      "value": 53,
      "lastupdated": 1664800693
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 13,
      "value": 84,
      "lastupdated": 1664821730
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 14,
      "value": 101,
      "lastupdated": 1662646374
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 15,
      "value": 54,
      "lastupdated": 1656451684
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 16,
      "value": 61,
      "lastupdated": 1663678517
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 17,
      "value": 71,
      "lastupdated": 1663512692
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 18,
      "value": 79,
      "lastupdated": 1664032978
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 19,
      "value": 116,
      "lastupdated": 1663511055
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 20,
      "value": 70,
      "lastupdated": 1663777500
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 21,
      "value": 60,
      "lastupdated": 1664741757
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 22,
      "value": 64,
      "lastupdated": 1664025968
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 23,
      "value": 50,
      "lastupdated": 1662991895
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 24,
      "value": 84,
      "lastupdated": 1657667959
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 25,
      "value": 57,
      "lastupdated": 1664553540
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 26,
      "value": 66,
      "lastupdated": 1654257725
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 27,
      "value": 65,
      "lastupdated": 1664803870
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 28,
      "value": 60,
      "lastupdated": 1658353231
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 29,
      "value": 70,
      "lastupdated": 1662648662
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 30,
      "value": 131,
      "lastupdated": 1663515910
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 31,
      "value": 66,
      "lastupdated": 1664740068
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 32,
      "value": 44,
      "lastupdated": 1664555928
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 33,
      "value": 60,
      "lastupdated": 1659956167
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 34,
      "value": 53,
      "lastupdated": 1663681533
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 35,
      "value": 119,
      "lastupdated": 1663425497
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 36,
      "value": 103,
      "lastupdated": 1659984820
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 37,
      "value": 87,
      "lastupdated": 1661359315
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 38,
      "value": 1181,
      "lastupdated": 1664821730
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 39,
      "value": 71867,
      "lastupdated": 1644600017
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 40,
      "value": 63196,
      "lastupdated": 1590445116
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 41,
      "value": 54056,
      "lastupdated": 1601508247
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 42,
      "value": 7088,
      "lastupdated": 1587672760
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 43,
      "value": 1820,
      "lastupdated": 1645994407
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 44,
      "value": 587315,
      "lastupdated": 1666350780
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 45,
      "value": 492834,
      "lastupdated": 1666277546
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 46,
      "value": 3788,
      "lastupdated": 1664824306
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 47,
      "value": 33564,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 48,
      "value": 23147,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 49,
      "value": 22,
      "lastupdated": 1642699546
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 50,
      "value": 6986,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 51,
      "value": 112,
      "lastupdated": 1613239790
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 52,
      "value": 1341,
      "lastupdated": 1664821714
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 53,
      "value": 6914,
      "lastupdated": 1664823296
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 54,
      "value": 19473,
      "lastupdated": 1664807649
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 55,
      "value": 265,
      "lastupdated": 1660311031
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 56,
      "value": 7487,
      "lastupdated": 1664821724
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 57,
      "value": 2292,
      "lastupdated": 1664821434
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 59,
      "value": 575,
      "lastupdated": 1666378996
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 60,
      "value": 2964,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 61,
      "value": 2655,
      "lastupdated": 1666272605
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 63,
      "value": 304,
      "lastupdated": 1663765422
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 64,
      "value": 28,
      "lastupdated": 1579635385
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 65,
      "value": 9,
      "lastupdated": 1662832252
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 69,
      "value": 219,
      "lastupdated": 1664736518
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 70,
      "value": 242,
      "lastupdated": 1664741757
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 71,
      "value": 104,
      "lastupdated": 1658518183
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 72,
      "value": 185,
      "lastupdated": 1664805235
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 73,
      "value": 109,
      "lastupdated": 1663854494
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 74,
      "value": 117,
      "lastupdated": 1662653204
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 75,
      "value": 93,
      "lastupdated": 1664803871
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 76,
      "value": 163,
      "lastupdated": 1664800693
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 77,
      "value": 136,
      "lastupdated": 1663683543
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 78,
      "value": 89,
      "lastupdated": 1662917253
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 79,
      "value": 134,
      "lastupdated": 1660931004
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 80,
      "value": 206,
      "lastupdated": 1664802710
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 81,
      "value": 128,
      "lastupdated": 1664555928
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 82,
      "value": 99,
      "lastupdated": 1664032978
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 83,
      "value": 130,
      "lastupdated": 1664024426
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 84,
      "value": 137,
      "lastupdated": 1664733092
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 85,
      "value": 141,
      "lastupdated": 1660938017
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 86,
      "value": 76,
      "lastupdated": 1663854494
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 87,
      "value": 103,
      "lastupdated": 1664550298
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 88,
      "value": 121,
      "lastupdated": 1664379013
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 89,
      "value": 119,
      "lastupdated": 1663858737
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 90,
      "value": 102,
      "lastupdated": 1662832252
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 91,
      "value": 137,
      "lastupdated": 1663857094
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 92,
      "value": 87,
      "lastupdated": 1663434463
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 93,
      "value": 137,
      "lastupdated": 1664738137
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 94,
      "value": 101,
      "lastupdated": 1663858737
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 95,
      "value": 103,
      "lastupdated": 1663766872
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 96,
      "value": 155,
      "lastupdated": 1664740068
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 97,
      "value": 78,
      "lastupdated": 1664461568
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 98,
      "value": 94,
      "lastupdated": 1664801959
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 99,
      "value": 93,
      "lastupdated": 1664821730
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 100,
      "value": 106,
      "lastupdated": 1664460137
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 101,
      "value": 140,
      "lastupdated": 1663777500
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 102,
      "value": 149,
      "lastupdated": 1662733102
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 103,
      "value": 144,
      "lastupdated": 1663857094
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 104,
      "value": 1202,
      "lastupdated": 1637176716
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 105,
      "value": 2715,
      "lastupdated": 1590445123
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 106,
      "value": 2362,
      "lastupdated": 1586542566
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 107,
      "value": 83,
      "lastupdated": 1574360632
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 108,
      "value": 298,
      "lastupdated": 1573492938
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 109,
      "value": 190,
      "lastupdated": 1579445688
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 111,
      "value": 8636,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 142,
      "value": 3778,
      "lastupdated": 1666378971
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 143,
      "value": 461,
      "lastupdated": 1666378971
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 144,
      "value": 193,
      "lastupdated": 1663432615
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 153,
      "value": 5091,
      "lastupdated": 1664824266
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 154,
      "value": 329,
      "lastupdated": 1643651869
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 155,
      "value": 187075,
      "lastupdated": 1666350745
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 156,
      "value": 3252,
      "lastupdated": 1664824322
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 157,
      "value": 128,
      "lastupdated": 1634149885
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 158,
      "value": 263483,
      "lastupdated": 1645986873
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 159,
      "value": 14347,
      "lastupdated": 1662410427
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 160,
      "value": 512,
      "lastupdated": 1625324434
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 163,
      "value": 7,
      "lastupdated": 1621498349
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 165,
      "value": 78,
      "lastupdated": 1666378997
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 166,
      "value": 1478,
      "lastupdated": 1666378997
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 167,
      "value": 33,
      "lastupdated": 1666378997
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 168,
      "value": 3369,
      "lastupdated": 1625397812
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 169,
      "value": 639,
      "lastupdated": 1625320810
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 170,
      "value": 10,
      "lastupdated": 1619796153
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 171,
      "value": 659,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 172,
      "value": 84009,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 173,
      "value": 2967,
      "lastupdated": 1664824307
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 174,
      "value": 36,
      "lastupdated": 1657733209
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 175,
      "value": 26,
      "lastupdated": 1664468459
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 176,
      "value": 40,
      "lastupdated": 1664031535
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 177,
      "value": 61,
      "lastupdated": 1663858737
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 184,
      "value": 19,
      "lastupdated": 1664031535
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 185,
      "value": 24,
      "lastupdated": 1664733092
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 186,
      "value": 18,
      "lastupdated": 1663254117
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 187,
      "value": 35,
      "lastupdated": 1663690703
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 194,
      "value": 62604,
      "lastupdated": 1664031524
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 195,
      "value": 22,
      "lastupdated": 1664736518
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 196,
      "value": 18,
      "lastupdated": 1664802710
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 197,
      "value": 14,
      "lastupdated": 1661961561
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 198,
      "value": 1,
      "lastupdated": 1662392675
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 199,
      "value": 3,
      "lastupdated": 1664282542
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 200,
      "value": 9,
      "lastupdated": 1663777500
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 1001,
      "value": 37035,
      "lastupdated": 1595964196
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 1002,
      "value": 37035,
      "lastupdated": 1595964196
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 1003,
      "value": 60636,
      "lastupdated": 1601427762
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 1004,
      "value": 13311,
      "lastupdated": 1601558744
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2060,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2061,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2067,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2068,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2069,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2070,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2071,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2072,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2073,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2074,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2075,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2076,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2077,
      "value": 13,
      "lastupdated": 1633525772
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2078,
      "value": 13,
      "lastupdated": 1633533992
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2079,
      "value": 13,
      "lastupdated": 1633535824
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2080,
      "value": 13,
      "lastupdated": 1635011490
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2081,
      "value": 13,
      "lastupdated": 1635013888
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2082,
      "value": 13,
      "lastupdated": 1635016045
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2083,
      "value": 13,
      "lastupdated": 1635019436
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2202,
      "value": 13,
      "lastupdated": 1642689852
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2203,
      "value": 13,
      "lastupdated": 1642693452
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2204,
      "value": 13,
      "lastupdated": 1642694869
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2205,
      "value": 13,
      "lastupdated": 1642696112
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2206,
      "value": 13,
      "lastupdated": 1642698041
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2207,
      "value": 13,
      "lastupdated": 1642699547
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2235,
      "value": 13,
      "lastupdated": 1659964477
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2236,
      "value": 13,
      "lastupdated": 1659968663
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2237,
      "value": 13,
      "lastupdated": 1662133529
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2238,
      "value": 13,
      "lastupdated": 1662917253
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2239,
      "value": 13,
      "lastupdated": 1663434463
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2245,
      "value": 13,
      "lastupdated": 1657565991
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2246,
      "value": 13,
      "lastupdated": 1657568908
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2247,
      "value": 13,
      "lastupdated": 1657570526
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2248,
      "value": 13,
      "lastupdated": 1657572368
    },
    {
      "profile_id": 196240,
      "avatarstat_id": 2249,
      "value": 13,
      "lastupdated": 1657574769
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "avatarStatsForProfile": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "profile_id": {
                        "type": "integer"
                    },
                    "avatarstat_id": {
                        "type": "integer"
                    },
                    "value": {
                        "type": "integer"
                    },
                    "lastupdated": {
                        "type": "integer"
                    }
                },
                "required": [
                    "avatarstat_id",
                    "lastupdated",
                    "profile_id",
                    "value"
                ]
            }
        }
    },
    "required": [
        "avatarStatsForProfile",
        "result"
    ]
}

[GET] /community/leaderboard/getLeaderBoard2

Example request

Request

parametertypevaluecomments
leaderboard_idint3
platformstr/enumPC_STEAM
titlestr/enumage1, age2, age3, age4
sortByint1```
sortBy=0
:= sorts by absolute number of wins,
sortBy=1
| start | int | 1 |  |
| count | int | 200 |  |

## Response
### AoE2:DE

{ “result”: { “code”: 0, “message”: “SUCCESS” }, “statGroups”: [ { “id”: 4120710, “name”: “”, “type”: 1, “members”: [ { “profile_id”: 5123311, “name”: “/steam/76561199142950174”, “alias”: “[MoA]Beiçola”, “personal_statgroup_id”: 4120710, “xp”: 407, “level”: 1, “leaderboardregion_id”: 4, “country”: “br” } ] }, { “id”: 6153140, “name”: “”, “type”: 1, “members”: [ { “profile_id”: 10960083, “name”: “/steam/76561199385029768”, “alias”: “Moonlight”, “personal_statgroup_id”: 6153140, “xp”: 235, “level”: 1, “leaderboardregion_id”: 0, “country”: “it” } ] }, { “id”: 4961990, “name”: “”, “type”: 1, “members”: [ { “profile_id”: 6440047, “name”: “/steam/76561198067238361”, “alias”: “CL.Blackheart”, “personal_statgroup_id”: 4961990, “xp”: 890, “level”: 1, “leaderboardregion_id”: 0, “country”: “de” } ] }, { “id”: 3381111, “name”: “”, “type”: 1, “members”: [ { “profile_id”: 4012008, “name”: “/steam/76561198294644972”, “alias”: “chaos_2_win”, “personal_statgroup_id”: 3381111, “xp”: 2718, “level”: 2, “leaderboardregion_id”: 0, “country”: “de” } ] }, { “id”: 6263359, “name”: “”, “type”: 1, “members”: [ { “profile_id”: 11383502, “name”: “/steam/76561199405610404”, “alias”: “给那个”, “personal_statgroup_id”: 6263359, “xp”: 13, “level”: 1, “leaderboardregion_id”: 5, “country”: “au” } ] }, { “id”: 10777, “name”: “”, “type”: 1, “members”: [ { “profile_id”: 215963, “name”: “/steam/76561197960609427”, “alias”: “[o.p.]fatman”, “personal_statgroup_id”: 10777, “xp”: 2160, “level”: 2, “leaderboardregion_id”: 0, “country”: “de” } ] }, ], “leaderboardStats”: [ { “statgroup_id”: 527797, “leaderboard_id”: 3, “wins”: 1427, “losses”: 851, “streak”: 2, “disputes”: 0, “drops”: 10, “rank”: 1, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2646, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1666299350 }, { “statgroup_id”: 1492, “leaderboard_id”: 3, “wins”: 1696, “losses”: 873, “streak”: 3, “disputes”: 0, “drops”: 10, “rank”: 2, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2617, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1666113105 }, { “statgroup_id”: 200, “leaderboard_id”: 3, “wins”: 910, “losses”: 477, “streak”: 5, “disputes”: 0, “drops”: 4, “rank”: 3, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2602, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1664555924 }, { “statgroup_id”: 173507, “leaderboard_id”: 3, “wins”: 2154, “losses”: 973, “streak”: 3, “disputes”: 0, “drops”: 40, “rank”: 4, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2594, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1665298806 }, { “statgroup_id”: 1137, “leaderboard_id”: 3, “wins”: 999, “losses”: 378, “streak”: 3, “disputes”: 0, “drops”: 8, “rank”: 5, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2591, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1665956337 }, { “statgroup_id”: 297, “leaderboard_id”: 3, “wins”: 2161, “losses”: 947, “streak”: 8, “disputes”: 0, “drops”: 17, “rank”: 6, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2587, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1665145236 }, { “statgroup_id”: 273, “leaderboard_id”: 3, “wins”: 1170, “losses”: 685, “streak”: 2, “disputes”: 0, “drops”: 18, “rank”: 7, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2585, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1665861387 }, { “statgroup_id”: 1855428, “leaderboard_id”: 3, “wins”: 1254, “losses”: 927, “streak”: 2, “disputes”: 0, “drops”: 12, “rank”: 8, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2584, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1666289097 }, { “statgroup_id”: 55127, “leaderboard_id”: 3, “wins”: 2541, “losses”: 1039, “streak”: 5, “disputes”: 0, “drops”: 90, “rank”: 9, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2583, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1666217850 }, { “statgroup_id”: 5840698, “leaderboard_id”: 3, “wins”: 192, “losses”: 65, “streak”: 4, “disputes”: 0, “drops”: 3, “rank”: 10, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2571, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1665838700 }, { “statgroup_id”: 6835, “leaderboard_id”: 3, “wins”: 589, “losses”: 262, “streak”: 10, “disputes”: 0, “drops”: 6, “rank”: 11, “ranktotal”: 39023, “ranklevel”: 1, “rating”: 2565, “regionrank”: -1, “regionranktotal”: -1, “lastmatchdate”: 1664756820 }, ], “rankTotal”: 39023 }

{ “$schema”: “http://json-schema.org/schema#”, “type”: “object”, “properties”: { “result”: { “type”: “object”, “properties”: { “code”: { “type”: “integer” }, “message”: { “type”: “string” } }, “required”: [ “code”, “message” ] }, “statGroups”: { “type”: “array”, “items”: { “type”: “object”, “properties”: { “id”: { “type”: “integer” }, “name”: { “type”: “string” }, “type”: { “type”: “integer” }, “members”: { “type”: “array”, “items”: { “type”: “object”, “properties”: { “profile_id”: { “type”: “integer” }, “name”: { “type”: “string” }, “alias”: { “type”: “string” }, “personal_statgroup_id”: { “type”: “integer” }, “xp”: { “type”: “integer” }, “level”: { “type”: “integer” }, “leaderboardregion_id”: { “type”: “integer” }, “country”: { “type”: “string” } }, “required”: [ “alias”, “country”, “leaderboardregion_id”, “level”, “name”, “personal_statgroup_id”, “profile_id”, “xp” ] } } }, “required”: [ “id”, “members”, “name”, “type” ] } }, “leaderboardStats”: { “type”: “array”, “items”: { “type”: “object”, “properties”: { “statgroup_id”: { “type”: “integer” }, “leaderboard_id”: { “type”: “integer” }, “wins”: { “type”: “integer” }, “losses”: { “type”: “integer” }, “streak”: { “type”: “integer” }, “disputes”: { “type”: “integer” }, “drops”: { “type”: “integer” }, “rank”: { “type”: “integer” }, “ranktotal”: { “type”: “integer” }, “ranklevel”: { “type”: “integer” }, “rating”: { “type”: “integer” }, “regionrank”: { “type”: “integer” }, “regionranktotal”: { “type”: “integer” }, “lastmatchdate”: { “type”: “integer” } }, “required”: [ “disputes”, “drops”, “lastmatchdate”, “leaderboard_id”, “losses”, “rank”, “ranklevel”, “ranktotal”, “rating”, “regionrank”, “regionranktotal”, “statgroup_id”, “streak”, “wins” ] } }, “rankTotal”: { “type”: “integer” } }, “required”: [ “leaderboardStats”, “rankTotal”, “result”, “statGroups” ] }

[GET] /community/leaderboard/GetPersonalStat

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profile_namesarray[str]e.g. [“/steam/<steam_id>”]
aliasesarray[str][BlackRock]

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "statGroups": [
    {
      "id": 200,
      "name": "",
      "type": 1,
      "members": [
        {
          "profile_id": 196240,
          "name": "/steam/76561197984749679",
          "alias": "GL.TheViper",
          "personal_statgroup_id": 200,
          "xp": 3091,
          "level": 2,
          "leaderboardregion_id": 0,
          "country": "de"
        }
      ]
    }
  ],
  "leaderboardStats": [
    {
      "statgroup_id": 200,
      "leaderboard_id": 3,
      "wins": 910,
      "losses": 477,
      "streak": 5,
      "disputes": 0,
      "drops": 4,
      "rank": 3,
      "ranktotal": 39023,
      "ranklevel": 1,
      "rating": 2602,
      "regionrank": 3,
      "regionranktotal": 15933,
      "lastmatchdate": 1664555924
    },
    {
      "statgroup_id": 200,
      "leaderboard_id": 4,
      "wins": 119,
      "losses": 35,
      "streak": -1,
      "disputes": 0,
      "drops": 10,
      "rank": -1,
      "ranktotal": 62599,
      "ranklevel": 0,
      "rating": 1443,
      "regionrank": -1,
      "regionranktotal": 25154,
      "lastmatchdate": 1661468788
    },
    {
      "statgroup_id": 200,
      "leaderboard_id": 1,
      "wins": 44,
      "losses": 13,
      "streak": 2,
      "disputes": 0,
      "drops": 0,
      "rank": -1,
      "ranktotal": 62,
      "ranklevel": 0,
      "rating": 2044,
      "regionrank": -1,
      "regionranktotal": 24,
      "lastmatchdate": 1620397322
    },
    {
      "statgroup_id": 200,
      "leaderboard_id": 2,
      "wins": 7,
      "losses": 2,
      "streak": 3,
      "disputes": 0,
      "drops": 0,
      "rank": -1,
      "ranktotal": -1,
      "ranklevel": -1,
      "rating": 2049,
      "regionrank": -1,
      "regionranktotal": -1,
      "lastmatchdate": 1591803253
    },
    {
      "statgroup_id": 200,
      "leaderboard_id": 13,
      "wins": 146,
      "losses": 63,
      "streak": -1,
      "disputes": 0,
      "drops": 0,
      "rank": 6,
      "ranktotal": 2662,
      "ranklevel": 1,
      "rating": 1925,
      "regionrank": 2,
      "regionranktotal": 1046,
      "lastmatchdate": 1664824305
    },
    {
      "statgroup_id": 200,
      "leaderboard_id": 14,
      "wins": 1,
      "losses": 0,
      "streak": 1,
      "disputes": 0,
      "drops": 1,
      "rank": -1,
      "ranktotal": -1,
      "ranklevel": -1,
      "rating": 1039,
      "regionrank": -1,
      "regionranktotal": -1,
      "lastmatchdate": 1656025212
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "statGroups": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "type": {
                        "type": "integer"
                    },
                    "members": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "profile_id": {
                                    "type": "integer"
                                },
                                "name": {
                                    "type": "string"
                                },
                                "alias": {
                                    "type": "string"
                                },
                                "personal_statgroup_id": {
                                    "type": "integer"
                                },
                                "xp": {
                                    "type": "integer"
                                },
                                "level": {
                                    "type": "integer"
                                },
                                "leaderboardregion_id": {
                                    "type": "integer"
                                },
                                "country": {
                                    "type": "string"
                                }
                            },
                            "required": [
                                "alias",
                                "country",
                                "leaderboardregion_id",
                                "level",
                                "name",
                                "personal_statgroup_id",
                                "profile_id",
                                "xp"
                            ]
                        }
                    }
                },
                "required": [
                    "id",
                    "members",
                    "name",
                    "type"
                ]
            }
        },
        "leaderboardStats": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "statgroup_id": {
                        "type": "integer"
                    },
                    "leaderboard_id": {
                        "type": "integer"
                    },
                    "wins": {
                        "type": "integer"
                    },
                    "losses": {
                        "type": "integer"
                    },
                    "streak": {
                        "type": "integer"
                    },
                    "disputes": {
                        "type": "integer"
                    },
                    "drops": {
                        "type": "integer"
                    },
                    "rank": {
                        "type": "integer"
                    },
                    "ranktotal": {
                        "type": "integer"
                    },
                    "ranklevel": {
                        "type": "integer"
                    },
                    "rating": {
                        "type": "integer"
                    },
                    "regionrank": {
                        "type": "integer"
                    },
                    "regionranktotal": {
                        "type": "integer"
                    },
                    "lastmatchdate": {
                        "type": "integer"
                    }
                },
                "required": [
                    "disputes",
                    "drops",
                    "lastmatchdate",
                    "leaderboard_id",
                    "losses",
                    "rank",
                    "ranklevel",
                    "ranktotal",
                    "rating",
                    "regionrank",
                    "regionranktotal",
                    "statgroup_id",
                    "streak",
                    "wins"
                ]
            }
        }
    },
    "required": [
        "leaderboardStats",
        "result",
        "statGroups"
    ]
}

[GET] /community/leaderboard/getRecentMatchHistory

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profile_namesarray[str]e.g. [“/steam/<steam_id>”]
profile_idsarray[int]e.g. [“<relic_link_id>”]
aliasesarray[str]e.g. [BlackRock]

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "matchHistoryStats": [
    {
      "id": 183556359,
      "creator_profile_id": 199325,
      "mapname": "FrigidLake.rms",
      "maxplayers": 2,
      "matchtype_id": 26,
      "options": "eNpFUtFugzAM/Jd9waAQqY+pQqdKcyK6ZBp7LJuQwjb60CqQr5+DHcrTCdvnO1+ezkMr8SvBT1EGREoKCPwvXu+HBNUYjYdA9UZcaKYy6lrTv5OAlmfsFA4JqS4YL5sEjZU4AwkWxrtLAtqCuJT7uXO329n/mPPHMXxFHT7f9te+qZ2zz3vmEWDhSDMnoeNp5dTebTq0zzvH0niqG9WLb9K0M74vSOeQdRY6Tgvzl+ZvZM40s+qss3ZA7SC7BGf0Nms7HslTK8B3hJUTr7Zh3CbMfNu+0tipoH093sVRPTZYd6tGvP8M0tGeOBUg17lZq2mmDBq8XR8Ow4rRZ7Polnsi9qzcTWX8wLpH5B6IG+ugZGDOBVS+12lGnlU3eLxt9uxBwLBqWXB/yf53SQt4x/0O/ef+LvtYUEsJlMti1BTZM2ofXqh3THO8HzAbvlXscl41eHx3VK8e9T7nXWDe7Lddtrzt9i536V3y3nrL1mIW5L8ClfmHeXujjzdc4b0C3dzV5vf9/vQPbS3yvQ==",
      "slotinfo": "eNq9kFFPgzAUhf0tfa5mFDVhiS9z6wIRHQUqm/GhQAlNSyFQTabxv7s2LsZkPvji0zn33nPvTT4Pwad3MIx9IxQPddNfiBrMvSDw0RUEk2FG9DpcHloQGM46a2cQNKw6Dg7VyCpuLQqs1/KOv3L1NdEyZqZqs/3gIuf2juj4ho94ZB2PU5cTE+Gs3rs39unL5NodN2zJDANzEErskxwvkhz7CXW6IpRYXdAseijXkSFatfRNka2s1/d02KZyECWNpl2Osc0lRXvrNN+lJVZFvIrcfvZYBZs0vAEf8BSLa3Q5+8ECfbPwfmPhof9lkfyZRX2aRXFk8Xz2CSorqfs=",
      "description": "AUTOMATCH",
      "startgametime": 1664802149,
      "completiontime": 1664802709,
      "observertotal": 4,
      "matchhistoryreportresults": [
        {
          "matchhistory_id": 183556359,
          "profile_id": 199325,
          "resulttype": 0,
          "teamid": 0,
          "race_id": 29,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1664802149
        },
        {
          "matchhistory_id": 183556359,
          "profile_id": 196240,
          "resulttype": 1,
          "teamid": 1,
          "race_id": 12,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1664802149
        }
      ],
      "matchhistoryitems": [],
      "matchurls": []
    },
    {
      "id": 85506328,
      "creator_profile_id": 196240,
      "mapname": "FourLakes.rms",
      "maxplayers": 2,
      "matchtype_id": 2,
      "options": "eNpFUtFqwzAM/Jd+QZM0hj3swa2zkRXZBOyO7LFpMTjQFMaI46+fYstpno5Id7qTvOtsx/ErwU2Bz4gEZzL/C8+/4wrF6JWDOdUbdk31g3TPOv1rGXTE0dN8XJHoZ+V4s0IlLHJghYVy5roCqYHdHz/+Lr5O+vTrL5fbDN91uJX1eN7fzkbv35J2z8CayEWPFZA3qdFbnGP3rzmG3ZOPSrmhSHybvRUyTAt5K9VjjBzpBuREb3XWAc0Z8H6FHvN4KTj1blql0lORtAbMaVI9NFiPXiv06oGbpBGmAnjkodbk004b3MUwH23EpXLNIjvqCdgTtZuDcpY8jahtkzbWQfCZNBcQeect3qn5iP2uZTLncZB3uOD8krJVqxdwhvoNg62/zzkW9FLSzhclpkCZ0bv9TL3jyqP5gHtvaRd9vkUNIt8KME9H9SG/o0K6nLdb8J3RLcdcr5R41jS33u6m8RYp/+Glb/3rLWxv8gDbPg3euH3f/QMzquR+",
      "slotinfo": "eNrNj90KgkAQhXuWvd6i1QoLupEyjIL87SK6GHSsRV1Ft0Cid8+fIqIeoKtzZs5who8p9HAjeZFFPEFTRNmAh2SmaKqqjSgpJUieCXNRryiRCGljh5REELyCeiogwMYypfEi3uAVk2ci4i3I4OxWeXvSZ3UPT3GHhVFAilunveOljRBWdUX39FK26xQlLEACmREzNoTtGbrlGarlt7p0Pb9R3Y/DPazW9jMfm6f5nNzpNxebTpTR8IOLvbnYv3A5v7kmHdex9wByE4a2",
      "description": "AUTOMATCH",
      "startgametime": 1618868684,
      "completiontime": 1618869103,
      "observertotal": 0,
      "matchhistoryreportresults": [
        {
          "matchhistory_id": 85506328,
          "profile_id": 283384,
          "resulttype": 0,
          "teamid": 0,
          "race_id": 12,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1618868684
        },
        {
          "matchhistory_id": 85506328,
          "profile_id": 196240,
          "resulttype": 1,
          "teamid": 1,
          "race_id": 12,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1618868684
        }
      ],
      "matchhistoryitems": [],
      "matchurls": []
    },
    {
      "id": 169858702,
      "creator_profile_id": 335285,
      "mapname": "lombardia.rms2",
      "maxplayers": 4,
      "matchtype_id": 7,
      "options": "eNpFUstugzAQ/Jd8QSBgtUdHJhVS1xapHZXeElShmiTkEgH++q69NvFp5H3NzO7m2DccXw52dHxCJDiD9Ocez72HYnDKwkTxil0oXijxKOmvZtDEGj1Oe49EOynLKw+V5lgDHmbKmosHUgM7X/n0cz/9fd2u2Xn7tnT5oeysbLrvY9Xo7Tv1bhlwE2qR4y5xkxq5hTl9/prTJh6FdI+S4h2TzogQF+NMf2anbB1qpG3Zb+Tua2jmkDyYQaCe4EE1oweO6oetst2Behr2qauIG49j3371ROkxi1zQE0NxV2E86NqhrjlqnMGNGXCaLT1fmo2+ddO+Dxj1VotsYo5LmqpC2T70Bo38m556YxwEn2LPJegJ+TXqId5gayajh2ABtQcuC87Pgbehj+cC1sR8w2DNb5OOBbnk0bcFvY5edci9/6DcwdfF+YA7iF65dQcl2LRXKF7xLt1cJm3S2yxph0qvN7nzNxnnluo+UL3GXZD+AsR6N/N6N6/7LdCvuG9TqtvpufkHFG3xaQ==",
      "slotinfo": "eNq9kttPgzAYxf1b+oxm5SaQ+DK3LhCZ41ZhxocCJSNcA9VkGv93ATWGeBsvPH2nPaf9kl8O5Ln7F1A3VZLmVC+T6iKNgQZVmRcXHGgZYWlV6iug8RxglBS97IyERJ9Gd2pIRHsp97LMbugTzT+MMjMJiw7usR4S57D7Ji3ojjaoIQU1nSGXtjYl8bFb/L7zsR2uC8rIijACNKBnSLA9tLQ8JFh4mGsX2/1cYte4DTcGs8v8gJ9zO8jizRbXgZPVaYiNdu8h1Ocsv74eprd3QpT75toY3rt3kbpz9Cvwyn1HIQgSr0gjFPALBfwNBT8zC2cyi/xnFv5fLBayIoviCIZ4Qi+gMi+MAE6E4W6nF0OVRV5SRyyEE4oBL+dlYU0uRvxPMR7O3gAlpVLU",
      "description": "AUTOMATCH",
      "startgametime": 1657731492,
      "completiontime": 1657733209,
      "observertotal": 1,
      "matchhistoryreportresults": [
        {
          "matchhistory_id": 169858702,
          "profile_id": 196240,
          "resulttype": 1,
          "teamid": 0,
          "race_id": 6,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1657731492
        },
        {
          "matchhistory_id": 169858702,
          "profile_id": 335285,
          "resulttype": 0,
          "teamid": 1,
          "race_id": 26,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1657731492
        },
        {
          "matchhistory_id": 169858702,
          "profile_id": 3068644,
          "resulttype": 1,
          "teamid": 0,
          "race_id": 18,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1657731492
        },
        {
          "matchhistory_id": 169858702,
          "profile_id": 964259,
          "resulttype": 0,
          "teamid": 1,
          "race_id": 17,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1657731492
        }
      ],
      "matchhistoryitems": [],
      "matchurls": [
        {
          "profile_id": 964259,
          "url": "https://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/952469/aoelive_/age2/replay/windows/4.0.0/0/M_169858702_6078abab91f29e8b5df7d4f419d11677354ba9688802d3d013bb077ca07b65ab.gz",
          "size": 541614,
          "datatype": 0
        }
      ]
    },
    {
      "id": 137085400,
      "creator_profile_id": 2212083,
      "mapname": "Runestones.rms",
      "maxplayers": 8,
      "matchtype_id": 9,
      "options": "eNpFUstugzAQ/Jd8ASTGUo+O7KQ+2BapHZVrSOVq04ZcKsBf38UP4LTy7szOzrBrfcvw2ysYAhux4oyq8hZef8el5I/JgBpTX9Bb6hMNrya9SarajLHDeFwq3o0GmFhKwz1i1FLWBtxtKbRV1FWSXH7u/ON5d5fP67c5Xd+taISy+uxs9Za4O6qYi1jUeCjatEVtcY+vtj2OfiUdBwN9nfC+aKt1GOasbW+ej4jR0CMmamsMtPFNWfSARcyE9zQZQwyIjHlQnfcoPtSp36NH4hT7Af2w7JS4FNWWZd4WtcRbJm3xFtalGoZJgcszfdE7GT6QxC1Qm5CJWy3co+KZE1atM2qdUl5yNtDlHGQwIJMWaKkGdk48qMXKOs9jLrLM78sdCr3RIPMe9HFMN6N2cvRxtllweX9Af6fsxeqvQS/z/xLwntI/mF+SvLRdubfCfHM+vln7wW+Z2lfOwpEt85WfbP+en0tWhqviT23Qn90/rH3fhQ==",
      "slotinfo": "eNq91FtPgzAUB3A/S5/R0BZYWeLL3LpA3Ny47WJ86KDLCJcRQJNp/O4CagzxRvfAUw/toSS//DkQSfcvIMuP+zDmRro/XoUBGGJVJkRFEihKVobH1BhXexIoOUvqUpbAnvmfB9VTznxel5DUdRrd8icef5yk0YyV/sE5ZU3LJazuCRO+4DnNWcJndtMXFhZnwam64v2jj0WznfCSjVnJwBAYEcWWS0dLl+Kl16yTDbTqdeQ55t1uapZWGh+859jaRMF07mUbO8rCnWcWW5fSum/pzG+a1d3aOxqvZxOzed9Z+frCNq7Bq/QdAyGIZIJbGPALA/6KAfvFWHmiGObPGOs/MFRMkKbLLQylSzJQvxieMAYVTwbUNaS0LVCXYKj9WrjCFiPxYCBFqaaG2sJQOwQD92thiVqsD2dMDE0fELk9MbQOwUA9B2MpjBGcEwxMdK39l5AOwVD6tXCELbJzgqEhDFsUgy4Do+fhaQtbxP/k4uHiDWVupQE=",
      "description": "AUTOMATCH",
      "startgametime": 1641495992,
      "completiontime": 1641497348,
      "observertotal": 3,
      "matchhistoryreportresults": [
        {
          "matchhistory_id": 137085400,
          "profile_id": 3508852,
          "resulttype": 0,
          "teamid": 0,
          "race_id": 18,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 2212083,
          "resulttype": 1,
          "teamid": 1,
          "race_id": 11,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 5382690,
          "resulttype": 0,
          "teamid": 0,
          "race_id": 12,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 196240,
          "resulttype": 1,
          "teamid": 1,
          "race_id": 15,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 2443505,
          "resulttype": 0,
          "teamid": 0,
          "race_id": 3,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 2697803,
          "resulttype": 1,
          "teamid": 1,
          "race_id": 25,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 2438960,
          "resulttype": 0,
          "teamid": 0,
          "race_id": 4,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        },
        {
          "matchhistory_id": 137085400,
          "profile_id": 266231,
          "resulttype": 1,
          "teamid": 1,
          "race_id": 12,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1641495992
        }
      ],
      "matchhistoryitems": [],
      "matchurls": []
    },
    {
      "id": 39119092,
      "creator_profile_id": 196240,
      "mapname": "Megarandom.rms2",
      "maxplayers": 6,
      "matchtype_id": 8,
      "options": "eNpFUtFuwyAM/Jd+QdO0SHskhVaRBjQdrEofG02Z6FaqSVMCXz8DZuHJsu98Z5vVaewovI2wLtAJIkaJoJgLz9+c4+SWcVtpn7uca4noEKfd1MSI9ZOy0AGe1K46JpwJ6rv6uph+Oq/P5p01r1f9ub9crj/dfVe/PYaXUydSH+AeMrclMrQ8xdYs2qzojJV63HM9uFpm/lZZnnN6IALnin7RWw2c5E1pF3KOR7+JIzQnCudRzM3I2SlrUIcSmes1zDs3MWSDB80pxzwAFv3xNeQPua+BWegxxz0RC6ZetEei8s5n8DbvU30IsbdgFPHt4tVy2L2JoYe7bfBeXgTns5cW9PupGVOf6MVLxMNdfMFLW+ZowUvvUQf2KHBmA776hFWRx1A/DOX29bJfsS3+JNTxZlXSSPUOdoU3DSP5QL7ShW/++Qr+YLn58rdGX+6rmCh/tIq+Vn+3l9Vp",
      "slotinfo": "eNq9lFFrgzAUhfdb8uxGEpM4C30pncOxwrTVMUofLho3sWrRbFDG/vuMtAzZOvQlT/fknksuH4eEUGv7iQ5NneV76VdZfZOnaEZcQRm2UKtA5XXlL7uWhZSEUsvOyCA5G92pgURqSW2tq+JRfsj9yamKFajkbXM89CPX+p68lE+y8Roo5Wrdz+VtKCE99mv00ve2b5dSwRIUoBnyC68KI28RRJ4dxH2920Sxrou4SJ/h/iE8+dx/nc/Rl/Wbi1GOsTvgsn+4yCUum5rlCv7mEhe5iOs4nAy46Ji8HLNc8dS8CGG3zBmC8RGBUWEWbD01MME4FvaAi40IzDWL9YIn5kWxyx0xwBJj3pfhfyP6N67d1TfIbJIA",
      "description": "AUTOMATCH",
      "startgametime": 1600367457,
      "completiontime": 1600368887,
      "observertotal": 0,
      "matchhistoryreportresults": [
        {
          "matchhistory_id": 39119092,
          "profile_id": 196240,
          "resulttype": 1,
          "teamid": 0,
          "race_id": 23,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1600367457
        },
        {
          "matchhistory_id": 39119092,
          "profile_id": 425009,
          "resulttype": 0,
          "teamid": 1,
          "race_id": 32,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1600367457
        },
        {
          "matchhistory_id": 39119092,
          "profile_id": 197751,
          "resulttype": 1,
          "teamid": 0,
          "race_id": 27,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1600367457
        },
        {
          "matchhistory_id": 39119092,
          "profile_id": 1148471,
          "resulttype": 0,
          "teamid": 1,
          "race_id": 26,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1600367457
        },
        {
          "matchhistory_id": 39119092,
          "profile_id": 645063,
          "resulttype": 1,
          "teamid": 0,
          "race_id": 9,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1600367457
        },
        {
          "matchhistory_id": 39119092,
          "profile_id": 209576,
          "resulttype": 0,
          "teamid": 1,
          "race_id": 33,
          "xpgained": 1,
          "counters": "{}",
          "matchstartdate": 1600367457
        }
      ],
      "matchhistoryitems": [],
      "matchurls": []
    }
  ],
  "profiles": [
    {
      "profile_id": 1030879,
      "name": "/steam/76561198053896791",
      "alias": "aegus",
      "personal_statgroup_id": 1262109,
      "xp": 1278,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "be"
    },
    {
      "profile_id": 2733807,
      "name": "/steam/76561197994886806",
      "alias": "Yakoileo",
      "personal_statgroup_id": 2465256,
      "xp": 1941,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 262670,
      "name": "/steam/76561198049454319",
      "alias": "GleeF",
      "personal_statgroup_id": 69446,
      "xp": 486,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 251817,
      "name": "/steam/76561198388423593",
      "alias": "异邦之人",
      "personal_statgroup_id": 55831,
      "xp": 824,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 459716,
      "name": "/steam/76561198162951354",
      "alias": "Yaguar",
      "personal_statgroup_id": 302202,
      "xp": 1219,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2210218,
      "name": "/steam/76561198018573455",
      "alias": "Slappy The Happybara",
      "personal_statgroup_id": 1964413,
      "xp": 476,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "gb"
    },
    {
      "profile_id": 890300,
      "name": "/steam/76561198148687930",
      "alias": "Bluestar The Goat",
      "personal_statgroup_id": 741210,
      "xp": 1242,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 2436978,
      "name": "/steam/76561199044782924",
      "alias": "Jonas B 1",
      "personal_statgroup_id": 2178540,
      "xp": 1063,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 1579822,
      "name": "/steam/76561198033283718",
      "alias": "Morovun",
      "personal_statgroup_id": 1362042,
      "xp": 1508,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "pl"
    },
    {
      "profile_id": 261045,
      "name": "/steam/76561198008192094",
      "alias": "UhtredShield",
      "personal_statgroup_id": 67391,
      "xp": 4070,
      "level": 2,
      "leaderboardregion_id": 3,
      "country": "us"
    },
    {
      "profile_id": 699609,
      "name": "/steam/76561198080566571",
      "alias": "ABH",
      "personal_statgroup_id": 562132,
      "xp": 273,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "se"
    },
    {
      "profile_id": 645063,
      "name": "/steam/76561198278909141",
      "alias": "Debbie",
      "personal_statgroup_id": 504593,
      "xp": 417,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 701099,
      "name": "/steam/76561197965781826",
      "alias": "Pudge_Spencer",
      "personal_statgroup_id": 563709,
      "xp": 447,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "ch"
    },
    {
      "profile_id": 1649071,
      "name": "/steam/76561198402192081",
      "alias": "Yumeko",
      "personal_statgroup_id": 1429431,
      "xp": 329,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 1819870,
      "name": "/steam/76561198809738927",
      "alias": "Grubby",
      "personal_statgroup_id": 1594338,
      "xp": 33,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 1148471,
      "name": "/steam/76561199013074510",
      "alias": "EasyThisi",
      "personal_statgroup_id": 974567,
      "xp": 286,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 224581,
      "name": "/steam/76561198023009717",
      "alias": "Fingolfin",
      "personal_statgroup_id": 21333,
      "xp": 1107,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "nl"
    },
    {
      "profile_id": 2714104,
      "name": "/xboxlive/22BEDCBDFDE7B225FD27084513A200D28EE296E3",
      "alias": "UmpahPahALADI",
      "personal_statgroup_id": 2446300,
      "xp": 6,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 2443505,
      "name": "/steam/76561198273192464",
      "alias": "Element",
      "personal_statgroup_id": 2184780,
      "xp": 877,
      "level": 1,
      "leaderboardregion_id": 4,
      "country": "ar"
    },
    {
      "profile_id": 10198859,
      "name": "/steam/76561199285326382",
      "alias": "空心",
      "personal_statgroup_id": 5840698,
      "xp": 1119,
      "level": 1,
      "leaderboardregion_id": 2,
      "country": "cn"
    },
    {
      "profile_id": 2085896,
      "name": "/xboxlive/F3A31CA4C06ACF6E2B9BDC8E9FA55E973BF36006",
      "alias": "dam1746",
      "personal_statgroup_id": 1851227,
      "xp": 1071,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "be"
    },
    {
      "profile_id": 2524736,
      "name": "/steam/76561198007008274",
      "alias": "D•F•S | Imperio_cc",
      "personal_statgroup_id": 2263475,
      "xp": 2376,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 1867124,
      "name": "/steam/76561198098960668",
      "alias": "Fox.Capout",
      "personal_statgroup_id": 1639684,
      "xp": 2244,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
    {
      "profile_id": 196240,
      "name": "/steam/76561197984749679",
      "alias": "GL.TheViper",
      "personal_statgroup_id": 200,
      "xp": 3091,
      "level": 2,
      "leaderboardregion_id": 0,
      "country": "de"
    },
    {
      "profile_id": 1241193,
      "name": "/xboxlive/C1D081A37EDAD5A906FD4FD11117330936E2CB6E",
      "alias": "Rulianx",
      "personal_statgroup_id": 1047395,
      "xp": 625,
      "level": 1,
      "leaderboardregion_id": 0,
      "country": "fr"
    },
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "matchHistoryStats": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "creator_profile_id": {
                        "type": "integer"
                    },
                    "mapname": {
                        "type": "string"
                    },
                    "maxplayers": {
                        "type": "integer"
                    },
                    "matchtype_id": {
                        "type": "integer"
                    },
                    "options": {
                        "type": "string"
                    },
                    "slotinfo": {
                        "type": "string"
                    },
                    "description": {
                        "type": "string"
                    },
                    "startgametime": {
                        "type": "integer"
                    },
                    "completiontime": {
                        "type": "integer"
                    },
                    "observertotal": {
                        "type": "integer"
                    },
                    "matchhistoryreportresults": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "matchhistory_id": {
                                    "type": "integer"
                                },
                                "profile_id": {
                                    "type": "integer"
                                },
                                "resulttype": {
                                    "type": "integer"
                                },
                                "teamid": {
                                    "type": "integer"
                                },
                                "race_id": {
                                    "type": "integer"
                                },
                                "xpgained": {
                                    "type": "integer"
                                },
                                "counters": {
                                    "type": "string"
                                },
                                "matchstartdate": {
                                    "type": "integer"
                                }
                            },
                            "required": [
                                "counters",
                                "matchhistory_id",
                                "matchstartdate",
                                "profile_id",
                                "race_id",
                                "resulttype",
                                "teamid",
                                "xpgained"
                            ]
                        }
                    },
                    "matchhistoryitems": {
                        "type": "array"
                    },
                    "matchurls": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "profile_id": {
                                    "type": "integer"
                                },
                                "url": {
                                    "type": "string"
                                },
                                "size": {
                                    "type": "integer"
                                },
                                "datatype": {
                                    "type": "integer"
                                }
                            },
                            "required": [
                                "datatype",
                                "profile_id",
                                "size",
                                "url"
                            ]
                        }
                    },
                    ####NEW ADDITION 11042023####
                    "matchhistorymember": {
                        "matchhistory_id": {
                            "type: "integer"
                        },
                        "profile_id": {
                             "type: "integer"
                        },
                        "race_id": {
                             "type: "integer"
                        },
                        "statgroup_id": {
                             "type: "integer"
                        },
                        "teamid": {
                              "type: "integer"
                        },
                        "wins": {
                            "type: "integer"
                        },
                        "losses": {
                             "type: "integer"
                        },
                        "streak": {
                            "type: "integer"
                        },
                        "arbitration": {
                             "type: "integer"
                        },
                        "outcome": {
                            "type: "integer"
                        },
                        "oldrating": {
                            "type: "integer"
                        },
                        "newrating": {
                             "type: "integer"
                        },
                        "reporttype": {
                             "type: "integer"
                        }
                    }
                },
                "required": [
                    "completiontime",
                    "creator_profile_id",
                    "description",
                    "id",
                    "mapname",
                    "matchhistoryitems",
                    "matchhistoryreportresults",
                    "matchtype_id",
                    "matchurls",
                    "maxplayers",
                    "observertotal",
                    "options",
                    "slotinfo",
                    "startgametime"
                ]
            }
        },
        "profiles": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "profile_id": {
                        "type": "integer"
                    },
                    "name": {
                        "type": "string"
                    },
                    "alias": {
                        "type": "string"
                    },
                    "personal_statgroup_id": {
                        "type": "integer"
                    },
                    "xp": {
                        "type": "integer"
                    },
                    "level": {
                        "type": "integer"
                    },
                    "leaderboardregion_id": {
                        "type": "integer"
                    },
                    "country": {
                        "type": "string"
                    }
                },
                "required": [
                    "alias",
                    "country",
                    "leaderboardregion_id",
                    "level",
                    "name",
                    "personal_statgroup_id",
                    "profile_id",
                    "xp"
                ]
            }
        }
    },
    "required": [
        "matchHistoryStats",
        "profiles",
        "result"
    ]
}

[GET] /community/news/getNews

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4

Response

AoE2:DE

{
  "result": {
    "code": 0,
    "message": "SUCCESS"
  },
  "news": [
    {
      "id": 822,
      "hidden": 0,
      "newscategory": "(01/17) 56 en",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy Tournament October 21 - 30",
      "newsbody": "To battle! Red Bull Wololo is back, bringing together the best Age of Empires players from around the world for a battle of the ages. Will TheViper defend his title, or will one of the aspiring competitors be crowned the true ruler of Castle Heidelberg? \n\nRed Bull Wololo: Legacy runs from October 21 to October 30. Tune in here to catch all the action: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=en",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 823,
      "hidden": 0,
      "newscategory": "(02/17) 56 zh",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "红牛呜噜噜:旧版锦标赛 10 月 21 日至 30 日",
      "newsbody": "战斗!红牛呜噜噜又回来啦,汇集了来自世界各地的最佳《帝国时代》玩家,展开一场世纪之战。TheViper 会捍卫他的头衔,还是一名有抱负的竞争对手会加冕为海德堡城堡的真正统治者?\n\n\"\"红牛呜噜噜:旧版锦标赛\"\"举行时间为 10 月 21 日到 10 月 30 日。敬请锁定以下网站,观看所有精彩镜头:twitch.tv/redbull。",
      "metadata": "NEWS;id=56;lang=zh",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 824,
      "hidden": 0,
      "newscategory": "(03/17) 56 tw",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "紅牛嗚嚕嚕 (Red Bull Wololo: Legacy) 錦標賽 10 月 21 日至 30 日",
      "newsbody": "戰鬥吧!紅牛嗚嚕嚕又回來了,匯集了 Age of Empires 來自世界各地的頂尖玩家,進行一場時代之戰。TheViper 會捍衛他的寶座,還是其他胸懷大志的競爭對手會加冕成為 Heidelberg 城堡的真正統治者?\n\n紅牛嗚嚕嚕 (Red Bull Wololo: Legacy) 舉行期間為 10 月 21 日到 10 月 30 日。請在以下頻道收看,不要錯過任何精彩片刻:twitch.tv/redbull。",
      "metadata": "NEWS;id=56;lang=tw",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 825,
      "hidden": 0,
      "newscategory": "(04/17) 56 fr",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Tournoi Red Bull Wololo : Héritage du 21 au 30 octobre",
      "newsbody": "Au combat ! Red Bull Wololo est de retour avec les meilleurs joueurs d’Age of Empires pour une bataille qui restera dans les annales. TheViper conservera-t-il son titre de souverain du château de Heidelberg, ou sera-t-il détrôné par l'un de ses compétiteurs ?\n\nRed Bull Wololo : Héritage se déroule du 21 au 30 octobre. Rendez-vous ici pour suivre toute l’action : twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=fr",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 826,
      "hidden": 0,
      "newscategory": "(05/17) 56 de",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy-Turnier 21.–30. Oktober",
      "newsbody": "Auf in den Kampf! Red Bull Wololo ist zurück und bringt die besten Age of Empires-Spieler aus der ganzen Welt für einen Kampf durch die Age-Geschichte zusammen. Wird TheViper seinen Titel verteidigen? Oder wird einer der aufstrebenden Konkurrenten zum wahren Herrscher von Schloss Heidelberg gekrönt?\n\nRed Bull Wololo: Legacy findet vom 21. bis 30. Oktober statt. Schalten Sie hier ein, um die ganze Action zu sehen: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=de",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 827,
      "hidden": 0,
      "newscategory": "(06/17) 56 hi",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "रेड बुल वोलोलो: विरासत टूर्नामेंट 21 - 30 अक्टूबर",
      "newsbody": "लड़ाई के लिए! रेड बुल वोलोलो वापस आ गया है, युगों की लड़ाई के लिए दुनिया भर के सर्वश्रेष्ठ एज ऑफ एम्पायर खिलाड़ियों को एक साथ ला रहा है। क्या द वाइपर अपने खिताब की रक्षा करेगा, या आकांक्षी प्रतियोगियों में से एक को कैसल हीडलबर्ग के सच्चे शासक का ताज पहनाया जाएगा?\n\nरेड बुल वोलोलो: विरासत 21 अक्टूबर से 30 अक्टूबर तक चलती है। सभी एक्शन देखने के लिए यहां ट्यून करें: twitch.tv/redbull।",
      "metadata": "NEWS;id=56;lang=hi",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 828,
      "hidden": 0,
      "newscategory": "(07/17) 56 it",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Torneo Red Bull Wololo: Legacy, 21-30 ottobre",
      "newsbody": "Alla battaglia! Red Bull Wololo è tornato. I migliori giocatori di Age of Empires da tutto il mondo sono chiamati a raccolta per una battaglia epocale. Riuscirà TheViper a difendere il suo titolo o sarà uno degli aspiranti contendenti a essere incoronato sovrano del castello di Heidelberg?\n\nRed Bull Wololo: Legacy si svolgerà dal 21 al 30 ottobre. Sintonizzati qui per seguire tutte le sfide: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=it",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 829,
      "hidden": 0,
      "newscategory": "(08/17) 56 jp",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "レッドブル ウォロロ: レガシー トーナメント 10 月 21 日 - 30 日",
      "newsbody": "いざ戦場へ! レッドブル ウォロロが帰ってきました。世界中から集った最高の Age of Empires プレイヤーが、時代を超えた戦いを繰り広げます。はたして TheViper はタイトルを防衛できるでしょうか? それとも闘志を燃やすライバルの誰かが新たな王者として戴冠するのでしょうか?\n\nレッドブル ウォロロ: レガシーは、10 月 21 日から 10 月 30 日にかけて開催されます。熱戦の様子は以下のチャンネルで余すところなくご覧いただけます: twitch.tv/redbull",
      "metadata": "NEWS;id=56;lang=jp",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 830,
      "hidden": 0,
      "newscategory": "(09/17) 56 ko",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "레드불 울롤로: 레거시 토너먼트 10월 21일 - 30일",
      "newsbody": "전투로! 레드불 울로로(Red Bull Wololo)가 돌아와 전 세계 최고의 Age of Empires 플레이어들을 모아 시대별 전투를 벌였습니다. TheViper가 타이틀을 방어할까요, 아니면 야심찬 경쟁자 중 한 명이 하이델베르크 성의 진정한 통치자로 선정될까요?\n\nRed Bull Wololo: Legacy는 10월 21일부터 10월 30일까지 운영됩니다. 대회의 모든 상황을 보려면 다음 채널을 확인하세요: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=ko",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 831,
      "hidden": 0,
      "newscategory": "(10/17) 56 ms",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy Tournament 21 - 30 Oktober",
      "newsbody": "Ke medan peperangan! Red Bull Wololo kembali, menyatukan pemain Age of Empires terbaik dari seluruh dunia untuk pertempuran antara zaman. Adakah TheViper akan mempertahankan gelarannya, atau adakah pesaing yang bercita-cita tinggi akan dinobatkan sebagai pemerintah sebenar Kastil Heidelberg?\n\nRed Bull Wololo: Legacy berlangsung dari 21 Oktober hingga 30 Oktober. Ikuti di sini untuk menonton aksi: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=ms",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 832,
      "hidden": 0,
      "newscategory": "(11/17) 56 br",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "",
      "newsbody": "",
      "metadata": "NEWS;id=56;lang=br",
      "datevisible": 1666386000,
      "expirytime": 1666591200
    },
    {
      "id": 833,
      "hidden": 0,
      "newscategory": "(12/17) 56 ru",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Турнир Red Bull Wololo: Legacy 21–30 октября",
      "newsbody": "К оружию! Турнир Red Bull Wololo возвращается, чтобы лучшие игроки в Age of Empires со всего мира сошлись в битве века. Сможет ли TheViper защитить свой титул или кто-то из его соперников станет истинным правителем замка Heidelberg?\n\nТурнир Red Bull Wololo: Legacy будет проходить с 21 по 30 октября. Следите за обновлениями здесь: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=ru",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 834,
      "hidden": 0,
      "newscategory": "(13/17) 56 es",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy Tournament del 21 al 30 de octubre",
      "newsbody": "¡A la batalla! Red Bull Wololo ha vuelto y está reuniendo a los mejores jugadores de Age of Empires de todo el mundo para una batalla histórica. ¿Defenderá TheViper su título o se coronará a uno de los competidores aspirantes como el verdadero gobernante del castillo de Heidelberg?\n\nRed Bull Wololo: Legacy se celebrará del 21 al 30 de octubre. Conéctate para no perderte la acción: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=es",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 835,
      "hidden": 0,
      "newscategory": "(14/17) 56 mx",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy Tournament del 21 al 30 de octubre",
      "newsbody": "¡A la batalla! El torneo Red Bull Wololo está de vuelta para reunir a los mejores jugadores de Age of Empires de todo el mundo en una serie de batallas históricas. ¿Defenderá TheViper su título, o uno de los competidores le robará la corona y el trono del Castillo de Heidelberg?\n\nRed Bull Wololo: Legacy se celebra del 21 al 30 de octubre. Sintoniza aquí para vivir toda la acción: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=mx",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 836,
      "hidden": 0,
      "newscategory": "(15/17) 56 tr",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy Turnuvası 21 - 30 Ekim",
      "newsbody": "Savaşa! Red Bull Wololo geri döndü ve dünyanın dört bir yanındaki en iyi Age of Empires oyuncularını çağlar boyu sürecek bir savaş için bir araya getirdi. TheViper unvanını koruyacak mı, yoksa hevesli rakiplerden biri Heidelberg Kalesi'nin gerçek hükümdarı olarak taçlandırılacak mı?\n\nRed Bull Wololo: Legacy, 21 Ekim'den 30 Ekim'e kadar sürecek. Bu kıyasıya mücadeleyi izlemek için bu adrese gel: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=tr",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 837,
      "hidden": 0,
      "newscategory": "(16/17) 56 vi",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Red Bull Wololo: Legacy Tournament 21 - 30 tháng 10",
      "newsbody": "Đã đến lúc chiến đấu! Red Bull Wololo đã trở lại, tập hợp những người chơi Age of Empires giỏi nhất từ khắp nơi trên thế giới để tham gia cuộc chiến thời đại. TheViper sẽ bảo vệ danh hiệu của mình, hay một trong những đối thủ cạnh tranh đầy tham vọng sẽ được trao vương miện người cai trị chân chính của Lâu đài Heidelberg?\n\nRed Bull Wololo: Legacy sẽ bắt đầu từ ngày 21 tháng 10 đến ngày 30 tháng 10. Hãy theo dõi tại đây để nắm bắt tất cả các tin tức mới nhất: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=vi",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 838,
      "hidden": 0,
      "newscategory": "(17/17) 56 pl",
      "newstitle_locstringid": -1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": -1,
      "newsimage": "Turniej Red Bull Wololo: Legacy 21-30 października",
      "newsbody": "Do walki! Red Bull Wololo powraca, gromadząc najlepszych graczy Age of Empires z całego świata na epokową bitwę. Czy TheViper obroni swój tytuł, czy może jeden z aspirujących zawodników zostanie koronowany na prawdziwego władcę zamku Heidelberg?\n\nRed Bull Wololo: Legacy trwa od 21 do 30 października. Dołącz tutaj, aby niczego nie przegapić: twitch.tv/redbull.",
      "metadata": "NEWS;id=56;lang=pl",
      "datevisible": 1666386000,
      "expirytime": 1667196000
    },
    {
      "id": 811,
      "hidden": 0,
      "newscategory": "",
      "newstitle_locstringid": 31,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": 32,
      "newsimage": "NEW DLC AVAILABLE NOW: Dynasties of India!",
      "newsbody": "DYNASTIES OF INDIA is Live!\r\n\r\nThe latest DLC for Age of Empires II: Definitive Edition remixes the previous Indian Civ (now the Hindustani) and introduces THREE new Civilizations - the Dravidians, the Bengalis, and the Gurjaras! \r\n\r\nThis expansion includes three all-NEW Campaigns that explore the rich history of India, alongside new units and tactics bound to shake up your MP games! Did somebody say Elephants?",
      "metadata": "LNEWS;PROMOTION=DLC_PORTO;",
      "datevisible": 1651161600,
      "expirytime": 1714233600
    },
    {
      "id": 1,
      "hidden": 0,
      "newscategory": "",
      "newstitle_locstringid": 1,
      "newssubtitle_locstringid": -1,
      "newstext_locstringid": 2,
      "newsimage": "Welcome to Age of Empires II: Definitive Edition!",
      "newsbody": "Welcome to Age of Empires II: Definitive Edition! We are excited to have you join us for the launch of the game, and look forward to building a legacy that will stand the test of time and continue to grow in the years to come!\r\n\r\nAs you begin your journey, take the time to follow our social channels for news, updates, and information about what we have in store for Age of Empires:. If you encounter an issue while playing, you can visit ageofempires.com/support for troubleshooting tips and common solutions.\r\n\r\nWe hope you enjoy the Definitive Edition, and encourage you to come talk with us about your experience, leave us feedback, and let us know of any issues you encounter in the game.\r\n\r\nThank you for playing!\r\n\r\n- The Age of Empires Team",
      "metadata": "LNEWS",
      "datevisible": 1573660800,
      "expirytime": 1763064000
    }
  ]
}
{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "result": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "code",
                "message"
            ]
        },
        "news": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "integer"
                    },
                    "hidden": {
                        "type": "integer"
                    },
                    "newscategory": {
                        "type": "string"
                    },
                    "newstitle_locstringid": {
                        "type": "integer"
                    },
                    "newssubtitle_locstringid": {
                        "type": "integer"
                    },
                    "newstext_locstringid": {
                        "type": "integer"
                    },
                    "newsimage": {
                        "type": "string"
                    },
                    "newsbody": {
                        "type": "string"
                    },
                    "metadata": {
                        "type": "string"
                    },
                    "datevisible": {
                        "type": "integer"
                    },
                    "expirytime": {
                        "type": "integer"
                    }
                },
                "required": [
                    "datevisible",
                    "expirytime",
                    "hidden",
                    "id",
                    "metadata",
                    "newsbody",
                    "newscategory",
                    "newsimage",
                    "newssubtitle_locstringid",
                    "newstext_locstringid",
                    "newstitle_locstringid"
                ]
            }
        }
    },
    "required": [
        "news",
        "result"
    ]
}

Game API (Authenticated)

The Game API provides authenticated access to Age of Empires game data. Requires Steam authentication.

Base URL: https://aoe-api.worldsedgelink.com/game/

Authentication

Steam authentication is required. See the Getting Started Guide for authentication flow details.

You can also check our Steam Auth Helper reference implementation.

OpenAPI Specification

The OpenAPI spec for the /game endpoints can be found at librematch-rlink_client.

Reverse Engineering

If you see that something is missing, you can use Wireshark to capture and analyze game network traffic.

Endpoints

Login

Session management.

Account

Account management.

Achievement

Player achievements (authenticated).

Game lobbies and matches.

Automatch

Ranked matchmaking.

Automatch2

Enhanced matchmaking.

Challenge

Challenge system.

Chat

In-game chat.

Clan

Clan management (authenticated).

Cloud

Cloud save functionality.

Community Event

Event participation.

Invitation

Game invitations.

Item

Item management.

Leaderboard

Rankings (authenticated).

News

Game news.

Party

Party system.

Player Report

Report players.

Relationship

Friends and blocks.

Account Endpoints

Endpoints for managing player profiles and account settings.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
findProfilesGETSearch for player profiles by name
findProfilesByPlatformIdGETFind profiles by Steam ID or Xbox ID
getProfileNameGETGet a player’s display name
getProfilePropertyGETGet profile properties/settings
setAvatarMetadataPOSTUpdate avatar metadata
setLanguagePOSTSet preferred language

[GET] /game/account/FindProfiles (Search by name)

AUTHENTICATION

AoE2:DE

Request

GET /game/account/FindProfiles?callNum=123&connect_id=ccc&lastCallTime=111&name=viper&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
namestrusername
sessionIDstr

Response

[
    0, // result status code
    [
        [
            110,
            249641, // profile_id
            "/steam/76561198008248822", // platform_ids (/steam/, /xboxlive/)
            "",
            "Viper", // profile_name
            "",
            53114,
            1,
            1,
            0,
            null,
            "76561198008248822", // pure platform_id_number (steam, different that platform_id for xboxlive)
            3,
            []
        ],
        [
            855,
            300113,
            "/steam/76561197974443592",
            "{\"icon\":\"PR1-001\"}",
            "Viper",
            "",
            116533,
            6,
            1,
            3,
            null,
            "76561197974443592",
            3,
            []
        ],
        [
            51,
            348999,
            "/steam/76561198303411559",
            "",
            "viper",
            "",
            175516,
            0,
            1,
            2,
            null,
            "76561198303411559",
            3,
            []
        ],
        [
            773,
            395221,
            "/steam/76561197996564368",
            "{\"icon\":\"PR2-002\"}",
            "Viper",
            "",
            229018,
            21,
            1,
            0,
            null,
            "76561197996564368",
            3,
            []
        ]
    ]
]

[POST] /game/account/FindProfilesByPlatformID

AUTHENTICATION

AoE2:DE

Request

POST /game/account/FindProfilesByPlatformID HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 1688
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
Expect: 100-continue
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
platformIDsarray[str][“”,“”]
sessionIDstr

Response

[
    0, // result status code
    [
        [
            8,
            1,
            "admin",
            "",
            "",
            "",
            1,
            0,
            1,
            -1,
            null,
            "",
            4,
            []
        ],
        [
            0,
            2,
            "system",
            "",
            "",
            "",
            2,
            0,
            1,
            -1,
            null,
            "",
            4,
            []
        ],
        [
            0,
            3,
            "reader",
            "",
            "",
            "",
            3,
            0,
            1,
            -1,
            null,
            "",
            4,
            []
        ],
        [
            0,
            649236,
            "/partner//partner/WebAccess",
            "",
            "",
            "",
            509197,
            0,
            1,
            -1,
            null,
            "",
            1,
            []
        ],
        [
            0,
            2252570,
            "/partner//partner/web-access",
            "",
            "",
            "",
            2377787,
            0,
            1,
            -1,
            null,
            "",
            1,
            []
        ],
        [
            0,
            3127656,
            "/partner/sieberta-db-checks",
            "",
            "",
            "",
            2833167,
            0,
            1,
            -1,
            null,
            "",
            1,
            []
        ]
    ]
]

AoE4

Request

POST /game/account/FindProfilesByPlatformID HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 288
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=44&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=22511&platformIDs=[76561197960287614,76561197978627567,76561197978943286,76561198000229224,76561197972009043,76561197964180873,76561197966000898,76561197976722725]&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
platformIDsarray[str][“”,“”]
sessionIDstr

Response

[
    0,
    [
        [
            25705,
            197751,
            "/steam/76561197964180873",
            "{\"sharedHistory\":1}",
            "GL.Nili",
            "",
            483,
            262771,
            140,
            0,
            null,
            "76561197964180873",
            3,
            []
        ]
    ]
]

[GET] /game/account/getProfileName (User stats)

AUTHENTICATION

User stats

AoE2:DE

Request

GET /game/account/getProfileName?callNum=123&connect_id=ccc&lastCallTime=111&profile_ids=[1,1]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idsarray[int][2,3]
sessionIDstr

Response

[
    0, // result status code
    [
        [
            1613,
            48635,
            "/xboxlive/191A153DD6B21D09DE1AF3D3F5A559AE8B16C5F2", // platform_ids (/steam/, /xboxlive/)
            "{\"icon\":\"PR7-088\"}", // icon
            "anderkill3645", // profile_name
            "",
            55533,
            135,
            1,
            4,
            null,
            "2533274857954991", // pure platform_id_number (steam, different that platform_id for xboxlive)
            9,
            []
        ],
        [
            934,
            209079,
            "/steam/76561198007767992",
            "{\"icon\":\"PR7-013\"}",
            "Erdelyi",
            "Fika",
            2197,
            37,
            1,
            0,
            null,
            "76561198007767992",
            3,
            []
        ],
        [
            29794,
            210382,
            "/steam/76561198088860961",
            "{\"icon\":\"PR7-035\"}",
            "mratin",
            "",
            3928,
            1410,
            1,
            0,
            null,
            "76561198088860961",
            3,
            []
        ],
        [
            779,
            216480,
            "/steam/76561197981096983",
            "{\"icon\":\"PR3-005\"}",
            "Ghostie3k",
            "TWC",
            11413,
            32,
            1,
            0,
            null,
            "76561197981096983",
            3,
            []
        ],
        [
            36677,
            219823,
            "/steam/76561198196223205",
            "{\"icon\":\"PR4-015\"}",
            "SleepySwede",
            "YCool",
            15474,
            2333,
            2,
            0,
            null,
            "76561198196223205",
            3,
            []
        ],
        [
            33137,
            229953,
            "/steam/76561198130215443",
            "{\"icon\":\"PR1-004\"}",
            "Dawidowww",
            "PL000",
            28035,
            1414,
            1,
            0,
            null,
            "76561198130215443",
            3,
            []
        ],
        [
            9985,
            248441,
            "/steam/76561197996755177",
            "{\"icon\":\"PR7-045\"}",
            "Spaden",
            "",
            51547,
            548,
            1,
            0,
            null,
            "76561197996755177",
            3,
            []
        ],
        [
            31659,
            261636,
            "/steam/76561197961650853",
            "{\"icon\":\"PR4-029\"}",
            "Stuve",
            "heha",
            68125,
            1648,
            1,
            0,
            null,
            "76561197961650853",
            3,
            []
        ],
        [
            29167,
            262783,
            "/steam/76561198089468680",
            "{\"icon\":\"PR3-047\"}",
            "Kilgary",
            "TaToH",
            69593,
            1002,
            1,
            0,
            null,
            "76561198089468680",
            3,
            []
        ],
        [
            21770,
            266912,
            "/steam/76561198125867159",
            "{\"icon\":\"PR4-018\"}",
            "ugoose",
            "g00se",
            74705,
            1000,
            1,
            3,
            null,
            "76561198125867159",
            3,
            []
        ],
        [
            12333,
            279015,
            "/steam/76561197989834283",
            "{\"icon\":\"PR1-007\"}",
            "[NSMN] Il Ducerino",
            "NSMN",
            89879,
            488,
            1,
            0,
            null,
            "76561197989834283",
            3,
            []
        ],
        [
            1311,
            283316,
            "/steam/76561198032862896",
            "{\"icon\":\"PR1-008\"}",
            "Marcus",
            "Fika",
            95404,
            43,
            1,
            0,
            null,
            "76561198032862896",
            3,
            []
        ],
        [
            7492,
            292712,
            "/steam/76561198454096869",
            "{\"icon\":\"PR7-013\"}",
            "Tarc",
            "Nubs5",
            107266,
            342,
            1,
            3,
            null,
            "76561198454096869",
            3,
            []
        ],
        [
            11357,
            455477,
            "/steam/76561198130930626",
            "{\"icon\":\"PR7-087\"}",
            "Sir Odanus",
            "ADRI",
            297437,
            494,
            1,
            0,
            null,
            "76561198130930626",
            3,
            []
        ],
        [
            3915,
            470715,
            "/steam/76561198204683756",
            "{\"icon\":\"PR5-028\"}",
            "Êqoɯ",
            "",
            314659,
            178,
            1,
            0,
            null,
            "76561198204683756",
            3,
            []
        ],
        [
            63191,
            574424,
            "/steam/76561198014487508",
            "{\"icon\":\"PR7-067\"}",
            "Party",
            "PryAR",
            428892,
            2189,
            2,
            4,
            null,
            "76561198014487508",
            3,
            []
        ],
        [
            807,
            651491,
            "/steam/76561198168842556",
            "",
            "EHHN",
            "",
            511474,
            24,
            1,
            2,
            null,
            "76561198168842556",
            3,
            []
        ],
        [
            8501,
            655169,
            "/steam/76561198999563256",
            "{\"icon\":\"PR5-050\"}",
            "prato_",
            "T90",
            515388,
            412,
            1,
            2,
            null,
            "76561198999563256",
            3,
            []
        ],
        [
            19573,
            768437,
            "/steam/76561198144982423",
            "{\"icon\":\"PR7-006\"}",
            "GetGet",
            "Cøt",
            629296,
            1010,
            1,
            0,
            null,
            "76561198144982423",
            3,
            []
        ],
        [
            54788,
            777223,
            "/steam/76561197960962800",
            "{\"icon\":\"PR4-018\"}",
            "defuse89",
            "",
            637453,
            3195,
            2,
            3,
            null,
            "76561197960962800",
            3,
            []
        ],
        [
            3525,
            781625,
            "/steam/76561198065378610",
            "{\"icon\":\"PR7-009\"}",
            "Generic clone",
            "",
            641477,
            91,
            1,
            5,
            null,
            "76561198065378610",
            3,
            []
        ],
        [
            26655,
            816140,
            "/steam/76561198072822376",
            "{\"icon\":\"PR7-077\"}",
            "NON",
            "HKNOW",
            673165,
            794,
            1,
            4,
            null,
            "76561198072822376",
            3,
            []
        ],
        [
            13877,
            817302,
            "/steam/76561198279519309",
            "{\"icon\":\"PR4-007\"}",
            "SPIN",
            "IEP",
            674243,
            429,
            1,
            0,
            null,
            "76561198279519309",
            3,
            []
        ],
        [
            25247,
            881501,
            "/steam/76561198050208761",
            "{\"icon\":\"PR2-005\"}",
            "KilledByTheBoar",
            "",
            732604,
            1409,
            1,
            0,
            null,
            "76561198050208761",
            3,
            []
        ],
        [
            1199,
            946535,
            "/steam/76561198312534988",
            "{\"icon\":\"PR7-079\"}",
            "jbgarcia798",
            "",
            797338,
            29,
            1,
            3,
            null,
            "76561198312534988",
            3,
            []
        ],
        [
            4629,
            974654,
            "/steam/76561198449469174",
            "{\"icon\":\"PR7-007\"}",
            "Vikung",
            "",
            825499,
            125,
            1,
            0,
            null,
            "76561198449469174",
            3,
            []
        ],
        [
            8265,
            987137,
            "/steam/76561198035353032",
            "{\"icon\":\"PR5-064\"}",
            "SEOANE",
            "NENO",
            838059,
            409,
            1,
            0,
            null,
            "76561198035353032",
            3,
            []
        ],
        [
            20181,
            1012345,
            "/steam/76561198018671295",
            "",
            "laartspace",
            "MEKAS",
            863202,
            906,
            1,
            3,
            null,
            "76561198018671295",
            3,
            []
        ],
        [
            4014,
            1053261,
            "/steam/76561198223706944",
            "{\"icon\":\"PR5-050\"}",
            "[NSMN] Violently Happy",
            "",
            904274,
            161,
            1,
            4,
            null,
            "76561198223706944",
            3,
            []
        ],
        [
            33888,
            1073406,
            "/steam/76561198088026587",
            "{\"icon\":\"PR2-003\"}",
            "Sostratus",
            "",
            921232,
            1959,
            1,
            0,
            null,
            "76561198088026587",
            3,
            []
        ],
        [
            11881,
            1182971,
            "/steam/76561198368061953",
            "{\"icon\":\"PR3-006\"}",
            "bodajkto",
            "SIDIM",
            1000883,
            427,
            1,
            0,
            null,
            "76561198368061953",
            3,
            []
        ],
        [
            39130,
            1242469,
            "/steam/76561198404467218",
            "{\"icon\":\"PR5-047\"}",
            "[TocToc] Eratuss",
            "Asile",
            1048413,
            2232,
            2,
            0,
            null,
            "76561198404467218",
            3,
            []
        ],
        [
            4330,
            1366770,
            "/steam/76561198212016248",
            "",
            "Huns Out, Guns Out",
            "duds2",
            1156925,
            101,
            1,
            0,
            null,
            "76561198212016248",
            3,
            []
        ],
        [
            21398,
            1458796,
            "/xboxlive/44E040DE0AF99799C91E57570E2056B7A828029E",
            "{\"icon\":\"PR7-079\"}",
            "freddy122411",
            "WOLO2",
            1250617,
            754,
            1,
            3,
            null,
            "2535456788096572",
            9,
            []
        ],
        [
            4418,
            1590976,
            "/steam/76561198069908054",
            "{\"icon\":\"PR5-068\"}",
            "TheTotti",
            "",
            1372883,
            116,
            1,
            2,
            null,
            "76561198069908054",
            3,
            []
        ],
        [
            24260,
            1592038,
            "/steam/76561198249789530",
            "{\"icon\":\"PR7-034\"}",
            "Captain le Symbolique",
            "GROUH",
            1373929,
            938,
            1,
            3,
            null,
            "76561198249789530",
            3,
            []
        ],
        [
            3024,
            1622089,
            "/steam/76561198282707253",
            "{\"icon\":\"PR1-006\"}",
            "ilaeg",
            "",
            1403233,
            133,
            1,
            0,
            null,
            "76561198282707253",
            3,
            []
        ],
        [
            19166,
            1706413,
            "/steam/76561198417928336",
            "{\"icon\":\"PR1-009\"}",
            "[ARKP] Spârdä",
            "Cøt",
            1484922,
            578,
            1,
            0,
            null,
            "76561198417928336",
            3,
            []
        ],
        [
            6192,
            1752420,
            "/steam/76561198022992995",
            "{\"icon\":\"PR7-019\"}",
            "Joe",
            "",
            1529411,
            191,
            1,
            3,
            null,
            "76561198022992995",
            3,
            []
        ],
        [
            2975,
            1780374,
            "/steam/76561197968186740",
            "{\"icon\":\"PR7-009\"}",
            "ordinary guy",
            "KPB",
            1556243,
            165,
            1,
            0,
            null,
            "76561197968186740",
            3,
            []
        ],
        [
            23277,
            1805289,
            "/steam/76561199021247456",
            "{\"icon\":\"PR7-077\"}",
            "leinormendez190890",
            "MKS",
            1580310,
            661,
            1,
            0,
            null,
            "76561199021247456",
            3,
            []
        ],
        [
            27895,
            1819806,
            "/steam/76561199029835672",
            "{\"icon\":\"PR7-007\"}",
            "Machinia _ Spekulatrix",
            "CoZa",
            1594275,
            1041,
            1,
            3,
            null,
            "76561199029835672",
            3,
            []
        ],
        [
            11823,
            1875028,
            "/steam/76561198355500180",
            "{\"icon\":\"PR4-016\"}",
            "EmoMVP",
            "",
            1647300,
            570,
            1,
            0,
            null,
            "76561198355500180",
            3,
            []
        ],
        [
            14428,
            1881204,
            "/steam/76561198011208326",
            "{\"icon\":\"PR7-023\"}",
            "Felipe",
            "Feudo",
            1653241,
            642,
            1,
            4,
            null,
            "76561198011208326",
            3,
            []
        ],
        [
            1952,
            1890186,
            "/steam/76561198971602919",
            "",
            "diegomarco_10",
            "",
            1661929,
            53,
            1,
            4,
            null,
            "76561198971602919",
            3,
            []
        ],
        [
            33735,
            1890584,
            "/steam/76561199033474882",
            "{\"icon\":\"PR7-067\"}",
            "Eintr8_1899",
            "",
            1662314,
            2020,
            2,
            0,
            null,
            "76561199033474882",
            3,
            []
        ],
        [
            35475,
            1910333,
            "/steam/76561198414337270",
            "",
            "wylyu",
            "",
            1681348,
            1610,
            1,
            0,
            null,
            "76561198414337270",
            3,
            []
        ],
        [
            82,
            1983589,
            "/xboxlive/D5235E8C57D3EA0E45BBF700FCDB3CF7DFCE5721",
            "",
            "ChrisHW",
            "",
            1752379,
            0,
            1,
            0,
            null,
            "2533274798257139",
            9,
            []
        ],
        [
            27906,
            1997619,
            "/steam/76561198325135051",
            "{\"icon\":\"PR7-021\"}",
            "Ãar",
            "",
            1765907,
            1096,
            1,
            2,
            null,
            "76561198325135051",
            3,
            []
        ],
        [
            16804,
            2015170,
            "/xboxlive/528DA8F74E099A462966EECEED726D089871F844",
            "{\"icon\":\"PR7-047\"}",
            "dred67212",
            "",
            1782855,
            557,
            1,
            3,
            null,
            "2535430001717807",
            9,
            []
        ],
        [
            4093,
            2015886,
            "/steam/76561198872114068",
            "{\"icon\":\"PR7-001\"}",
            "Vasso",
            "",
            1783545,
            234,
            1,
            0,
            null,
            "76561198872114068",
            3,
            []
        ],
        [
            7381,
            2022347,
            "/steam/76561198872049672",
            "{\"icon\":\"PR4-017\"}",
            "Parvan",
            "",
            1789789,
            549,
            1,
            0,
            null,
            "76561198872049672",
            3,
            []
        ],
        [
            41448,
            2042774,
            "/steam/76561199038912227",
            "{\"icon\":\"PR7-036\"}",
            "Notorious0819",
            "IPAK5",
            1809500,
            1615,
            1,
            0,
            null,
            "76561199038912227",
            3,
            []
        ],
        [
            13893,
            2057022,
            "/steam/76561198030847174",
            "{\"icon\":\"PR4-007\"}",
            "[NSMN] JikoKanri",
            "NSMN",
            1823352,
            706,
            1,
            4,
            null,
            "76561198030847174",
            3,
            []
        ],
        [
            382,
            2086149,
            "/steam/76561198012403534",
            "{\"icon\":\"PR1-005\"}",
            "Xoler92",
            "Fika",
            1854051,
            18,
            1,
            0,
            null,
            "76561198012403534",
            3,
            []
        ],
        [
            25753,
            2128034,
            "/steam/76561198315145950",
            "{\"icon\":\"PR1-001\"}",
            "via_fora",
            "CdeG",
            1891920,
            1230,
            1,
            0,
            null,
            "76561198315145950",
            3,
            []
        ],
        [
            29072,
            2179505,
            "/steam/76561198077123451",
            "{\"icon\":\"PR5-023\"}",
            "Jack Reacher",
            "Aqour",
            1938145,
            1400,
            1,
            6,
            null,
            "76561198077123451",
            3,
            []
        ],
        [
            9122,
            2205866,
            "/steam/76561198819148465",
            "{\"icon\":\"PR7-084\"}",
            "Haush",
            "",
            1960583,
            459,
            1,
            4,
            null,
            "76561198819148465",
            3,
            []
        ],
        [
            12223,
            2314817,
            "/steam/76561198872024989",
            "{\"icon\":\"PR7-013\"}",
            "VanderA",
            "",
            2060568,
            701,
            1,
            0,
            null,
            "76561198872024989",
            3,
            []
        ],
        [
            19808,
            2334646,
            "/steam/76561197992940400",
            "{\"icon\":\"PR7-039\"}",
            "Kcola",
            "NENO",
            2079618,
            1068,
            1,
            0,
            null,
            "76561197992940400",
            3,
            []
        ],
        [
            7994,
            2343231,
            "/steam/76561198802100235",
            "",
            "jroyovilla",
            "m4238",
            2087998,
            327,
            1,
            0,
            null,
            "76561198802100235",
            3,
            []
        ],
        [
            1988,
            2369438,
            "/steam/76561199046950150",
            "",
            "kaktusmees",
            "Ngati",
            2113257,
            66,
            1,
            0,
            null,
            "76561199046950150",
            3,
            []
        ],
        [
            17034,
            2380943,
            "/steam/76561199037511538",
            "",
            "Mauro_17",
            "MALP",
            2124328,
            687,
            1,
            4,
            null,
            "76561199037511538",
            3,
            []
        ],
        [
            6794,
            2433146,
            "/steam/76561199049325219",
            "{\"icon\":\"PR3-029\"}",
            "Rohan2020",
            "duds2",
            2174806,
            335,
            1,
            0,
            null,
            "76561199049325219",
            3,
            []
        ],
        [
            7196,
            2446330,
            "/xboxlive/B8E45B25C17F21DC766F27337B50879A548D9448",
            "{\"icon\":\"PR7-065\"}",
            "Xavi7019",
            "LFTW",
            2187505,
            294,
            1,
            0,
            null,
            "2533274910840918",
            9,
            []
        ],
        [
            4004,
            2462165,
            "/steam/76561198119562816",
            "{\"icon\":\"PR7-017\"}",
            "Nagyu",
            "",
            2202785,
            190,
            1,
            3,
            null,
            "76561198119562816",
            3,
            []
        ],
        [
            7051,
            2469101,
            "/xboxlive/A6655E8548D8C5A1AD1CE6356476608938B15CF9",
            "{\"icon\":\"PR7-071\"}",
            "mcagonlostia",
            "LFTW",
            2209579,
            305,
            1,
            0,
            null,
            "2535466327224946",
            9,
            []
        ],
        [
            7658,
            2483840,
            "/xboxlive/21963485C55D5EA138AEE750CEF7ADA4E9DACB86",
            "{\"icon\":\"PR4-003\"}",
            "Trivi VLR",
            "LFTW",
            2223914,
            365,
            1,
            0,
            null,
            "2535449044742806",
            9,
            []
        ],
        [
            7935,
            2497609,
            "/steam/76561198274529569",
            "",
            "King John 77",
            "duds2",
            2237268,
            245,
            1,
            0,
            null,
            "76561198274529569",
            3,
            []
        ],
        [
            23529,
            2502053,
            "/steam/76561199003344457",
            "{\"icon\":\"PR7-066\"}",
            "Sung II The Emperor",
            "MAROC",
            2241531,
            993,
            1,
            6,
            null,
            "76561199003344457",
            3,
            []
        ],
        [
            22728,
            2503329,
            "/steam/76561198088947310",
            "{\"icon\":\"PR1-007\"}",
            "Get Lucky",
            "MAROC",
            2242731,
            950,
            1,
            0,
            null,
            "76561198088947310",
            3,
            []
        ],
        [
            4485,
            2526705,
            "/steam/76561198151158651",
            "{\"icon\":\"PR1-005\"}",
            "Chevalier de lorimier",
            "",
            2265358,
            252,
            1,
            3,
            null,
            "76561198151158651",
            3,
            []
        ],
        [
            8591,
            2600444,
            "/xboxlive/79732503764590878DEF7A8E6A8CB5645E2D94CE",
            "{\"icon\":\"PR7-084\"}",
            "DZWhiteBoy",
            "AGSC",
            2337018,
            276,
            1,
            3,
            null,
            "2535411253627451",
            9,
            []
        ],
        [
            12625,
            2604298,
            "/steam/76561199055778848",
            "{\"icon\":\"PR7-077\"}",
            "kikelu",
            "LCwar",
            2340727,
            426,
            1,
            0,
            null,
            "76561199055778848",
            3,
            []
        ],
        [
            94329,
            2634528,
            "/steam/76561198094862882",
            "{\"icon\":\"PR7-024\"}",
            "Borkan",
            "Falca",
            2369807,
            3223,
            2,
            1,
            null,
            "76561198094862882",
            3,
            []
        ],
        [
            11341,
            2687788,
            "/steam/76561198116857697",
            "{\"icon\":\"PR7-019\"}",
            "Coloso",
            "IEP",
            2425918,
            477,
            1,
            0,
            null,
            "76561198116857697",
            3,
            []
        ],
        [
            4902,
            2782151,
            "/steam/76561198360309274",
            "{\"icon\":\"PR3-023\"}",
            "noname",
            "BKnig",
            2511607,
            154,
            1,
            3,
            null,
            "76561198360309274",
            3,
            []
        ],
        [
            22711,
            2831768,
            "/xboxlive/44399D157A15860FC55651DE0EE583114B8CBF68",
            "{\"icon\":\"PR1-001\"}",
            "lvlaste2",
            "ggtag",
            2558801,
            1256,
            1,
            4,
            null,
            "2533274870715531",
            9,
            []
        ],
        [
            12425,
            2856672,
            "/steam/76561199066726460",
            "{\"icon\":\"PR2-002\"}",
            "Santuchon",
            "QBL",
            2582462,
            440,
            1,
            4,
            null,
            "76561199066726460",
            3,
            []
        ],
        [
            17106,
            2878223,
            "/steam/76561198165768285",
            "{\"icon\":\"PR7-013\"}",
            "Kate",
            "GrowU",
            2602847,
            645,
            1,
            0,
            null,
            "76561198165768285",
            3,
            []
        ],
        [
            80120,
            2950241,
            "/steam/76561198971622857",
            "{\"icon\":\"PR3-060\"}",
            "Bruno JT",
            "",
            2669104,
            4083,
            2,
            4,
            null,
            "76561198971622857",
            3,
            []
        ],
        [
            20732,
            3006464,
            "/steam/76561199037080453",
            "{\"icon\":\"PR7-072\"}",
            "Puffin",
            "Liq12",
            2720480,
            820,
            1,
            0,
            null,
            "76561199037080453",
            3,
            []
        ],
        [
            32033,
            3107015,
            "/steam/76561199075217949",
            "{\"icon\":\"PR7-048\"}",
            "Gortahork",
            "IEP",
            2813605,
            1320,
            1,
            0,
            null,
            "76561199075217949",
            3,
            []
        ],
        [
            31719,
            3162620,
            "/steam/76561198025930590",
            "{\"icon\":\"PR7-058\"}",
            "JovenPiscolero",
            "",
            2865278,
            1264,
            1,
            4,
            null,
            "76561198025930590",
            3,
            []
        ],
        [
            7110,
            3175685,
            "/steam/76561199076702416",
            "{\"icon\":\"PR7-038\"}",
            "Happiness_174",
            "",
            2877324,
            368,
            1,
            4,
            null,
            "76561199076702416",
            3,
            []
        ],
        [
            8022,
            3307433,
            "/steam/76561198309519272",
            "{\"icon\":\"PR7-036\"}",
            "Pablo",
            "NENO",
            2998282,
            338,
            1,
            3,
            null,
            "76561198309519272",
            3,
            []
        ],
        [
            2155,
            3317793,
            "/steam/76561199086247397",
            "",
            "2001abelb",
            "HOAXX",
            3008028,
            109,
            1,
            4,
            null,
            "76561199086247397",
            3,
            []
        ],
        [
            975,
            3358145,
            "/steam/76561199087836958",
            "",
            "aydiiin6134",
            "",
            3045808,
            25,
            1,
            2,
            null,
            "76561199087836958",
            3,
            []
        ],
        [
            7810,
            3432985,
            "/steam/76561198194699518",
            "{\"icon\":\"PR5-060\"}",
            "Melody2030",
            "",
            3115974,
            360,
            1,
            0,
            null,
            "76561198194699518",
            3,
            []
        ],
        [
            1405,
            3443681,
            "/steam/76561199091849004",
            "",
            "dosland",
            "",
            3125747,
            37,
            1,
            3,
            null,
            "76561199091849004",
            3,
            []
        ],
        [
            7143,
            3465654,
            "/steam/76561199067985291",
            "{\"icon\":\"PR4-008\"}",
            "Juan VII",
            "Barto",
            3146065,
            341,
            1,
            3,
            null,
            "76561199067985291",
            3,
            []
        ],
        [
            2010,
            3470767,
            "/steam/76561199092725782",
            "{\"icon\":\"PR7-003\"}",
            "collin",
            "",
            3150703,
            72,
            1,
            3,
            null,
            "76561199092725782",
            3,
            []
        ],
        [
            3234,
            3472990,
            "/steam/76561198365557764",
            "{\"icon\":\"PR1-006\"}",
            "otmeadows",
            "",
            3152763,
            61,
            1,
            0,
            null,
            "76561198365557764",
            3,
            []
        ],
        [
            2636,
            3473884,
            "/steam/76561199093120702",
            "",
            "kfark5",
            "",
            3153602,
            60,
            1,
            3,
            null,
            "76561199093120702",
            3,
            []
        ],
        [
            21303,
            3524817,
            "/steam/76561199095607702",
            "",
            "ttbenitez",
            "TIODR",
            3200791,
            787,
            1,
            0,
            null,
            "76561199095607702",
            3,
            []
        ],
        [
            64517,
            3794366,
            "/steam/76561199100212705",
            "{\"icon\":\"PR3-023\"}",
            "1109366596",
            "AOEGE",
            3287252,
            2829,
            2,
            2,
            null,
            "76561199100212705",
            3,
            []
        ],
        [
            4184,
            3888307,
            "/steam/76561198426752025",
            "{\"icon\":\"PR7-042\"}",
            "Sonarchy",
            "",
            3320455,
            154,
            1,
            2,
            null,
            "76561198426752025",
            3,
            []
        ],
        [
            843,
            3937973,
            "/steam/76561198135500800",
            "{\"icon\":\"PR2-002\"}",
            "MxMTR",
            "",
            3343286,
            45,
            1,
            2,
            null,
            "76561198135500800",
            3,
            []
        ],
        [
            27668,
            3963079,
            "/steam/76561198865480389",
            "{\"icon\":\"PR7-066\"}",
            "Lablondejames",
            "CTDL",
            3355602,
            318,
            1,
            3,
            null,
            "76561198865480389",
            3,
            []
        ],
        [
            17937,
            3977253,
            "/steam/76561198341563103",
            "{\"icon\":\"PR7-057\"}",
            "Tony Chester - Shadox",
            "BELIK",
            3363012,
            755,
            1,
            0,
            null,
            "76561198341563103",
            3,
            []
        ],
        [
            3073,
            4024920,
            "/steam/76561198037177151",
            "{\"icon\":\"PR7-017\"}",
            "majer",
            "",
            3388094,
            99,
            1,
            0,
            null,
            "76561198037177151",
            3,
            []
        ],
        [
            880,
            4064045,
            "/steam/76561198034591006",
            "{\"icon\":\"PR7-086\"}",
            "Medwin",
            "",
            3417275,
            45,
            1,
            3,
            null,
            "76561198034591006",
            3,
            []
        ],
        [
            1476,
            4118312,
            "/xboxlive/6D7AB3EAEB6D8AF9B6036C9D34CEF7B69B0BF990",
            "{\"icon\":\"PR7-042\"}",
            "xMADAIROSx",
            "",
            3456902,
            25,
            1,
            4,
            null,
            "2535433871828890",
            9,
            []
        ],
        [
            10690,
            4185456,
            "/steam/76561199035667096",
            "{\"icon\":\"PR7-077\"}",
            "[NSMN] LeRodel",
            "NSMN",
            3498728,
            499,
            1,
            0,
            null,
            "76561199035667096",
            3,
            []
        ],
        [
            435,
            4254944,
            "/steam/76561198067863787",
            "",
            "Shino",
            "",
            3547166,
            28,
            1,
            4,
            null,
            "76561198067863787",
            3,
            []
        ],
        [
            2263,
            4365524,
            "/steam/76561199115047055",
            "{\"icon\":\"PR7-001\"}",
            "josealarco640",
            "",
            3620682,
            96,
            1,
            4,
            null,
            "76561199115047055",
            3,
            []
        ],
        [
            13668,
            4388259,
            "/xboxlive/BD5FDF6EB589F6A87122348D908E85469A1F3349",
            "{\"icon\":\"PR3-044\"}",
            "siruis6266",
            "BaLi",
            5224604,
            567,
            1,
            0,
            null,
            "2533274881686138",
            9,
            []
        ],
        [
            979,
            4437725,
            "/steam/76561198075649779",
            "{\"icon\":\"PR1-003\"}",
            "Fettuccine Alfrodo",
            "",
            3663838,
            64,
            1,
            3,
            null,
            "76561198075649779",
            3,
            []
        ],
        [
            964,
            4437868,
            "/steam/76561198110838916",
            "{\"icon\":\"PR2-005\"}",
            "I'm A Cop",
            "",
            3663917,
            64,
            1,
            3,
            null,
            "76561198110838916",
            3,
            []
        ],
        [
            504,
            4467392,
            "/steam/76561198171878074",
            "{\"icon\":\"PR4-003\"}",
            "loire.euceda",
            "",
            3681582,
            21,
            1,
            3,
            null,
            "76561198171878074",
            3,
            []
        ],
        [
            1163,
            4517896,
            "/steam/76561198198847628",
            "{\"icon\":\"PR4-002\"}",
            "KADER DİYEMEZSİN",
            "",
            3715887,
            55,
            1,
            2,
            null,
            "76561198198847628",
            3,
            []
        ],
        [
            3022,
            4533381,
            "/steam/76561199119680166",
            "{\"icon\":\"PR5-008\"}",
            "miguel.pintos",
            "TiGs",
            3726379,
            96,
            1,
            4,
            null,
            "76561199119680166",
            3,
            []
        ],
        [
            3979,
            4553177,
            "/steam/76561199122897545",
            "{\"icon\":\"PR7-045\"}",
            "Jocko",
            "duds2",
            3739788,
            152,
            1,
            0,
            null,
            "76561199122897545",
            3,
            []
        ],
        [
            21152,
            4589549,
            "/steam/76561199123614089",
            "",
            "Jeprendsçamoi",
            "",
            3764540,
            1227,
            1,
            0,
            null,
            "76561199123614089",
            3,
            []
        ],
        [
            9369,
            4640577,
            "/steam/76561199080576256",
            "",
            "CP",
            "",
            3799665,
            483,
            1,
            4,
            null,
            "76561199080576256",
            3,
            []
        ],
        [
            2862,
            4672877,
            "/steam/76561198004574617",
            "{\"icon\":\"PR7-087\"}",
            "CavemanST",
            "",
            3821479,
            147,
            1,
            0,
            null,
            "76561198004574617",
            3,
            []
        ],
        [
            39687,
            4688997,
            "/steam/76561199122983365",
            "{\"icon\":\"PR5-050\"}",
            "wrath of the old wolf",
            "WoH",
            3832187,
            1474,
            1,
            2,
            null,
            "76561199122983365",
            3,
            []
        ],
        [
            805,
            4783854,
            "/steam/76561198086270321",
            "{\"icon\":\"PR4-009\"}",
            "Vladisnotslav",
            "",
            3896112,
            23,
            1,
            0,
            null,
            "76561198086270321",
            3,
            []
        ],
        [
            9806,
            4795118,
            "/steam/76561198154239201",
            "",
            "IbrameN",
            "",
            3903176,
            424,
            1,
            2,
            null,
            "76561198154239201",
            3,
            []
        ],
        [
            50513,
            4795998,
            "/steam/76561198315427763",
            "{\"icon\":\"PR7-085\"}",
            "guimar",
            "Gafa",
            3903704,
            719,
            1,
            0,
            null,
            "76561198315427763",
            3,
            []
        ],
        [
            6476,
            4799359,
            "/steam/76561198273192088",
            "{\"icon\":\"PR7-066\"}",
            "gerger199",
            "",
            3905858,
            243,
            1,
            3,
            null,
            "76561198273192088",
            3,
            []
        ],
        [
            1964,
            4990870,
            "/steam/76561199012501276",
            "{\"icon\":\"PR1-009\"}",
            "simonesschatzkiste",
            "",
            5895522,
            146,
            1,
            0,
            null,
            "76561199012501276",
            3,
            []
        ],
        [
            933,
            5050049,
            "/steam/76561199140525796",
            "{\"icon\":\"PR1-009\"}",
            "Elessar",
            "klndr",
            4073812,
            51,
            1,
            2,
            null,
            "76561199140525796",
            3,
            []
        ],
        [
            199,
            5068221,
            "/steam/76561198049461928",
            "{\"icon\":\"PR7-087\"}",
            "FÃANOR",
            "klndr",
            4085641,
            11,
            1,
            2,
            null,
            "76561198049461928",
            3,
            []
        ],
        [
            5146,
            5109734,
            "/steam/76561198026319299",
            "",
            "HighTitan",
            "",
            4112006,
            196,
            1,
            0,
            null,
            "76561198026319299",
            3,
            []
        ],
        [
            20569,
            5125058,
            "/xboxlive/686432CF2B9B93488B7061F1A3A44D0722843C6D",
            "{\"icon\":\"PR7-007\"}",
            "dk158094",
            "CbaG",
            4121924,
            1243,
            1,
            2,
            null,
            "2535454264594253",
            9,
            []
        ],
        [
            2319,
            5168577,
            "/steam/76561198061261467",
            "{\"icon\":\"PR4-004\"}",
            "Altpanth",
            "TiGs",
            4149907,
            112,
            1,
            4,
            null,
            "76561198061261467",
            3,
            []
        ],
        [
            9003,
            5366749,
            "/steam/76561199151866481",
            "{\"icon\":\"PR5-064\"}",
            "Peacethiew",
            "MSMAD",
            4287981,
            313,
            1,
            3,
            null,
            "76561199151866481",
            3,
            []
        ],
        [
            1048,
            5375133,
            "/steam/76561198403755581",
            "",
            "ziwis",
            "TiGs",
            4289760,
            60,
            1,
            4,
            null,
            "76561198403755581",
            3,
            []
        ],
        [
            908,
            5468772,
            "/xboxlive/B337213D5766BA095945F2465D3C648F60E060A1",
            "",
            "DoCtoRDieD",
            "",
            5356391,
            77,
            1,
            0,
            null,
            "2533274915707838",
            9,
            []
        ],
        [
            187,
            5521027,
            "/steam/76561198210165719",
            "",
            "HorizonFM00",
            "",
            4385514,
            15,
            1,
            4,
            null,
            "76561198210165719",
            3,
            []
        ],
        [
            13708,
            5551925,
            "/steam/76561198099520661",
            "{\"icon\":\"PR5-070\"}",
            "+++",
            "Fireb",
            4404582,
            808,
            1,
            3,
            null,
            "76561198099520661",
            3,
            []
        ],
        [
            16445,
            5612841,
            "/steam/76561199163779290",
            "{\"icon\":\"PR7-085\"}",
            "MV Cayetano",
            "KNQ",
            4443197,
            699,
            1,
            3,
            null,
            "76561199163779290",
            3,
            []
        ],
        [
            14644,
            5614408,
            "/steam/76561199163502974",
            "{\"icon\":\"PR2-004\"}",
            "David MV",
            "",
            4444244,
            629,
            1,
            3,
            null,
            "76561199163502974",
            3,
            []
        ],
        [
            4837,
            5697297,
            "/steam/76561199168123005",
            "{\"icon\":\"PR1-001\"}",
            "MValexandvac",
            "",
            4497215,
            156,
            1,
            3,
            null,
            "76561199168123005",
            3,
            []
        ],
        [
            3088,
            5863569,
            "/steam/76561198101791188",
            "{\"icon\":\"PR3-029\"}",
            "â²ððá¥á¿ð ð¦ð·.",
            "BsAs",
            4604729,
            146,
            1,
            4,
            null,
            "76561198101791188",
            3,
            []
        ],
        [
            5331,
            5988947,
            "/steam/76561198016918721",
            "{\"icon\":\"PR7-087\"}",
            "Cubayop",
            "",
            5139607,
            235,
            1,
            0,
            null,
            "76561198016918721",
            3,
            []
        ],
        [
            4914,
            6003696,
            "/steam/76561198005172463",
            "{\"icon\":\"PR2-002\"}",
            "blackM",
            "",
            4691097,
            248,
            1,
            0,
            null,
            "76561198005172463",
            3,
            []
        ],
        [
            533,
            6064765,
            "/steam/76561198983730674",
            "{\"icon\":\"PR1-006\"}",
            "conejo_g2",
            "TiGs",
            4729094,
            17,
            1,
            4,
            null,
            "76561198983730674",
            3,
            []
        ],
        [
            1895,
            6069265,
            "/steam/76561198059248622",
            "{\"icon\":\"PR3-031\"}",
            "m.nickrogers",
            "",
            4863189,
            0,
            1,
            3,
            null,
            "76561198059248622",
            3,
            []
        ],
        [
            392,
            6073189,
            "/steam/76561198295671212",
            "{\"icon\":\"PR2-004\"}",
            "gabospeed",
            "TiGs",
            4734234,
            9,
            1,
            4,
            null,
            "76561198295671212",
            3,
            []
        ],
        [
            1757,
            6174781,
            "/steam/76561199161648377",
            "",
            "travis.zubair23",
            "",
            4798050,
            94,
            1,
            3,
            null,
            "76561199161648377",
            3,
            []
        ],
        [
            8259,
            6199521,
            "/xboxlive/3255B0CD276ADAF78D687FDDAF388F1340CC2C2C",
            "{\"icon\":\"PR3-047\"}",
            "SteppedFiber16",
            "",
            4813214,
            430,
            1,
            3,
            null,
            "2533274926423104",
            9,
            []
        ],
        [
            2150,
            6204227,
            "/steam/76561198001937565",
            "{\"icon\":\"PR4-012\"}",
            "set_on_success",
            "",
            4816092,
            97,
            1,
            3,
            null,
            "76561198001937565",
            3,
            []
        ],
        [
            13948,
            6208182,
            "/steam/76561199194544790",
            "{\"icon\":\"PR2-002\"}",
            "Loco51100",
            "",
            4818546,
            1039,
            1,
            0,
            null,
            "76561199194544790",
            3,
            []
        ],
        [
            13300,
            6300063,
            "/steam/76561198402864220",
            "",
            "HK-Brain",
            "lGMTl",
            4874334,
            951,
            1,
            2,
            null,
            "76561198402864220",
            3,
            []
        ],
        [
            20956,
            6400711,
            "/steam/76561199204395530",
            "{\"icon\":\"PR7-001\"}",
            "å¸å½AK47",
            "66566",
            4937422,
            1274,
            1,
            2,
            null,
            "76561199204395530",
            3,
            []
        ],
        [
            13192,
            6642333,
            "/steam/76561198363679554",
            "",
            "Pangare",
            "",
            4981386,
            656,
            1,
            4,
            null,
            "76561198363679554",
            3,
            []
        ],
        [
            23049,
            6793230,
            "/steam/76561199211365992",
            "{\"icon\":\"PR3-021\"}",
            "snipernoodle",
            "YYroP",
            5029440,
            1327,
            1,
            3,
            null,
            "76561199211365992",
            3,
            []
        ],
        [
            1058,
            7380218,
            "/xboxlive/FCABB9244CF7FFCA40DE2E2B3C0A1F11C001BF12",
            "{\"icon\":\"PR4-004\"}",
            "VicenTHC",
            "",
            5478606,
            73,
            1,
            0,
            null,
            "2533274913508506",
            9,
            []
        ],
        [
            705,
            7660713,
            "/xboxlive/FE4DDCF1DE078BF37AA697CC7A5B03D356B92FEE",
            "",
            "PlantedPlanet13",
            "",
            6177261,
            40,
            1,
            4,
            null,
            "2535426778334716",
            9,
            []
        ],
        [
            459,
            7931597,
            "/steam/76561198082777077",
            "",
            "BuLLeT_",
            "",
            5182637,
            46,
            1,
            0,
            null,
            "76561198082777077",
            3,
            []
        ],
        [
            267,
            8139664,
            "/steam/76561198361670147",
            "",
            "berbats",
            "",
            6274953,
            6,
            1,
            2,
            null,
            "76561198361670147",
            3,
            []
        ],
        [
            24,
            8202995,
            "/steam/76561198173689147",
            "",
            "Deimos",
            "",
            6295151,
            0,
            1,
            2,
            null,
            "76561198173689147",
            3,
            []
        ],
        [
            1866,
            8471865,
            "/steam/76561199045235180",
            "{\"icon\":\"PR5-054\"}",
            "sergio_nicolas",
            "",
            5237034,
            91,
            1,
            4,
            null,
            "76561199045235180",
            3,
            []
        ],
        [
            6841,
            8551146,
            "/steam/76561198281254736",
            "{\"icon\":\"PR2-001\"}",
            "DonnieDarko0",
            "",
            5260065,
            246,
            1,
            0,
            null,
            "76561198281254736",
            3,
            []
        ],
        [
            327,
            9008413,
            "/xboxlive/9325425BF377A9D01FAD4F8AA01AF09A0AF88C97",
            "",
            "BeccaPearl3343",
            "",
            5373108,
            15,
            1,
            3,
            null,
            "2535456801658623",
            9,
            []
        ],
        [
            8590,
            9151072,
            "/steam/76561198190304301",
            "",
            "Ursinho Brown",
            "",
            5419707,
            182,
            1,
            4,
            null,
            "76561198190304301",
            3,
            []
        ],
        [
            3100,
            9238573,
            "/steam/76561198154889985",
            "",
            "md28md",
            "lGMTl",
            5445778,
            187,
            1,
            2,
            null,
            "76561198154889985",
            3,
            []
        ],
        [
            7644,
            9405158,
            "/steam/76561199238828666",
            "{\"icon\":\"PR7-072\"}",
            "jpgxxx1",
            "",
            5498064,
            302,
            1,
            0,
            null,
            "76561199238828666",
            3,
            []
        ],
        [
            3631,
            9499502,
            "/xboxlive/6F83A9FBEAF7D950AA373A7F7B950F99AF49B529",
            "",
            "RogueMermaid374",
            "",
            5543851,
            8,
            1,
            0,
            null,
            "2535443601592593",
            9,
            []
        ],
        [
            6406,
            9540062,
            "/steam/76561199036443006",
            "{\"icon\":\"PR2-005\"}",
            "[NSMN] matata",
            "NSMN",
            5561147,
            295,
            1,
            4,
            null,
            "76561199036443006",
            3,
            []
        ],
        [
            18138,
            9555704,
            "/steam/76561199242460562",
            "{\"icon\":\"PR1-001\"}",
            "Ganji",
            "",
            5566952,
            1384,
            1,
            0,
            null,
            "76561199242460562",
            3,
            []
        ],
        [
            3577,
            9716492,
            "/steam/76561199248401418",
            "",
            "625909675",
            "",
            5626669,
            7,
            1,
            0,
            null,
            "76561199248401418",
            3,
            []
        ],
        [
            1536,
            9812349,
            "/steam/76561199215543421",
            "",
            "lufras7",
            "12592",
            5663368,
            44,
            1,
            4,
            null,
            "76561199215543421",
            3,
            []
        ],
        [
            3817,
            9823657,
            "/steam/76561199029222502",
            "{\"icon\":\"PR3-007\"}",
            "Komik0",
            "IEP",
            5667610,
            162,
            1,
            0,
            null,
            "76561199029222502",
            3,
            []
        ],
        [
            10263,
            9880217,
            "/steam/76561199261258356",
            "{\"icon\":\"PR1-002\"}",
            "Carlo Magno",
            "FAME",
            5689417,
            629,
            1,
            3,
            null,
            "76561199261258356",
            3,
            []
        ],
        [
            6315,
            9905304,
            "/steam/76561198043679430",
            "{\"icon\":\"PR2-002\"}",
            "Captain",
            "",
            5700111,
            313,
            1,
            0,
            null,
            "76561198043679430",
            3,
            []
        ],
        [
            7046,
            9949678,
            "/steam/76561199256233248",
            "{\"icon\":\"PR5-072\"}",
            "rossnialb",
            "RECIE",
            5723673,
            457,
            1,
            3,
            null,
            "76561199256233248",
            3,
            []
        ],
        [
            1567,
            10000028,
            "/steam/76561198441731434",
            "{\"icon\":\"PR1-009\"}",
            "memet3552",
            "",
            5751701,
            83,
            1,
            2,
            null,
            "76561198441731434",
            3,
            []
        ],
        [
            102,
            10037438,
            "/steam/76561198114401921",
            "{\"icon\":\"PR1-004\"}",
            "jonno22",
            "",
            5771330,
            6,
            1,
            5,
            null,
            "76561198114401921",
            3,
            []
        ],
        [
            1332,
            10067380,
            "/steam/76561199273352044",
            "{\"icon\":\"PR3-004\"}",
            "perks",
            "",
            5784397,
            99,
            1,
            0,
            null,
            "76561199273352044",
            3,
            []
        ],
        [
            1918,
            10208223,
            "/steam/76561199286749766",
            "",
            "459627980",
            "",
            5844660,
            175,
            1,
            2,
            null,
            "76561199286749766",
            3,
            []
        ],
        [
            5499,
            10246506,
            "/steam/76561199108809061",
            "{\"icon\":\"PR3-027\"}",
            "å¸å½æ¶ä»£",
            "okhj",
            5861094,
            196,
            1,
            2,
            null,
            "76561199108809061",
            3,
            []
        ],
        [
            1824,
            10314917,
            "/steam/76561199013472064",
            "{\"icon\":\"PR1-009\"}",
            "Waldfeexyz",
            "",
            5887815,
            142,
            1,
            0,
            null,
            "76561199013472064",
            3,
            []
        ],
        [
            3002,
            10404764,
            "/steam/76561199322469424",
            "{\"icon\":\"PR5-012\"}",
            "0hrid",
            "rpv90",
            5924407,
            100,
            1,
            0,
            null,
            "76561199322469424",
            3,
            []
        ],
        [
            1304,
            10542987,
            "/steam/76561198056173169",
            "",
            "Peibol_23",
            "NENO",
            6004761,
            99,
            1,
            0,
            null,
            "76561198056173169",
            3,
            []
        ],
        [
            1135,
            10568877,
            "/steam/76561199365164460",
            "",
            "soteriaraphaela",
            "",
            6019576,
            56,
            1,
            3,
            null,
            "76561199365164460",
            3,
            []
        ],
        [
            1804,
            10719468,
            "/steam/76561199370925627",
            "{\"icon\":\"PR3-010\"}",
            "Irony",
            "",
            6069650,
            59,
            1,
            0,
            null,
            "76561199370925627",
            3,
            []
        ],
        [
            362,
            10727182,
            "/steam/76561198332547320",
            "",
            "Draakje",
            "",
            6072907,
            52,
            1,
            0,
            null,
            "76561198332547320",
            3,
            []
        ],
        [
            409,
            10729491,
            "/steam/76561199152660629",
            "",
            "rdk88",
            "",
            6073867,
            53,
            1,
            0,
            null,
            "76561199152660629",
            3,
            []
        ],
        [
            2150,
            10823255,
            "/steam/76561198021916685",
            "",
            "Snooze",
            "",
            6114930,
            153,
            1,
            0,
            null,
            "76561198021916685",
            3,
            []
        ],
        [
            115,
            11221373,
            "/steam/76561198135516889",
            "{\"icon\":\"PR7-084\"}",
            "Rasecx",
            "",
            6194634,
            11,
            1,
            3,
            null,
            "76561198135516889",
            3,
            []
        ],
        [
            413,
            11273506,
            "/xboxlive/4153CC9646B5F31B7A43BD37478D0E9FE88CCF0B",
            "",
            "JinZ01760",
            "",
            6215911,
            23,
            1,
            2,
            null,
            "2535429369458556",
            9,
            []
        ],
        [
            542,
            11287549,
            "/steam/76561198398383038",
            "{\"icon\":\"PR2-001\"}",
            "Jean Reis",
            "",
            6222009,
            31,
            1,
            4,
            null,
            "76561198398383038",
            3,
            []
        ],
        [
            203,
            11303666,
            "/steam/76561199397999616",
            "{\"icon\":\"PR7-087\"}",
            "GabrielSerre",
            "",
            6228668,
            11,
            1,
            4,
            null,
            "76561199397999616",
            3,
            []
        ],
        [
            241,
            11359023,
            "/xboxlive/F2205FB0DD9B50D3AE6CAE1A05F271DA3D278954",
            "",
            "Daffyione",
            "",
            6252909,
            1,
            1,
            0,
            null,
            "2533274821126888",
            9,
            []
        ],
        [
            178,
            11373534,
            "/steam/76561198352115041",
            "",
            "alptekinsofu",
            "",
            6259186,
            14,
            1,
            2,
            null,
            "76561198352115041",
            3,
            []
        ],
        [
            796,
            11381488,
            "/steam/76561199388838270",
            "",
            "ç¼éèè·è½¦éææ»å…¨å®¶",
            "",
            6262523,
            21,
            1,
            2,
            [
                16,
                "12 hr MP Ban",
                1666411024
            ],
            "76561199388838270",
            3,
            []
        ],
        [
            58,
            11396814,
            "/xboxlive/8690A814A7BB0C0DA12F636E9FC253C8F4338F21",
            "",
            "BunnnySTr",
            "",
            6292216,
            0,
            1,
            2,
            null,
            "2535441374491685",
            9,
            []
        ],
        [
            7,
            11398605,
            "/xboxlive/715D0E91CF1AB4EB63DDA7BDA40FF751DED22CD4",
            "",
            "sesvi0",
            "",
            6295465,
            0,
            1,
            2,
            null,
            "2535457477030039",
            9,
            []
        ],
        [
            163,
            11428248,
            "/steam/76561198231598376",
            "{\"icon\":\"PR1-005\"}",
            "Come Gatos",
            "",
            6282940,
            6,
            1,
            4,
            null,
            "76561198231598376",
            3,
            []
        ],
        [
            369,
            11445670,
            "/steam/76561198091375279",
            "",
            "123",
            "",
            6290568,
            7,
            1,
            0,
            null,
            "76561198091375279",
            3,
            []
        ],
        [
            83,
            11451305,
            "/steam/76561199415752393",
            "",
            "sternmarius92400",
            "",
            6293377,
            0,
            1,
            0,
            null,
            "76561199415752393",
            3,
            []
        ],
        [
            16,
            11454851,
            "/steam/76561198205042857",
            "",
            "JendaloBoi",
            "",
            6295079,
            0,
            1,
            2,
            null,
            "76561198205042857",
            3,
            []
        ]
    ]
]

AoE3:DE

Request

GET /game/account/getProfileName?callNum=33&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=12133&profile_ids=%5B-1%2C524323%2C792116%2C816802%2C1272731%2C1371901%2C1904936%2C2450324%2C2606899%2C2728197%2C3566744%2C3591767%2C3593112%2C3602036%2C3615114%2C3616332%2C3625807%2C3628330%2C3634975%2C3667975%2C3826251%2C3841248%2C3876278%2C3945946%2C4230498%2C4441825%2C4477595%2C4636054%2C4678303%2C4783470%2C5266699%2C5387896%2C5433591%2C5485976%2C5583355%2C5698043%2C5744988%2C5868302%2C6792744%2C6958176%2C7966289%2C7966792%2C8578983%2C8708783%2C8770163%2C9076100%2C9457850%2C9604824%2C9611248%2C10085086%2C10102278%2C10150814%2C10629516%2C10728732%2C10758920%2C10833200%2C10946008%2C10972912%2C10992937%2C11076512%2C11300226%2C11302991%2C11364286%2C11397325%2C11412387%2C11420906%2C11433510%2C11470462%2C11484626%2C11485697%2C11486830%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idsarray[int][2,3]
sessionIDstr

Response

[
    0,
    [
        null,
        [
            237,
            524323,
            "/steam/76561198011886025",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":2,\"ac\":4}",
            "Human72",
            "",
            199490,
            0,
            1,
            3,
            null,
            "76561198011886025",
            3,
            []
        ],
        [
            1209,
            792116,
            "/steam/76561198258061041",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":71,\"ac\":3}",
            "EJH(BLACKEAGLE)",
            "",
            948948,
            0,
            1,
            2,
            null,
            "76561198258061041",
            3,
            []
        ],
        [
            989,
            816802,
            "/steam/76561198066028245",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":6,\"ac\":3}",
            "IV. qUit",
            "",
            948950,
            0,
            1,
            2,
            null,
            "76561198066028245",
            3,
            []
        ],
        [
            886,
            1272731,
            "/steam/76561198017528508",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "Wiggle o/",
            "",
            1125757,
            0,
            1,
            0,
            null,
            "76561198017528508",
            3,
            []
        ],
        [
            2348,
            1371901,
            "/steam/76561198307242672",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "AntiAnton",
            "Heiny",
            28363,
            0,
            1,
            0,
            null,
            "76561198307242672",
            3,
            []
        ],
        [
            1826,
            1904936,
            "/steam/76561198089959934",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":199,\"ac\":3}",
            "Den-Den",
            "",
            791616,
            0,
            1,
            0,
            null,
            "76561198089959934",
            3,
            []
        ],
        [
            249,
            2450324,
            "/steam/76561198144091571",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "BonBjörno",
            "",
            875662,
            0,
            1,
            0,
            null,
            "76561198144091571",
            3,
            []
        ],
        [
            5490,
            2606899,
            "/xboxlive/75644062F28BBA05126C146A4D2A0B7BD9978B17",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":203,\"ac\":3}",
            "SergofeN",
            "RIOIS",
            9338,
            0,
            1,
            3,
            null,
            "2535461625269424",
            9,
            []
        ],
        [
            171,
            2728197,
            "/steam/76561198356289010",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":205,\"ac\":3}",
            "Dumbledore",
            "",
            1351484,
            0,
            1,
            0,
            null,
            "76561198356289010",
            3,
            []
        ],
        [
            11282,
            3566744,
            "/steam/76561197996724781",
            "{\"v\":1,\"twr\":5,\"wlr\":3,\"ai\":199,\"ac\":3}",
            "Flowdu44",
            "",
            90766,
            0,
            1,
            0,
            null,
            "76561197996724781",
            3,
            []
        ],
        [
            8396,
            3591767,
            "/steam/76561198271394828",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":3,\"ac\":5}",
            "noobciv",
            "Hayyn",
            16049,
            0,
            1,
            0,
            null,
            "76561198271394828",
            3,
            []
        ],
        [
            1282,
            3593112,
            "/steam/76561198983063773",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":59,\"ac\":3}",
            "killsasukae",
            "",
            19065,
            0,
            1,
            2,
            null,
            "76561198983063773",
            3,
            []
        ],
        [
            9702,
            3602036,
            "/steam/76561198076344233",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":60,\"ac\":3}",
            "madruga_aoe",
            "UNIBR",
            39837,
            0,
            1,
            4,
            null,
            "76561198076344233",
            3,
            []
        ],
        [
            3598,
            3615114,
            "/steam/76561198043773802",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":173,\"ac\":3}",
            "Bamboo",
            "FRCAD",
            69800,
            0,
            1,
            3,
            null,
            "76561198043773802",
            3,
            []
        ],
        [
            656,
            3616332,
            "/steam/76561198093019311",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "bigsmoke3",
            "",
            72606,
            0,
            1,
            0,
            null,
            "76561198093019311",
            3,
            []
        ],
        [
            4849,
            3625807,
            "/steam/76561199076375319",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":6,\"ac\":2}",
            "TakeshisCastle",
            "CMDT",
            93311,
            0,
            1,
            0,
            null,
            "76561199076375319",
            3,
            []
        ],
        [
            1522,
            3628330,
            "/steam/76561198028441489",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":197,\"ac\":3}",
            "Furorarma",
            "JGR",
            98687,
            0,
            1,
            0,
            null,
            "76561198028441489",
            3,
            []
        ],
        [
            1826,
            3634975,
            "/steam/76561198142385743",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":198,\"ac\":3}",
            "proximo",
            "",
            113084,
            0,
            1,
            0,
            null,
            "76561198142385743",
            3,
            []
        ],
        [
            772,
            3667975,
            "/steam/76561198063732404",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":167,\"ac\":3}",
            "Les Hippocampes",
            "",
            181560,
            0,
            1,
            0,
            null,
            "76561198063732404",
            3,
            []
        ],
        [
            2654,
            3826251,
            "/steam/76561198058543953",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":198,\"ac\":3}",
            "jeja_67",
            "COSA",
            411618,
            0,
            1,
            0,
            null,
            "76561198058543953",
            3,
            []
        ],
        [
            70,
            3841248,
            "/steam/76561198134282206",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":201,\"ac\":3}",
            "Fönes",
            "",
            428816,
            0,
            1,
            0,
            null,
            "76561198134282206",
            3,
            []
        ],
        [
            6417,
            3876278,
            "/steam/76561198257470534",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "khcheung123",
            "",
            466603,
            0,
            1,
            2,
            null,
            "76561198257470534",
            3,
            []
        ],
        [
            514,
            3945946,
            "/steam/76561198164666348",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "keeperdave4",
            "",
            528107,
            0,
            1,
            0,
            null,
            "76561198164666348",
            3,
            []
        ],
        [
            295,
            4230498,
            "/steam/76561198290173884",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":9,\"ac\":0}",
            "Icone",
            "",
            2484120,
            0,
            1,
            0,
            null,
            "76561198290173884",
            3,
            []
        ],
        [
            2732,
            4441825,
            "/steam/76561198296928582",
            "{\"v\":1,\"twr\":3,\"wlr\":2,\"ai\":202,\"ac\":3}",
            "MeinHausHalt",
            "WAD",
            760408,
            0,
            1,
            0,
            null,
            "76561198296928582",
            3,
            []
        ],
        [
            7824,
            4477595,
            "/steam/76561198801029967",
            "{\"v\":1,\"twr\":6,\"wlr\":1,\"ai\":189,\"ac\":3}",
            "franciscoepietro",
            "PRO1",
            777647,
            0,
            1,
            0,
            null,
            "76561198801029967",
            3,
            []
        ],
        [
            462,
            4636054,
            "/steam/76561198271392219",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "UwU Kwaber Pls",
            "",
            839847,
            0,
            1,
            0,
            null,
            "76561198271392219",
            3,
            []
        ],
        [
            2904,
            4678303,
            "/xboxlive/42307A03B3C98D3E5EC70B3B0545C6CBCA77C374",
            "{\"v\":1,\"twr\":4,\"wlr\":2,\"ai\":59,\"ac\":3}",
            "Zeledon V",
            "",
            855260,
            0,
            1,
            3,
            null,
            "2535451505662870",
            9,
            []
        ],
        [
            4886,
            4783470,
            "/steam/76561198159311936",
            "{\"v\":1,\"twr\":5,\"wlr\":1,\"ai\":202,\"ac\":3}",
            "The Noob",
            "",
            900682,
            0,
            1,
            0,
            null,
            "76561198159311936",
            3,
            []
        ],
        [
            1017,
            5266699,
            "/steam/76561198082519910",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":69,\"ac\":1}",
            "Lord_Old_Joe",
            "",
            1117821,
            0,
            1,
            0,
            null,
            "76561198082519910",
            3,
            []
        ],
        [
            2523,
            5387896,
            "/steam/76561198799203352",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":59,\"ac\":3}",
            "TURKBEY",
            "",
            1165281,
            0,
            1,
            2,
            null,
            "76561198799203352",
            3,
            []
        ],
        [
            141,
            5433591,
            "/steam/76561198851739585",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":78,\"ac\":3}",
            "ZloiZebr",
            "",
            1183715,
            0,
            1,
            0,
            null,
            "76561198851739585",
            3,
            []
        ],
        [
            320,
            5485976,
            "/steam/76561198071443449",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":52,\"ac\":3}",
            "PrImTiME",
            "",
            2412463,
            0,
            1,
            0,
            null,
            "76561198071443449",
            3,
            []
        ],
        [
            544,
            5583355,
            "/steam/76561198014165214",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "annettehosenfeld",
            "",
            1254788,
            0,
            1,
            0,
            null,
            "76561198014165214",
            3,
            []
        ],
        [
            315,
            5698043,
            "/steam/76561198401293203",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "Darkbluegod",
            "",
            1314417,
            0,
            1,
            0,
            null,
            "76561198401293203",
            3,
            []
        ],
        [
            583,
            5744988,
            "/steam/76561199170468688",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "DonStedt",
            "",
            1338068,
            0,
            1,
            0,
            null,
            "76561199170468688",
            3,
            []
        ],
        [
            719,
            5868302,
            "/steam/76561198398773886",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":202,\"ac\":3}",
            "lukikap",
            "",
            1396859,
            0,
            1,
            0,
            null,
            "76561198398773886",
            3,
            []
        ],
        [
            167,
            6792744,
            "/steam/76561198217453673",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "BLOODY_SUCCUBUS",
            "",
            1727886,
            0,
            1,
            0,
            null,
            "76561198217453673",
            3,
            []
        ],
        [
            2266,
            6958176,
            "/steam/76561199216620219",
            "{\"v\":1,\"twr\":3,\"wlr\":4,\"ai\":23,\"ac\":3}",
            "Universal équilibrium disciple.",
            "",
            1951833,
            0,
            1,
            0,
            null,
            "76561199216620219",
            3,
            []
        ],
        [
            441,
            7966289,
            "/steam/76561198039058621",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":201,\"ac\":3}",
            "Lionhearthone",
            "",
            1840604,
            0,
            1,
            0,
            null,
            "76561198039058621",
            3,
            []
        ],
        [
            393,
            7966792,
            "/steam/76561199037489499",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "El D1ablo",
            "",
            1840635,
            0,
            1,
            0,
            null,
            "76561199037489499",
            3,
            []
        ],
        [
            6286,
            8578983,
            "/steam/76561199223916074",
            "{\"v\":1,\"twr\":7,\"wlr\":2,\"ai\":37,\"ac\":3}",
            "KING VJ",
            "Ä¢Ñ0ÅŦ",
            1889970,
            0,
            1,
            3,
            null,
            "76561199223916074",
            3,
            []
        ],
        [
            120,
            8708783,
            "/steam/76561198041484866",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":8,\"ac\":0}",
            "Oskar_Charlie",
            "",
            1915512,
            0,
            1,
            0,
            null,
            "76561198041484866",
            3,
            []
        ],
        [
            2250,
            8770163,
            "/steam/76561199226066477",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":59,\"ac\":3}",
            "Maximus  Orpheus",
            "",
            1923561,
            0,
            1,
            3,
            null,
            "76561199226066477",
            3,
            []
        ],
        [
            676,
            9076100,
            "/xboxlive/385558719F3090483D41430B45D0BBCEF36425C3",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":190,\"ac\":3}",
            "SveniBoy6939",
            "Hihi",
            1970318,
            0,
            1,
            3,
            null,
            "2535439742883718",
            9,
            []
        ],
        [
            753,
            9457850,
            "/steam/76561199239509380",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":203,\"ac\":3}",
            "tuzluktakituz",
            "brchl",
            2035665,
            0,
            1,
            2,
            null,
            "76561199239509380",
            3,
            []
        ],
        [
            442,
            9604824,
            "/steam/76561198116647742",
            "{\"v\":1,\"twr\":1,\"wlr\":2,\"ai\":203,\"ac\":3}",
            "JrMephisto",
            "",
            2066233,
            0,
            1,
            2,
            null,
            "76561198116647742",
            3,
            []
        ],
        [
            261,
            9611248,
            "/steam/76561198338375143",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "Kolaj-G",
            "",
            2067401,
            0,
            1,
            2,
            null,
            "76561198338375143",
            3,
            []
        ],
        [
            740,
            10085086,
            "/steam/76561198078259253",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":166,\"ac\":3}",
            "Boixos69",
            "MgAo3",
            2173662,
            0,
            1,
            0,
            null,
            "76561198078259253",
            3,
            []
        ],
        [
            28,
            10102278,
            "/steam/76561198990526220",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "yazuyy",
            "",
            2177701,
            0,
            1,
            0,
            null,
            "76561198990526220",
            3,
            []
        ],
        [
            170,
            10150814,
            "/steam/76561198854107325",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":3,\"ac\":0}",
            "PAV",
            "",
            2188469,
            0,
            1,
            0,
            null,
            "76561198854107325",
            3,
            []
        ],
        [
            64,
            10629516,
            "/steam/76561199149483947",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":45,\"ac\":3}",
            "Heheheha",
            "",
            2326585,
            0,
            1,
            0,
            null,
            "76561199149483947",
            3,
            []
        ],
        [
            367,
            10728732,
            "/steam/76561198107550105",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":7,\"ac\":0}",
            "maximilian.bohmte",
            "",
            2398467,
            0,
            1,
            0,
            null,
            "76561198107550105",
            3,
            []
        ],
        [
            115,
            10758920,
            "/steam/76561199225588613",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":193,\"ac\":3}",
            "glebparis95",
            "URSS7",
            2407330,
            0,
            1,
            0,
            null,
            "76561199225588613",
            3,
            []
        ],
        [
            202,
            10833200,
            "/steam/76561199381108373",
            "{\"v\":1,\"twr\":1,\"wlr\":2,\"ai\":1,\"ac\":0}",
            "robertdegr36",
            "",
            2426296,
            0,
            1,
            0,
            null,
            "76561199381108373",
            3,
            []
        ],
        [
            927,
            10946008,
            "/steam/76561199276144388",
            "{\"v\":1,\"twr\":2,\"wlr\":1,\"ai\":188,\"ac\":3}",
            "n.molinamm",
            "",
            2441708,
            0,
            1,
            4,
            null,
            "76561199276144388",
            3,
            []
        ],
        [
            1235,
            10972912,
            "/steam/76561199385630227",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":163,\"ac\":3}",
            "Scar_",
            "",
            2447428,
            0,
            1,
            2,
            null,
            "76561199385630227",
            3,
            []
        ],
        [
            295,
            10992937,
            "/steam/76561198165469186",
            "{\"v\":1,\"twr\":1,\"wlr\":2,\"ai\":201,\"ac\":3}",
            "lebrontaso",
            "",
            2451758,
            0,
            1,
            2,
            null,
            "76561198165469186",
            3,
            []
        ],
        [
            222,
            11076512,
            "/steam/76561199387476187",
            "{\"v\":1,\"twr\":1,\"wlr\":2,\"ai\":199,\"ac\":3}",
            "fmoctezuma91",
            "",
            2475519,
            0,
            1,
            3,
            null,
            "76561199387476187",
            3,
            []
        ],
        [
            82,
            11300226,
            "/steam/76561198972065924",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":173,\"ac\":3}",
            "ScaryyHdd",
            "",
            2483305,
            0,
            1,
            0,
            null,
            "76561198972065924",
            3,
            []
        ],
        [
            163,
            11302991,
            "/steam/76561198796978159",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":182,\"ac\":3}",
            "Phiwo YT",
            "",
            2483878,
            0,
            1,
            0,
            null,
            "76561198796978159",
            3,
            []
        ],
        [
            21,
            11364286,
            "/steam/76561198188051774",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "carinio87",
            "",
            2496671,
            0,
            1,
            0,
            null,
            "76561198188051774",
            3,
            []
        ],
        [
            35,
            11397325,
            "/steam/76561198151137340",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "frankie1999",
            "",
            2503780,
            0,
            1,
            0,
            null,
            "76561198151137340",
            3,
            []
        ],
        [
            44,
            11412387,
            "/steam/76561198143272032",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":201,\"ac\":3}",
            "Italiotas",
            "",
            2507201,
            0,
            1,
            0,
            null,
            "76561198143272032",
            3,
            []
        ],
        [
            50,
            11420906,
            "/steam/76561199229060235",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":6,\"ac\":0}",
            "citrondu92",
            "",
            2509119,
            0,
            1,
            0,
            null,
            "76561199229060235",
            3,
            []
        ],
        [
            44,
            11433510,
            "/steam/76561198349213825",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":56,\"ac\":1}",
            "sokarca",
            "",
            2511877,
            0,
            1,
            2,
            null,
            "76561198349213825",
            3,
            []
        ],
        [
            39,
            11470462,
            "/steam/76561199417358600",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "teamczns",
            "",
            2519820,
            0,
            1,
            0,
            null,
            "76561199417358600",
            3,
            []
        ],
        [
            7,
            11484626,
            "/steam/76561199113484365",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "diting",
            "",
            2523208,
            0,
            1,
            2,
            null,
            "76561199113484365",
            3,
            []
        ],
        [
            8,
            11485697,
            "/steam/76561198171588802",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "PoLxNish",
            "",
            2523544,
            0,
            1,
            2,
            null,
            "76561198171588802",
            3,
            []
        ],
        [
            4,
            11486830,
            "/steam/76561198311490103",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":7,\"ac\":0}",
            "aren't you dead yet??",
            "",
            2523819,
            0,
            1,
            2,
            null,
            "76561198311490103",
            3,
            []
        ]
    ]
]

AoE4

Request

GET /game/account/getProfileName?callNum=27&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=13763&profile_ids=%5B4021%2C5983%2C7838%2C143976%2C147042%2C402527%2C409829%2C469950%2C476692%2C743515%2C779713%2C782883%2C877508%2C925833%2C964425%2C1050453%2C1266482%2C1390152%2C1397204%2C2002709%2C2140722%2C2270778%2C2556559%2C3047791%2C3190328%2C3199791%2C3569927%2C3573190%2C3653017%2C3752802%2C3840438%2C4027279%2C4095397%2C4764693%2C4840917%2C4870221%2C5234880%2C5313203%2C5556851%2C6125848%2C6187456%2C6499881%2C6565778%2C6655691%2C6945502%2C6957984%2C6962847%2C7025200%2C7037329%2C7038982%2C7123499%2C7143699%2C7153762%2C7186461%2C7274859%2C7450608%2C7475026%2C7479560%2C7508407%2C7706448%2C7742549%2C7817164%2C7979006%2C8052640%2C8373476%2C8412056%2C8425540%2C8465203%2C8594168%2C8623216%2C8983218%2C9012331%2C9031959%2C9033892%2C9156451%2C9185328%2C9292052%2C9343617%2C9652702%2C9898146%2C9910532%2C10017878%2C10055751%2C10105606%2C10205793%2C10371609%2C10556858%2C10737436%2C10774031%2C10821478%2C10851894%2C10886757%2C10962061%2C10992953%2C11059350%2C11111220%2C11137183%2C11153501%2C11163214%2C11188167%2C11198209%2C11201841%2C11216023%2C11267155%2C11286260%2C11294104%2C11315032%2C11315245%2C11330584%2C11335365%2C11340786%2C11351863%2C11365548%2C11367379%2C11383496%2C11385874%2C11394629%2C11421836%2C11448703%2C11461046%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idsarray[int][2,3]
sessionIDstr

Response

[
    0,
    [
        [
            33035,
            4021,
            "/steam/76561198060889919",
            "",
            "Zlatý Bludišťak",
            "",
            214270,
            444941,
            231,
            0,
            [
                0,
                "",
                null
            ],
            "76561198060889919",
            3,
            []
        ],
        [
            5813,
            5983,
            "/steam/76561198272390849",
            "{\"sharedHistory\":1}",
            "bkg7018",
            "",
            56182,
            376766,
            197,
            3,
            null,
            "76561198272390849",
            3,
            []
        ],
        [
            3493,
            7838,
            "/steam/76561198335749495",
            "",
            "å¯ä¹ä¸å°ä¸å¥½å",
            "",
            742335,
            54673,
            36,
            2,
            null,
            "76561198335749495",
            3,
            []
        ],
        [
            3164,
            143976,
            "/xboxlive/8A13E779C9166481CF4C3D35FDF010908ECE9225",
            "",
            "Paeschi9471",
            "",
            1503680,
            52594,
            35,
            0,
            null,
            "2535435368088726",
            9,
            []
        ],
        [
            9302,
            147042,
            "/xboxlive/470D81767BF3253F0C88E11B5FBC7230206B5CDF",
            "",
            "bzzi",
            "",
            823262,
            102955,
            60,
            0,
            [
                0,
                "",
                null
            ],
            "2533274815953023",
            9,
            []
        ],
        [
            10315,
            402527,
            "/steam/76561197980142217",
            "",
            "Dirty Harry",
            "",
            222649,
            130994,
            74,
            0,
            null,
            "76561197980142217",
            3,
            []
        ],
        [
            219,
            409829,
            "/steam/76561198191485622",
            "",
            "VofVendetta",
            "",
            4271842,
            891,
            5,
            4,
            null,
            "76561198191485622",
            3,
            []
        ],
        [
            11256,
            469950,
            "/steam/76561198096020366",
            "",
            "Emperor_Koda the platonic friend",
            "",
            31418,
            159825,
            89,
            0,
            [
                0,
                "",
                null
            ],
            "76561198096020366",
            3,
            []
        ],
        [
            3629,
            476692,
            "/steam/76561198122507135",
            "{\"sharedHistory\":0}",
            "Kilaminjaro9",
            "",
            1367537,
            178990,
            98,
            3,
            null,
            "76561198122507135",
            3,
            []
        ],
        [
            2316,
            743515,
            "/steam/76561198017235939",
            "",
            "benny_2314",
            "",
            3639405,
            41114,
            29,
            5,
            null,
            "76561198017235939",
            3,
            []
        ],
        [
            11859,
            779713,
            "/steam/76561198873757069",
            "",
            "LetsSeeWhatHappens",
            "",
            322491,
            155995,
            87,
            3,
            null,
            "76561198873757069",
            3,
            []
        ],
        [
            20841,
            782883,
            "/steam/76561198060116324",
            "{\"sharedHistory\":0}",
            "Jackelpobelope",
            "",
            3198430,
            274474,
            146,
            3,
            [
                0,
                "",
                null
            ],
            "76561198060116324",
            3,
            []
        ],
        [
            39608,
            877508,
            "/steam/76561198005687709",
            "{\"sharedHistory\":0}",
            "GSD22",
            "",
            55298,
            351230,
            184,
            3,
            [
                0,
                "",
                null
            ],
            "76561198005687709",
            3,
            []
        ],
        [
            278,
            925833,
            "/steam/76561198275543472",
            "",
            "Fooderxima",
            "",
            4229315,
            718,
            4,
            2,
            null,
            "76561198275543472",
            3,
            []
        ],
        [
            43044,
            964425,
            "/steam/76561198078638751",
            "{\"sharedHistory\":0}",
            "krusty.crock",
            "",
            1402672,
            524973,
            271,
            0,
            [
                0,
                "",
                null
            ],
            "76561198078638751",
            3,
            []
        ],
        [
            4179,
            1050453,
            "/steam/76561198059944930",
            "{\"sharedHistory\":1}",
            "Mr. KRAMLOUS",
            "",
            2583672,
            79490,
            48,
            0,
            null,
            "76561198059944930",
            3,
            []
        ],
        [
            5734,
            1266482,
            "/steam/76561198002925115",
            "",
            "AWEN",
            "",
            2328586,
            55668,
            37,
            2,
            null,
            "76561198002925115",
            3,
            []
        ],
        [
            5380,
            1390152,
            "/xboxlive/D32038D4738BA56C0A30040AB43E990CD23FEE9F",
            "",
            "xArcZ Thunder x",
            "",
            4167854,
            64414,
            41,
            0,
            [
                0,
                "",
                null
            ],
            "2533274857630284",
            9,
            []
        ],
        [
            404,
            1397204,
            "/xboxlive/59208398A217AF3E111FFF8F5D8452EAF5669EBF",
            "",
            "BARBAREDING",
            "",
            4243197,
            6289,
            11,
            0,
            null,
            "2533274894000659",
            9,
            []
        ],
        [
            9733,
            2002709,
            "/steam/76561198357826866",
            "",
            "TeammateKiller 202",
            "",
            4164833,
            84550,
            51,
            2,
            [
                0,
                "",
                null
            ],
            "76561198357826866",
            3,
            []
        ],
        [
            5189,
            2140722,
            "/steam/76561198113552683",
            "",
            "vexxie",
            "",
            109934,
            87628,
            53,
            5,
            [
                0,
                "",
                null
            ],
            "76561198113552683",
            3,
            []
        ],
        [
            4877,
            2270778,
            "/xboxlive/CC840E7F33E6CE679FC82C432756D4EC27DC8F66",
            "",
            "Mobius6469",
            "",
            2306357,
            77894,
            48,
            3,
            [
                0,
                "",
                null
            ],
            "2535458589337580",
            9,
            []
        ],
        [
            493,
            2556559,
            "/steam/76561197971880183",
            "",
            "CUERN1T0S",
            "",
            3937869,
            7844,
            12,
            0,
            null,
            "76561197971880183",
            3,
            []
        ],
        [
            50810,
            3047791,
            "/xboxlive/9935246F7B1806F4660A306DCD9E8F3963D092DE",
            "",
            "TeamIceBox",
            "",
            1034441,
            677750,
            348,
            3,
            [
                0,
                "",
                null
            ],
            "2533274804737915",
            9,
            []
        ],
        [
            605,
            3190328,
            "/xboxlive/567B00FED0C09762FBD83ABC3EB96744B1CABB84",
            "",
            "SilverShroud",
            "",
            4192309,
            3751,
            9,
            5,
            null,
            "2535430812921948",
            9,
            []
        ],
        [
            2494,
            3199791,
            "/steam/76561198026633550",
            "",
            "Mattyuk937",
            "",
            248430,
            40739,
            29,
            0,
            null,
            "76561198026633550",
            3,
            []
        ],
        [
            11456,
            3569927,
            "/xboxlive/649EA4E2D132D9A3561ABACA118B674FB7BB53D9",
            "",
            "UrukubarrVoid",
            "",
            3038802,
            104006,
            61,
            3,
            null,
            "2535473324438670",
            9,
            []
        ],
        [
            4927,
            3573190,
            "/steam/76561198190938295",
            "",
            ".Slipstream.",
            "",
            157123,
            51207,
            34,
            6,
            [
                0,
                "",
                null
            ],
            "76561198190938295",
            3,
            []
        ],
        [
            7321,
            3653017,
            "/xboxlive/81C65BD144645D1480F33D66F577CB1ECDC49A5E",
            "",
            "GrndMarmotte",
            "",
            413372,
            140613,
            79,
            3,
            null,
            "2533274936448463",
            9,
            []
        ],
        [
            56225,
            3752802,
            "/steam/76561197972325835",
            "",
            "Comrad Ping",
            "",
            384742,
            484867,
            251,
            0,
            [
                0,
                "",
                null
            ],
            "76561197972325835",
            3,
            []
        ],
        [
            8567,
            3840438,
            "/steam/76561198002926813",
            "{\"sharedHistory\":0}",
            "Xarion [GER]",
            "",
            264896,
            99805,
            59,
            0,
            [
                0,
                "",
                null
            ],
            "76561198002926813",
            3,
            []
        ],
        [
            1832,
            4027279,
            "/steam/76561198155073893",
            "",
            "KYLEDAVID27",
            "",
            2810873,
            22800,
            20,
            3,
            null,
            "76561198155073893",
            3,
            []
        ],
        [
            1242,
            4095397,
            "/steam/76561198016215700",
            "",
            "Livio Garcia | Bae",
            "",
            4249639,
            7504,
            12,
            0,
            null,
            "76561198016215700",
            3,
            []
        ],
        [
            20164,
            4764693,
            "/steam/76561198114411248",
            "",
            "mekaci12",
            "",
            1960783,
            40661,
            29,
            2,
            null,
            "76561198114411248",
            3,
            []
        ],
        [
            12905,
            4840917,
            "/steam/76561198020181497",
            "",
            "Tenki",
            "",
            3836797,
            173790,
            96,
            3,
            null,
            "76561198020181497",
            3,
            []
        ],
        [
            2770,
            4870221,
            "/steam/76561197996871759",
            "",
            "yankz",
            "",
            3357644,
            31968,
            25,
            0,
            null,
            "76561197996871759",
            3,
            []
        ],
        [
            33299,
            5234880,
            "/xboxlive/063600718AB37A1BE68C7C718780D74487201C8E",
            "",
            "oXI X IXo8841",
            "",
            1011232,
            272428,
            145,
            3,
            null,
            "2533274828535680",
            9,
            []
        ],
        [
            1738,
            5313203,
            "/xboxlive/39C02CB8BA4E678B92CE2416A8F7C7279D22080D",
            "",
            "maximus 420 199",
            "",
            4216473,
            15394,
            16,
            3,
            null,
            "2533274999225549",
            9,
            []
        ],
        [
            3193,
            5556851,
            "/xboxlive/0110D0765E873558CCD218426E62358DC8BAA61A",
            "",
            "danielc03",
            "",
            188408,
            37033,
            27,
            0,
            [
                0,
                "",
                null
            ],
            "2533274825541322",
            9,
            []
        ],
        [
            52833,
            6125848,
            "/steam/76561199138413187",
            "{\"sharedHistory\":0}",
            "åå®¶å°å¯",
            "",
            494658,
            372221,
            195,
            2,
            [
                0,
                "",
                null
            ],
            "76561199138413187",
            3,
            []
        ],
        [
            1775,
            6187456,
            "/steam/76561198997435987",
            "",
            "Miss_Murderrr",
            "",
            1009563,
            17152,
            17,
            3,
            null,
            "76561198997435987",
            3,
            []
        ],
        [
            24538,
            6499881,
            "/steam/76561199197366150",
            "{\"sharedHistory\":0}",
            "miz",
            "",
            26265,
            1877722,
            948,
            2,
            [
                0,
                "",
                null
            ],
            "76561199197366150",
            3,
            []
        ],
        [
            12177,
            6565778,
            "/steam/76561198155836448",
            "{\"sharedHistory\":1}",
            "é¿è¯ºä¸¸",
            "",
            64047,
            309130,
            163,
            2,
            null,
            "76561198155836448",
            3,
            []
        ],
        [
            20213,
            6655691,
            "/steam/76561198296715857",
            "{\"sharedHistory\":1}",
            "æµé£",
            "",
            396541,
            259942,
            139,
            2,
            [
                0,
                "",
                null
            ],
            "76561198296715857",
            3,
            []
        ],
        [
            10678,
            6945502,
            "/xboxlive/0C8DDA90C038FD04687C056BFE1C5244CD8DA8AE",
            "{\"sharedHistory\":1}",
            "najizhimo",
            "",
            20712,
            272923,
            145,
            2,
            [
                0,
                "",
                null
            ],
            "2535424089626554",
            9,
            []
        ],
        [
            13981,
            6957984,
            "/steam/76561198304308440",
            "",
            "Skrambl",
            "",
            52230,
            351632,
            185,
            0,
            [
                0,
                "",
                null
            ],
            "76561198304308440",
            3,
            []
        ],
        [
            3801,
            6962847,
            "/steam/76561198005509165",
            "",
            "superknoppix",
            "",
            64708,
            73495,
            45,
            3,
            null,
            "76561198005509165",
            3,
            []
        ],
        [
            6043,
            7025200,
            "/steam/76561198194694999",
            "",
            "daer2095",
            "",
            215267,
            46692,
            32,
            0,
            [
                0,
                "",
                null
            ],
            "76561198194694999",
            3,
            []
        ],
        [
            6441,
            7037329,
            "/steam/76561198030303870",
            "",
            "mm-baster",
            "",
            241786,
            58945,
            38,
            0,
            null,
            "76561198030303870",
            3,
            []
        ],
        [
            24956,
            7038982,
            "/steam/76561198807228948",
            "{\"sharedHistory\":0}",
            "Diitem",
            "",
            245417,
            310418,
            164,
            0,
            [
                0,
                "",
                null
            ],
            "76561198807228948",
            3,
            []
        ],
        [
            1272,
            7123499,
            "/steam/76561198000953253",
            "{\"sharedHistory\":1}",
            "eThAn0LbTcH",
            "",
            421098,
            11025,
            14,
            3,
            [
                0,
                "",
                null
            ],
            "76561198000953253",
            3,
            []
        ],
        [
            4342,
            7143699,
            "/steam/76561198381783009",
            "{\"sharedHistory\":0}",
            "Ncling",
            "",
            3868292,
            113325,
            65,
            2,
            null,
            "76561198381783009",
            3,
            []
        ],
        [
            2269,
            7153762,
            "/xboxlive/3A7BC98583B35B43186D8578CE5D3E00DED79552",
            "",
            "TheLaniakean",
            "",
            476911,
            27930,
            23,
            0,
            null,
            "2535444995805649",
            9,
            []
        ],
        [
            7796,
            7186461,
            "/xboxlive/9AA566BFE391D7810A15C7399D6AFE50763E9ABE",
            "",
            "VanishingLights",
            "",
            534426,
            144369,
            81,
            0,
            null,
            "2533274882152293",
            9,
            []
        ],
        [
            5412,
            7274859,
            "/steam/76561198056800452",
            "",
            "SNSCTV",
            "",
            682147,
            116589,
            67,
            3,
            null,
            "76561198056800452",
            3,
            []
        ],
        [
            38433,
            7450608,
            "/steam/76561198136535434",
            "",
            "InformationEnergy",
            "",
            940916,
            344232,
            181,
            3,
            [
                0,
                "",
                null
            ],
            "76561198136535434",
            3,
            []
        ],
        [
            34293,
            7475026,
            "/steam/76561198016268803",
            "{\"sharedHistory\":0}",
            "LEN",
            "",
            973879,
            423619,
            221,
            2,
            [
                0,
                "",
                null
            ],
            "76561198016268803",
            3,
            []
        ],
        [
            3686,
            7479560,
            "/steam/76561198301843349",
            "",
            "NobunagaHiro",
            "",
            979942,
            52606,
            35,
            2,
            null,
            "76561198301843349",
            3,
            []
        ],
        [
            53762,
            7508407,
            "/xboxlive/999D38AA3486AA2DF398CBA7539A28C60BB0F71A",
            "{\"sharedHistory\":1}",
            "Ashenone5920",
            "",
            1019255,
            491360,
            254,
            2,
            [
                0,
                "",
                null
            ],
            "2535460748822821",
            9,
            []
        ],
        [
            15395,
            7706448,
            "/steam/76561198062359418",
            "{\"sharedHistory\":1}",
            "[Parano]Pakito",
            "",
            1280309,
            262674,
            140,
            0,
            null,
            "76561198062359418",
            3,
            []
        ],
        [
            37374,
            7742549,
            "/steam/76561199012234629",
            "{\"sharedHistory\":1}",
            "DrVan",
            "",
            1327058,
            483359,
            250,
            2,
            [
                0,
                "",
                null
            ],
            "76561199012234629",
            3,
            []
        ],
        [
            4497,
            7817164,
            "/steam/76561198039365802",
            "{\"sharedHistory\":0}",
            "ó ¡ó ¡",
            "",
            1422306,
            87367,
            52,
            0,
            null,
            "76561198039365802",
            3,
            []
        ],
        [
            6986,
            7979006,
            "/steam/76561198966451157",
            "",
            "Beaver2121",
            "",
            2335059,
            125005,
            71,
            3,
            [
                0,
                "",
                null
            ],
            "76561198966451157",
            3,
            []
        ],
        [
            2577,
            8052640,
            "/steam/76561198050184146",
            "",
            "MouseBelly",
            "",
            1721064,
            40736,
            29,
            0,
            null,
            "76561198050184146",
            3,
            []
        ],
        [
            43867,
            8373476,
            "/steam/76561198410143214",
            "{\"sharedHistory\":0}",
            "è鏣乿",
            "",
            2099402,
            431990,
            225,
            2,
            [
                0,
                "",
                null
            ],
            "76561198410143214",
            3,
            []
        ],
        [
            970,
            8412056,
            "/steam/76561198023027242",
            "",
            "\u2020Jonte⸸",
            "",
            2142375,
            20015,
            19,
            0,
            null,
            "76561198023027242",
            3,
            []
        ],
        [
            12656,
            8425540,
            "/steam/76561198154491640",
            "{\"sharedHistory\":0}",
            "heart&move",
            "",
            2157413,
            43672,
            31,
            2,
            null,
            "76561198154491640",
            3,
            []
        ],
        [
            2493,
            8465203,
            "/steam/76561198037257353",
            "",
            "TheCyberSniper",
            "",
            2199954,
            31621,
            25,
            3,
            null,
            "76561198037257353",
            3,
            []
        ],
        [
            5845,
            8594168,
            "/steam/76561199159869142",
            "",
            "runner4303",
            "",
            2301802,
            115193,
            66,
            0,
            [
                0,
                "",
                null
            ],
            "76561199159869142",
            3,
            []
        ],
        [
            85021,
            8623216,
            "/steam/76561198208700148",
            "",
            "æ´æ´Chai-Chai",
            "",
            2323178,
            635801,
            327,
            2,
            [
                0,
                "",
                null
            ],
            "76561198208700148",
            3,
            []
        ],
        [
            2107,
            8983218,
            "/steam/76561198056308320",
            "",
            "â³ï¸ðªð»ð ð½ðªll",
            "",
            2643889,
            31243,
            24,
            0,
            null,
            "76561198056308320",
            3,
            []
        ],
        [
            12958,
            9012331,
            "/xboxlive/16F556F13A44E420B514D4896EAA8EAAFE4359B5",
            "",
            "jbi991",
            "",
            2666198,
            158018,
            88,
            2,
            null,
            "2535468677147039",
            9,
            []
        ],
        [
            14373,
            9031959,
            "/steam/76561198057503384",
            "",
            "rodrix",
            "",
            2680883,
            180048,
            99,
            3,
            null,
            "76561198057503384",
            3,
            []
        ],
        [
            1876,
            9033892,
            "/steam/76561198257575100",
            "",
            "KelThuzad",
            "",
            2682309,
            17533,
            17,
            2,
            null,
            "76561198257575100",
            3,
            []
        ],
        [
            13561,
            9156451,
            "/steam/76561198066978387",
            "",
            "DEUS",
            "",
            2771325,
            187711,
            103,
            0,
            null,
            "76561198066978387",
            3,
            []
        ],
        [
            1831,
            9185328,
            "/steam/76561198144720070",
            "",
            "SÃrStómpalót",
            "",
            2793081,
            26635,
            22,
            0,
            [
                0,
                "",
                null
            ],
            "76561198144720070",
            3,
            []
        ],
        [
            14873,
            9292052,
            "/steam/76561199153456096",
            "{\"sharedHistory\":0}",
            "_Little_Kiana_",
            "",
            2880010,
            286177,
            152,
            2,
            null,
            "76561199153456096",
            3,
            []
        ],
        [
            44383,
            9343617,
            "/xboxlive/8716ACD1B68D267B1097EEFD30D6C573CA0D50C7",
            "",
            "VertigoTwo",
            "",
            2920730,
            345761,
            182,
            3,
            [
                0,
                "",
                null
            ],
            "2533274816890411",
            9,
            []
        ],
        [
            5095,
            9652702,
            "/steam/76561199052987550",
            "",
            "bgmoritz",
            "",
            3112102,
            69263,
            43,
            3,
            [
                0,
                "",
                null
            ],
            "76561199052987550",
            3,
            []
        ],
        [
            2202,
            9898146,
            "/steam/76561199261710650",
            "{\"sharedHistory\":0}",
            "AoE IV Mod Labs",
            "",
            3271578,
            1432,
            6,
            3,
            null,
            "76561199261710650",
            3,
            []
        ],
        [
            5338,
            9910532,
            "/steam/76561198016400306",
            "",
            "Freddy",
            "",
            3276130,
            43046,
            30,
            0,
            null,
            "76561198016400306",
            3,
            []
        ],
        [
            26363,
            10017878,
            "/steam/76561199078937577",
            "{\"sharedHistory\":1}",
            "Szalami1",
            "",
            3312821,
            306878,
            162,
            0,
            [
                0,
                "",
                null
            ],
            "76561199078937577",
            3,
            []
        ],
        [
            6411,
            10055751,
            "/steam/76561198414996146",
            "",
            "åå°ä¼½ç¾ä»",
            "",
            3332728,
            54198,
            36,
            2,
            null,
            "76561198414996146",
            3,
            []
        ],
        [
            29201,
            10105606,
            "/steam/76561198801468343",
            "",
            "Aaron",
            "",
            3362187,
            182584,
            100,
            3,
            [
                0,
                "",
                null
            ],
            "76561198801468343",
            3,
            []
        ],
        [
            14299,
            10205793,
            "/steam/76561199218790282",
            "",
            "Geser_Khan",
            "",
            3421005,
            122802,
            70,
            2,
            [
                0,
                "",
                null
            ],
            "76561199218790282",
            3,
            []
        ],
        [
            3482,
            10371609,
            "/steam/76561199340417891",
            "",
            "GLOVE13",
            "",
            3518083,
            64873,
            41,
            5,
            null,
            "76561199340417891",
            3,
            []
        ],
        [
            17028,
            10556858,
            "/xboxlive/A4786DDF928DDEA839D98A54EE7B585F513EEA01",
            "{\"sharedHistory\":1}",
            "Corp Codfish",
            "",
            3597040,
            178821,
            98,
            3,
            [
                0,
                "",
                null
            ],
            "2533274832838635",
            9,
            []
        ],
        [
            1653,
            10737436,
            "/steam/76561198065828036",
            "",
            "Asesinu",
            "",
            3641727,
            6317,
            11,
            3,
            null,
            "76561198065828036",
            3,
            []
        ],
        [
            940,
            10774031,
            "/steam/76561198026050379",
            "",
            "howard_roark",
            "",
            4237924,
            15275,
            16,
            3,
            null,
            "76561198026050379",
            3,
            []
        ],
        [
            5828,
            10821478,
            "/steam/76561198019416250",
            "",
            "éæ ¼",
            "",
            3730860,
            69047,
            43,
            2,
            null,
            "76561198019416250",
            3,
            []
        ],
        [
            5663,
            10851894,
            "/steam/76561198261846836",
            "",
            "benhu82727",
            "",
            3708219,
            100672,
            59,
            2,
            null,
            "76561198261846836",
            3,
            []
        ],
        [
            1765,
            10886757,
            "/steam/76561198935124448",
            "",
            "redmatch1",
            "",
            3751349,
            22300,
            20,
            0,
            null,
            "76561198935124448",
            3,
            []
        ],
        [
            18824,
            10962061,
            "/steam/76561199232446629",
            "{\"sharedHistory\":0}",
            "AI æé¾",
            "",
            3828627,
            141486,
            79,
            2,
            [
                0,
                "",
                null
            ],
            "76561199232446629",
            3,
            []
        ],
        [
            1617,
            10992953,
            "/steam/76561198160068017",
            "",
            "Sphynx",
            "",
            3831921,
            26075,
            22,
            0,
            null,
            "76561198160068017",
            3,
            []
        ],
        [
            12937,
            11059350,
            "/steam/76561198975545025",
            "{\"sharedHistory\":0}",
            "akcel",
            "",
            3926329,
            134931,
            76,
            2,
            null,
            "76561198975545025",
            3,
            []
        ],
        [
            7290,
            11111220,
            "/steam/76561198157887528",
            "{\"sharedHistory\":0}",
            "Berserkerblut",
            "",
            3998246,
            103429,
            60,
            0,
            null,
            "76561198157887528",
            3,
            []
        ],
        [
            10462,
            11137183,
            "/steam/76561199150983714",
            "",
            "q9248912",
            "",
            4032809,
            96649,
            57,
            2,
            null,
            "76561199150983714",
            3,
            []
        ],
        [
            3115,
            11153501,
            "/steam/76561198203911348",
            "",
            "Jxne",
            "",
            4054604,
            45930,
            32,
            0,
            [
                0,
                "",
                null
            ],
            "76561198203911348",
            3,
            []
        ],
        [
            1195,
            11163214,
            "/steam/76561198058383274",
            "",
            "MrNoah99",
            "",
            4067329,
            28108,
            23,
            3,
            null,
            "76561198058383274",
            3,
            []
        ],
        [
            2354,
            11188167,
            "/steam/76561198169238667",
            "",
            "sveta.tata",
            "",
            4096246,
            22650,
            20,
            3,
            null,
            "76561198169238667",
            3,
            []
        ],
        [
            12767,
            11198209,
            "/xboxlive/27C7509FDD968603D57559BFDD666281335898B6",
            "",
            "Hardkouen",
            "",
            4104411,
            41700,
            30,
            0,
            [
                0,
                "",
                null
            ],
            "2535426831429852",
            9,
            []
        ],
        [
            4194,
            11201841,
            "/steam/76561198153171237",
            "",
            "moonight",
            "",
            4107099,
            61084,
            39,
            2,
            null,
            "76561198153171237",
            3,
            []
        ],
        [
            4814,
            11216023,
            "/steam/76561198357684175",
            "",
            "DarkflameSlime",
            "",
            4117401,
            96869,
            57,
            2,
            null,
            "76561198357684175",
            3,
            []
        ],
        [
            3175,
            11267155,
            "/xboxlive/5D2C59D9CA22EF936BCE11007409F41F5DC98DE5",
            "{\"sharedHistory\":1}",
            "ILynch11",
            "",
            4150743,
            31851,
            25,
            1,
            null,
            "2535449812649073",
            9,
            []
        ],
        [
            2793,
            11286260,
            "/xboxlive/181171F3395695FF6825F9E18646DA6B494C4800",
            "",
            "schwalls13",
            "",
            4162360,
            48604,
            33,
            3,
            null,
            "2533274853218157",
            9,
            []
        ],
        [
            3913,
            11294104,
            "/steam/76561199199270159",
            "",
            "koutnas",
            "",
            4167022,
            47809,
            33,
            0,
            null,
            "76561199199270159",
            3,
            []
        ],
        [
            2342,
            11315032,
            "/steam/76561198311469506",
            "",
            "IKun",
            "",
            4179534,
            2125,
            7,
            3,
            null,
            "76561198311469506",
            3,
            []
        ],
        [
            4148,
            11315245,
            "/steam/76561198037211296",
            "",
            "Big_Tinker",
            "",
            4179659,
            67253,
            42,
            3,
            null,
            "76561198037211296",
            3,
            []
        ],
        [
            1795,
            11330584,
            "/steam/76561198069927459",
            "",
            "Jimbeam",
            "",
            4188814,
            29348,
            23,
            3,
            [
                0,
                "",
                null
            ],
            "76561198069927459",
            3,
            []
        ],
        [
            1232,
            11335365,
            "/steam/76561198172117401",
            "",
            "-Damn! | CHAU QATAR",
            "",
            4191646,
            1568,
            6,
            4,
            null,
            "76561198172117401",
            3,
            []
        ],
        [
            3193,
            11340786,
            "/xboxlive/34CF9F4E9487AEF623DDE88911DA6DA543C68C7C",
            "",
            "FSB Volk",
            "",
            4194795,
            39106,
            28,
            3,
            null,
            "2535458100674339",
            9,
            []
        ],
        [
            795,
            11351863,
            "/xboxlive/7A329B0B16957A21724721C30CC2B4AC6A49DDEA",
            "",
            "SungTurnip9251",
            "",
            4201424,
            10908,
            14,
            0,
            null,
            "2535433803740089",
            9,
            []
        ],
        [
            3457,
            11365548,
            "/steam/76561198077329905",
            "",
            "Juicy Jesse",
            "",
            4212382,
            20844,
            19,
            3,
            null,
            "76561198077329905",
            3,
            []
        ],
        [
            972,
            11367379,
            "/xboxlive/8DCA5D6601F624F9A719C0E6BA3294EDF6DFBF40",
            "",
            "The157thLegion",
            "",
            4210541,
            19133,
            18,
            3,
            null,
            "2535449522454829",
            9,
            []
        ],
        [
            1440,
            11383496,
            "/xboxlive/7B91EBCEB2C16FA414C4B74AEEE5D30078A21D96",
            "",
            "YouSeeMeRunning",
            "",
            4219960,
            12965,
            15,
            0,
            null,
            "2535471559573016",
            9,
            []
        ],
        [
            116,
            11385874,
            "/steam/76561198144358405",
            "",
            "Boater",
            "",
            4221347,
            503,
            4,
            3,
            null,
            "76561198144358405",
            3,
            []
        ],
        [
            1249,
            11394629,
            "/steam/76561198115724891",
            "",
            "dev",
            "",
            4226406,
            20890,
            19,
            3,
            null,
            "76561198115724891",
            3,
            []
        ],
        [
            1048,
            11421836,
            "/xboxlive/965138FCBA314F33757420960E007931A5AC693B",
            "",
            "MGKK1911",
            "",
            4241785,
            19632,
            19,
            2,
            null,
            "2535442018731715",
            9,
            []
        ],
        [
            1186,
            11448703,
            "/xboxlive/6231AFFC149218204CF7FF0DFE104C2EFF267204",
            "",
            "POMF",
            "",
            4256887,
            9286,
            13,
            3,
            null,
            "2535431897112795",
            9,
            []
        ],
        [
            455,
            11461046,
            "/steam/76561198975239645",
            "",
            "\u2020Zudden⸸",
            "",
            4263053,
            6016,
            10,
            0,
            null,
            "76561198975239645",
            3,
            []
        ]
    ]
]

[GET] /game/account/getProfileProperty (TODO Empty Response)

AUTHENTICATION

Response

AoE2:DE

Request

GET /game/account/getProfileProperty?callNum=123&connect_id=ccc&lastCallTime=111&profile_id=99&property_id=appearOffline&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
profile_idint99
property_idstr/enumappearOffline

Response

RESPONSE_TEMPLATE

AoE3:DE

Request

GET /game/account/getProfileProperty?callNum=5&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=141&profile_id=-2&property_id=HaveShownNativeCivDisclaimer&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idint-2
property_idstr/enumappearOffline
sessionIDstr

Response

HTTP/1.1 400 Bad Request
Date: Wed, 26 Oct 2022 19:03:48 GMT
Content-Type: text/html;charset=iso-8859-1
Content-Length: 636
Connection: keep-alive
Request-Context: appId=cid-v1:26109784-3156-45bd-b9c0-963ca4949d0f
Request-Path: /game/account/getProfileProperty
Cache-Control: must-revalidate,no-cache,no-store

AoE4

Request

GET /game/account/getProfileProperty?callNum=148&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=918824&profile_id=233334&property_id=appearOffline&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idint99
property_idstr/enumappearOffline
sessionIDstr

Response

[
    0
]

[POST] /game/account/setAvatarMetadata (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/account/setAvatarMetadata HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 151
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&metaData={"sharedHistory":0}&sessionID=zzz
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
metaDataDict{“sharedHistory”:0}

Response

RESPONSE_TEMPLATE

[POST] /game/account/setLanguage

AUTHENTICATION

AoE2:DE

Request

POST /game/account/setLanguage HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 135

callNum=31&connect_id=6mikb1saqrmud2kte7ovswogamd2th&language=en&lastCallTime=15557&sessionID=6mikb1saqrmud2kte7ovswogamd2th&title=age2
parametertypevaluecomments
callNumint123
connect_id
languageISO CODEen
lastCallTimetimestamp
sessionIDstr
titleenum(game)age2

Response

[
   0 // result status code
]

Achievement Endpoints

Endpoints for player achievements and statistics synchronization.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getAchievementsGETGet player’s unlocked achievements
getAvailableAchievementsGETGet all available achievements
syncStatsPOSTSync achievement statistics

[GET] /game/Achievement/getAchievements

AUTHENTICATION

AoE2:DE

Request

GET /game/Achievement/getAchievements?callNum=123&connect_id=ccc&lastCallTime=111&profileIDs=[1,1]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profileIDsarray[int][1,3]
sessionIDstr

Response

[
    0, // result status code
    [
        [
            233334, // self profile_id
            [
                [
                    38, // achievement_id (lookup with `getAvailableAchievements`)
                    1605802963
                ],
                [
                    46,
                    1605807055
                ],
                [
                    37,
                    1606317489
                ],
                [
                    6,
                    1606360352
                ],
                [
                    129,
                    1606360353
                ],
                [
                    131,
                    1606664422
                ],
                [
                    127,
                    1606877828
                ],
                [
                    137,
                    1607022190
                ],
                [
                    126,
                    1607022876
                ],
                [
                    135,
                    1607511361
                ],
                [
                    40,
                    1607598250
                ],
                [
                    125,
                    1632263195
                ],
                [
                    133,
                    1635842528
                ],
                [
                    132,
                    1635844687
                ],
                [
                    117,
                    1635845941
                ],
                [
                    119,
                    1635847743
                ],
                [
                    23,
                    1635848345
                ],
                [
                    48,
                    1635902087
                ],
                [
                    32,
                    1635902378
                ],
                [
                    21,
                    1635928068
                ],
                [
                    16,
                    1635931683
                ],
                [
                    134,
                    1636003806
                ],
                [
                    24,
                    1636004183
                ],
                [
                    7,
                    1636014445
                ],
                [
                    170,
                    1636033434
                ],
                [
                    168,
                    1636036263
                ],
                [
                    39,
                    1636203151
                ],
                [
                    115,
                    1636221352
                ],
                [
                    113,
                    1636225836
                ],
                [
                    5,
                    1636226890
                ],
                [
                    167,
                    1636279812
                ],
                [
                    116,
                    1636375679
                ],
                [
                    30,
                    1636540490
                ],
                [
                    22,
                    1636550163
                ],
                [
                    25,
                    1636629408
                ],
                [
                    33,
                    1636654440
                ],
                [
                    3,
                    1637334910
                ],
                [
                    85,
                    1638094091
                ],
                [
                    35,
                    1638201135
                ],
                [
                    4,
                    1638204100
                ],
                [
                    28,
                    1638354027
                ],
                [
                    15,
                    1640894830
                ],
                [
                    18,
                    1640958146
                ],
                [
                    34,
                    1642049273
                ],
                [
                    36,
                    1642332046
                ],
                [
                    29,
                    1642429347
                ],
                [
                    31,
                    1642444499
                ],
                [
                    11,
                    1642538349
                ],
                [
                    10,
                    1642590273
                ],
                [
                    138,
                    1642592022
                ],
                [
                    19,
                    1642592409
                ],
                [
                    27,
                    1642623915
                ],
                [
                    17,
                    1642782188
                ],
                [
                    14,
                    1645422635
                ],
                [
                    13,
                    1645692489
                ],
                [
                    12,
                    1646301580
                ],
                [
                    2,
                    1646986871
                ],
                [
                    169,
                    1651037876
                ],
                [
                    26,
                    1655886197
                ],
                [
                    20,
                    1655894869
                ],
                [
                    114,
                    1655981638
                ],
                [
                    191,
                    1656250094
                ],
                [
                    188,
                    1656250385
                ],
                [
                    8,
                    1657473441
                ],
                [
                    153,
                    1657666053
                ],
                [
                    151,
                    1657666956
                ],
                [
                    186,
                    1657702911
                ],
                [
                    187,
                    1658288110
                ],
                [
                    9,
                    1658875943
                ],
                [
                    190,
                    1658924813
                ],
                [
                    189,
                    1661853651
                ],
                [
                    44,
                    1663108280
                ],
                [
                    152,
                    1664313299
                ]
            ]
        ]
    ]
]

AoE3:DE

Request

GET /game/Achievement/getAchievements?callNum=20&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=8040&profileIDs=%5B9655781%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profileIDsarray[int][1,3]
sessionIDstr

Response

[
    0,
    [
        [
            9633781,
            []
        ]
    ]
]

AoE4

Request

GET /game/Achievement/getAchievements?callNum=173&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1986330&profileIDs=%5B233334%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profileIDsarray[int][1,3]
sessionIDstr

Response

[
    0, // result code
    [
        [
            233334, // self profile_id
            [
                [
                    2033486,
                    1666824050
                ]
            ]
        ]
    ]
]

[GET] /game/Achievement/getAvailableAchievements (no authentication needed)

Example request

AoE2:DE

Request

GET /game/Achievement/getAvailableAchievements?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&signature=sss HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response (in-game)

[
    0, // result status code
    [],
    "F+LV3pa65H4IiJ9Db+y9lRmCCfUSHKBkshthbBtoYYgpbK8EKmkDhKIsQsmF73rFAZWNvwR5S7JXKlJBlObtiA8VPBvfAcn0L7V9nxBgYGv/imLOjcXWM5p+L/vImJIAL21BLM6AtYUBYm2Xb32h5ivxZRrnNeFACjEFdF3WUMm8GWUMTpvTFAlREWeEBjADzNPuhXiDJ0u1SVfp9uU40QuqdOODnVZ5B5HfzA0KY3HVBltjHzgeH9Ulv3nfgTCaytd+MJPgSc5SoLRNLdm39hf7sUyYyt204vwtWfQCOXzK+5JBQY++s2QbPE2C/QceD4fXqIiWHAZLS6mmybmh4g=="
]

Response (browser)

[
    0, // result status code
    [
        [
            1, // achievement_id
            "ACHIEVEMENT_ETERNAL_GRATITUDE",
            -1, // always -1
            1665011141,
            0 // always 0
        ],
        [
            2,
            "AZTEC_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            3,
            "BERBERS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            4,
            "BRITONS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            5,
            "BULGARIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            6,
            "BURMESE_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            7,
            "BYZANTINES_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            8,
            "CELTS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            9,
            "CHINESE_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            10,
            "CUMANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            11,
            "ETHIOPIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            12,
            "FRANKS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            13,
            "GOTHS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            14,
            "HUNS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            15,
            "INCAS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            16,
            "INDIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            17,
            "ITALIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            18,
            "JAPANESE_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            19,
            "KHMER_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            20,
            "KOREANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            21,
            "LITHUANIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            22,
            "MAGYARS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            23,
            "MALAY_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            24,
            "MALIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            25,
            "MAYANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            26,
            "MONGOLS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            27,
            "PERSIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            28,
            "PORTUGUESE_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            29,
            "SARACENS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            30,
            "SLAVS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            31,
            "SPANISH_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            32,
            "TATARS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            33,
            "TEUTONS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            34,
            "TURKS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            35,
            "VIETNAMESE_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            36,
            "VIKINGS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            37,
            "ACHIEVEMENT_CHAIN_REACTION",
            -1,
            1665011141,
            0
        ],
        [
            38,
            "ACHIEVEMENT_SHEEP_HOARDER",
            -1,
            1665011141,
            0
        ],
        [
            39,
            "ACHIEVEMENT_THE_WONDER",
            -1,
            1665011141,
            0
        ],
        [
            40,
            "ACHIEVEMENT_LOSING_YOUR_RELIGION",
            -1,
            1665011141,
            0
        ],
        [
            41,
            "ACHIEVEMENT_ANYONE_ORDER_PIZZA",
            -1,
            1665011141,
            0
        ],
        [
            42,
            "ACHIEVEMENT_DARK_HUMOR",
            -1,
            1665011141,
            0
        ],
        [
            43,
            "ACHIEVEMENT_HOWDY_NEIGHBOR",
            -1,
            1665011141,
            0
        ],
        [
            44,
            "ACHIEVEMENT_NO_SUNTZU_LIGHT",
            -1,
            1665011141,
            0
        ],
        [
            45,
            "ACHIEVEMENT_WOLOLO",
            -1,
            1665011141,
            0
        ],
        [
            46,
            "ACHIEVEMENT_90_KG",
            -1,
            1665011141,
            0
        ],
        [
            47,
            "ACHIEVEMENT_FIGHTING_FROM_AFAR",
            -1,
            1665011141,
            0
        ],
        [
            48,
            "ACHIEVEMENT_CASTLE_CRUSHER",
            -1,
            1665011141,
            0
        ],
        [
            49,
            "ACHIEVEMENT_CAMPAIGN_WALLACE_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            50,
            "ACHIEVEMENT_CAMPAIGN_JOANARC_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            51,
            "ACHIEVEMENT_CAMPAIGN_KHAN_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            52,
            "ACHIEVEMENT_CAMPAIGN_SALADIN_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            53,
            "ACHIEVEMENT_CAMPAIGN_BARBAROSSA_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            54,
            "ACHIEVEMENT_CAMPAIGN_ATTILA_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            55,
            "ACHIEVEMENT_CAMPAIGN_ELCID_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            56,
            "ACHIEVEMENT_CAMPAIGN_MONTEZUMA_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            57,
            "ACHIEVEMENT_CAMPAIGN_HISTORICAL_BATTLES_COMPLETE",
            -1,
            1665011141,
            0
        ],
        [
            58,
            "ACHIEVEMENT_CAMPAIGN_ALARIC_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            59,
            "ACHIEVEMENT_CAMPAIGN_BARI_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            60,
            "ACHIEVEMENT_CAMPAIGN_DRACULA_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            61,
            "ACHIEVEMENT_CAMPAIGN_ELDORADO_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            62,
            "ACHIEVEMENT_CAMPAIGN_PRITHVIRAJ_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            63,
            "ACHIEVEMENT_CAMPAIGN_SFORZA_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            64,
            "ACHIEVEMENT_CAMPAIGN_PORTUGUESE_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            65,
            "ACHIEVEMENT_CAMPAIGN_MALIAN_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            66,
            "ACHIEVEMENT_CAMPAIGN_BERBER_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            67,
            "ACHIEVEMENT_CAMPAIGN_ETHIOPIAN_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            68,
            "ACHIEVEMENT_CAMPAIGN_BURMESE_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            69,
            "ACHIEVEMENT_CAMPAIGN_MALAY_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            70,
            "ACHIEVEMENT_CAMPAIGN_VIETNAMESE_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            71,
            "ACHIEVEMENT_CAMPAIGN_KHMER_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            72,
            "ACHIEVEMENT_CAMPAIGN_BULGARIAN_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            73,
            "ACHIEVEMENT_CAMPAIGN_TATAR_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            74,
            "ACHIEVEMENT_CAMPAIGN_CUMAN_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            75,
            "ACHIEVEMENT_NO_WONDER_LEFT_BEHIND",
            -1,
            1665011141,
            0
        ],
        [
            76,
            "ACHIEVEMENT_CATHEDRAL_RUSH",
            -1,
            1665011141,
            0
        ],
        [
            77,
            "ACHIEVEMENT_NO_WONDER_ON_MY_WATCH",
            -1,
            1665011141,
            0
        ],
        [
            78,
            "ACHIEVEMENT_DIPLOMACY_IS_FOR_THE_MEEK",
            -1,
            1665011141,
            0
        ],
        [
            79,
            "ACHIEVEMENT_KUSHLUK_ASSASSINATION",
            -1,
            1665011141,
            0
        ],
        [
            80,
            "ACHIEVEMENT_I_WAS_IN_CHINA_BEFORE",
            -1,
            1665011141,
            0
        ],
        [
            81,
            "ACHIEVEMENT_OFFENSE_IS_THE_BEST_DEFENSE",
            -1,
            1665011141,
            0
        ],
        [
            82,
            "ACHIEVEMENT_OUT_WITH_A_BANG",
            -1,
            1665011141,
            0
        ],
        [
            83,
            "ACHIEVEMENT_D_DAY",
            -1,
            1665011141,
            0
        ],
        [
            84,
            "ACHIEVEMENT_THE_GO_GETTER",
            -1,
            1665011141,
            0
        ],
        [
            85,
            "ACHIEVEMENT_FUROR_TEUTONICUS",
            -1,
            1665011141,
            0
        ],
        [
            86,
            "ACHIEVEMENT_ATTILA_SPEED_RUN",
            -1,
            1665011141,
            0
        ],
        [
            87,
            "ACHIEVEMENT_HOT_N_SPICY",
            -1,
            1665011141,
            0
        ],
        [
            88,
            "ACHIEVEMENT_BATTLESHIP",
            -1,
            1665011141,
            0
        ],
        [
            89,
            "ACHIEVEMENT_SURYAVARMAN_RELICS",
            -1,
            1665011141,
            0
        ],
        [
            90,
            "ACHIEVEMENT_THE_MISSIONARY",
            -1,
            1665011141,
            0
        ],
        [
            91,
            "ACHIEVEMENT_OTTOMAN_GLORY_SEEKER",
            -1,
            1665011141,
            0
        ],
        [
            92,
            "ACHIEVEMENT_NO_HOJO",
            -1,
            1665011141,
            0
        ],
        [
            93,
            "ACHIEVEMENT_FIRE_WITH_FIRE",
            -1,
            1665011141,
            0
        ],
        [
            94,
            "ACHIEVEMENT_DESTROY_DELHI",
            -1,
            1665011141,
            0
        ],
        [
            95,
            "ACHIEVEMENT_KILL_KING_TAKAYUTPI",
            -1,
            1665011141,
            0
        ],
        [
            96,
            "ACHIEVEMENT_NO_KILLING_PORTUGUESE",
            -1,
            1665011141,
            0
        ],
        [
            97,
            "ACHIEVEMENT_NUMBERS_BEAT_EVERYTHING",
            -1,
            1665011141,
            0
        ],
        [
            98,
            "ACHIEVEMENT_ALARIC_SPEED_RUN",
            -1,
            1665011141,
            0
        ],
        [
            99,
            "ACHIEVEMENT_DRAGON_SHIPS",
            -1,
            1665011141,
            0
        ],
        [
            100,
            "ACHIEVEMENT_100_GBETO",
            -1,
            1665011141,
            0
        ],
        [
            101,
            "ACHIEVEMENT_SATANS_MAP",
            -1,
            1665011141,
            0
        ],
        [
            102,
            "ACHIEVEMENT_NO_SUPPORT",
            -1,
            1665011141,
            0
        ],
        [
            103,
            "ACHIEVEMENT_RUSH_TO_THE_KING",
            -1,
            1665011141,
            0
        ],
        [
            104,
            "ACHIEVEMENT_NOT_THE_VIPER",
            -1,
            1665011141,
            0
        ],
        [
            105,
            "ACHIEVEMENT_NO_CASTLE_AGE",
            -1,
            1665011141,
            0
        ],
        [
            106,
            "ACHIEVEMENT_DEFEAT_AUSTRIAN_DUKE",
            -1,
            1665011141,
            0
        ],
        [
            107,
            "ACHIEVEMENT_NO_WALLS",
            -1,
            1665011141,
            0
        ],
        [
            108,
            "ACHIEVEMENT_FRANKLY_MY_DEAR",
            -1,
            1665011141,
            0
        ],
        [
            109,
            "ACHIEVEMENT_UNEXPECTED",
            -1,
            1665011141,
            0
        ],
        [
            110,
            "ACHIEVEMENT_SUPREMELY_UNEXPECTED",
            -1,
            1665011141,
            0
        ],
        [
            111,
            "ACHIEVEMENT_FINAL_COUNTDOWN",
            -1,
            1665011141,
            0
        ],
        [
            112,
            "ACHIEVEMENT_KABOOM",
            -1,
            1665011141,
            0
        ],
        [
            113,
            "ACHIEVEMENT_BULLS_EYE",
            -1,
            1665011141,
            0
        ],
        [
            114,
            "ACHIEVEMENT_HOMELESS",
            -1,
            1665011141,
            0
        ],
        [
            115,
            "ACHIEVEMENT_OUT_OF_THEIR_ELEMENT",
            -1,
            1665011141,
            0
        ],
        [
            116,
            "ACHIEVEMENT_CASTLE_OF_DOUBT",
            -1,
            1665011141,
            0
        ],
        [
            117,
            "ACHIEVEMENT_ITS_A_TREB",
            -1,
            1665011141,
            0
        ],
        [
            118,
            "ACHIEVEMENT_MARCO_POLO",
            -1,
            1665011141,
            0
        ],
        [
            119,
            "ACHIEVEMENT_KNOCKING_ON_YOUR_DOOR",
            -1,
            1665011141,
            0
        ],
        [
            120,
            "ACHIEVEMENT_SUSHI_LOVER",
            -1,
            1665011141,
            0
        ],
        [
            121,
            "ACHIEVEMENT_EASIEST_AI",
            -1,
            1665011141,
            0
        ],
        [
            122,
            "ACHIEVEMENT_EASY_AI",
            -1,
            1665011141,
            0
        ],
        [
            123,
            "ACHIEVEMENT_MODERATE_AI",
            -1,
            1665011141,
            0
        ],
        [
            124,
            "ACHIEVEMENT_HARD_AI",
            -1,
            1665011141,
            0
        ],
        [
            125,
            "ACHIEVEMENT_HARDEST_AI",
            -1,
            1665011141,
            0
        ],
        [
            126,
            "ACHIEVEMENT_EXTREME_AI",
            -1,
            1665011141,
            0
        ],
        [
            127,
            "ACHIEVEMENT_MANGO_SHOTS",
            -1,
            1665011141,
            0
        ],
        [
            128,
            "ACHEVEMENT_HUN_WHAT_ARE_YOU_DOING",
            -1,
            1665011141,
            0
        ],
        [
            129,
            "ACHIEVEMENT_VICTORY_WITH_EVERY_CIV",
            -1,
            1665011141,
            0
        ],
        [
            130,
            "ACHIEVEMENT_LONG_LIVE_THE_KING",
            -1,
            1665011141,
            0
        ],
        [
            131,
            "ACHIEVEMENT_RELIC_HUNTER",
            -1,
            1665011141,
            0
        ],
        [
            132,
            "ACHIEVEMENT_DARK_DINNER",
            -1,
            1665011141,
            0
        ],
        [
            133,
            "ACHIEVEMENT_PLEASANT_PEASANT",
            -1,
            1665011141,
            0
        ],
        [
            134,
            "ACHIEVEMENT_BIRD_SHOOTING",
            -1,
            1665011141,
            0
        ],
        [
            135,
            "ACHIEVEMENT_KARAMBOLAGE",
            -1,
            1665011141,
            0
        ],
        [
            136,
            "ACHIEVEMENT_MASTERPIECE",
            -1,
            1665011141,
            0
        ],
        [
            137,
            "ACHIEVEMENT_TOO_LAME_TO_TAME",
            -1,
            1665011141,
            0
        ],
        [
            138,
            "ACHIEVEMENT_ELEPHANTASTIC",
            -1,
            1665011141,
            0
        ],
        [
            139,
            "ACHIEVEMENT_CAMPAIGN_BRITONS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            140,
            "ACHIEVEMENT_CAMPAIGN_BURGUNDIANS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            141,
            "ACHIEVEMENT_CAMPAIGN_SICILIANS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            142,
            "ACHIEVEMENT_UNCHIVALROUS_PRAGMATIST",
            -1,
            1665011141,
            0
        ],
        [
            143,
            "ACHIEVEMENT_THRONE_THIEF",
            -1,
            1665011141,
            0
        ],
        [
            144,
            "ACHIEVEMENT_MALLEUS_SCOTORUM",
            -1,
            1665011141,
            0
        ],
        [
            145,
            "ACHIEVEMENT_NO_WHEELS",
            -1,
            1665011141,
            0
        ],
        [
            146,
            "ACHIEVEMENT_A_SECOND_HASTINGS",
            -1,
            1665011141,
            0
        ],
        [
            147,
            "ACHIEVEMENT_SHUT_UP_LA_HIRE",
            -1,
            1665011141,
            0
        ],
        [
            148,
            "ACHIEVEMENT_SELFMADE_MAN",
            -1,
            1665011141,
            0
        ],
        [
            149,
            "ACHIEVEMENT_HAUTE_HAUTE_BRIEF_CANDLE",
            -1,
            1665011141,
            0
        ],
        [
            150,
            "ACHIEVEMENT_ITALY_JONES_AND_THE_FIRST_CRUSADE",
            -1,
            1665011141,
            0
        ],
        [
            151,
            "BURGUNDIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            152,
            "SICILIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            153,
            "ACHIEVEMENT_FLEMISH_REVOLUTION",
            -1,
            1665011141,
            0
        ],
        [
            154,
            "ACHIEVEMENT_DONJON_SERJEANT",
            -1,
            1665011141,
            0
        ],
        [
            155,
            "ACHIEVEMENT_CAMPAIGN_LITHUANIANS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            156,
            "ACHIEVEMENT_TOLERANT_PIETY",
            -1,
            1665011141,
            0
        ],
        [
            157,
            "ACHIEVEMENT_SCATTERED_HORDE",
            -1,
            1665011141,
            0
        ],
        [
            158,
            "ACHIEVEMENT_MINT_CONDITION",
            -1,
            1665011141,
            0
        ],
        [
            159,
            "ACHIEVEMENT_CAMPAIGN_POLES_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            160,
            "ACHIEVEMENT_PROTECTOR_REALM",
            -1,
            1665011141,
            0
        ],
        [
            161,
            "ACHIEVEMENT_NO_BAGGAGE",
            -1,
            1665011141,
            0
        ],
        [
            162,
            "ACHIEVEMENT_NO_QUARTER",
            -1,
            1665011141,
            0
        ],
        [
            163,
            "ACHIEVEMENT_CAMPAIGN_BOHEMIANS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            164,
            "ACHIEVEMENT_MALEVOLENT_MARAUDER",
            -1,
            1665011141,
            0
        ],
        [
            165,
            "ACHIEVEMENT_ZIZKOV_HILL",
            -1,
            1665011141,
            0
        ],
        [
            166,
            "ACHIEVEMENT_AGAINST_ALL",
            -1,
            1665011141,
            0
        ],
        [
            167,
            "BOHEMIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            168,
            "POLES_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            169,
            "ACHIEVEMENT_OOF_NICE",
            -1,
            1665011141,
            0
        ],
        [
            170,
            "ACHIEVEMENT_FAST_FOOD",
            -1,
            1665011141,
            0
        ],
        [
            171,
            "ACHIEVEMENT_CAMPAIGN_HINDUSTANIS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            172,
            "ACHIEVEMENT_NEVER_TRUST",
            -1,
            1665011141,
            0
        ],
        [
            173,
            "ACHIEVEMENT_AN_OFFER",
            -1,
            1665011141,
            0
        ],
        [
            174,
            "ACHIEVEMENT_THE_RENOVATOR",
            -1,
            1665011141,
            0
        ],
        [
            175,
            "ACHIEVEMENT_CAMPAIGN_DRAVIDIANS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            176,
            "ACHIEVEMENT_NO_REST_FOR_THE_WICKED",
            -1,
            1665011141,
            0
        ],
        [
            177,
            "ACHIEVEMENT_EYE_OF_THE_TIGER",
            -1,
            1665011141,
            0
        ],
        [
            178,
            "ACHIEVEMENT_NO_WONDER_YOU_WON",
            -1,
            1665011141,
            0
        ],
        [
            179,
            "ACHIEVEMENT_CAMPAIGN_BENGALIS_COMPLETED",
            -1,
            1665011141,
            0
        ],
        [
            180,
            "ACHIEVEMENT_HUNA_JOIN_ME",
            -1,
            1665011141,
            0
        ],
        [
            181,
            "ACHIEVEMENT_CONSTRUCTION_CANCELLATION",
            -1,
            1665011141,
            0
        ],
        [
            182,
            "ACHIEVEMENT_PARINIRVANA",
            -1,
            1665011141,
            0
        ],
        [
            183,
            "ACHIEVEMENT_CAMPAIGN_RAJA_OF_THE_PEOPLE",
            -1,
            1665011141,
            0
        ],
        [
            184,
            "ACHIEVEMENT_CAMPAIGN_HOPELESS_ROMANTIC",
            -1,
            1665011141,
            0
        ],
        [
            185,
            "ACHIEVEMENT_CAMPAIGN_INSPIRING_POET",
            -1,
            1665011141,
            0
        ],
        [
            186,
            "BENGALIS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            187,
            "DRAVIDIANS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            188,
            "GURJARAS_VICTORY",
            -1,
            1665011141,
            0
        ],
        [
            189,
            "ACHIEVEMENT_FACE_MY_RATHA",
            -1,
            1665011141,
            0
        ],
        [
            190,
            "ACHIEVEMENT_KING_OF_THE_SEAS",
            -1,
            1665011141,
            0
        ],
        [
            191,
            "ACHIEVEMENT_FORGED_IN_THE_HEAT_OF_BATTLE",
            -1,
            1665011141,
            0
        ]
    ]
]

AoE4

Request

GET /game/Achievement/getAvailableAchievements?callNum=172&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1985813&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&signature=wqFWpWL7ZV67HZ7b1kXEAtWofi34DFHX%2FHoiyJm46ooePlthNsS5F2TQiLHzUOSYuV%2FVGDmpk1Dr7r6E%2FOukY%2FlDE4MgrRQBkOTvV8HAnqJIAcqDTiZN9l1bimxn14vrnnNaBcOZyOvnkZD5oVahECESHlxgEewOhTdkOxLAuXLA%2BQxXYBlswaperH95%2FwGhUg11NN0AG2L%2F6ej929D5NIqDGlVrmp1oBRNYTqRhbvOgjyII0XElAvKwaR%2BbYKGqchd8RU4WGwPsrhN%2F5IKl4E7SpJH9UAWV4bH9v6lVwJqz8NGCawmq1p%2BV22G239k%2Fc7x6chtyOJBPG9N220ot5A%3D%3D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response (in-game)

[
    0, // result status code
    [],
    "wqFWpWL7ZV67HZ7b1kXEAtWofi34DFHX/HoiyJm46ooePlthNsS5F2TQiLHzUOSYuV/VGDmpk1Dr7r6E/OukY/lDE4MgrRQBkOTvV8HAnqJIAcqDTiZN9l1bimxn14vrnnNaBcOZyOvnkZD5oVahECESHlxgEewOhTdkOxLAuXLA+QxXYBlswaperH95/wGhUg11NN0AG2L/6ej929D5NIqDGlVrmp1oBRNYTqRhbvOgjyII0XElAvKwaR+bYKGqchd8RU4WGwPsrhN/5IKl4E7SpJH9UAWV4bH9v6lVwJqz8NGCawmq1p+V22G239k/c7x6chtyOJBPG9N220ot5A=="
]

[POST] /game/achievement/syncStats (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/achievement/syncStats HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 136
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

accountType=STEAM&auth=&callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz
parametertypevaluecomments
accountTypestr/enumSTEAM
authtoken?
callNumint123
connect_idstrccc
lastCallTimetimestamp111
sessionIDstrzzz

Response

RESPONSE_TEMPLATE

AoE4

Request

POST /game/achievement/syncStats HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 137
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

accountType=STEAM&auth=&callNum=87&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=328366&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
accountTypestr/enumSTEAM
authtoken?
callNumint123
connect_idstrccc
lastCallTimetimestamp111
sessionIDstrzzz

Response

[
    0 // result status code
]

Advertisement Endpoints

Endpoints for managing game lobbies and advertisements. These endpoints handle lobby creation, joining, spectating, and lobby state management.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
findAdvertisementsGETSearch for game lobbies with filters (profile IDs, match type, mods)
findObservableAdvertisementsGET/POSTFind ongoing matches available for spectating
getAdvertisementsGETGet list of available game lobbies
getLanAdvertisementsGETGet LAN game lobbies
hostPOSTCreate a new game lobby
joinPOSTJoin an existing game lobby
leavePOSTLeave a game lobby
startObservingPOSTStart spectating a match
stopObservingPOSTStop spectating a match
updatePOSTUpdate lobby settings
updatePlatformLobbyIDPOSTUpdate the Steam lobby ID
updateStatePOSTUpdate lobby state (e.g., starting game)
updateTagsPOSTUpdate lobby tags/metadata

[GET] /game/advertisement/findAdvertisements

AUTHENTICATION

AoE2:DE

Request

GET /game/advertisement/findAdvertisements?appBinaryChecksum=8888&callNum=123&connect_id=ccc&dataChecksum=-888&lastCallTime=111&matchType_id=0&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&profile_ids=[1,1]&race_ids=[1,2,3]&sessionID=zzz&statGroup_ids=[4,5,6]&versionFlags=0 HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
appBinaryChecksumint8888
callNumint123
connect_idstrccc
dataChecksumint-888is negative
lastCallTimetimestamp111
matchType_idint0
modDLLChecksumstr0
modDLLFileINVALID
modNameINVALID
modVersionINVALID
profile_idsarray[int][412,567]
race_idsarray[int][1,2]
sessionIDstrzzz
statGroup_idsarray[int][12,34]
versionFlagsint0

Response

[
    0,
    [
        [
            144146175, // match_id
            109775240944275349,
            "0",
            8593884,
            0,
            "Come if you dare buahahahahaaaa!", // name
            "Come if you dare buahahahahaaaa!",
            1,
            "my map",
            // zlib compressed settings 
            "eNpFUsFuwyAM/Zd+QZMmSD3skBRaRRqgTKRrdiybIpFt6WFTCl8/g03H6cnG9nvP3rxMfQOvlG7xzQqIN0w2FAu33zZCPgft5Ip5wa5YU2l+qzHWMdlTjVnWNiI+rto1IkJtGqiRERYQu0agjGT68n6y4q278vb1fDkbe9gLI/qdnT/LwWz32HsEPkOqBY47SXyVAW5pzlRCzyPOGdmzETiTW/aBnHba2QJ7TVlbocLiiWepv+dUo1ysSTxr0Jti0kQ/xgjvoO2uTE+a+syrUmb5kT1hHjFy1Hy50wzoN+CM0DBFvGI/9Nd67cSKWIDXA3kothA/Io+BQe0JMXhiuoL+gD5BXCemUd9dQ+9DytsQe0veUM/usRfpBCPeHrwtyRsvozeJSwfzx7WdUp/IxSv6D5p9/q9c1tEBl5F87arsoQoD8EoeeuAFtTQ/2LyPnXK3Gutmr78qysO+JsqHvO+hzHpVvDvM1/JxD7bK9SrM+QYK2AXpn1bI473ALf/fy+OGK9BPfwfYW/e0+QNAfvCc",
            0,
            8,
            // zlib compressed player data
            "eNrVkl1vgjAUhvdbeo0LRVFnshvUOsxALbQoyy6q1IB8yJD5tey/T2p0M5kXi8mMV+e0503Pe55TqEgvHyDN5tMg4noynd8HHmjU1YdyvV6RwCJneTBP9BZoQAnknMVFKktgyiaHwu6UsQk/pkn4zJc8Op4Mlk98e5MKRal4Joh5n2coYzE3LKELFpgzbyO6FD3fF+I65jlrsZyBBtDDroYJ0gYEVQZUxLZDukXUbIKWRRzYmsnixcqG2DVk+Ma2CHlyoXV7LEqHpuPPxs5aocSrsA4d0iSy6ZZmTuQnltChHm6H0A5xZoRq1bJpj+x7NSlNhzjBGhEesNu39EfwKf3Grl6uKfIJO+WbHbw2O8cT7LDdPcyinZ09hPvZUbihCXWddroazVBzAqPRuLOeMWUNndBzzLaZFPwxQuqOPTaJ+jYqR32KKBJ7oe4Tjf2AECr2ZQRn2JXgCbbSjz+nnHArKgdw+/wicvI5cn91Wb4Jl5V/cgkvcqnehMvqTbisXcnl690XTfP9rg==",
            0,
            [
                [
                    144146175,
                    8583720,
                    -1,
                    5445306,
                    -1,
                    1,
                    "/10.0.11.4"
                ],
                [
                    144146175,
                    8593884,
                    -1,
                    5445586,
                    -1,
                    -1,
                    "/10.0.11.4"
                ]
            ],
            0,
            512,
            1,
            0,
            1,
            0,
            null,
            "westeurope", // server
            null
        ],
    /// ...
    ],
    []
]

AoE4

Request

GET /game/advertisement/findAdvertisements?appBinaryChecksum=24916&callNum=293&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&dataChecksum=-638535971&lastCallTime=3052353&matchType_id=0&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&profile_ids=%5B234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%2C234634%5D&race_ids=%5B106553%2C129267%2C131384%2C133008%2C134522%2C136150%2C137266%2C182910%2C186603%2C186624%2C187558%2C187855%2C195982%2C199703%2C205592%2C205674%2C221744%2C2039321%2C2058393%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&statGroup_ids=%5B4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%2C4275156%5D&versionFlags=0 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
appBinaryChecksumint8888
callNumint123
connect_idstrccc
dataChecksumint-888is negative
lastCallTimetimestamp111
matchType_idint0
modDLLChecksumstr0
modDLLFileINVALID
modNameINVALID
modVersionINVALID
profile_idsarray[int][412,567]
race_idsarray[int][1,2]
sessionIDstrzzz
statGroup_idsarray[int][12,34]
versionFlagsint0

Response

[
    0,
    [
        [
            50864995,
            109775243868517791,
            "0",
            11190194,
            0,
            "3v3 random team",
            "3v3 random team",
            1,
            "generated_map",
            "eNqtUc1OwkAQ9lnmahNbKLRLwqGoQaICAjdDzNpuYcO23bQLWAjP4tW7B+PFt1Ffw/2h5QXcw2a+b2a/2flmDwnms5IT6DgWbGl6S0oZush1EHIkFdFYpwqBc1FUVSOu4kcIHoIALAjM6cLcgjyNoNNse40WclyvYQHLwhV0bAvWVGYadtNtIeRLnQSLcKn7ARzRZbyQJX5b9mOZ0AjihZS+ceXVO1dd/gUH3W7Vc9zrD+TH4EKd7ZHnQ5xIT+D74+339f3n8wv0IJjRHYnu67RicUlyZcZcv+uTdLqTNiHPbzoVc4fLbC3U8I5vuxXbo5ks9DwP1dT05LIhJspNu0KjTa492UPyFGGB1Q8O9duQpPUmMWPZ9vpFjFfFCU8Ir3CSRWaHexWOcbjSI0gxHg/SjRmNx0MiTEiLq+eF2WJBAsYoTkMyIzgxcuGSYKVmH87+AHSdsw8=",
            0,
            16,
            "eNrtmFtvozgUx/ez5Dld2eaSeKR5KKlMiXJpCPfVPBhDFIIhUUNoyWi++xqSbZrORKvVaqbNiCfsc8zxn+Pz07GAqPvX187mcb1IeGzki/WfSdT5BCHEAGK529kWtEjWuXEnjN1OEdOsHoJuZ0HZPw4xe6QsrocIKH0JS7UhT0dxGfOjO0/HtGBLq9o0627qYEkWP8SP5JFm8XjerEu2ZkyjqhnXO++2zTCLC3pHC9r51ImrYeEhvjMRKYK5oY4HT0no4E2YBzzMzZLlfB64JI1PvqdQJ0rgDd/aK99V0hBBK9JJFRGtZIgD6uKdsVo/jwZiH2kCfG8obEpu63hPPXMTIjmZJuDgR7AMiLb0UfHA7mufsjdWm56Rvdjreeh5YCtsi9DFqa2TFQXB1ncj4Vs/vYmztyVzGd07h/fmjc4ldTTO8kkZZmQrNCjivcRIjj77ufRds4y8WTJdzaqpNVMmKyaedrOnj/A+dB3xDZO3GhdMJyJvpuWjJRdrhubAUI/5TcUeYLxKwdTyJfGEh3yYCtNtsY+GD3NtKXID7PvhJnRJVefWSPrlqOqX0R7go8Yn3+W7iEy40LIL9H9bZ1bUBSLHRuMfSQw/zI3tK7120JzJxTiJyEceOJqIA5csT9/EGh61m9x3oRbqzxtRB6u6lozUsXxAtJn1EmvJMqjMXPF9el0b5+dS+xxPy1lG0sAbJ1NeRIfzJFXocSfMOGCVobrwcP6BjqehZM6PdbeJszqXt42PehNhn3A7IyJHuAjvuRW4z9wXOoPBS82ufW8yCHW8oshJHTu6e6khSdv6HucsFXWiY8gSQx1ZBN/efv7c+db9HvEeAgAq+IxwdCIcXiIcSlDqyx8c8HkLeAv47w/4OAe3P4QbgT4CqHcGt3SCG12EG6iK0nbvFu4W7o/dvWUA+3Lv/H4unwCXLt/Pxe0cwZbwlvCW8Hdv39KF9o2RLKlIOqNbOdEtX76b95CqtnC3cLdwf+j2XRP4iu2bV7/WlEtwg5/H9X/VqP4SjfB/aexdgcb+FWjEV6ARgmsQCa9BJLoGkdI1iJSvQaTyLiK//PE3wKGsig==",
            0,
            [
                [
                    50864995,
                    2082027,
                    182,
                    317820,
                    106553,
                    2,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    4018474,
                    83222,
                    3197784,
                    2039321,
                    3,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    7200159,
                    14052,
                    557957,
                    131384,
                    1,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    9243623,
                    69314,
                    2840904,
                    137266,
                    4,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    11190194,
                    1219,
                    4097972,
                    131384,
                    0,
                    "/10.0.11.21"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "koreacentral",
            "Korea"
        ],
        [
            50863834,
            0,
            "{\"templateName\":\"GameSession\",\"name\":\"cef65084-3bb6-41d1-b59a-e8e63177206a\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            7041975,
            0,
            " 4 v 4 MAX RS a los putazos",
            " 4 v 4 MAX RS a los putazos",
            1,
            "generated_map",
            "eNqtUttu2kAQ7aegea3b+LJrGyQebEJTkhIIoDZqharFXl/q28o2AYL4986uMf2B7oM1c+ZyZs74DAUTm5PgMDI0OKTlEz+hSYbEGA4NhMI0UqGmZXXb9FkLIe1f4L1MfdDA8+YevjFsNajLEEbUNAzLJjrVIK+CDEa6BvsUA6ZuEUoty9GQuA0SRQdw9SZRjCmujXR51SoPohg7fyX48T9Kkv/ie+Nxz7n0H2Y4GNzJd7ji4pkVKAn4OQuywZeq5k0LaheWp+88nN8yJMpOvJZybFXpAy/X73JT0zSJ1UPf2Knat6ifZViu26N+WiFk21S/Qeur0HoPrKSgN2/xVitdzlD8DlnL5AiXW23Ay9sxWZ5Xh+mxXWbNP3/FRe8XVdid8SzNJS4qdzgDq4PZPbZ9Ea/WZDX/QadFmB2SWfKYHstOIEz5zmvM+eNM1jzzDfEzeX20Yudps7tbxJ2I2HMpm38yia0T1yWurdsOdahuDXGAS5eyUbuJ/U5xUkqJgcVpc8+FijSSB1UsO7mNz/Q48PJ8sOJNta8D3sBli61ENCvfunOI6Jm3nYltdnH38zUcq1JWBnzDWdEpECScKakvH/4CgBnjoA==",
            0,
            16,
            "eNrVlN2PmkAQwPu38Ow1LMh5XHIPoreIUTz5hqYPuwuGjwWNIopN//cu6HkXm0vTNG3DA2F3Zpj5zQcDhN6Xb9xmu14lNNKK1fpzEnKPA74P5IHU43YlKpN1oY25R9DjygjlzZHvcStEXhXstkUkam3EviQIzb3IZlEV0Yu2yOaoJLFVb1qzu8ZXkkcv0RZuUR7NzdYu2RkRCuv23ATe79pjHpVojErEPXJRPS09ge4NAZaBqd3PR4cEO/IGFwHFhVGRgpqBC7PoTXfAKpQCb3orr31XyrAArFCFdQiVigiUR66819L1cTZicUSd970pk0mFrcon5BkbLPSTRcKf9QKoAqjEvlC+kEmjk05auhlo+VXe3LHn8TsmW2FXzmwVpogPdr4bMt36cOPnZItGHE6c9juWa0xyfWqMtHuNwoM71sd2BjzddspALUX0TNdmTvu4IPKLqe20ouE1AKnPORLhWIXs25n1zOIbe8zOc7N/mI+H7FFkz2zrECNHoaTQK5zDHctRYlyJllx09rHyXaMKvWWySJf1wlpKekrY225z8gX5hF2H1Ui/rcGKqJD1xbB8IabMps3j0r+MxeDnacYvLF9kb3CutyER1WZxFPl8V2JWe96eTDfYhXXTOy15qGb1QxWeePnCePBdug+hThnLPlB/ZWfUyOVZD7VWPxMvtXvjtYO25x/6SVg9isBRmB8QkyK78TW9sBvUd4GC1eOGzVnazKqWOZbPQ2VpXX2x/gJp6bL81Gb2zn1/7UujczylIDnMAm+eLGgZnucF1tijDs4p3/TaBef5ClR5gUXDvMz1JsqbWg5bHfJ0JtepnUNWI7nEE2oF7pH6jDMYXf+Jte/pI6zKKRKczLHD8XVGRWXne5SSjM2JKgOSNHMF5eHw6Yn73vt5gTR/+LvdcfdueYCPlgf/9/bG7zIKHWAUO8DY7wCj1AHG+w4wDjrA+PBPGMEfMcodYAR8FyBBFyCFLkCKXYDsdwFS+i+QXz/9AIYibU0=",
            0,
            [
                [
                    50863834,
                    7041975,
                    88816,
                    252032,
                    134522,
                    0,
                    "/10.0.11.21"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "eastus",
            "USA (E)"
        ],
        [
            50864865,
            109775243868444193,
            "{\"templateName\":\"GameSession\",\"name\":\"3a8e2f7a-05b9-406a-a45e-aa81d8634a47\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            801954,
            0,
            "4 vs 4 Original",
            "4 vs 4 Original",
            1,
            "generated_map",
            "eNqtUt1OwjAU9lHMuXWJW1cWRsLFUIJEBUTuDDF166Ch25qtgINw43N44SOQ+FbEh7Dt2HwBe9Gc7zs9f9/pHhIiZqWg0HEs2LL0npbKxD52fN9RVMRi4yokyWUBHdu8Ggttv0Dw1A/AgqA6XZhbkKcRdJDnOa7dchG2gGfhysStmfbYLm752FMpEyLDpakHcEY38UI9aXuqHs+kQRAvVOo7rK7ela7yLzjoduuak95gqBqDa322Z16MSKI0gZ+P4+Xp++t0/AQzCeFsR6PHxq9ZUtJcqzE3gQOaPu/0nAgh7NbUAymztVRKonYLNWyPZYpq29i2m9izzk5NTLWejXu8yY0qe0heIyKJbuHQxIY0bXZJOM+2/Xc5WRV/eEpFjZMsqra41+aEhCszg0om4mG6qWYT8YjKymTF7dui2mNBA84ZSUM6oySp0oVLSsz/OFz8Auy/suY=",
            0,
            16,
            "eNrtmW2PqjgUx/ez+HruprSCdpL7YnAuCFEcUR43+4IChoeCZkBHvNnvvgWdUWeH3N1kkxkTXkF72tM/p+fXI8jBuz9+9jbP61VMQyVfrX+Pg979EHCY79/1itIr43WuPPbuubteGXpZfQvueivPfzWw1rPnh80YiKEwqNt5Ogl3IT1Z83TqlX60rDbNsG+1rzgLn8Jn6dnLwumiGRcXeugFVXNfL7wtmtssLL1Hr/R6972wUksb0q0OpdJdKMJ09BITE29I7lKS6zs/pwvXktKwti0a2wuRJd611XP/cU7lWHxKILcMZKkKJHHnQwo8C2+VZL2fjNg6SAOOrbI+PjdkfPBsfUNgP57F4GiH3M6VxMiB5ZM/rm38QUk2AyV766/bxLZBwfpWxMKpIUuJB9zCsQJmW7+883MwkB4FY/M476g/8kyR+rm2I5lUMA08mxcr8clm7HeOpe8Cex7Pknk1W855LfHZ1WjWdCA+EMtkz6C917jyZYnFTV86MKJsjKqPFOEU35StAaZJCmZLB7Erd4yHzvuywdYR8bEtRiw2wBirG2JJVR1bJR7uJtVwFxwAPml8cSy6DSSNMi1bV/7VOL3yLMBirDT2CfLx00IpLvQabrMnrX5iFo/cNUXmh4v8PH3nSz1p16ljcSKR9xuWB0mdS0pqLh0gifPlm6/Izzh+brHnk+vcuN6X2mbaYu5nUura03hGy+C4n1JFbGqSjAK/UgSLO+6/K+MZQfrilHebMKtj+dDYPFtj/Ro1MonFCJdkTJeutacO0+mO3nJ27djaiMg48aCZmkbw+JZDSCwcm1I/ZXkiY86P2ZwxeOj9dfdPtjmuPwDcQLiiG53p5lrpBgLPoy9C96iF7kVH97+ge68dlEo7HLMvGNOXJt5jcEna3M9oyWLUaFr+KPV5KolPSxBf0Q/NhK2b/mqcWZ8SDWX7iWGol5S9ks/ioG9a/UA1cuWAXp02KY1mP06+8qP2QDYjYkgFIzYimUZrX7qpJXPj0ldDqOhktI755iN6fTlgOcQ0XRDMtJWhaW7ZnMs9TAngd4GksvX0HbGocJm7PqeyvTdfqS9CU6NENhOmMz3nSBT5QC0I1J5dSzd1MH07GXx5H4WWWc0hLggyKzYHruYP3z8kG0JhyCH+Cuz+GWzYBjYECCPIdWR3dbur259et+2Wuo0EOBAguKKbP9ON2unmh4zvju6O7o7uz6Z7spTww8P3j+u3gIZo+I5w4Ux4v6vfHeEd4V+9fqOW+o0Rxki4/qg2ONPNt752oz4PYQd3B3cH96fDnbd9VAM8RHh4TffwTLfQSjfGA9D9OO/o7uj+dLq1tldvrs/3EYJXcOMz3IP20j2AgtDB3cHdwf2l37xrAi/Y/nbxZ/ewDW7wf3LNXXH9XzXiG9DIgVsQyd2CSHgLItEtiOzfgkj+U0T++dvfb6nxlg==",
            0,
            [
                [
                    50864865,
                    801954,
                    1080,
                    84343,
                    129267,
                    0,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    1454332,
                    87959,
                    2767016,
                    137266,
                    7,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    2268135,
                    2356,
                    2299729,
                    2039321,
                    2,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    3627620,
                    8671,
                    715777,
                    2058393,
                    3,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    6383820,
                    -1,
                    562606,
                    2039321,
                    4,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    9399364,
                    14116,
                    2961962,
                    134522,
                    5,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    10523984,
                    6724,
                    3577231,
                    199703,
                    6,
                    "/10.0.11.19"
                ],
                [
                    50864865,
                    11470176,
                    11735,
                    4267851,
                    106553,
                    1,
                    "/10.0.11.19"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "koreacentral",
            "Korea"
        ],
        [
            50864987,
            109775243868517347,
            "0",
            8457833,
            0,
            "1v1 noob",
            "1v1 noob",
            1,
            "generated_map",
            "eNqtUt1OwjAU9lHMuXWJ+1NWEi42RSQqIHJniKlbBw1d22wFHIQX8jV8MduOzRewF835vvPX850eocByUUsCfc+BPeVPpNZmiEIPIU9TGc2tq1K4VBX0XRs1lcZ+h/g1TsCB2J7hAJYOlDyDftAL/B7yPeQ7wES6sXlbqj2+G4Q3CIXI0Z1Vurb9AM7oLl/pkOhW92NCWQT5Std+DPWVXJk2/4LjwaDtOUtGY/0wuDZnf+blBBdaE3gQ5c+3uuSClgTsLJjRA8leugjD4pqURo+lTR0R/nbQovkocMOWeca12CrNBl4QRS2bUKGpyA1dt0s9C+21xNwI2rmnu9LKcoTiI8MKmxecutyU8G6ZmDGxH36p2ab6w3MiW1yIrFnj0ZgznG7sCLqYzMd814wm8wlRjUmr+89Vs8iKxIxRzFOyILhoyqVrgu0HOV38AoUwsWo=",
            0,
            16,
            "eNrVlduOmzAQhvssXGcrG5ZsWGkvlqxMiBKyIZyrXtiGiIMhKCEkpOq715A03aaqqqpqK65sz2/PfB7PyFAcfPgklNvNOmGRXqw375NQeBzdyw8jSRoIuwpXyabQX4RHOBCqCOftFAyENaZfBb7aYhq1UxHII0mRWkORzaI6Yhe5yOa4orHVlN2+u9ZZkkev0RZtcR7NV92+ZGdGOGy6eRt5v+umeVThF1xh4VGImmnliWxviqgKVvpwPj4kxFFKUgSMFGZNC7YKXJRF37QD0ZAceNNbe+O7ckZEaIUaakKk1lRkALvKXk83x9mYx5EM4HtTbpMLW1NO2DNLIt4niwScdRHWAVJjX6xe6aTV5JOelg96frW3a+J5YMdta+Iqma2hFINg57sh1zaHGz8nWzLjcOKcz606zhg7KqOFUZMc7TiDzM8lenLR7GPtu2YdestkkS6bhbWUjZTy0e5i+qJyIq7D72DcMq6phnjeTMsXY8b3TM2xPrzkN+MxwDzNwMLyJT7Ccz5MmWo2j6Mq57Ua89wAezItiYuaNrd6MqpnzagOT0C5MB58l+1DZDDOsg+0X+0zG+wCnmO902cSVV5X+u4Nrx10b/JTPwnPRxE4KvcDY1pkN76mF3aT+S5UiXYseR2kbS3pmWP5AKlL6+orpjmUly6/n9bWxvfv0mqOpxY0R1ngzZMFq8Lze6KGeMwhOQO00YcuPL9/oCkLIpmrS92VUd7m8rnTsGdwu8HsHPEcKRWZMCtwj8znnMH4WrMb3zPGRFNSLDqZY4cv1xqS1J3vMUYzXieaAmmiD2cWUp6fn56Ez4MfO7ztwDfNffemu+HPuhv8vb7+XUbxnzDCP2KUesB43wNGuQeMwx4wPvSAcdQDRqUHjBD0ARL2AbIPXw3sw18D+/DZwP/z23x89wW4/03K",
            0,
            [
                [
                    50864987,
                    8457833,
                    7542,
                    2192196,
                    2058393,
                    0,
                    "/10.0.11.23"
                ],
                [
                    50864987,
                    8553693,
                    62425,
                    2271075,
                    131384,
                    1,
                    "/10.0.11.23"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "brazilsouth",
            "Brazil"
        ],
        [
            50864915,
            0,
            "{\"templateName\":\"GameSession\",\"name\":\"39676d23-823e-4153-9ed7-59f6aadddde3\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            10203850,
            0,
            "unnamed_session",
            "unnamed_session",
            1,
            "generated_map",
            "eNqtUttugkAQ7bfMa0kqchMTHqA11rRVa31rTDOFRTcusIFVi8Z/716E/kD3gcw5s2dm5wwXKJCvW05gbFtwouULaWXohq4dhrakMprrVCOwFg2MB/rWgqv4E+L3SQIWxOZEsLGgLjMYO8ORF/i261vAqnSvZQcqE8OB43qh78uKBYp0p9sB3NBjvpVXRlLVsEpoBPlWVn525Se5V03+BcdR1PVcJtOZfBg8qHO68XyOhbQEYiaQgh4CGT2T7K1PKRZbUisfNlozJeXHWZoVjjwzn2Jesa0OQrKB4/hexya0UlQQhG4vvRncK1fKyEGHFsda+3GB4itDgeoF116bkrJfIjJWnSY/Yrlv/vCK8A4XVWbWd1HhEtO9HkEW4/msPJrReD4nwoS0efremg02JGaMYpmSNcHClEt3BPWPcb37BezfrfY=",
            0,
            16,
            "eNrtVV1vmzAU3W/JczvZUJJQqQ8llQlRQhrC97QH2xDxYQhKCAmZ9t9nSJa2mapp0qQNqU/Y95h7j4/v0YXCzZdvvWKzXsUs1PLV+nMc9O4hEIA4lMBNb1viMl7n2hMP3vTKEGfNkgMrTH8CfLfBNGyWApCGoiw2gTydhlXIznCeznBJI7Mu2nO3TbI4C5/DDdrgLJwt23Px1ghxULfrpvJu2y6zsMRPuMS9+15YT0pXYDtDQKW/1Pqz0T4mtlyQ3GckNyqas6XvoDR8wfZERZLvTq7jtedIKRGgGaioDpBSUYEB7Mg7LVkfpiNeR9SB5054TMotVT5i1yiIcBfPY3DCBVj5SIk8oXym4waTjlpSDLTsEm/2xHXBlsdWxJFTS0UJBv7WcwKOrfdXeY6WaETB2D79t2x5RthWGM31imRoyzlI/L9Yi8+Ydag8x6gCdxHPk0U9NxeSnlD+tdqaniAfiWPzO+jXHFdURVw3w/SEiPEzE2Ok9c/6prwGmCUpmJueyL/wpIchUdXidRT5tFcirg2wxpOCOKhutNXiYTWth1VwBPKZ495z2C5AOuNcdr76u3NGjR3ANdZafCpS+XmpbV/xtfz2Td7NE3M9ct9WeB4Y0Ty9yjU5czeY50CFqIeC90HS9JKW2qYHkLIwL7kimkFp4fD7qU1vvH2XBrNdJacZSn13Fs9ZGZzeE9XEZTbJGKC11nfg6f19VZ4T0Vie+64Is0bLxxbDrs7jOrMyxDWSSzJmpu8cmMd5+qNLz649Vx8RVU6wYKe2FTxdekhUtp7LGE15n6gypLHWn5pIfnx8eOh9v/nV4kM4AP3B8I3DhReHw/cdzv0twA+Hfzj8w+H/tcMbB74y9+2r+S28527wN30N3/j6TzmKHeB41wGOUgc49jvAcdABjsMOcJQ7wBGCLpCEXSDZhVEDuzBrYBeGDfw30+brpx+vJGY+",
            0,
            [
                [
                    50864915,
                    8170678,
                    11121,
                    1864338,
                    2039321,
                    1,
                    "/10.0.11.19"
                ],
                [
                    50864915,
                    10203850,
                    88173,
                    3419884,
                    2058393,
                    0,
                    "/10.0.11.19"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "brazilsouth",
            "Brazil"
        ],
        [
            50864628,
            109775243868280745,
            "{\"templateName\":\"GameSession\",\"name\":\"c1e11e45-57cb-4e04-8dcb-74b84178a21b\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            11034775,
            0,
            "3vs3 Max Lv45 No R a t s",
            "3vs3 Max Lv45 No R a t s",
            1,
            "generated_map",
            "eNqtUdFugjAU3bfc15GMSmFg4gNuxplt6pxvi1kqFGws0NCqY8Z/X1sEf2A8lHtO772n99wzFESsG0FhiBw4sfKVNjrEEUZRhDSVssxeSUVqJbushTDxF8QfcQyO/cXxZAQbB+oy1VkRwhh5OPAd4FWyh6HrwIHpm4HrYT/0kedoZZXsrB7AFT1luU4JA63HK2URZLnu/YL1Mb43Mv+C49Go01yOpzP9MHgw3+nKizkptCcwpVtW51IQKcGOQjj7pel7n2BY0tDa2LGxlVNafv4aCx5DD3XMG2mqg9LsIPQHXseOWaWpIPDdsC+9+dwSK+On26HFsbaunKH4Toki5gWXvjahZb9Lwnl1mvyo5V7e8IqKDhdV2m7xbMIlSfZ2BN1MZLPy2I4msjlVbcjk8zZv9yhpzDkjZULXlBRtu2RHienmXu7+AEwzsK4=",
            0,
            16,
            "eNrtl1uPmkAUx/tZfHabuTgo+7a4ATErrijXpg8zA0ZkQLMiu9j0u3dAu7fWNJs23dr4YBjOmTnz48z5HwSi9qcvrfXdap6I2Mznq49J1LqEEOBOt0varU1Bi2SVm9fS2G4VMc3qIWi35pR/d8i7O8rjeogA6WEV14Y8vYnLWBzceTqiBV/MqnUz76IOlmTxbXyn39EsHk2becnGjmlUNeN65+2mGWZxQa9pQVuXrbgaFj4SWxvpRTg1lVH/PmGuumZ5KFhulzwX09DT0/jJd88MnYT+8LW9CjySMgRnkaFXka6VHAlAPXVrLlcPN325D7ZA4A+ljeSOoe6ob68Z6iTjBOz9CJahri0CVNzyQe0jO3O57prZo72+Z74PNtI2Z56aOoa+pCDcBF4kfav7V3F2DrYX0cDdr5s2nAvqaoLnVskyfSMZiFyXmMnB5zyUgWeXkT9JxstJNZ5NiLXk8uo0ewZI3THPlc9gvWacc0OXebNnAVoIOWdo903lkN9U7gFGyxSMZwGWV7jPh0244ch9NHV/ry1kboAzGK6Zp1d1bs2kV95UvTLaAfXAeB94YhvplpAs29D41Ty7oh6QOTYb/w3m6u3U3DzjdcLmTI7GSWQ+8tDVZBy44Hn6KtbwwG6LwIMaMx7Wsg6WdS2Zqa5NHPmbPcZa8AySiSefz6hr4+W51D7X13Ke6Wnoj5KxKKL9eeoV84XLMgF4ZSoe3J9/aKhjhu3poe7WcVbn8qrxUd+Sdks4mS5zpBZsIGah9yACyRn2H2t2FfhWnxnqkiI3dZ3o+rGGsLYJfCF4KuvEUCFP5JocXLW+tn+UN+mSDsQv1Y2e1A2PqRsChZCzuM/iPov73cVtHRV3RyUIKy/EjZ/EjY6KG0Pc65zFfRb3Wdzv/uYeHBF3rb5nur549p8cv9db+62gneMdqIsU5S+DKirGBIMXtN0nWHL8S0d+5yD4j/fL6blfnvvlT/ul/V/1S//t/VI5pmzwJzUNf6tVdk+AsXcCjOoJMEJwCpDwFCDRKUDiU4DsnAIkeRfIzx++AdMOlKc=",
            0,
            [
                [
                    50864628,
                    5495236,
                    11074,
                    3842521,
                    129267,
                    2,
                    "/10.0.11.15"
                ],
                [
                    50864628,
                    5754135,
                    57615,
                    3888989,
                    106553,
                    1,
                    "/10.0.11.15"
                ],
                [
                    50864628,
                    6933530,
                    7189,
                    314942,
                    106553,
                    5,
                    "/10.0.11.15"
                ],
                [
                    50864628,
                    11034775,
                    10349,
                    3891719,
                    2058393,
                    0,
                    "/10.0.11.15"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "westeurope",
            "Europe (W)"
        ],
        [
            50865024,
            109775243868518488,
            "0",
            3798905,
            0,
            "noobs no rush 15 min ",
            "noobs no rush 15 min ",
            1,
            "generated_map",
            "eNqtU1uvmkAQ7k9p9rU0XWC5mfiA1XOKerxVa5oT06ywKnWBFVAPGv97ZxcvaZP2qftA5v7NfDOcUULFtBIMNXQNHeO0xyoQiUd0z9PBFMUr5SpKmpfFLWoopPyK/LHvIw356nWaaKGhPI1QgxiWKysYWEM8C7eoAcI+Bo+BTWJj7DkaIJfhRuEhdNU+r9YQ4tqAx7NSaWi1htpfCHxaHyTMf9H9ZvOGOWo9B9AY+iTf8WoXA5oAJ2hEebYvGFJjUB6fWPRyd0orrVguqViorGeWfj0BSZ7jmvrN0qdVti8VdbWhFWegOaap43vWg97aMJE03t3DQ67IOKPkR0RLKsEv99yQpfcVUs6zY+etHG2Lhz5h4qYnWVQv7yzFEQ2l/fWMaB4GbSibHYzxU7u7m3SGyXybLOO35bxdswUh31gOMRXfzKJub9ojx6c5twzD282CK3NQcySLfzRgzcR1iWtj27EcC5seNHCpQ6ZqNrFfKkzP9FwTkuOizYTyFBLH1FBaE00wfi8yASM/Gg0n1mkQvAzy2TwjBk8CRz/4498b1fvBruvE7twNfhZB/7tfruN0/UejBFs2NmzdkIfpyLP9W59wt7r+rz5v13JZQL5YBemhvhKxGrCyFiF3ua5/h4L5nMc0DdmU0aReT7hhVG4HX979Ao3JDFQ=",
            0,
            16,
            "eNrVlF1vq0YQhvtbuPapliUkIVIv4tiLQYYYzJepesECFh8LRgZjcNX/3gGSk6McHVVV1VZcWOzOwMwz74yHx4tff+eq8+mYslgpj6ef04h7Eh6kRwmJC65ugiY9lcqKe+IXXBMHxXBEC+4YhO8OuJ2DMB6OGAmSgPnBUObbuI3Zm7vMtaAJE6uvxve+DMHSIt7FZ3IOiljbj++ltRkHUT+eh8yXejwWcROsgibgnri4VxsPs4uJSePvlXvt5ZpSR6po6TNamm1Ysr3vkjz+8F2pTETfUz/b+4Mr5hTzViSTPiLLNsQMBa50UbJTt32BPIKODp4KNrG0ZekWeGZF8V36mqLJj/nWJ8vkgJtduBl84k3Jqgel+Gof7tTzUA22I3Wl3JZJFiC/PrgR+E7XT3FutmAm0cYZv4Nak7DQVfNFuVcKCWuMyOa66uzc2VEnOlNXrWJZ9cz1WtrtlVopB16TD/upxhB3bQTfbq015DcvFM7a/u6qrZ7ht5S2mzqF+rK9bUBNamZnzr2VM90qVcfBj0grumZvhV2UE3NnoRRYb6AVijwtfc2eh3w1FYx3PXJaXMG+vkzxn69HZ6r74DID9L+BPgmVGRp6oKTKu0+jmORUcBDogbQsR6/WQYAnP2mjQ194Fskss4Tl2J+hvnEOhGUCvUE21k++y7OxjrIe58GHWvWVIuqrHOs3eO7HnqPYW7JB9+N0v0L+C/S+D1w+CcscalHabf/YboVw0hQYQ5nAfJmW7+otLcy/es8OC9ZAjnT095Lwpt1XXkd2eqjnh3EOBcl97BhDHOiP+DnWGzuCeW4Mt6sDl1wO2B56SECLpWGvP2J5ahPbJA3croKcbNDO5dGHz3GuvqAmvjzNnDfFhrnjRccVq2gDvWZNNPXCbK1CQnZBLr4sNYFXsY8ZZjewZ76jJqBRS91OtLFTg2bAaUzzAjkDmdyMomth1plPnI3Rf/c/XdFhbj1lnKuj8fwL98fi+w01bJBvltOXb7YT/6PthP69vfR3GfEMGIUZMN7NgFGcAeP9f8LI/yPGhxkwPs6AUZoBI4/mAMnPARLPAVKYA+TdHCDF/wXyt5/+BEMej4U=",
            0,
            [
                [
                    50865024,
                    3798905,
                    67358,
                    61431,
                    2039321,
                    0,
                    "/10.0.11.21"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "westeurope",
            "Europe (W)"
        ],
        [
            50769515,
            109775243815120963,
            "{\"templateName\":\"GameSession\",\"name\":\"b22cd39a-71b3-4a80-93a1-58e2ba53f87e\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            11478923,
            0,
            "èæºå¤æå·²æ´æ°è¯ç¨Q群485069332",
            "èæºå¤æå·²æ´æ°è¯ç¨Q群485069332",
            1,
            "generated_map",
            "eNqtUt1OwjAU9lnOrSR2ZRkbCRebEiQqIHJniKlbBw3d1mwFHMT38B28kSueSKNvYdux+QL2ojnf1/P7ne4hIWJWCgpdqwVblt7QUpm2Z1ueZykqYrF5KiTJZQFdZLzGQtuP4N/3A2iBX50ezFuQpxF0PWy7joM6yptn4cqErZl6wKiNOi5yVMaEyHBpygGc0GW8UC6uo8rxTBoE8UJlvrbVFZzrIv+C/V6vrjkJBkPVGFzosz3xYkQSJQn8vL99Hg5fx8P3xxHMLISzHY3uGg/NkpLmWo65CR3Q9GGnJ8UY2+2auiVltpZKyjZC2KvZgGWKslzXwk3sSWirJqZaUFSj8SY3uuwheYqIJLqF1yY2pGmzTMJ5tu2/yMmq+MNTKmqcZFG1xr02JyRcmRlUMhEP0001m4hHVFYmK66eF9UmC+pzzkga0hklSZUuXFJiPsjr2S/05bUb",
            0,
            16,
            "eNrtl12PokgUhve3eO1sikJUJpmLxh4QotgiFB+bvaAKDB8FGkEUN/vft0Db0d5xJ5OZTK+JVxR1ilMPp877BjjY/eOvznqzWsY0VPPl6vc46HzkuN5gKEK+2ylKv4xXufrMJrudMvSzZgi6naVPXgPsbuOTsBlCwIs85JqJPJ2EVUhP4Tyd+iWJzHrdrvvQJIuz8CXcyBs/C6eLdl1cGKEf1O242XlbtMMsLP1nv/Q7HzthrZUOpFsDyqW3UPvT0S7GSFzj3KM4NyqS04Vny2n4JbbDiix4jvZ2vnZtIcWQMwNFrgNZqgikwLfFrZqs9pMR24fXgetobE7ILUU8+I6xxrAXz2JwjEOu8mQpcmH5QsZNTDioyXqgZuf55h47DijY3BLbYmopcuIDr3DtgMVWuzd5DhZvRMEYHZ9btJyRjyRKcr3CmVwwBoE9F6vxKWbtK9c2qsCZx7NkXs/MuaAnhF2tdk8XigdsI/YO+lvGJVFkVjfDdGFE2RrNGKn9U31TtgeYJimYmS7PrtyxHoZAFIvtI4nHeylitQHWWFtjW66b2qrxsJrUwyo4APHEuHNtug1knTKWrad8a51R+zZgNVbb+IQn4stCLS54La89k5t5YlaP3EMSy8NFJE/f5NJO7AZ1bU7Cyn7N+iBpeklNkekCWZqb51wRyThhbrP3U5reuD6XJoYcKSeZnHrONJ7RMjiep1xjhyKcUUBqtW9zx/P3FHGGeWNx6rt1mDW1fGpjvqOzeZ1amcxqJJZ4TE3P3lOXcXqjc8+uXEcfYUVMfIhSZAXP5x7ipcJ1KCUp6xNF5Eis9iemLD49ffrU+bv7b4k3CrwQ94cLdXPvpu6vkjZmJPR617wQDL4Aw1vAHBRhf/Bwo4cbPdzop7rR4te5EX9T3DzHD3u/2Iz+A7R3G3QA+/3/D6hwExT0BYG/AuV+DBQ+7PJ97HKvH9RaPxzlHIzprq33GFxa15xktGQ1apnMz6UxT2XpxQTxlZ1ClLB902+tQ43ttra1n1iWdmlbr1bK6mCsb+aBWuQpAb2y75RGs8+nXPmRPVBQhC25YBYY4UynTS4D6cncuszVWp7kZrSp+fprdkiUgPUQY7qwRMZWhght2TOXZ5hiIFSBrLH9jArbtH/Zu4TT2NmjVxstQqRTrKCEcabnXoRRRIBWYKhvPNtABpierZYo+yi0UT2HYoF5VLNnyqkDnr5X1P3vsMmHqB/fQI9voDv6BhrcFjcPwPAh7oe4H+K+V3EPb4kb/MxfBu6HfhnEO2DkwD1AcvcACe8Bkr8HyN49QArvAvnnb/8ABn2u6A==",
            0,
            [
                [
                    50769515,
                    11475441,
                    -1,
                    4270589,
                    2039321,
                    2,
                    "/10.0.11.21"
                ],
                [
                    50769515,
                    11478923,
                    -1,
                    4271949,
                    2039321,
                    0,
                    "/10.0.11.21"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "westeurope",
            "Europe (W)"
        ],
        [
            50864750,
            109775243868346664,
            "{\"templateName\":\"GameSession\",\"name\":\"e68a0d67-6da2-4869-bc42-f8bc3f63fbc2\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            5419669,
            0,
            "7 vs 1 Mega A.I",
            "7 vs 1 Mega A.I",
            1,
            "deep pit 7v1",
            "eNqtU0tu2zAQ7VEMrlrEhSmJFCUDWSi1609iy7EDp24QFLREy6r1YS35Dy+767bnaIEuih4oPUdHUpwgQZJVtaBmhjNvHh+HOxRyebGRAlVxGa386FRsUFUzqaFoVMVaGbn+BFWVMkpSPk+T3IQ0W2b2FbKs8xYqw68OlnWMrstoHrmQpTNiEIaJXkZB7Mxy+IUPOwBKqIkx4IQ8daZ5Q4RuvXcTD1IMqEqCOM09NPEsy2oSWE6OYLH+i28dHx969k4aLSCGKtm3uo3LLg9BFOQKIUvST0tsqaD8LDzwt8Lt3GVkUb4R80yP67y0IaLBFlWJahJTZ6pJD9EzvokX6VM7J378VHhwL3oR6Gfi4oNnL+e5RDsUfnJ5yjM2+7taR0TFzUI1D4J4VV+nvVly7/eFPPhh7BZXusvMHney+NUO8bnTqgFsR2kYfSNN2jjcDieaGLTXjXahFaQMxRxyTqWx1PSB5P0vi4B1vSM+bPq3egJmLwN/q+maohLTpAqFs8KKKRDYFykX+dnkYpz3ZIpuECj2k5qQ+U6S9YGZjArlb35/vfn18+/3bzc//rzuCI+XrNYbEOCetuGo8TRd2Z/rdq056muX20u37T2kbYadijPyt3zMsTm0Rx+9pNZ4RJsRhTDNxIypmgr0Vc18jrWCTcVQX6L9YKQesB2fVd53FRrPfNLtjvpiWrftR2wv2+tpz03IYN0JP1C1eb6uDGfWI5FVomNiGMTQsc4oo/h5upRShl9iq2CMS71YLgKe+nGE9teAIyetaFnMvpx0RVqYgDH2ipeeCCsIfB454kLwsJgxZyp4NmJ4/+ofISpOGQ==",
            0,
            16,
            "eNrtmFtzokgUx/ez+JzZahoxYarmQRO5OILKpbls7QMNWFwaZAOiuLXffRs0mmTiTs091ubBArqb0/8+l5+nYODVH3/3ivvVMiahnC9Xv8dB7z3XZ/jBgL/qlZVXxatcvuu9Z656Vehl7S246i09/2GCPt17ftit4flrwLbPeToN65AcZvNU8So/MpqiW/autRVn4Ty8F+69LFT0bl1caqEXNN19u/G67G6zsPLuvMrrve+FzaSyIVlrUKhcXR4ot5sYI77AuUtwrtV+TnTXEtLwNLfBosC59uT5eONYXIohYwSi0ATCqPYhAZ7Fr+VktZne0n1YFTj2hI5xuSnyO8/WCgz78SxxSjljltjiU1MUEg/wm0AkNc6VeJaX8XGcpc+kCpZ6t1+FobZwLPVey7aR284lw6d2WLXVAgK7e+9azoTGAWRM9cQzcaJMgTtTDFR7MAVGyrlmhlaayc/dHeDleBP7rBYFEtod9O+wyAN6Xyl0f1fkSnq/nSbDjXJHfxIoqS8jP1Mn2q08kFOw1XaRPpO0nZ6MqpC4mQKRoeeRpOc+P9flUs5bf2iM3+x96MNtHdB3p8aYnkNbY3qv6P29/bsRP5XKmPov0c1FPIvlvrOb1J6ksQYsBANosoXkHWIL2x0X+dwAcav5eP7WN7laYrZ9F2zpXIqzDR0fr/f2h5slAp3/HIssaHx3GHIRFgloYyzH8sOcgqGQYha1vgBKkoKZ4bD0ynQxhiqNO0No/BKDHXXxb8/X5Rk7imjsgQnVlWsxpDtHG1+aby49q3onc+pdCtUdve5jDEJ7RFr/H2K+ofuvaW41nsVEfp62fqinzU09ZQ8+pRp9UaD5qxmupdY40z63zvQzUrU50c03PHvw3VEvElFDz3PWjpMJqQvRorVD48M9t3XQDmi9VAtrW3qWsHagSW1NRgtToL/xyZY9qUJTiD1rW9A9Ses7iwGnOYQ2LjuJXLHNywLbe9s07xgOWVwRSPsa2cdCq42MB2YmrF2Rrzy7IMdahGRHxxMXTSLqoxpbW86EqKQ+ozoXx1ryRGG3yLa1AyviCkhaNJ9w4A63eWvL9B3ED4cfPvT+ufoUgDfsNby+eQpAeAIgcxaALMPe9C8egNv/BOC+IKkOpnaFUUSdPfeldo5rg0zBdRzfB90Gz4Dplo4V7E7BPa03jxAr8BNAJVFs3PKikYwZDKtCHXMzC02IN0ZzA34PQE1UxfT7ZhIBH6w22C4sN1GJCYq+Bgr2qwClb59BXGkwjEAA+L8ouMe6QHSFCQYIah+/DuLMoXCEwqRF70N+7bSFKHWFHz/MGSJPC5BngpehlWBWrVwaW+f5H9kRYGriiahyzfYcXXyXXld0i2ZmLDg18enV7GIcSGTT5aUEHkPrLGweg4sWdEJzKP3cOiRNCtxB/qaDW3Dw3UmvRvycnuecHdgCKSBma8cSmvC5rXyvPRBRhE2hpH8qFDpqC6N4D0BhdLIlNNgmIycjZVsfrv0YaN0c8sWA1pr2EhzX9J3HYEwx4OpAeIAcGTyucZ+Z0BpB+qFuyxCpBIsooTrTUy1FkQ8mJYbqvWtpSAOnRsMXt1FooWYBeZq3qOnyygbDFwHIUJLdAIZ7QkD2REB4loBgwHGvvQXUv7UF9N9awLcW8K0FvPgWUD3fAl7zzIDhnwKwfwIge9EAfD0tYKPunB8FQWpbPgOR4dk2zTAEaSbI/UBSPyoiM0CZs3OR+jEcBx+D7wHaJEqUjF8FUjD3UjTXxpFrJqodkiDVsxdAS9urM3ts3lrBX9cKakhN/hetYEuqRwx89+hDYP8cBMGP49+XauQuQOPgAjRen//m0ecgfCKU/Tah8BV+9B3+jI7/DeI/G+IWea0Q334FxLfLxfDDlxb2zU+BD/NN8OEvQCMDLkEkcwki4SWIZC9BZP8SRHK/ROSfv/0LsIU6cg==",
            0,
            [
                [
                    50864750,
                    5419669,
                    88379,
                    4008180,
                    199703,
                    0,
                    "/10.0.11.14"
                ],
                [
                    50864750,
                    7916195,
                    67931,
                    1548009,
                    106553,
                    3,
                    "/10.0.11.14"
                ],
                [
                    50864750,
                    8372789,
                    86611,
                    2098624,
                    131384,
                    1,
                    "/10.0.11.14"
                ],
                [
                    50864750,
                    11318015,
                    84434,
                    4181255,
                    106553,
                    2,
                    "/10.0.11.14"
                ]
            ],
            0,
            512,
            1,
            300,
            0,
            0,
            null,
            "eastus",
            "USA (E)"
        ],
        [
            50864708,
            109775243868323497,
            "0",
            8222997,
            0,
            "unnamed_session",
            "unnamed_session",
            1,
            "generated_map",
            "eNqtUttuwjAM3bf4dZXW0DJSJB5gmxjauIjxNqHJa9MS0TZVG2AF8e9zUtr9wPzQ+hzHdnycC2RYbOpCwJA5cJL5m6jJ9QOfBQEjKpKxDVUaS13B0LWnloXxP2FMBo79kY1g60CZR5QwcBnvD1jfgVSFe5t2kBTouZ7f59zzHGqsw51tB3BDT3FCR/gjtUuVtgjihCq/+vSZ3Jsm/4LHo1HbczWZzuhi8GDsdOOLBWYkCcxFgmvMI5WBnQRTeRbRvIsbFmtRGjG2NnEq8o8zCRAMuMda5h1rddDEctf3ectOpCKKcc56XepN5S5zbdR0W7Q8llaUC2RfEWo0N7h2uaHIu01imqrTy49e7as/vBZFizMVNTu8GHeF4d6OQMWKeJYfm9GKeCF048rq+Ttp1liJcZpKzEOxEZg15cKdQPs6rne/fmqvuw==",
            0,
            16,
            "eNrtlV2PmkAUhvtbuLYNDIvKJnuxuBnEKK7Id9OLmQHDx4BEEcWm/70DWnfXdNM0Tbol3Stmzjuc83DmvEEAvc9fuWKzXsU01PLV+lMccLdDAIAsD3rctkRlvM61B+4W9LgyRFmz5HvcCpEfAtttEAmbpcD3JUls9nk6DauQntU8naGSRGZdtMc+CixXnIWP4QZuUBbOlu25eGuEKKjbdVN4t22XWViiB1Qi7pYL60npArozACz9pdafjfYxtuUC5z7FuVGRnC59B6bhk7bHKpR8d3Idrz1HSjEQzECFdQCVigDKI0feacn6MB2xOqLOe+6ExaTcUuUjco0Cg5t4HvMnHQiVD5XIA+UjGTeadNSSYqBll3izx67Lb1lshR05tVSYIN7fek7AtPX+Ks/REo0oGNun95YtZ4RshZJcr3AGt4xBYu/FWnzWrEPlOUYVuIt4nizqubmQ9ISwp9XW9IB8xI7NvkG/ZlwRFbK+GaYHIsrOTIyR1j/3N2U1+FmS8nPTE9lTOPXDkIhqsTqKfNorEesNb40nBXZg3fRWi4fVtB5WwZGXz4x7z6G7AOqUsex89VfnjBo5POux1upTkciPS237jNfy2zt5NU/M+pH7tsLyCBHJ06tckzO7QT1HULB6KNgcJM0saaltejxUFuYlV0QyQVo47PvUZjZe3kuj2a6SkwymvjuL57QMTvcJa+xSG2eUJ7XWd4TT/fuqPMeisTzPXRFmTS/vWw25Oovr1Mog65Fc4jE1fedAPcbpjy4zu/ZcfYRVOUHATm0reLjMkKhsPZdSkrI5UWWBxFp/akL5/v7ujvvW+5nBJVEciC8MLj4ZXOi0wZfvBn83+H9u8MaBz7zdGvJsbvBW5v5dUPE1UP7fYbz5K4zCHzFKHWDsd4Bx0AHGYQcY5Q4wCnwXIIUuQIIuQIpdgOzCz0Z4m7/Nlw/fAQK3ZsY=",
            0,
            [
                [
                    50864708,
                    8222997,
                    56753,
                    1926614,
                    133008,
                    0,
                    "/10.0.11.11"
                ],
                [
                    50864708,
                    8253373,
                    31428,
                    1962586,
                    106553,
                    1,
                    "/10.0.11.11"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "westus2",
            "USA (W)"
        ],
        [
            50865033,
            109775243868519420,
            "0",
            9191380,
            0,
            "4v4-350 pop-35 min-lvl 100+",
            "4v4-350 pop-35 min-lvl 100+",
            1,
            "mountain pass walls",
            "eNqtU9tu2kAQ7aegfa0rfFnbGCkPa+5KCBCgVRpF1cZejItvtRcMQfx7ZnchKFLap86DNZczM2dmx0eU0mJxKBhq6xqq4+yWHVAbG7rhYh27LQ2F8Qq1DQ1VnJa8kirAJoXQnxCZ9XwyI0JukIZIFPiEjIhQCURAOhEh3ZoQv1aIGemAtwcoX6L0sUCcRSKkPA786EYl3Fy9StCzhsosRG1Ldx3Ls7DpaijJg40cYhtDxNQt7OiGZWkwIA/WciyEzlZnFQGk5cBUSc6lhVaCxRDDx/8qmvwXm0jusufUH4yAGGoKqc/+4p6msHqU5tuM0zhrFLSqGjVNkgrJkWgSv7Jw/A4UXnpgpVj+s6wwYNn8FZ7M9LDnuKZnX7x39JBv+WcRP84/c8+vL6wcD2LH+sWa7Eq5qSNKf4WUU8Hm9J4bsEydEWQD/bzu7fl0U13tB1Zc7DQP1f0chTqlgfA/HREtg1FXbCMa9n/26+Vi6Wzm97tFyZx0qK4BIN9ZCZgx/hPlYbEh5gHvg9/1bDjh3nmtUHMqin+zHMswsefZhg2zwle3gcBJQRZytmL7Invato0xJMdVlxUyUok+cD+Z2jwJdzQLWNgYgN2YM87jLKpgA1fe/ddsO1k2d/vlfOU9GhOnah46s4+8b188ipOHvZfbozzt5tPxYHkXfeTtYgO7lqe7rmmZwN+0vL/Sbtkt61+0x5fLmsrLivm68UOe1+kZCharUbZTZ1Ws7hlXKhR7idS/VDGSJLEYfMFoqp4vWDMqXk8/fXkDtiM7jw==",
            0,
            16,
            "eNrVlN+PozYQx/u35HmvwhB21yvdw5IshCghG4ffVR9sQxSCIWghJOTU/71jktu9XnWqqqqteEAMHjPz8czXg9S7X76MqrfDNhOpXW4PP2fJ6AkjjLRH5W5UN7TJDqU9HT2hu1GT0kKa4NhS/tUBX2+Up9JUFQ1rKpILZb5I21Tc3GW+pA3fuV3V7/skg2VF+pq+mW+0SJebfl9Wk5QmXW/LzMe6N4u0oVPa0NHTKO3mTaiKI1HNJt7Y98vJKWM+rlgZC1aSlpdiEwdmnn74Tswy9Ticf7/eRYGeMxW5iWV2iWm0XBUKDfDR3h9Oiwnk0RwlCuewppeehS80JBVTx9lqv6ztAm1ZgHPPMvdUwafEEi0rl9mqrLP3dQ2+RZNsN32+hqlkHQXOGynOu1j69s9/jKM5kkVJwv6/B7swu0gRL8CTkbI6Jh72F1o89n2nWPn52b3El4Umpp6rYDs7ZVwju2TmX278F2ZhBexmCfljS6/BPi/2z6flFJ6ZUkMtd7xw5mRi3wNHuXmJKSkT3zc9lSJnlQjSxW7cbCyOXzd2bZeyHgTx7lpDrp7bBP5duC9wDnJkYC8342v8qYHD67l31DcEL52WFWYNNdTleSRv7/PObRSQNgnXUI91t3LXurPn8Pb62kQqvrDAhx44r3wm66/D+aoH6eOWCX0nbqTuBOzpz3HTRw45lOU+V1ZupMEbXftJdG55kMfA129jB71VvNm8YoHZSW3Y2WO76B7b5HKtqdRPFIhjYjoCWI6x9Vf7SEcDJVtldu9faLfaffB6ca+pH8bJoB5l7BsQB+14mX8Xa35jJyIKkMGscwU63su7YOemsfbgcd9jQX+Rvg7gfJbUttRGxb72Rfr80Ch5YebxVXNJH1s1OxYKnxVCkb0OkNLzxxZeMY1sbvemSgvvXcM0dGDdEV5hQo1A6zPhxsFZRMAZT97v3CEKnQnock9VP/e9ZPpx14w6CoXgOejEwohnUlcmfn7+/Hn0292fJ5ScIN8Mp0/fTCf0o+mk/Htz6e8yqgNg1AbAOB4Aoz4AxvsBMD4MgPHxP2FE/4gRD4ARKUOAREOAVIcAqQ0BcjwESP1/gfz1p98B4EKPHA==",
            0,
            [
                [
                    50865033,
                    9191380,
                    1328,
                    2797840,
                    2039321,
                    0,
                    "/10.0.11.16"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "westus2",
            "USA (W)"
        ]
    ],
    []
]

[GET/POST] /game/advertisement/findObservableAdvertisements (Viewable Public Lobbies)

AUTHENTICATION

AoE3:DE POST REQUEST!

Viewable Public Lobbies

AoE2:DE

Request

GET /game/advertisement/findObservableAdvertisements?appBinaryChecksum=8888&callNum=123&connect_id=ccc&count=20&dataChecksum=-888&desc=0&lastCallTime=111&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&observerGroupID=0&sessionID=zzz&sortOrder=0&start=0&versionFlags=0 HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
appBinaryChecksumint8888
callNumint123
connect_idstrccc
countint20
dataChecksumint-888is negative
descint0
lastCallTimeint111
modDLLChecksumint0
modDLLFile?INVALID
modName?INVALID
modVersion?INVALID
observerGroupIDint0
sessionIDstrzzz
sortOrderint/bool0
startint0
versionFlagsint0

Response

[
    // This is the list of matches
    [
        // This array represents the first match in the list
        [
            400275088,             // --> match_id
            109775240943062050,    // --> match_uuid
            "0",                   // --> lobby_id
            197751,                // --> leader_profile_id
            1,                     // --> game_type_id
            "AUTOMATCH",           // --> lobby_name
            "AUTOMATCH",           // --> match_name
            0,                     // --> is_password_protected
            "LandMadness.rms",     // --> map_name
            
            //the following // b64(zlib(b64(x)) compressed settings 
            "eNpFU9t...QC1g==",    // --> replay_data_base64 (shortened for readability) "options"
            1,                     // --> rating_type_id
            2,                     // --> num_players

            // zlib compressed player data   -> "slotinfo"
            "eNq9kF1...qls=",      // --> player_summary_base64 (shortened for readability)
            6,                     // --> game_mode_id
            [                      // --> players_in_match (a list of players in this match)
                [
                    400275088,     // --> match_id
                    197751,        // --> profile_id
                    165,           // --> ping
                    267,           // --> statgroup_id
                    25,            // --> civilization_id
                    0,             // --> team_number
                    "/10.0.11.28"  // --> ip_address
                ],
                [
                    400275088,
                    10309103,
                    145,
                    5885486,
                    38,
                    1,
                    "/10.0.11.20"
                ]
            ],
            1,                     // --> is_ranked
            512,                   // --> map_size_id
            1,                     // --> population_limit_id
            120,                   // --> game_speed_id
            1,                     // --> lock_speed_flag
            0,                     // --> cheats_enabled_flag
            1750106048,            // --> match_start_timestamp
            "eastus",              // --> server_region_code
            "USA (Viriginia)"      // --> server_region_name
        ],
        // ... (The rest of the matches would follow this same structure)
    ],

    // This is the list of players
    [
        // This array represents the first player in the list
        [
            16450,                       // --> rank
            1284273,                     // --> profile_id
            "/steam/76561199015460495",   // --> platform_user_id
            "{\"icon\":\"PR1-004\"}",   // --> avatar_info_json
            "said.elmegbr",              // --> player_name
            "CIAO",                      // --> clan_tag
            1081996,                     // --> statgroup_id
            1810,                        // --> rating
            1,                           // --> wins
            1,                           // --> losses
            null,                        // --> streak
            "76561199015460495",         // --> steam_id
            3,                           // --> platform_id
            []                           // --> aliases
        ],
        // ... (The rest of the players would follow this same structure)
    ]
]

AoE3:DE

Request

POST /game/advertisement/findObservableAdvertisements?appBinaryChecksum=2035582105&callNum=52&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&count=20&dataChecksum=-997764362&desc=0&lastCallTime=1484&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&observerGroupID=18&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3&sortOrder=1&start=0&versionFlags=0 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 305

appBinaryChecksum=2035582105&callNum=52&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&count=20&dataChecksum=-997764362&desc=0&lastCallTime=1484&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&observerGroupID=18&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3&sortOrder=1&start=0&versionFlags=0
parametertypevaluecomments
appBinaryChecksumint8888
callNumint123
connect_idstrccc
countint20
dataChecksumint-888is negative
descint0
lastCallTimeint111
modDLLChecksumint0
modDLLFile?INVALID
modName?INVALID
modVersion?INVALID
observerGroupIDint0
sessionIDstrzzz
sortOrderint/bool0
startint0
versionFlagsint0

Response

[
    0,
    [],
    []
]

AoE4

Request

GET /game/advertisement/findObservableAdvertisements?appBinaryChecksum=24916&callNum=323&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&count=20&dataChecksum=-638535971&desc=0&lastCallTime=3092440&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&observerGroupID=0&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&sortOrder=0&start=0&versionFlags=0 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
appBinaryChecksumint8888
callNumint123
connect_idstrccc
countint20
dataChecksumint-888is negative
descint0
lastCallTimeint111
modDLLChecksumint0
modDLLFile?INVALID
modName?INVALID
modVersion?INVALID
observerGroupIDint0
sessionIDstrzzz
sortOrderint/bool0
startint0
versionFlagsint0

Response

[
    0,
    [
        [
            50864014,
            109775243867946823,
            "{\"templateName\":\"GameSession\",\"name\":\"d31945e0-cefa-4e53-b849-4f1fb188ca9d\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            5786675,
            1,
            "3V3 NOOB",
            "3V3 NOOB",
            0,
            "generated_map",
            "eNqtUVtPwjAU9qeY8+oSdwVGwsOmiESFibwZYurWQUPXLmsBB+G/23YX/4B9aM73nft3LlCgcl2XGMaOBSfCXnCtTD/0nTB0FJWR3LiERJUUXdSy1PYnRO/TGCyImjeBjQUVy2DshX4wcJ3AcS2gPN3D2LbgQJTHtT3lsoOhpTrLdGf6AbToId+qkNFA9aNcGgT5VpV+9tUX3+ku/4KjyaTrmcSzuRoM7vU7tXy5QIXSBJ54hYW8TTjLBJhdECVnnL31EZpFNa60HhuTOsPs46yUckPP9jrmFdX8IPX+QRAO7Y6OCVeRzmiklWpzW6X7mJVWtEfLY2V0uUDxlSGJ9AjXPjfFrL8mopSfpj8y2Ys/vMJlhwueNXe8aDNB6d7soIqV+Zwdm93KfIFlYxLx+L1tLilwRClBLMVrjIqmXLrDyMx9vfkFLm+w4w==",
            0,
            16,
            "eNrtmF1vo0YUhvtbuPZW82EwE2kvgiMIlo1jzHfVCwawjBmwFWMSvOp/74DdOE7XWlWqtKHlAjFzzsyZlzPn0ZGAaPDbN2H3vF2lLNGL1fbXNBbuxJEsSSNxIOzLsEy3hf4g3MGBUCZh3gzBQFiF0V8OPnsOo6QZIiDKmODGUGTTpErY2V1ks7CM1la9a9d9aYKlefKUPKvPYZ7Mlu26dG8mYVy34+bkw74d5kkZPoRlKNwJST0pPcQOJlLLYKlLs/FLSh2yo0XAaGFWUcGWgatmSeNbtr4Xqqli4E0u9tOe2nfFjCJoxZpax6pSRYiB0CUHfbN9nY75OdgAvjfhNrGwNXIMPXNH0TCdp+DkR7AKVGXto/Ipemx84lHf7EZ6/mZv5tTzwJ7bVtQlma2pmxAEe9+NuW/78iHO0cbmOn50TvtO+teho7CoMCqaq3uuQeT7Uj09++zXynfNKvYW6XyzqOfWQjQ2EX/b7Zk+IkfqOvwbjI8aV5Gm8ryZlo/WjK+ZmGNdOuc342eA2SYDc8vH/A1P+TDFSLP5OQo5zZU1zw2wHyc76qp1k1s9latpLVfxEZCzxhffZYdYNRjXcgi0H60z69AFPMd665/iiDwt9f07vXbQ3snNOCnPRxE4Co8D11GRfYg1OWs3me9ChWqvO14Hm6aW9ExVFjZ/rLdY6yiH4sLl36c1tXF9L43P8ZQiytUs8GbpnJXx6T7VmnrMoTkDUa1LLjzdf6CROcXm8lx3uyRvcnnf+kLP4HaD2bnKc0RK+siswH1lPtcZjN9qdut7xphqZBMiJ3Ps+OGthrCy9z3GoozXiUZglPI9HrgX/hj8nW4sSzIhwyu60YVueItuCCRR7OHu4e4k3I7lg/8O3FNLJff3X79+F3AJoSGW0RXg+AI4ut2+efNGsCe8J7xv3z+bcONm+5YIHmJ8RffwQje+2b4xBkD+5HAve7h7uP/n7RsCKGMAr/u3dCF8eJtwiOVh3757wnvCPzXhSJIkLF4DProALvaA94D3gHcY8IbAd2x/effzXLoJNyJIGv2bcMMruP+p0NEtoeDzaJQ7oJF0QCMEXRAJuyASdUEk7oLIYRdEij9F5O+//AnV+cY8",
            0,
            [
                [
                    50864014,
                    2666352,
                    63799,
                    107966,
                    131384,
                    5,
                    "/10.0.11.18"
                ],
                [
                    50864014,
                    3693433,
                    81320,
                    331489,
                    133008,
                    3,
                    "/10.0.11.18"
                ],
                [
                    50864014,
                    3868994,
                    82981,
                    2934381,
                    106553,
                    1,
                    "/10.0.11.18"
                ],
                [
                    50864014,
                    5786675,
                    10719,
                    218815,
                    2058393,
                    0,
                    "/10.0.11.18"
                ],
                [
                    50864014,
                    6224382,
                    26565,
                    1809576,
                    2039321,
                    2,
                    "/10.0.11.18"
                ],
                [
                    50864014,
                    10183012,
                    63312,
                    3407856,
                    131384,
                    4,
                    "/10.0.11.18"
                ]
            ],
            0,
            512,
            1,
            300,
            0,
            0,
            1666825928,
            "eastus",
            "USA (E)"
        ],
        [
            50863500,
            0,
            "{\"templateName\":\"GameSession\",\"name\":\"10893a0a-f109-44fc-bccd-935de20ef78e\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            3388545,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtUdtuwjAM3adMfl2lpbR0LRIP7UAMbQPGeJvQZNoUInpTG2AF8e9zUtr9wPIQ+ZzYx/HxBVIsVnXBYWAacBLZK68ptD3b9DyTqEjE+qmSWMqqzZoXKv4C/2McgAG+PuMhrA0os4iySMF1He+pb0CSh3sYMAMOgl56zLL7NmOkk6IMd7ofwA09x1tKcR3ql+RSI4i3pP1i0xU8qDb/gv3hsO25CCZT+hg8qnO68cUMU/IERpgdNvx+KY68BD0LJuLMo/cuQ7FY81L5sdalE559nsmDnmcxu2XesM4PUs1vWq7VsoHIKdFx+sztSv+MboilMpS1aH4stS0XSL8jlKh+cO1qQ551y8QkyU/jH7nYV394yYsWp3nUrPGiwgWGez0CiRXxNDs2oxXxjMsmFNVos20WWXE/SQRmIV9xTBu5cMdRqbHr3S+HErCa",
            0,
            16,
            "eNrtVltvmzAU3m/hOZ2wCWmo1IeSyoQol4aE67QH2xBBMCRqCAmZ9t9nIEsvajV1m7bR5QHZPp99zufj8+kAYOvTF2F9v1pELNDTxepj5AtXktTtym25JWwynEWrVL8VrkBLyAKclFOxJSww/Q7w1T2mQTmFoqRIEJSGNB4GecCOcBqPcEbDebGu9l2UzqIkuAvu0T1OgtGs2hdtjAD7RTUvI2831TQJMnyLMyxcCUExyBzItgZEmTfTO6PeLiKWsiapx0hq5DRlM89GcVBiswrbEQ3JnjN4sNdnCteWYwLB3NdQ4SM1p5CJ2Fa2+nK1H/Z4HGksus6A2+TU1JQDdow1ge1oEok1DkHuITV0YXZH+yUmH/Tl+lJPTvZyTRxH3HDbgthKbGpoiUVv49o+x1a7Z34OpmSEft+qz9X8Q2ypjKbjnCRowznI/FykR0fM3OeubeS+M40my2kxmU/l8ZLy0axiulA5ENvidxg/57igGuJ5M+YuDBnfMzB6eueY35jHEEfLWJzMXYmPoM6HIVPN5HFUpV6rIc+NaPYHa2KjosytHnXzYdHN/YOoHDnuXJttfTRmnMvW0360zyiwLfIc6xU+lKhyN9M3j/iaXvUmr/qJeD5Sz1K5HxDSNH7ma3DkbjDXBirR9mteB8uylvQYqVOTf/OTr5AmQJ7a/H5aWRtP36XELEdNaYJizxlFE5b59XuigjjMIgkTaaF3bFC/v6cpEyIZs2PdrYOkzOVNhWFnzO1jZiaI50jJSJ/NPXvPXM7T651qduU64x7RlCWGVmyZ/u2phiR14zqM0ZjXiaYAGumd4RwpNzfX18LX1osKV2QZPlE4fFA4eE3hQAJSt/2PC3x2FvhZ4C8K3PhvBF4q8JG2Lx61b/iW9g1+Td3w59XdO7fvs7rfSfue/Tl1S2d1n9V97t3vVN3t19Qt/s5/cvBE12/lKDeAY6cBHC8bwLHbAI5KAzgCsQkkQRNIwiaQlJpAsgnNBvydbvP5wzdYNpUb",
            0,
            [
                [
                    50863500,
                    3388545,
                    15429,
                    365765,
                    2039321,
                    0,
                    "/10.0.11.23"
                ],
                [
                    50863500,
                    3389552,
                    79008,
                    433943,
                    131384,
                    1,
                    "/10.0.11.23"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666825334,
            "westus2",
            "USA (W)"
        ],
        [
            50860502,
            109775243865816426,
            "{\"templateName\":\"GameSession\",\"name\":\"9808e4b7-9fb2-47b6-a18a-c87b09841031\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            1215732,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtUttuozAQ3U+p/LqpysXcIuWBlDTN9gZJ1KiqosoFQyzAECBJaZR/37EJ6Q/UDzBz5szFx3NEOSmXbUnRUB2gA+MPtAUTO1h1HBWgiMUyVDekamo0VCTrpRT2O3KDyRgN4OfCmYzQeoAqHqGhbmmOhm0DOwOUFWEq83YMIpqiY6wpCgRy0oQb2Q+hs3cbJ0CxTeiXFY30UJxA7XsMn/Ff0eZXfHc06nv64+kMBkM34hzOePlMctAEPRU73hDGr24zSirGEyQvRDL2TaOnC02gpKWVEGUt86eUL75BOc3RFb1HHklb7BohgqVpqt3DY1YAU7VtVbvknuVWe2AuZFV672VfSXGOKP+ISEPECKdLbkj55UlJlhWHyVfjp/WPP6dl7+dF1D3mUZg+CQX+fkSkCmcelPVS37PuXiM7NY3Hm/Rf8LCw9oFUCSivtALOop2u3oKDe2/w+XYW8A3ZrrZJpyTU9EXxaw2bCrZtbJuKaRmWoegODHDqKEt5t3L3KXsaKqweJLPao6WM1KIPyMg7uT1W0atVke1pjU5rqFHGM77v3qGMn2nTmZD/mXSrV1M3yxjhIV1SkndXDzeUyJU+/fkPZOLjtw==",
            0,
            16,
            "eNrtmFuP4jYUx/tZeGYrXwjglfaBMJNMEIQhkGvVh9wQIU6IIATCqt+9TsIyO1Ohim6lbio/IGIfx/77nPM72EDU/e1rJ9vv1hENlXS9+zUKOp8hgsIAo27nkLt5tEuVJ9bX7eShm1SPoNtZu/43A2vtXT+sx+AB6verdhpPwyKkV2saz9zc36zKrB72qZorSsLXcC/t3SScLetx0UEL3aCsn6uFj4f6MQlz98nN3c7nTlhOcgvRo4ak3Fkq/dn4FHkGybzUoV6qFX5Kl44pxWFlW9a2kydLgmNN3vqbd0rbFGIPwVUgS2UgiYWPKHBNclS2u/N0zNbBKrCtCesTUl0mF9fSMg/1onkEGjuChSOJGxvlr/5LZRMuyjYbKMmtv2p7lgUOrG/tmSTWZWnrAudgmwGz7U4f5rnoWNsEL0b9Htvrxk/UiTZW+kqs7fXnBdaoE8/lA1L1U+GCTFvCGQ7oM3ldKgclrfRq0C+bPfroXATs3enqma2vHb1x5ZPeafY0Yh+RWI1/Nq4hUj9VCy+RDmyPAtMVKdHVpp8L29SKwFpE8+2inK8Wgrr12bde78lG5OKZBvOR+tEHa1+WWFy0lY02lI2p93GNX8zWALNtDOYrG7Nv2PhbE3xZZ+uIpGmLG+Z7oL9MMs+Uyip2SjQspuWwCC6AXDWebJMeA0mlTMvRkf9unFa6JmAxVGr7FPuN79706k4d87vzRMwfqWOIbB648dP4w1yTq3aN2iYUPfmcsTzbVrmqxEZmA0lcrG5zsfhCYWGy/clV7jVx/xaXymZYYuonUuxYs2hO86DJF6n0LGp4CQVVrE3Y5Jcjk7mHteU1r7MwqXw5qm2upbJ+leqJxHxEcu+FrhzzTO0qo8Y3Jna2pY49mWxdZMSGHjzdchSLB9ui1I9ZnsgE+pHSVy0w6vzR/WvxqOj+rm58+q5wwHuFAwFMMILvKgf6scqB/nnlGLe7cnCyOdk3spePkz1dSWQ0+vLlUboRp5vTzen+n9KN7x/6IR723sGNOdwcbg73TwZ3H/UAHPbfEY7eAO89APjPd6tf8ls9v9XzAvKjt/oZfvxWL9wvHD0BIX7s5ycDDnZbj/39u3ATMgCYH/s53BzutsI9uP+PnTDEBPOfbk43p7utdA/v0Q3+zbs8fMf1oxpJCzRC0AaRsA0iURtE4jaI7LVBpPCfiPz9lz8BvsIv4g==",
            0,
            [
                [
                    50860502,
                    1215732,
                    9607,
                    267005,
                    137266,
                    0,
                    "/10.0.11.9"
                ],
                [
                    50860502,
                    6240186,
                    82133,
                    412770,
                    131384,
                    4,
                    "/10.0.11.9"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666823613,
            "westus2",
            "USA (W)"
        ],
        [
            50864469,
            0,
            "{\"templateName\":\"GameSession\",\"name\":\"574d3f45-9707-400e-a4c5-053d291915da\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            9321741,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtUttugkAQ7ac081qScr+Y+IC1sab1UutbY5oVBtwIC4FVi8Z/d3cR+gPdBzLn7OycmTNcICfluikRBoYGJ8resRGhHdhGEBiCimmirmpOKl53WYtSxt8QigMahJ+zcZiGQ9hoULEYBpbjO4Fle7apQVZEexjoGhyouDF1y3Y83/M0ocyjndIDuKOXJBUpviv0soIrBEkqRN5s8Rk9Sb1/weFw2GkuR5OpaAye5Tnd+XJOcuEJrCvRPTKsH8OKbCkyUAORjJ4xnvVpkiUNVtKUjXo/QfZ1luOapmlbHfVBmuLAhYuuZblGx45oISjD9w2zf3u3W++IlbTV0J1Ad03P79jFsVImXSD/iQknspVrXyNC1q+WZFlxev3ly339h1dYdjgv4napFxkuSbRXs4hiZTJlx3bGMpkjb0Naj7dpu9YawyyjhEW4RpK35aIdEvW7XB9ulGe0rw==",
            0,
            16,
            "eNrtmFtvmzAUx/dZeG4n24S0rtSHksqUKJeGhOu0B9sQhWBI1BBaMu27z5CsW7tlUzftwsZDhI+Pffzn+Pw4UiA6efNOWd+t5rGIzGy+eh2HygVWETzrwBNlk9M8XmXmtXIhrTyiaTUEJ8qc8o8Oad1RHtVr1I6GUGVnySAqInHwZsmQ5nwxK9f1stMqVpxGt9EduaNpNJzW6+KNFdGwrMfVwdtNPUyjnF7TnCoXSlT2cw+JrYVIHkzN7rB3HzMHr1kWCJZZBc/ENHBJElW+ae27ZwbRAq//aX6/p/RdLWEIzkKDlCHRC44EoC7emsvVw6Anz1FHwPf6ck7LbAPvqGetGerE4xjs/QgWAdEXPspv+U3l03bmcn1mpo/zlc08D2zk3Jy5OLENsqQg2PhuKH2r+2dxdrZqLcIbZ79vr39BHV3wbFSwlGykBk3ui8344LMfCt+1itCbxOPlpBzPJtpoyeXTrs/0Ed4x15HvMHqucc4NIvNmzXy0EHJN3+qZ3UN+E3kGGC4TMJ75qnzCfT4sjRu2PEfHe1tfyNwA+6a/Zi4pq9ya8XkxKM+LcAfwQeO974ptSEZCatkGxvfWWSV1gcyxWfsHKse3U3PzmV47qO/kaJxY5iMLHF3GgQueJc9i9Q/aLeG7UGfGw1rWwbKqJTMh+sSWv9ljrAVPoTZx5fsZVW08vZfK53h6xlOSBN4wHos83N8nKZknHJYKwEuz68L9/QcGHjPVmh7qbh2lVS6vah/1RnJ+JOyUyBzhnN2IWeA+CF/qDHqPNbvyvVGPGXhJkZM4dnj9WEOqvvE9IXgi68TAkMdmdzAj+Orq8lJ5f/Il4BAAFXcQfkI4+kQ4PEo46Gqa+pcTPm0Jbwn/9wkfquDqq3SfPu3cp5+1bnQMbCQ/CLLrPyFb/Tmy0Y+T3Wt7d0v2i8i2/pve/Q261eN0a+eS75bulu4m0t3XW7qVi07bu1u62979j9KtvaR3w5bulu62dzeH7u4xusGv+y/tpRrPGqDx/LdohD+lETdAIwRNEAmbIBI1QaTaBJGdJojU/ojIt68+ADKAwrA=",
            0,
            [
                [
                    50864469,
                    9321741,
                    55941,
                    2903500,
                    134522,
                    0,
                    "/10.0.11.22"
                ],
                [
                    50864469,
                    10039429,
                    45244,
                    3323673,
                    106553,
                    1,
                    "/10.0.11.22"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666826643,
            "westeurope",
            "Europe (W)"
        ],
        [
            50859847,
            109775243865462085,
            "0",
            11450370,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtU9tu4jAQ3U9Bfm1WzcXOBYkHWCggyqWUbkUrtHITJxiS2E3CJUX8e20HUu1Ku0+bB2tmfGbO8bFzAgnmi5IT0DQ0cKDpiJQihB7ULdOAlgYCGqq9vMBZkV9hUy7jV9B+aMuvBTQRtlpgpYEsDUDT1F2EkOc4pgZi5m9BU9fAjqodC1qe5XqaoC78tSIE4JL9CCMBcW3BF7NCZSCMBMMAiqVzI8n+S95uta6cs05/KISBW/kdLnU+wYkwBYxZGrGY4rQxIDRai1OrA+GYfpBgXMNkFZckk6asVH+fpI8f8rimaUofq9I9LtmuEC5aBjTraocyibQhtI26+eK3fi3Mpa91Nt1nyp0TSH4FuMBSw7nu9UlaXyqOY3boHYvZNv/K54Rf84QF1W2eZDjDvqy/ngDO/GFXjH0qws6N0Sa9p9J/eHnesMXxbhkpmwTkJ8kE5m4/maMpuS8Y7yab7Nn16Hh0sVjMnMnh301o69B1oWvrtoMcpFueEHCuIAt1Nr57U5wetJEtmmneJVzt5JJHGJZWfiNdb8wYb+A0aJj6tvFYsJSorM/iQDjxpf+9R6GLR3y3fY8ytD5a8cvAaP+u3wo3S7QwosHy9lgGTpRnG6+I/tBv2ZZhQs9DBoKeLVYd/VW/I1D/0j8nEfVpQMB5JQbwcJjuq1fEwwkpqlA0v0XVj5OTdiwfoU8WBCfVvflrgtUDOX/7BBi6Gl0=",
            0,
            16,
            "eNrtWF2TokYUzW/xeTbV3YgjU7UPo04jRpkB5TOVBxowIg2SAT9wK/89F1BndmrM1u5WkjXlgwX0bW6fe+85hyoxufn1Uyt7Xs0jHirpfPVzFLTuMG53bwWpc9PKC6+IVqkyaN2Rm1YRekl1i25ac88/BuDp2fPD6hYLbZGQ6jmNx+Em5IdoGk+8wl/Myqze9gFDrigJn8Jn+uwl4WRa74tyPfSCsr6vDl7n9W0SFt7AK7zWXSssR4VN+FontHCnSmfS30bMlDKWupyl+sZP+dS1aBxWsWkd2zKZiq49erteOpYYM4JngUzLgPY2PuHIs6S1slztxn04R1CRY49gTUwNWdp7tp4x0o4eI9TECd64tLdwSPHkD6uYuFeW2a2SnNarZ2bbKIe1ObOk2JDp0kNu7lgBxFbbN3n2hqAvgqFZvwe1LvxEHel9paOklHozre0YxTawip0rKNgb/r5nNFMmxoP0NFVyJa3w6tgvm774ZLcJ4N3x7AHO19esX9Xe3k4G9/DrSeNhHkF9y6mhQU0jM5Dd/i972nMN0wwtVbd48AfDelvnPH2aoQiw7qFXKLAn0ePyvjovZ4J27EfMki2sP6yb/PfbudnU7Vhcg/7voT8LJnNUzUCJlGNswgiNmWAi6AeaLGP0OHMEuOKmNyrMBfNA5suZ0KvnU9VX80DoLWA2yCDqyrUwr+tI85oPLtSqDhRRHcRE3cO1mTkK7R6v+j4/cAPOX8PsS8/CCz+NoRZlMy67m7HgNz0FjL5MgV/6zLXUDUv0L+0z/IQXcEZUx0tJOPTuhNeUzRLqOZvHSWjsElOr8sB8xLe5DtgR8LnQrF3uWXTtEKOaYU8zKPweXnLZoyI0aORZuwzO5FXvLIxeYqa5dYXRwpUbztlNbuAdFk1LzIIhzJoXQTMLfTNLJGQkdO3KUuHZGX/hMN/D+tI1Rwvo0YZZO9EgZg49A5xawxc405PpXkt2G+A6d6k51MqTho86HbCKt7YC71Dp/v7jx9afN+86lIiEW/SZQ+EXh8LnHUpAqPuDO1T/6lBXh7o61I/vUO55h6oc5JU3fXhlTuS8Od2STuczc8LfZ07k282pf9nmdCSKZ/a4n1bCoDlgqMmqRIeYAYO2dBhmRQCtfJxporr04Wo0BCTSnlkm1KC+xXgSnUMWHPbUJnjob/yuUQi66MsggiUY2yuxGcNRxixaNqbTrcUW7JF0wHgwAJUDFiD1l/bpYBTob8Xv1jM5myeCfqSuec5wRgfsOncs3GPyLgMeLCsuKbGZOQjEPTvlqkWqWVCfXHHjHQHbvdSvzMR+LWJaMpubLOHotRmAoB+ZoE8PvMvCxHgRra3CusqPwmdDDma44w7gdPunD+3KsdU+k6WlR8zYNILBiUNCL3dsMJ8YeCJL2I+qjxL9JnEL58WNhW77Ku6ruK/ivlRxt69f7qu4r+L+f4pb/Ip/Na/ivor7Ku4LEnfnnLjRP/df4NdivL0AjN1/BSP+LozSBWDE6BJA4ksASS4BpHAJINuXAFL8T0D+9tNf/BFG5g==",
            0,
            [
                [
                    50859847,
                    11450370,
                    -1,
                    4267841,
                    133008,
                    1,
                    "/10.0.11.9"
                ],
                [
                    50859847,
                    11487396,
                    -1,
                    4274597,
                    134522,
                    0,
                    "/10.0.11.9"
                ]
            ],
            0,
            512,
            1,
            300,
            0,
            0,
            1666821988,
            "ukwest",
            "UK"
        ],
        [
            50864825,
            0,
            "{\"templateName\":\"GameSession\",\"name\":\"85b4763c-c769-4799-bea4-445dec4c8542\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            1319311,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtUtFugjAU3acs93UkAwSlJj7AtjizTZ36tpilK0UbS2mg6tD477ZF2A+sD809h3vu7T2XM+RYrmpJYeg5cGTijdY6DFDgIeRpKmWZ/VQpXKoKhq7NmkkTf0H8GSfgQNycEawdKEUKw0EYDiIUOsALsrOiPdO07/aCEPVcXS/HimxtM4Abeso2OiXq62a8UBZBttF1XwN9JQ+mxb/geDRqe86T8UQ/DB7NOd54OcW5NgRiQRgV6n4pWUkrsNNgzk40/ehyDItrWho71lY8pmJ5MrP6vh/0Wuod18VeaSsHfYTclk1YoSkvijy/096M9lpiYQztFLNDaZ05Q/6dYoXNEy6dllDRLRNzXhxfftV8V/3hBZUtzou0WePZhHNMdnYGXUxmE3FoZpPZlKomZNXzz6bZZUVjzhkWhK4ozptyZEux/UEud1dGfbEU",
            0,
            16,
            "eNrtl1tv2jAUx/dZeKaT7RCoK/WhoXIaxKUEcp32YDtBhDgBlRAapn33OYH1pqGpm9aVLQ8o9jn2Of8cn58cIGp++tJY3S1nkQiNdLb8GAWNC6hArEDYbKwzmkXL1LiWtmYjC2lSDkGzMaP8u0PO7igPyyEC6rmCldKQxv0wD8XBncYDmvH5tFhV687KYFES3oZ35I4m4WBSrYvWZkiDohqXmTfrapiEGb2mGW1cNMKil7lIbExEMn9itAfdbcRsvGKpL1hq5jwVE98hcVj6JpVvy3Si+m7v0b7fU3iOGjMEp4FOioBoOUcCUAdvjMXyvt+VeZQh8NyetKmppeMddc0VQ61oFIG9H8HcJ9rcQ9ktvyl96s5YrDpG8mAv58x1wVraZszBsaWTBQX+2nMC6VtuX8TZWYo5D27s/b69/jm1NcHTYc4SspYaVLkvMqKDz7rPPcfMA3ccjRbjYjQdq8MFl0+ryukhvGOOLd9h+FLjjOtE1s2cemgu5Jqe2TXah/rGMgcYLGIwmnqKfMJ9PUyV65bMo+H9XJvL2gDrprdiDinK2hrRed4vzvNgB/BB49ZzxCYgQyG1bHz9Z+vMgjpA1tio/H2F49uJsX6i1/KrMzkaJ5L1SH1bk3HgnKfxi1i9g3ZTeA7UmH6/kn2wKHvJiIk2tuRv+hBrzhOojh35fnrZG8/PpfTZrpbyhMS+O4hGIgv250kK5gqbJQLwwmg7cH/+vo5HTDEnh75bhUlZy6vKR92htA+FlRBZI5yxGzH1nXvhSZ1+96Fnl5477DIdLyiyY9sKrh96SNHWnisEj2Wf6BjyyGj3pwRfXV1eNr42f0A4bHU6SAXPEEePiMNjiEOlpSJUE14TXhP+vgkHnQ5st54B3noEHB2/w+UNjuA7J3xSE14T/p8Tfvb8A/3syRe68nbXN/p1uLv19V3D/Sq4zXcL9+Tt4G7VcNdw13D/m3CrR+HGuAOUGu4a7hruU4W7fQxu8Of+br9WY+cENJ6/iUb4WxrxCWiE4BREwlMQiU5BpHIKIlunIFL9KyI/f/gG94LEiA==",
            0,
            [
                [
                    50864825,
                    1077164,
                    16286,
                    422621,
                    2039321,
                    2,
                    "/10.0.11.13"
                ],
                [
                    50864825,
                    1319311,
                    68577,
                    712022,
                    2058393,
                    0,
                    "/10.0.11.13"
                ],
                [
                    50864825,
                    11477250,
                    -1,
                    4271318,
                    134522,
                    1,
                    "/10.0.11.13"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666826773,
            "eastus",
            "USA (E)"
        ],
        [
            50864343,
            109775243868108438,
            "0",
            7831548,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtUtty2jAQ7bfsa92JL/KNGR5Mkwk0DQFDmnYyTEfYsuNiWxpbBAjDv3clY/cHqgeN9uyePasjnaGiYn0SDEaWAYeifmAnGBHPC0ho27YBaZHpVCtpI1sYmbrqSajzK0TLuwkYEHVrDBsDmjpFgh3YpmW5tm9AyZOd5u0LzNimQ1zf8R0DlWXypvUArtHXLMeSwEO9kksdQZZj6ynBbfJZqfyXOBqPe83F5H6Gg8GNWocrLua0Qk/gkeU0pnXKK9A3oWXxwdLHIa9QemKNcmOjifesXn2gA6EfOFaPfKcnvpeIBiYhQY9OCq4M8QjxhsrV1ecBiJWfZh89vTfalTNUv1MqqRrhMnATVg9vScuSH+6OcrFr/8UxE31c8bR7xbM6Lmii8Ncz0CaZ3WJbNmU/t40Md88rcsOeD0eePgS5tgdLfrAGa1ax/+vbdBm+NH9einl8TEo7MpedhdhzoZp/cTzHskkYupZLQg9308UBLl3JWt9N7Lda03Vd4iO5aG+Z0JlW6eBfqTu757yiKVw2yBbZrH7vXkBkcya7IzK3effbWhaVZUHrhK0ZrbpLJ2+M6l98+fQX9dnfFQ==",
            0,
            16,
            "eNrtmFuPokgUx/ez8OxsqOKi1W+NvSBGsUXum32gCgxIgaZFFCfz3bdAp53uDbvZTGZ27fBgqDqnqPqfC78IAA5+/8ztXrbrlMZ6sd7+mkbcA4TDERoNuH0Zlum20J+4B3HAlXGYN0N+wK1D8tXBZi8hiZsh5AUkQNAYimwWVzG9uotsHpYksepdu+4TW1Kmefwcv6gvYR7PV+26dG/GYVS34+bkw74d5nEZPoVlyD1wcT0tPUgPJlTLYKXL8/ExxQ7a4SKguDArUtBV4KpZ3PhWre+INVUKvOl7e+27UoYhsCJNrSNVqQikfOiig77ZnmZjdo5g8L43ZTapsDV0Dj1zh6GYLlL+4oegClQl8WH5TCaNTzrrm91Qz1/tzRx7Hr9ntjV2UWZr6ibkg73vRsy3Pb7b52wLZhJNnPY+FmtCcmNqjnVZzx09cJKUFEspBI5ljBF1vEjE0JwtNIKeV/peLxq9JiD1JS8EnqqI3TuzfmPnmwc8bmIXj/OnR/ZTkHfJQxI6CiWFUeFc3bMYJaYr1dOrzz5VvmtWkbdMF5tlvbCWkrEh7Gq3MfkQnbHrsBwZ73OwJprK6mJaPkwoW9PGca1fxs7g55uMX1i+wK7gkm9TIprNzlHQZa4kLPe8PZnusKvWTe30dFTN6lEVnXl01Xj0XXqIVIMyLYdA+6d1Zh26PKuh3vpnwjV3N7120Na8c5+U5aMIHIXtAxJSZO/2ml61m9R3gYK104712abpVT1zdj6vKkvrdS9WXyAtXRaf1vTepe5f69L4HE8pSK5mgTdPF7SMLv2i1tijDs4p39TaBZf+CjS0wIK5uvb1Ls6bXD62vtAzmN2gdq6yHKEST6gVuCfqM53B+PU52vqeMcYa2oTQyRw7enrtUUHZ+x6lJGN9oiFAUl02BP6R+zL4KzyGIwFI4lt6gBs9QBc9AERQHv7P4THu4dHDo4fHd8Oj6ICHKA9lSX7DDnhjB+xkhwCEkdizo2dHz46Pzo755O/+eMhv4SHc4CF0w0OUIOzfWnp49PD48PDwuuEx4sHwDTykGzzE7m8e0khAQk+Pnh49PT78a0sXPZqn+xtwfPrme4fURQ7+xzHj32qUf4pG8F0ah3egcXQHGtEdaAT8PYgE9yAS3oNI4R5EivcgUvpPRP7xy59qGUXq",
            0,
            [
                [
                    50864343,
                    227898,
                    -1,
                    2996155,
                    2039321,
                    0,
                    "/10.0.11.18"
                ],
                [
                    50864343,
                    467656,
                    -1,
                    4271764,
                    131384,
                    2,
                    "/10.0.11.18"
                ],
                [
                    50864343,
                    7831548,
                    4574,
                    1441138,
                    129267,
                    1,
                    "/10.0.11.18"
                ],
                [
                    50864343,
                    7831566,
                    -1,
                    1441159,
                    134522,
                    3,
                    "/10.0.11.18"
                ],
                [
                    50864343,
                    7838017,
                    24323,
                    1449605,
                    2058393,
                    4,
                    "/10.0.11.18"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666826151,
            "eastus",
            "USA (E)"
        ],
        [
            50860899,
            109775243866053255,
            "0",
            683849,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtU8lu2zAQ7acYvFZFtZBaDORAOYnlNl7k2EXrwCgYiVZUa4tEW3YM/3u5eCkCtKfyQM17nBm+maEOICfVbF9R0DU00KbFV7oHXWjohgN16LgaiNOVPGsYqVlzdhtXwn4CWK47sd0ADeAE+8IW5mn1EoxvW4z9VnmEuKciBr6Ck17IiRBfcoQ8Rzi/98MbBdXnjwWWGqiLGHQdx0W6a3oayMpoDbq6BjYp503dgtBCnqPx8lj0IosC4IR6q4S7uDavKSuZRGDFVeIA8s3/KK74LxhL5fLOid8fcGHgs1jtia9GJOeNB0Ea03LDgCyDZOkbjYeXQ8GSPa1Fu5cyqk+LxzdRpGma0DpTD2QvcnDaRoaNzrSflnxmhusa5iX4OklFTEUv9TMab2vZkwPIf8aEEaHheImNaHF5LiTLyvZuxybr5oqntDrjvIzVOzkIc0IiwT8dAKmjwS1PO91ZayN4iMbz/G7hePGP4HsPJbI53OUbrbkPG9oLmLAhTF/1L33r4c0vA0f5iJwTkfyTCW0dui50bd12kIN0y+MCjsplJmurNs/yToRsx+TBaXNLK3nSiHt4GwvV7ynlE2hYGnXGW1q/kE3W2Zq8AVfZeRLcL+7b+Wxurx9H21lN7Tx4J3sIX5MyrtbY3MNd9KsNgzHz2neyLdsyTOh5yEDQ41NDOvq7bAThv2TjeEuKiMadPsedR8pYWiQNOC55umo1KLbqKVWrEWXK5KmeE/XPNBRnWSriZ5TkanjRCyVidvrxw28tKjJO",
            0,
            16,
            "eNrtV9uOozgQ3W/Jc8/KmCYTWpqHTtIQooQ0JJjLah8w0IJgSNSQC1ntv28ZcuueyYxmRrs7kfIQQVy4fKpc57gs4Ls//motXxcvCYu0/GXxexK2HtodsXMv37WK0i+TRa71Ww/CXauM/Iy/orvWix8cDPDv1Q8i/oqR1BFlkQ/k6ShaR2xvztOxXwbxrFrW333gzpIseo5elVc/i8bT+rukMCM/rOp3vvKqqF+zqPT7fum3HlpRNSwdzFYmVkpvqrXHvU1Cibykucdobq6DnE09W0kjbpvWtg1VFclzhqfxZk7l2lJKsTALVaUKle46wAz5trzS5ovtqAfriDpynSGMSbmlyjvfMZcU3yeTBDV2LKw9pRu7uHwOBtwm7bT58qOWHcf5f+o4qICxF2rLqaUqcx95hWuHYFts3vnZWaIZhwNSz4NY4yDTh2ZPa8P8fPrk+WYeEqJY2Bf0ScjMypt55VQN5OepVmg5x2sKQdXEGODtOoS5o9kTrG+uaI/n5H4z7j/CryuPBkUC8c2nlgExDadRX38dW/HYRTKhFvH1HUttK3aNHcmfZygBrDvIFQqdcTKZP/L1Cioah3ykNNvA+NOq8f+4eSFN3K7NDMj/DvITU5Uhvgdaoh1sY4qVlIoEQT7QeJ6iycwV4Sk0udFhXwQWqmw+E7v1/vD46joQuzHsDbKwvvBsgdVx5EVdDx7Eqvc1Se+nWN/Bs6kFFDldxvP+sq8NWH8Fe1/5thAHeQqxaOtR1VmPxH1OAWOgKlBf5syz9TXNzG99ZwUZK2GNpLZXsrjP3REvUUkF8Vz042ZK6mFicD+wP9J7X3vsCOq5NOxt4dvKysUW38OuYSnwezr5coZlZCmJb2+XsCbjubMFdLIRsvHEYeypTc05jW+oO0EitrQMB7DXrAybvTDXs0xGVqasPFUufWfJTjXMdjA+98gwhhytqb2VLEwKyBngNJp6gTV9VdkZ2XYNtc48hQyM6sjHA0/7lNeto8EcRX58/PSp9ffd5wIl38sSlqQ3CoVPCiVcUigBy7j98RcXqOlNoG4CdROoX1+g9K8IlCRJHRm9ESjxJFD4cgsFDRQWbgp1U6ibQt0U6mcVilxWKK4gZ+L04eyCJ15SJ/Tv6dL3Yry/AozSxTYUtSXp7T1Z+Dmg+MdFvnfd9+QD4XzSZUHOBUYpAENNei3Z2ywgjG0CKTiRjGoyMyR9HsDTaoiM5R21CcSgv8d4FC8Xxwy+qQ+TfX5TngMQx0rfNeQMB2xT53uAzgXtjRDNnkrTSJXue1EDss9h3fRb35HBcEn5AZBuR5YFgjVD8j7OvRibkAdzedEP5mIVMov7sZWqPkxSFk+e9r7yBnuokphaSgEHDgiSzoUqMYhSC+TJl1JRh3XdjPGcLz3nXOxqGwnUEGrI/JJwrmDO+R6mFEnrUDkIIGuf124gDGHvyXRfj0VEdEZVMgec6bEWcRwHaFhQrL96tklMND4KZ6Bu48gmlYFlOHRJBXPKsYMev5fU7e9p3W6svk5Wf95GiaYUqNAizKHtO2ftOYuSTt2KhLv3jNQZYIEj/1vfmdBGoa+2Rl69Jxf9JJCP3COX2rHhHrvJXFvoUnW7hDqYe7UCKGbd+pzUpG5hDBviU3ltfKG9cbp5wFutL7CeZgydMx7anQkVzQN7l1FmnVoaR4dxnR3aIjpg0CpumQs4vd7xurFwHb1HVXnuY5ISK+wfa0jsFq4DrVkKdaLKQpDwll35odbn48UjW2wLErqR+0buG7mvldyd/+TOIPzUnUG+AowCugaQwjWAxNcAUrwGkPfXAFL6X0D++ds/4UKIrA==",
            0,
            [
                [
                    50860899,
                    683849,
                    73649,
                    309902,
                    2058393,
                    0,
                    "/10.0.11.15"
                ],
                [
                    50860899,
                    9495255,
                    56241,
                    3010139,
                    129267,
                    1,
                    "/10.0.11.15"
                ],
                [
                    50860899,
                    9555890,
                    10082,
                    3046712,
                    2039321,
                    2,
                    "/10.0.11.15"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666822843,
            "eastus",
            "USA (E)"
        ],
        [
            50863157,
            109775243867436883,
            "0",
            773099,
            1,
            "1v1 big random map no rush",
            "1v1 big random map no rush",
            0,
            "generated_map",
            "eNqtUclOwzAQ5VvmSiQS14S4Ug8JVKWCLpSeQBUyiZNGdRYlbkta9d8ZO034AXyw573xbG/OkPFy3ZQCho4FxzR/EQ2alFGHMQepKI2Nq1a8UnX3a1Fq+xP8t3EAFj4+nvEINhZUeQRDwhh9cN0BoxbIItzB0LZgn2qPPaD3xCXMwsoq3Jp6AFf0GCf4xXOxniyUQRAnmPuZ4hXc6jL/gv3RqKu5DCZTbAzu9Dle+XLOM9QEZiLhH/uYSwlmEi7Tk4hmvV+zvBGVVmNjAicifz/pOQkhdNBRr7wp9grl82xKvY4N0gIpx/Mc0sdedbY7YqX17NHiUBlVzpB9RVxx3cKljw1F3u8SWy6O4x+13NV/eCXKDmdF1G7xrM0lD3dmBkxWxtP80M5WxnOhWjOtn76Tdo+18KVMeR6KteBZmy7cCm76vtz8AgimsFg=",
            0,
            16,
            "eNrtVV1vmzAU3W/hOZ1sKElcqQ8llSlRQhrC97QH2xBBMCRKCCmZ9t9nSNavrZomTdqY+oR9j33v4fgeXSj3Pn2RNtv1MuWxUSzXH9NIuhoMFIBQT9qVpEzXhXErXcGeVMYkb5agJy0J+w6I3ZawuFnKQEGKDJtAkU3iKuZnuMimpGSJXW/acxdNsjSP7+Mt3pI8ni7ac+nOiklUt+um8n7XLvO4JLekJNKVFNfj0pf53pJxGS6M/nR0SKmLNrQIOS2sihV8EXo4ixts0WIHqmM19MdP8dOdOvDUjMrQjnRcR1irmMwB8dDeWK0fJiNRRzFB4I9FTC0cHR2Jb22ofJnOUnDCZViFWEsCubxndw2mHo3VZmDkj/FmT30f7ERsST2UOTpeERDuAi8S2PrwKs/RUawkunNP9078E+JqnBVmRXO8ExxUcS810jPmPFSBZ1WRP09nq3k9s+equWLi67Q1AxkdqeeKfzBfc1wyHQvdLDuQEy7OjK2R0T/rm4kaYLrKwMwOFPGFJz0slemOqKOh015LhDbAuRtvqIfrRlsjHVaTelhFR4DOHA+Bx/cRNrngsg/1X52zauIBobHR4hOFofuFsXvG1wnbN3kzTyr0KEJXE3lgworsVa7xmbvFAw9qVH/YiD5YNb1kZK4dAKzN7cdcCcuhOvfE/+lNb7x8lwZzfa1gOc5Cf5rOeBmd3hPX1OcuzTlgtdH34On9Qx3NqGItzn23ifNGy5sWI74p4iZ3ciw0QiW943boPfBA8AxHjz27DnxzRHW0IrKbuU50+9hDirYLfM5ZJvpER5ClRt8swI30tfejuYf9SxXJL8wtP5kbvm1udSjs/Y+be/Fu7ndz///mntgY3dxcX//U4I0Dn5n74tnolt9yN/iTvoYvfP27HJUOcLzsAEe1Axz7HeA46ADHYQc4og5whKALJGEXSHZh1MAuzBrYhWED/860+fzhG7fAZP0=",
            0,
            [
                [
                    50863157,
                    773099,
                    23588,
                    3350784,
                    2039321,
                    0,
                    "/10.0.11.14"
                ],
                [
                    50863157,
                    864592,
                    4091,
                    2689328,
                    2058393,
                    1,
                    "/10.0.11.14"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666825076,
            "westeurope",
            "Europe (W)"
        ],
        [
            50863942,
            109775243867978123,
            "{\"templateName\":\"GameSession\",\"name\":\"9958622c-cbf8-4f7f-a4b3-29c9f1ab4f71\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            6770930,
            1,
            "FFA Standard MegaRandom",
            "FFA Standard MegaRandom",
            0,
            "generated_map",
            "eNqtUttugkAQ7bfMa0kK7CJi4gO0xprWS61vjWmmsCARWAKrFo3/7u4i9Ae6D2TOmZ05O2e4QI7lpikZjCwDTmnxxhoZUo9anmdJKkpjnaoFVqKGkalvLUsVf4H/MQnAAL89Y9gaUBURjIjrEIdYxLYNyHi413WHVGZsk1DHcQeeIZVFuNN6AHf0HCfyynAg9TIuNII4ka1fqfwEj0rlX7A/Hneaq2A6kw+DJ3VOd75cYC49gTlLcI1FxHPQk2CWnlk07/OKxYZVyo2tLpyy4vMsLbM9YpKOeceGH4Rkhyalw44NUi4p13U92pfebbY6Yq3sNDu0PFbalAvk3xEKVC+49rUhK/pVYpbx0+RXrPb1H16zssM5j9olXlS4wnCvR5DNynhWHNvRynjBRBum9ctP0q6xZn6WpViEbMMwb9uFO4b697g+3AAp6rAH",
            0,
            16,
            "eNrtmW1vqkgUx/ez+Lp3Mw8C0uS+KO0FMYoV5XGzLxjAgAxoCqK42e++A9qq3ZK7m2zSuuGVzJyZM3/OnN8cJkJ099sfvc3LehnTUM2W61/joHfPCwIQMbjr5YVXxOtMferdw7teEXpp/cgMS89/NbDWi+eHzRjMQ65pZ8k4LEN6smbJxCv8aFFtmmHfal9xGj6HL/KLl4aTeTMuzvXQC6rmuV54mzePaVh4T17h9e57YTUqbES3OpILd67yk8ddTExxQzKXkkwv/YzOXUtOwto2b2w7osica4/O/cc5lWNxCUFwEShyFchS6SMKPEvcqqv1fvzI1sEacOwR6+MyQxEPnq1vCOrH0xgc7QiWrixFDiqe/WFt4w7qaiOo6Vt/3Sa2DXLWtySWmBiKvPKAmztWwGzr3Ts/BwPrUTA0j/OO+iPPlKifaSVJ5Zxp4Ni8WI1PNmNfOpZeBvYsnq5m1XQx47SVz36NZk0HiQdimewdtPcal74is7jpCwdFlI0Z6Y8qf4pvwtYAk1UCpgsHs194jIfO+YrB1pHEY1uKWGyAMRxtiCVXdWzVeFCOq0EZHIB40rhzLLoNZI0yLVtX+dk4vfIswGKsNvYx9sXnuZpf6DXcZk9a/cQsHplrSswPjPwseedrdNKuU8eCElH2G5YHqzqX1MTcOECWZos3X5GfQm5msfdT6ty43pfaZtpS5qdy4tqTeEqL4LifckVsapKUAr9SeQse999VxCnB+vyUd5swrWP50Ng8W2P9GjVSmcVILMiQLlxrTx2m0318y9m1Y2uPRBFXHjIT0wie3nIIS7ljU+onLE8UEfqxyo8Xsvjw8P1778+7vwMu8ljg8OAKcP4MOGwFHPAch7844PMO8H8A+F47qJV2OCZgMKS7Jt5DcAnbzE9pwWLUaFr8KPRZIkvPCxBfHQDIXLF1k5+NM+uDogFtPzaM0SVor/CzOOibVj9oFLlKQK8OnIRG0x8nX9lRe6CYETHknEEbkVSjtS/doquZcemrgVRyUlrHfPMRwL4SsBximi4gZtqK0DS3bM7lHiYEcGUgj9h6ekksyl/mrg9HbO/NV/Dz0NQoUcwV05mccySKfDDKCdJeXEs3dTB5Oxx8ZR+FllnNkJgTbFb13i1nDx+DjcEAYQFdgS2ewUZtYCOARYxgR3ZXurvS/dmlW7PBw4d0Q4j7/QF3XbchOPONWws3EhEvdF/mHd4d3l/6y1zoD6AwEK4Jv7h799vv3hAP+h3hHeEd4Z9ewLO2Ag76A4B57hpvdMaba8dbQDzffZ93eN8k3ov/Fd7DFrwFBBASxGu68Zluvrt+d3h31ftr4L1vw3uCW/DmIUR48A7v/hlvoSveHd0d3V+7eE/aindN3wXY3y4u3YM2sP/T/7rhFdP/VqN4AxohuAWR8BZEolsQiW9BZP8WRHKfIvL3X/4CIKXz1Q==",
            0,
            [
                [
                    50863942,
                    3082372,
                    921,
                    692427,
                    2039321,
                    2,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    6112389,
                    3106,
                    3344927,
                    137266,
                    7,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    6770930,
                    6739,
                    221922,
                    136150,
                    0,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    7202279,
                    84953,
                    561463,
                    2039321,
                    6,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    7481787,
                    3423,
                    982978,
                    131384,
                    4,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    9637538,
                    -1,
                    3101997,
                    106553,
                    1,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    10480365,
                    73121,
                    3562947,
                    137266,
                    5,
                    "/10.0.11.15"
                ],
                [
                    50863942,
                    11344858,
                    25303,
                    4197255,
                    129267,
                    3,
                    "/10.0.11.15"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666826452,
            "westus2",
            "USA (W)"
        ],
        [
            50863679,
            109775243867725435,
            "0",
            8435122,
            1,
            "unnamed_session",
            "unnamed_session",
            0,
            "generated_map",
            "eNqtUttO4zAQ3W+Z182KXJzEqdSHFBDtspQ2LbArVCE3cUK2uVhJSluq/jtjm5QfwA/2zJn7GR+hZGJ5EBwGlgG7vLrlBxgQz6MksG3bgCRPlantWNO1vde9kPIzhPPrERjyCfEMYWVAUyUwcKjvW05Abd+Aoo43MDAN2OZosU2HuMS30FCyLn5V9QA+tcs0QxfqYb2i7pQGaYapxwSv0U9Z5Vv0cDjsa85GNxNsDC7k2X3iYspK5ATueMYiViV1CWoSVuTvPLk72yXKDryRbKxU4A2vFu/IU+BTx+qRP+xQbztEqUkI7dFRXiNkUWrZ59AvmjUQSTrNXrt/axQpRyhfEtYx2cHpHBvz6rxKVhT17nrfzTbtlx5x0etlneglHqU4Y7HEn4/AmnhyhWn5mP9dN12weViQC/6w29fJLc0UO+jyyBv0WUT+v9/jefDU/H/Kp9E+LuzQnGsGMedMJv/leI5lkyBwLZcEHt6miw2ctMtSzSa2a1XTdfFnYHDeXnGhLK2s4xhQabandckSOK0wWqST6k0vQKRT3mkRI9eZ/mwtD4siZ1XMl5yVeuj4lTM5s3n68QG4598R",
            0,
            16,
            "eNrtmVuvqkYUx/tZfN6nmQsgs5PzIO6CGMUtyrXpAzcjMqDZIopNv3tn0LM97pY0TZu07vBgmFlrLv9Za/HLqBA9/fxrb/e2XaU00YvV9sc07j3LAhYhQk+9fRmU6bbQX3rP8KlXJkHOm+Cptwqibw7WewuihDcREGVMMDcU2SSpEnp1F9k0KKP1st41477wxdI8eU3e1LcgT6aLZly6N5Mgrps23/mwb5p5UgYvQRn0nntJPS5dRA8mUkt/oUvT4TENbbILC5+GhVlFBV34jpol3LdofMdQU0XfHd/slzm154hZiOAy1tQ6VpUqQhQEDjnom+1pMmT7YAN47pjZxMLSyDlwzV2IhHSWgosfwcpXlbWHytdoxH3iWd/s+nr+buf90HXBntlWoUMyS1M3AfD3nhMz3/b4YZ2zhc11PLKbeeys6yg3xuZQl/Tc1n17nUbFXAygvTSGhNpuLITInMy0iLwu9L1ecL0mjOrLGSN0qmI2d7L8ie1vHsIhj4lwnL4M2Ech7iU+68BWaFQYVZire3ZGkelK9fTqs06V55hV7M7T2WZez5Zz0dhE7Gk1Z/IQOYeOzWJkfIzBKtJUlhdz6aE1ZWOac1zzl7E9wHSTgdnSw+wJL/E2xUiz2D4KufSVNYs9sEbjXeioNc+dnsrVpJar+AzIVePRc+ghVg3KtBx87a/GmXXgAJZDvfFP8DV2N72W3+S8dZ2UxaPwbYWtA9dRkX1Ya3zVblLPgUqonXaszja8VvVsjOeWqsyX72ux/EJx7rDzabz2Lnn/lhfus12liHI1891pOqNlfKkXtQ5daoc5BTzXDrzUl6+RWYjNxbWud0nOYzlofIFrMLtBrVxlMSJlOKJL3zlRj+n0h+/vxNZzjWGokU2A7My24pf3GsXK3nMpjTJWJxqBUcrrSiWDwdevvd+e/kgQKEhQugcIugEEtgEEYgyA/D/nx6LjR8ePjh//lB/TERj8KTskmcEDgTt44Bs8UDs8BJFfWrrLRwePDh4f4cHA8YngYbTBAwECZHzHDuHGDtzOjj6SpO7i0bGjY8dnZ8cUt7EDIgylO3aIN3YI7eyAWBY6dnTs6Njx6b+0FG3swEJf7t9fPKQbPMT2n0wxwQh29Ojo0dHj09883BZ68Lf7O3B8+e7PFqmNHODfZAa8Y8bf1dh/AI3yA2gkD6ARgkcQCR9BJHoEkfgRRAqPIFL8T0T+8sPv9sd8BQ==",
            0,
            [
                [
                    50863679,
                    146162,
                    -1,
                    4212549,
                    133008,
                    1,
                    "/10.0.11.22"
                ],
                [
                    50863679,
                    209083,
                    80222,
                    128041,
                    137266,
                    3,
                    "/10.0.11.22"
                ],
                [
                    50863679,
                    212316,
                    79108,
                    1982529,
                    131384,
                    4,
                    "/10.0.11.22"
                ],
                [
                    50863679,
                    2347873,
                    1283,
                    76810,
                    2039321,
                    5,
                    "/10.0.11.22"
                ],
                [
                    50863679,
                    6846120,
                    1952,
                    3488596,
                    134522,
                    2,
                    "/10.0.11.22"
                ],
                [
                    50863679,
                    8435122,
                    1550,
                    2167681,
                    2058393,
                    0,
                    "/10.0.11.22"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666825848,
            "westeurope",
            "Europe (W)"
        ],
        [
            50863746,
            109775243867788977,
            "{\"templateName\":\"GameSession\",\"name\":\"b3ad0db7-6ea6-488b-a5a7-2ce6b1dc890e\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            7091124,
            1,
            "4V4 BRUTAL AI",
            "4V4 BRUTAL AI",
            0,
            "generated_map",
            "eNqtU9ty2jAQ7acweo3bCCMbw0weZK6elDs0TTJMR7GF4/gaW+AQhn/PSg4k7Uz7VD3AnrMXnV2tDyhm2XKfcdSua6gMkmu+R21Sx/UmwaRpacgLNspXCJaL4hQ2yaR9j+iMns4V0hD1RzaYtjRpT5q041PaLYEreypiRjvA9ih17AqOwWN/rjGjAFd9e3ZVwerv00FrDeWJh9omwbhlGsTUUJS6IWpjDW0DcOi4QQzSsgwN+hPuo+oKoXfU2fgQYkFWEaVCIbQBmXRIpPgLecd/wVRJV3dO7YEDwtClPOU7n41ZDJNHI+6zOUu8NEaqExYFr9wbnf2SZXuey5GvVeKAJ4tX2aeu66Rxor6zfboV8EYWJsQ6sXaQAmU2jeaZWrw/Jj4RcznOM5rscjWVA4p/eUwwKeF4znV5ct4YFkVp2XsR07D4wHOenXCcetWqHKQ5Za7k7w+I5a7ThbJhNCx158KNwutx9+6pCBfe5W01Hgj5wXOIYd38xpmubqLb54t5L4yLVa7/9KsRQs2pLP5VJyYmlkUsE8tODdxogYBjFbJUvWXbB3WnYeoGhuSg6PJMeQp5D0wxqcZt51vBotqQ5R4vRI1+c6D7D82xP+zf9cvVcmWGi/FumXMzHvq/ax6RZz/1spDqe/LiPpWz4US0yj80N8xGXSetllGHXTXhFxt/1WwYhPxLM/V2LHG5VxsAri24EEHiF+i4hnLZxkl21RplmzEXlQmlHvzqkyk4jaJA5i85i6uXcx85Uyty/PIGbwQzQw==",
            0,
            16,
            "eNrtWFuPokgU3t/ic8+mKESbTubBG4hRukG5bvaBAoxIgUbwgpv973sKvHT3tjOZmU1mnfBggDpVp87l+z5KOPzwx1+N9WY1j2iopPPV71HQeGojkeNw86GR5V4erVKl33jiHhp56CXsFj005p5/NsDTxvNDdosRL/KYYwNpPA53IT2Z03ji5f5iVqzLeZ+YsygJX8KNtPGScDIt50WZHnpBUd6znbdZeZuEudf3cq/x1AiLUW5jutWxlLtTpTXp7SNiimuSupSk+s5P6dS1pDhktmlp2xNZElx7dB2v1hSOJcQEc7NAlopA6u58TJFniVtluTqMe7APryLHHsGYkBqyePRsfU1wM3qOUGXH3M6VugsH5y/+kNmEo7Jct5XkMs6eiW2jDMbmxBJjQ5aWHnIzxwrAttq/83M0eH0RDM1yHeS68BN1pPeUFqxPpwPX09PANCUDe5z6HFC9cGduPpV98WWqZErK4tU5v6hy9PFhF8Da8WwA++tb0mM1ae4n/Q78uuJ4mEWQ33JqaJDTaEMGC34SxxsHHzZTJAysZH2EfeIxR/mXGYog1iPUCgX2JHpedth+GeG1cz1ikuxhfLCt/Hf2c7PK27GoBvU/Qn0WRKaI9UCJlLNtQrAUE95EUA80WcboeebwcOWq2qjQF44GMl3O+G7ZH5ZfiQO+u4DeIAOrK9fiaJlHmpV4cCFXta8Iaj/G6hGuFRZQaHcpq/v8hA3Yfwu9LzyLW/hpDLkou3HxuBvzp5pCjL4sAb70mWupO5LoX5tn+AnNYY+otBfiuXaXeE3ZLCCfm36cRIpdbGrMD/RHeO/rFDsCPOeadcg8S9o62GA97GqGBL/B1Zc9ykNDijzrsIY9KaudxaGrzTT3Lj9auHKFObvyDbjjBNMS1sEQek3zoOqFvpslIjISaevKYu7Za3rFMD3C+NI1Rwuo0Y5YB8HAZgY1gzi1Ci+wpydLRy057ADr1JXMoVZc+HjmaZ8w3NoKrJHETufz58bfD/9WKL7VFMQWeqNQratCcfetUNNaoWqFqhXq/69Q6hcUiueabfGtQjWvCoVvKRTHc/xjsz5C1QJVC9RPEChAhvrrCBTgaq51Phaolths4vbbP3nCVaD4mwIlim3E1yeoWqBqgapPUD96gjJvn6CYgrzSpk+vvkA1b5+emgLGb8SJ/zFxwt8vTr37Pj2dgeKZXeqnjBhSBjGUYFWik82ARls6NJMBQCueZ5qgLn24GhUAsXgklgk5qO9jvJDOwQsKc0oRPNU3/lAoeF3wZSDBEoTtFdmM4WhNLKmoROexJFtwROIpxpMAqBRiAVB/bZ4OQoG+SH637MlNPxHUI3XNW4IzOsWuU8fiukQ+rAEHS4YlJZb0ktyzi6+SpJoF+ckMGx8Q2O6mPhMT+zWJpYLY1CQJRa/FAAj9THh9esLdOkyMK2ltFcZVeiY+GVIQwwN1IE63d3mhrhxb7RFZXHrYjE0j6F8wxHczxwbxiQEnssj5EXspSd9FbqEmd03umty/Jrlb3/JltmZ3ze6a3XfE7vbtV3cbt1o1uWty1+S+V3I/3iI3+i8/BnJveP2tMYp3ECOH7iFI7h6CxPcQJH8PQTbvIUjhpwT552//ABX++fA=",
            0,
            [
                [
                    50863746,
                    3314790,
                    32266,
                    138109,
                    131384,
                    2,
                    "/10.0.11.7"
                ],
                [
                    50863746,
                    3645960,
                    143,
                    155959,
                    2039321,
                    1,
                    "/10.0.11.7"
                ],
                [
                    50863746,
                    6944274,
                    10300,
                    17867,
                    199703,
                    3,
                    "/10.0.11.7"
                ],
                [
                    50863746,
                    7091124,
                    14255,
                    355776,
                    2039321,
                    0,
                    "/10.0.11.7"
                ]
            ],
            0,
            512,
            1,
            0,
            0,
            0,
            1666825687,
            "westus2",
            "USA (W)"
        ],
        [
            50864354,
            109775243868109341,
            "{\"templateName\":\"GameSession\",\"name\":\"44816a9c-1401-49b7-9465-b91440862345\",\"scid\":\"00000000-0000-0000-0000-00007d18f66e\"}",
            2781241,
            1,
            "2v2v2v2 MegaRandom Nomad",
            "2v2v2v2 MegaRandom Nomad",
            0,
            "generated_map",
            "eNqtUttyokAQ3W/p1yWVEQYEq3zAjRXdbIyiuVXK2hphIEQuU4BRY/nv6ZkJ5AfCQ9N9+n56TpAzsToKDoOeAfu0uOFHGFDHcalnmqYBURorV92wqqnbqDsh9RfwF2MfDPXz/fEQ1gZURQQDlxJqWR6xDcjKcAsDYsAuRYdJLGr3aa9vYOMmfFXtAL6sP3GCIa6D7bKyURbECZaeUBSj3yj8H7H94bDtOR9dT3EwuJTf/gsXM5YjJXDLExawIipzUJuwLP3g0W3nlyg78kqSsVaJ17xYfsg9kT1qtdA/dix3DbLnEkrdFh2lpYYI6XK/adZAIOns3HfvlWLlBPn/iDVMjnDuckNedKdkWVbux4dmvq2/7YCL1s7LSB/xJNU5CyX+cgJWhdMrLMsn/GlTNd72fkkv+f3+UEY3bqLowZAHXmHMMug//50svMfq7TGdBYcwM32y0BRizbksfmE5Vs+knmf3bOo5KImNA5x1yErtJnYb1dO2bdrH5LS+4kJ5atkHWSw03bMyZxGc15gt4mnxri8g4hlvtIqZm0S/tpr7WZayIuQrznK9dPjKmdyZnH99AoWV3us=",
            0,
            16,
            "eNrtmVuPokgUx+ez+Nw9qSpArE7mQewFMYotcp/MAzcjUqBpEcXNfvct0GnHniabyW4y0a0HA1WnLv865/hLVQHRw9c/O5vX9SIhsZov1p+TqPMERdAFPfDQ2RZ+kaxz9bnzhB46Rexn9Ss1LPzwu4GWXv0wrl8hxwsI1eU8HcdlTM7WPJ34Rbg0qk3T7BHSsZIsfolf5Vc/iyfzpl2y1WM/qpr3euLdtnnN4sJ/9gu/89SJq1HhILLTkVx4c7U7GeyTwMKbIPdIkOtlmJO5Z8tpXNvmjW0fKLLgOaNL/alP5dpCGiBoRIpcRbJUhogA38Y7dbU+jAd0Hk4DrjOidUJuKvjoO/omQHwyTcDJjmDpydLSRcVLOKxtwlFdbUQ1e6uvy4HjgC2tWwQ2Tk1FXvnA27p2RG3r/btxjianL6Oh1fSja12GmTbSB2pXzSzVs5ZJmM8EH1qGNsDEciI+QPp4qoT4Za5u1bzWq8OwOq0xRIcyon3Hxh90fn0XDGqf8PvJc5/+JOyc/LP0LYmEuVYGmbylaxSorkRNzjbzULq2XkbOLJmuZtXUmAnaKqRPs1mTi/AxsC3qI+29DxahItO46IaLloS2adZxjl9K5wCTVQqmhsvRJzz5WxdCxaTzSPhUlpbU98AcjjaBLVd17NSkV46rXhkdAT5r3Ls22UWyRqiWnaf8Uzu98m1AY6g29jF39t1Fr+k1MW8dJ6H+yD1LouPAZZin78YanbXrxLWhFCiHDc2zVZ2raipLM5P+jLexaHyhMLPp+pQ6905x/x6X2mY5Uh5mcuo5k2RKiuiUL3IVOMQKMgLqWNvwlF+egqcBp8/Peb2Js9qX/cbmOxqt14iZydRHuAiGxPDsA3GpTm/w9p9Yu442CBS88pGVWmb0/JajnLR1HULClOaJgmGY0D4O6Hf+evgZHkjsQcTDK3jACzxgGzwQ4DCHIKMHowejx73TQ8tb6CGKPOTQ9daDu9ADtdND6FF+MHowejB6fEAP/a7o0bb3wFDku+CaHvyFHtxt7z3mjB6MHowe//rkMmyhR0/gsIivTy7ChR5867UHwqgrsq0HgweDx8/wGOX3BI+xIeN+/8uXjw8vAPBIRFcAES8AEdrvTUXU7bLdBwMIA8gHALmve1Ou7ewiYh4i/goe3Qs8uq3wwFgEHIMHgweDx73DQ2s9ulAKCO+uTeEPX11Edm/K8MHw8T8/vEzavro8Xl96PP5Ajl4bOcB/yQx4xYxf1YhvQCMEtyAS3oJIdAsiuVsQyd+CSOG3iPz26W9Iguq1",
            0,
            [
                [
                    50864354,
                    1706080,
                    15680,
                    4248106,
                    134522,
                    0,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    2781241,
                    1455,
                    402086,
                    2039321,
                    1,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    7004272,
                    497,
                    167275,
                    137266,
                    5,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    7741320,
                    22137,
                    1325511,
                    2058393,
                    2,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    8199520,
                    1801,
                    1898670,
                    2058393,
                    7,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    8539791,
                    765,
                    2259815,
                    129267,
                    4,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    9174600,
                    10280,
                    2784403,
                    2039321,
                    3,
                    "/10.0.11.7"
                ],
                [
                    50864354,
                    9794124,
                    1649,
                    3205317,
                    199703,
                    6,
                    "/10.0.11.7"
                ]
            ],
            1,
            512,
            1,
            300,
            0,
            0,
            1666826273,
            "westus2",
            "USA (W)"
        ]
    ],
    [
        [
            12293,
            209083,
            "/steam/76561198151627335",
            "",
            "Ps0Fa",
            "",
            128041,
            173472,
            95,
            0,
            [
                0,
                "",
                null
            ],
            "76561198151627335",
            3,
            []
        ],
        [
            3853,
            3388545,
            "/xboxlive/3F220CD77A025B8305D6F733F95B50D41C12E999",
            "",
            "BrianVanBee",
            "",
            365765,
            63470,
            40,
            3,
            null,
            "2535437197597232",
            9,
            []
        ],
        [
            15214,
            8199520,
            "/xboxlive/04C7DA0A72AE9EBD96810AC2567964804F6AB03F",
            "{\"sharedHistory\":0}",
            "zodinc",
            "",
            1898670,
            242109,
            130,
            3,
            [
                0,
                "",
                null
            ],
            "2535439045647969",
            9,
            []
        ],
        [
            8587,
            9794124,
            "/steam/76561198022995020",
            "{\"sharedHistory\":0}",
            "tezexlo",
            "",
            3205317,
            129891,
            74,
            0,
            null,
            "76561198022995020",
            3,
            []
        ],
        [
            10051,
            3314790,
            "/steam/76561198366061478",
            "{\"sharedHistory\":1}",
            "坿±å¤å½±ææå¤",
            "",
            138109,
            273650,
            146,
            2,
            null,
            "76561198366061478",
            3,
            []
        ],
        [
            1778,
            3389552,
            "/xboxlive/44A18190067DC8303780F18A75A904AC9158B498",
            "",
            "DJPhantomBeats",
            "",
            433943,
            26615,
            22,
            3,
            null,
            "2535452933461287",
            9,
            []
        ],
        [
            134,
            11487396,
            "/steam/76561198877243948",
            "",
            "SaddamSan",
            "",
            4274597,
            1506,
            6,
            0,
            null,
            "76561198877243948",
            3,
            []
        ],
        [
            5347,
            3693433,
            "/steam/76561198091901627",
            "",
            "law_91",
            "",
            331489,
            67342,
            42,
            3,
            [
                0,
                "",
                null
            ],
            "76561198091901627",
            3,
            []
        ],
        [
            2766,
            1077164,
            "/xboxlive/654C7B9D3957E3430B060047C332329BE4C4888A",
            "",
            "muffin575",
            "",
            422621,
            53060,
            35,
            3,
            null,
            "2533274869064742",
            9,
            []
        ],
        [
            86,
            467656,
            "/steam/76561198064318777",
            "",
            "Blood OfFegs",
            "",
            4271764,
            400,
            3,
            3,
            null,
            "76561198064318777",
            3,
            []
        ],
        [
            4470,
            11344858,
            "/steam/76561199107760604",
            "",
            "juice",
            "",
            4197255,
            47677,
            33,
            3,
            [
                0,
                "",
                null
            ],
            "76561199107760604",
            3,
            []
        ],
        [
            74371,
            2781241,
            "/steam/76561198157247689",
            "{\"sharedHistory\":0}",
            "Welfare-pays",
            "",
            402086,
            402154,
            210,
            3,
            [
                0,
                "",
                null
            ],
            "76561198157247689",
            3,
            []
        ],
        [
            3096,
            10039429,
            "/xboxlive/894218DB789A662CC920AF29B39009E2E5FD6669",
            "",
            "StephanHalle",
            "",
            3323673,
            32578,
            25,
            0,
            null,
            "2535472962125673",
            9,
            []
        ],
        [
            29504,
            8435122,
            "/steam/76561198047064056",
            "{\"sharedHistory\":1}",
            "paphellas",
            "",
            2167681,
            214264,
            116,
            0,
            [
                0,
                "",
                null
            ],
            "76561198047064056",
            3,
            []
        ],
        [
            5907,
            6224382,
            "/xboxlive/63EDF888EAFB48EA4377CE0D9DAEF706A18090B6",
            "",
            "bridBTBwell",
            "",
            1809576,
            69038,
            43,
            3,
            null,
            "2535454038948048",
            9,
            []
        ],
        [
            6969,
            1215732,
            "/steam/76561198145975205",
            "{\"sharedHistory\":1}",
            "Kosmikye",
            "",
            267005,
            196061,
            107,
            3,
            null,
            "76561198145975205",
            3,
            []
        ],
        [
            17908,
            9174600,
            "/steam/76561198299178425",
            "",
            "Czerwony_KapeÄ",
            "",
            2784403,
            207281,
            112,
            0,
            [
                0,
                "",
                null
            ],
            "76561198299178425",
            3,
            []
        ],
        [
            10849,
            2666352,
            "/steam/76561198856889842",
            "",
            "lngarcez",
            "",
            107966,
            132345,
            75,
            4,
            [
                0,
                "",
                null
            ],
            "76561198856889842",
            3,
            []
        ],
        [
            5983,
            9555890,
            "/steam/76561198246438974",
            "",
            "Skeet",
            "",
            3046712,
            106430,
            62,
            3,
            null,
            "76561198246438974",
            3,
            []
        ],
        [
            35549,
            3082372,
            "/steam/76561198087982372",
            "{\"sharedHistory\":0}",
            "Bungadat",
            "",
            692427,
            409434,
            213,
            3,
            [
                0,
                "",
                null
            ],
            "76561198087982372",
            3,
            []
        ],
        [
            14206,
            9637538,
            "/xboxlive/02C258B2962DEC890DBFACB3B7D979B62C59D468",
            "{\"sharedHistory\":1}",
            "MC Kery James",
            "",
            3101997,
            222083,
            120,
            0,
            null,
            "2535446469690972",
            9,
            []
        ],
        [
            569,
            227898,
            "/steam/76561198018653983",
            "",
            "Dremud",
            "",
            2996155,
            15990,
            17,
            3,
            null,
            "76561198018653983",
            3,
            []
        ],
        [
            2883,
            6112389,
            "/steam/76561199188609623",
            "",
            "RorsChach",
            "",
            3344927,
            100248,
            59,
            2,
            [
                0,
                "",
                null
            ],
            "76561199188609623",
            3,
            []
        ],
        [
            40768,
            6770930,
            "/xboxlive/C9EC0305749F89B27CA2C84C7B2CE1FCBA806C2E",
            "{\"sharedHistory\":1}",
            "AlliedTrex12",
            "",
            221922,
            414067,
            216,
            3,
            [
                0,
                "",
                null
            ],
            "2533274856296424",
            9,
            []
        ],
        [
            25054,
            8539791,
            "/steam/76561198194823595",
            "{\"sharedHistory\":0}",
            "Ender",
            "",
            2259815,
            292550,
            155,
            3,
            [
                0,
                "",
                null
            ],
            "76561198194823595",
            3,
            []
        ],
        [
            3815,
            7831566,
            "/steam/76561198038734120",
            "",
            "StormCro",
            "",
            1441159,
            73321,
            45,
            3,
            [
                0,
                "",
                null
            ],
            "76561198038734120",
            3,
            []
        ],
        [
            4496,
            683849,
            "/steam/76561198252135568",
            "",
            "T1mmy_0",
            "",
            309902,
            62771,
            40,
            3,
            null,
            "76561198252135568",
            3,
            []
        ],
        [
            2275,
            9495255,
            "/steam/76561198078992981",
            "",
            "FAQ2chief",
            "",
            3010139,
            25572,
            22,
            3,
            null,
            "76561198078992981",
            3,
            []
        ],
        [
            14950,
            5786675,
            "/xboxlive/36424AEAF744B4027353949B1EF028784303CE06",
            "",
            "GrapeDiamonds",
            "",
            218815,
            209077,
            113,
            3,
            [
                0,
                "",
                null
            ],
            "2535418015747569",
            9,
            []
        ],
        [
            4341,
            10480365,
            "/steam/76561199350851839",
            "",
            "ekipanini",
            "",
            3562947,
            41438,
            29,
            2,
            [
                0,
                "",
                null
            ],
            "76561199350851839",
            3,
            []
        ],
        [
            1526,
            146162,
            "/steam/76561198884214114",
            "",
            "manosgr",
            "",
            4212549,
            28173,
            23,
            0,
            [
                0,
                "",
                null
            ],
            "76561198884214114",
            3,
            []
        ],
        [
            17194,
            10183012,
            "/xboxlive/E8A7F5175F9309151E7AFCF2818CBD549E4A6C58",
            "",
            "CedannnnnnN",
            "",
            3407856,
            238587,
            128,
            3,
            [
                0,
                "",
                null
            ],
            "2533274811854287",
            9,
            []
        ],
        [
            12363,
            7004272,
            "/steam/76561197990251872",
            "{\"sharedHistory\":0}",
            "Mampfalot",
            "",
            167275,
            176731,
            97,
            0,
            null,
            "76561197990251872",
            3,
            []
        ],
        [
            6315,
            3868994,
            "/steam/76561198333030935",
            "",
            "bryan.selfshop",
            "",
            2934381,
            57377,
            37,
            0,
            [
                0,
                "",
                null
            ],
            "76561198333030935",
            3,
            []
        ],
        [
            70847,
            7202279,
            "/steam/76561198002857532",
            "{\"sharedHistory\":1}",
            "Ludj28",
            "",
            561463,
            432347,
            225,
            3,
            [
                0,
                "",
                null
            ],
            "76561198002857532",
            3,
            []
        ],
        [
            795,
            11450370,
            "/steam/76561198203104606",
            "",
            "cipher_",
            "",
            4267841,
            10674,
            14,
            0,
            null,
            "76561198203104606",
            3,
            []
        ],
        [
            3242,
            1706080,
            "/steam/76561198121081954",
            "{\"sharedHistory\":0}",
            "BRITISHZEUS",
            "",
            4248106,
            43471,
            30,
            0,
            [
                0,
                "",
                null
            ],
            "76561198121081954",
            3,
            []
        ],
        [
            2568,
            9321741,
            "/xboxlive/27AFA6EF9BEB0B9CF09BC3B9DD1E5C85CB38FAD9",
            "",
            "Davidndh",
            "",
            2903500,
            40978,
            29,
            0,
            null,
            "2533274874656387",
            9,
            []
        ],
        [
            319,
            11477250,
            "/xboxlive/66BEC7134DCC5140E18394E9A6CA80EAA3A2E919",
            "",
            "DylDyckens93",
            "",
            4271318,
            5057,
            10,
            3,
            null,
            "2535444625281307",
            9,
            []
        ],
        [
            9010,
            6240186,
            "/xboxlive/35A1CC87511E17053B9126818D392D99A387AC2C",
            "",
            "REDRUMRE4PER986",
            "",
            412770,
            153036,
            85,
            3,
            null,
            "2535471475346583",
            9,
            []
        ],
        [
            1443,
            773099,
            "/steam/76561198000836724",
            "",
            "n3Eo",
            "",
            3350784,
            44352,
            31,
            0,
            null,
            "76561198000836724",
            3,
            []
        ],
        [
            9039,
            6944274,
            "/xboxlive/1DC578826D7400C5B269883C8620E8667C77AA26",
            "",
            "Itsukihime",
            "",
            17867,
            75058,
            46,
            3,
            [
                0,
                "",
                null
            ],
            "2533274965222871",
            9,
            []
        ],
        [
            50601,
            2347873,
            "/steam/76561198027297874",
            "{\"sharedHistory\":1}",
            "wntdSAS",
            "",
            76810,
            594105,
            306,
            2,
            [
                0,
                "",
                null
            ],
            "76561198027297874",
            3,
            []
        ],
        [
            4805,
            1319311,
            "/xboxlive/8B231F591B3256F60971FE8FDFDC7D16FE8D8BB7",
            "",
            "CheeseInCheese",
            "",
            712022,
            96449,
            57,
            3,
            null,
            "2535452534427103",
            9,
            []
        ],
        [
            15049,
            7831548,
            "/steam/76561198030770054",
            "{\"sharedHistory\":1}",
            "Gorbatross",
            "",
            1441138,
            212438,
            115,
            3,
            [
                0,
                "",
                null
            ],
            "76561198030770054",
            3,
            []
        ],
        [
            4009,
            7741320,
            "/xboxlive/F5CFFC6C1149EEF5477DF13FD99B1F0DC046211D",
            "",
            "NovazYT",
            "",
            1325511,
            80766,
            49,
            0,
            [
                0,
                "",
                null
            ],
            "2535410611929351",
            9,
            []
        ],
        [
            31382,
            3645960,
            "/steam/76561198328787882",
            "{\"sharedHistory\":0}",
            "FC",
            "",
            155959,
            545665,
            282,
            4,
            null,
            "76561198328787882",
            3,
            []
        ],
        [
            12850,
            864592,
            "/steam/76561198000817274",
            "",
            "Azure",
            "",
            2689328,
            306785,
            162,
            0,
            [
                0,
                "",
                null
            ],
            "76561198000817274",
            3,
            []
        ],
        [
            883,
            212316,
            "/steam/76561198205154296",
            "",
            "KronosJr",
            "",
            1982529,
            17412,
            17,
            0,
            null,
            "76561198205154296",
            3,
            []
        ],
        [
            22963,
            7091124,
            "/steam/76561198013046765",
            "",
            "Scro",
            "",
            355776,
            160971,
            89,
            3,
            [
                0,
                "",
                null
            ],
            "76561198013046765",
            3,
            []
        ],
        [
            36499,
            7481787,
            "/steam/76561198025744956",
            "{\"sharedHistory\":0}",
            "SFSn1p3rPro",
            "",
            982978,
            321657,
            170,
            3,
            [
                0,
                "",
                null
            ],
            "76561198025744956",
            3,
            []
        ],
        [
            4399,
            6846120,
            "/steam/76561198011150723",
            "{\"sharedHistory\":1}",
            "Syn",
            "",
            3488596,
            69620,
            44,
            0,
            [
                0,
                "",
                null
            ],
            "76561198011150723",
            3,
            []
        ],
        [
            8155,
            7838017,
            "/steam/76561197981460534",
            "",
            "Contrast",
            "",
            1449605,
            184019,
            101,
            3,
            [
                0,
                "",
                null
            ],
            "76561197981460534",
            3,
            []
        ]
    ]
]

[GET] /game/advertisement/getAdvertisements

AUTHENTICATION

AoE2:DE

Request

GET /game/advertisement/getAdvertisements?callNum=123&connect_id=ccc&lastCallTime=111&match_ids=[5]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
match_idsarray[int][132,123]
sessionIDstr

Response

[
    0,
    [
        [
            186625757,
            109775243615147302,
            "0",
            2239585,
            0,
            "mitchell.flowers's Game",
            "mitchell.flowers's Game",
            1,
            "my map",
            "eNpFkttuwyAMht+lT9CkCdIuk0KnTAOUilTKLptOkYi6VNoqCk8/g03L1S8b258Pm+PcN/BKaVffOFC8YbIhW7jd2yj5ErSVDv2CnTGm0vxWo61jsqcYs7o2Kj46bRsRpTYNxMgoC7Cdo1BGsmP5cbuY9uu0E17uf53ko5ehrSY+l5ewfcPcI/AMKRYYd5J4lQG2VGcuIecB64zs0wisySf2jUw7bacCc82Zs1Bh9cRZ6p8lxSgbYxJnre2YbNLEeYxRPqC3hzK5pz5zVcqsf7InzaNGRs3XB9WAfAPWCA1TxBXz4Xwnr61wqAXMeqAZii3YD8gxMIh9Rw0zMV1Bf6A/Qawz07i7h4bc++SfQswteUM5u+depBWMuD3MtqS9ww5gNomlg/qja+eUJ7J4Rf+hZ5//K5v76IBlpLl2FdwM9TwAV5qhBy6fZyjDlG9tp2ze5+L1tSI/7MuRP2T/UGZ+9bq7Wj7vYapyvApLvoECdkH9zw78eC9wy6976ZjGvxX0T7sYan093Tf/3iHxvw==",
            0,
            8,
            "eNrt0k9PgzAUAHA/S8/MUBjTLfHCRhUj+1NocTMeKnQZKzBkOLcYv7srZptL9CAe3IFTX997eS/55UFNeXgDWb6YRjG30+niPApBR9P0tnFpKGBZsCJapHYPdKACCs4SGaoKmLJgV9j+chbwfZiKO77i8f7nsCKYeZus7GjIMVHChzxHOUu445Z90RJzFm7KLXLny7JMJ7xgPVYw0AG2uDUxQeaIoObID+VrkfvMJGUOm65a1gbYEtATOHeE0XI9OiACynyXIrGhKZ34VvY6nqNuAOPx0/V6zrQ19EXo961+uu0zMUKGBzHuE+N5rMdDiiiS+RGd3NBkFhFC5TyTu/YVeFe+s2uqels/stMOdvBE7LBH/83OiX6wa8AjtsaXm9OO3GRlB/cZ/0lOPchpp3113d/L6bVcRblmLVdRzqjlKsq1armKche13F7u8ewDHxYYPA==",
            0,
            [
                [
                    186625757,
                    2239585,
                    -1,
                    1990152,
                    -1,
                    -1,
                    "/10.0.11.14"
                ],
                [
                    186625757,
                    2240393,
                    -1,
                    1990856,
                    -1,
                    1,
                    "/10.0.11.14"
                ]
            ],
            0,
            512,
            0,
            0,
            1,
            0,
            null,
            "eastus",
            null
        ]
    ]
]

AoE4

Request

GET /game/advertisement/getAdvertisements?callNum=301&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3078219&match_ids=%5B50864995%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
match_idsarray[int][132,123]
sessionIDstr

Response

[
    0,
    [
        [
            50864995,
            109775243868517791,
            "0",
            11190194,
            0,
            "3v3 random team",
            "3v3 random team",
            1,
            "generated_map",
            "eNqtUc1OwkAQ9lnmahNbKLRLwqGoQaICAjdDzNpuYcO23bQLWAjP4tW7B+PFt1Ffw/2h5QXcw2a+b2a/2flmDwnms5IT6DgWbGl6S0oZush1EHIkFdFYpwqBc1FUVSOu4kcIHoIALAjM6cLcgjyNoNNse40WclyvYQHLwhV0bAvWVGYadtNtIeRLnQSLcKn7ARzRZbyQJX5b9mOZ0AjihZS+ceXVO1dd/gUH3W7Vc9zrD+TH4EKd7ZHnQ5xIT+D74+339f3n8wv0IJjRHYnu67RicUlyZcZcv+uTdLqTNiHPbzoVc4fLbC3U8I5vuxXbo5ks9DwP1dT05LIhJspNu0KjTa492UPyFGGB1Q8O9duQpPUmMWPZ9vpFjFfFCU8Ir3CSRWaHexWOcbjSI0gxHg/SjRmNx0MiTEiLq+eF2WJBAsYoTkMyIzgxcuGSYKVmH87+AHSdsw8=",
            0,
            16,
            "eNrtmFtvozgUx/ez5Dld2eaSeKR5KKlMiXJpCPfVPBhDFIIhUUNoyWi++xqSbZrORKvVaqbNiCfsc8zxn+Pz07GAqPvX187mcb1IeGzki/WfSdT5BCHEAGK529kWtEjWuXEnjN1OEdOsHoJuZ0HZPw4xe6QsrocIKH0JS7UhT0dxGfOjO0/HtGBLq9o0627qYEkWP8SP5JFm8XjerEu2ZkyjqhnXO++2zTCLC3pHC9r51ImrYeEhvjMRKYK5oY4HT0no4E2YBzzMzZLlfB64JI1PvqdQJ0rgDd/aK99V0hBBK9JJFRGtZIgD6uKdsVo/jwZiH2kCfG8obEpu63hPPXMTIjmZJuDgR7AMiLb0UfHA7mufsjdWm56Rvdjreeh5YCtsi9DFqa2TFQXB1ncj4Vs/vYmztyVzGd07h/fmjc4ldTTO8kkZZmQrNCjivcRIjj77ufRds4y8WTJdzaqpNVMmKyaedrOnj/A+dB3xDZO3GhdMJyJvpuWjJRdrhubAUI/5TcUeYLxKwdTyJfGEh3yYCtNtsY+GD3NtKXID7PvhJnRJVefWSPrlqOqX0R7go8Yn3+W7iEy40LIL9H9bZ1bUBSLHRuMfSQw/zI3tK7120JzJxTiJyEceOJqIA5csT9/EGh61m9x3oRbqzxtRB6u6lozUsXxAtJn1EmvJMqjMXPF9el0b5+dS+xxPy1lG0sAbJ1NeRIfzJFXocSfMOGCVobrwcP6BjqehZM6PdbeJszqXt42PehNhn3A7IyJHuAjvuRW4z9wXOoPBS82ufW8yCHW8oshJHTu6e6khSdv6HucsFXWiY8gSQx1ZBN/efv7c+db9HvEeAgAq+IxwdCIcXiIcSlDqyx8c8HkLeAv47w/4OAe3P4QbgT4CqHcGt3SCG12EG6iK0nbvFu4W7o/dvWUA+3Lv/H4unwCXLt/Pxe0cwZbwlvCW8Hdv39KF9o2RLKlIOqNbOdEtX76b95CqtnC3cLdwf+j2XRP4iu2bV7/WlEtwg5/H9X/VqP4SjfB/aexdgcb+FWjEV6ARgmsQCa9BJLoGkdI1iJSvQaTyLiK//PE3wKGsig==",
            0,
            [
                [
                    50864995,
                    2082027,
                    182,
                    317820,
                    106553,
                    2,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    4018474,
                    83222,
                    3197784,
                    2039321,
                    3,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    7200159,
                    14052,
                    557957,
                    131384,
                    1,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    9243623,
                    69314,
                    2840904,
                    137266,
                    4,
                    "/10.0.11.21"
                ],
                [
                    50864995,
                    11190194,
                    1219,
                    4097972,
                    131384,
                    0,
                    "/10.0.11.21"
                ]
            ],
            0,
            512,
            0,
            300,
            0,
            0,
            null,
            "koreacentral",
            "Korea"
        ]
    ]
]

[GET] /game/advertisement/getLanAdvertisements

AUTHENTICATION

AoE2:DE

Request

GET /game/advertisement/getLanAdvertisements?appBinaryChecksum=71094&callNum=141&connect_id=6mikb1saqrmud2kte7ovswogamd2th&dataChecksum=0&lanServerGuids=%5B123e88e6-88e1-4aa7-ab3c-a2975fc0b04d%5D&lastCallTime=520895&matchType_id=0&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&sessionID=6mikb1saqrmud2kte7ovswogamd2th&versionFlags=56950784 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

appBinaryChecksum=71094&callNum=141&connect_id=6mikb1saqrmud2kte7ovswogamd2th&dataChecksum=0&lanServerGuids=%5B123e88e6-88e1-4aa7-ab3c-a2975fc0b04d%5D&lastCallTime=520895&matchType_id=0&modDLLChecksum=0&modDLLFile=INVALID&modName=INVALID&modVersion=INVALID&sessionID=6mikb1saqrmud2kte7ovswogamd2th&versionFlags=56950784
parametertypevaluecomments
appBinaryChecksumint
callNumint123
connect_idstr
dataChecksumstr0
lanServerGuidsarr[GUID][123e88e6-88e1-4aa7-ab3c-a2975fc0b04d]
lastCallTimetimestamp
matchType_idint0
modDLLChecksumstr0
modDLLFile?INVALID
modName?INVALID
modVersion?INVALID
sessionIDstr
versionFlagsint

Response

[
    0,
    [],
    []
]

[POST] /game/advertisement/host

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/host HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 941
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

advertisementid=-1&appbinarychecksum=4141&automatchPoll_id=-1&callNum=123&connect_id=ccc&datachecksum=-777&description=SESSION_MATCH_KEY&hostid=1&isObservable=1&lastCallTime=111&mapname=no_map&matchtype=19&maxplayers=8&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&observerDelay=180&observerPassword=&options=opts&party=-1&password=&passworded=0&race=123&relayRegion=eastus&serviceType=0&sessionID=zzz&slotinfo=slot&state=-1&statgroup=-1&team=-1&versionFlags=0&visible=0
parametertypevaluecomments
advertisementidint-1
appBinaryChecksumint4141
automatchPoll_idint-1
callNumint123
connect_id
dataChecksumint0
descriptionstr<Lobby_Title>
hostidint1
isObservableint1
lastCallTimetimestamp111
mapnamestrno_map
matchtypeint19
maxplayersint8
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
observerDelayint180
observerPasswordstr“unknown password”
options?opts
partyint-1
password?None
passwordedint/bool0
raceint-1
relayRegionstreastus
serviceTypeint0
sessionIDstr
slotinfo?slotzlib-compressed
stateint-1
statgroupint-1
teamint-1
versionFlagsint0
visibleint0

Response

[
    0,
    186443884,
    "authtoken",
    "51.138.79.234",
    27017,
    27117,
    27217,
    "westeurope", // server location
    [
        [
            186443884,
            233334, // self profile_id
            -1,
            33833,
            0,
            -1,
            "/10.0.11.6"
        ]
    ],
    0,
    "0",
    "SESSION_MATCH_KEY"
]

AoE4

Request

POST /game/advertisement/host HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 1025
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Expect: 100-continue

advertisementid=-1&appbinarychecksum=24916&automatchPoll_id=-1&callNum=271&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&datachecksum=-638535971&description=SESSION_MATCH_KEY&hostid=233334&isObservable=1&lastCallTime=3024155&mapname=no_map&matchtype=19&maxplayers=8&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&observerDelay=180&observerPassword=&options=eNp1jtEKgjAUhnuWXS9wkpZeVhRRQqB0ExJDD7Vym7hZiPjubSuoi7o85/++/5we8RNtteRUF5eE1gfQEhSKjzk2iYIKCs2kQHFvRgdlXQ2rip4N5FnmwcRCipJZzImD3V4lE1AmVkhBKZNtligeE/x9L9W00Rnj8K5qqLhBSe7EfVHuaCdbvZ+vt9DZZhL50SzCxJ9OIg/7XhiQMMg/YgaUq9+qo1rx4v4gw+gJPtNd0w==&party=-1&password=&passworded=0&race=2039321&relayRegion=ukwest&serviceType=0&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&slotinfo=eNrtjkEKwjAQRT3LrKNYl10XoWBBqjtxMaQTHGySkoxCEe8uiaDewE127zMP5lUbdXrAFLzhkVpn/IoHqJeVgigo7F3bvKcQ2sRrBQb17yWgpi+7647uNGYxrQ5FX47z9FGELe0pbANa6g7Z49gTDnPm9PYWM1oSbFAQaoCnKpWlslSWyr9XnhcvuymdYw==&state=-1&statgroup=-1&team=-1&versionFlags=0&visible=0
parametertypevaluecomments
advertisementidint-1
appBinaryChecksumint4141
automatchPoll_idint-1
callNumint123
connect_id
dataChecksumint0
descriptionstr<Lobby_Title>
hostidint1
isObservableint1
lastCallTimetimestamp111
mapnamestrno_map
matchtypeint19
maxplayersint8
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
observerDelayint180
observerPasswordstr“”
optionsstropts
partyint-1
password?None
passwordedint/bool0
raceint2039321
relayRegionstreastus
serviceTypeint0
sessionIDstr
slotinfostrslotzlib-compressed
stateint-1
statgroupint-1
teamint-1
versionFlagsint0
visibleint0

Response

[
    0,
    50865084,
    "authtoken",
    "52.142.146.207",
    27015,
    27115,
    27215,
    "ukwest",
    [
        [
            50865084,
            233334,
            -1,
            4275156,
            2039321,
            -1,
            "/10.0.11.6"
        ]
    ],
    0,
    "0",
    "SESSION_MATCH_KEY"
]

[POST] /game/advertisement/join

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/join HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 328
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

advertisementid=1&appbinarychecksum=4141&callNum=123&connect_id=ccc&datachecksum=-777&lastCallTime=111&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&party=66&password=&race=123&sessionID=zzz&statgroup=-1&team=-1&versionFlags=0
parametertypevaluecomments
advertisementidint-1
appBinaryChecksumint4141
callNumint123
connect_id
dataChecksumint-777
lastCallTimetimestamp111
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
partyint66
password?None
raceint123
sessionIDstr
statgroupint-1
teamint-1
versionFlagsint0

Response

[
    0,
    "/10.0.11.14",
    "20.121.50.111", // probably server lobby is being hosted on?
    27013,
    27113,
    27213,
    [
        [
            186625757, // advertisement_id
            233334, // self profile_id
            -1, // lobby full?
            33833,
            -1, // lobby full?
            -1, // lobby full?
            "/10.0.11.14"
        ]
    ]
]

AoE4

Request

POST /game/advertisement/join HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 333
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

advertisementid=50864995&appbinarychecksum=24916&callNum=302&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&datachecksum=-638535971&lastCallTime=3078735&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&party=50865084&password=&race=2039321&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&statgroup=-1&team=-1&versionFlags=0
parametertypevaluecomments
advertisementidint50864995
appBinaryChecksumint4141
callNumint123
connect_id
dataChecksumint-777
lastCallTimetimestamp111
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
partyint66
password?None
raceint123
sessionIDstr
statgroupint-1
teamint-1
versionFlagsint0

Response

[
    0,
    "/10.0.11.21",
    "20.214.220.152",
    27016,
    27116,
    27216,
    [
        [
            50864995,
            233334,
            -1,
            4275156,
            2039321,
            -1,
            "/10.0.11.21"
        ]
    ]
]

[POST] /game/advertisement/leave

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/leave HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 137
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

advertisementid=1&callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz
parametertypevaluecomments
advertisementidint1
callNumint123
connect_id
lastCallTimetimestamp111
sessionIDstr

Response

[
    0 // result status code
]

AoE4

Request

POST /game/advertisement/leave HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 140
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

advertisementid=50864995&callNum=317&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3087885&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
advertisementidint1
callNumint123
connect_id
lastCallTimetimestamp111
sessionIDstr

Response

[
    0 // result status code
]

[POST] /game/advertisement/startObserving

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/startObserving HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 308
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

advertisementid=1&appbinarychecksum=8888&callNum=123&connect_id=ccc&datachecksum=-888&lastCallTime=111&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&password=&sessionID=zzz&versionFlags=0&withPartySessionID=333
parametertypevaluecomments
advertisementidint-1
appBinaryChecksumint8888
callNumint123
connect_id
dataChecksumint-777
lastCallTimetimestamp111
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
password?None
sessionIDstr
versionFlagsint0
withPartySessionIDint333

Response

[
    0,
    "20.84.120.105",
    27014,
    27114,
    27214,
    [
        [
            551863,
            []
        ],
        [
            539907,
            []
        ]
    ],
    1666489082,
    [
        [
            "551863",
            []
        ],
        [
            "539907",
            []
        ]
    ]
]

AoE4

Request

POST /game/advertisement/startObserving HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 312
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

advertisementid=50865077&appbinarychecksum=24916&callNum=332&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&datachecksum=-638535971&lastCallTime=3098691&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&password=&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&versionFlags=0&withPartySessionID=50865084
parametertypevaluecomments
advertisementidint50865077
appBinaryChecksumint8888
callNumint123
connect_id
dataChecksumint-777
lastCallTimetimestamp111
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
password?None
sessionIDstr
versionFlagsint0
withPartySessionIDint333

Response

[
    0,
    "20.121.139.95",
    27019,
    27119,
    27219,
    [
        [
            9303146,
            []
        ],
        [
            10956109,
            [
                "1668570"
            ]
        ],
        [
            9667303,
            []
        ],
        [
            11117538,
            []
        ],
        [
            7528032,
            []
        ],
        [
            8160212,
            []
        ],
        [
            666022,
            []
        ],
        [
            5946231,
            []
        ]
    ],
    1666826785,
    [
        [
            "9303146",
            [
                [
                    275049953,
                    6,
                    450847,
                    9303146,
                    1,
                    0,
                    "{}",
                    1642599109,
                    2,
                    -1,
                    19,
                    2147483647
                ],
                [
                    275049961,
                    1,
                    451960,
                    9303146,
                    1,
                    0,
                    "{}",
                    1642599109,
                    5,
                    -1,
                    3,
                    2147483647
                ]
            ]
        ],
        [
            "10956109",
            [
                [
                    382684327,
                    12,
                    450847,
                    10956109,
                    1,
                    0,
                    "{}",
                    1660740213,
                    2,
                    -1,
                    19,
                    2147483647
                ],
                [
                    382684323,
                    1,
                    453188,
                    10956109,
                    1,
                    0,
                    "{\"att\":{\"is_new\":{\"val\":\"0\"}},\"dlc\":1}",
                    1660740213,
                    5,
                    -1,
                    19,
                    -1
                ],
                [
                    382684335,
                    2,
                    451960,
                    10956109,
                    1,
                    0,
                    "{}",
                    1660740213,
                    5,
                    -1,
                    3,
                    2147483647
                ]
            ]
        ],
        [
            "9667303",
            [
                [
                    443317086,
                    1,
                    453169,
                    9667303,
                    1,
                    0,
                    "",
                    1666776199,
                    2,
                    -1,
                    19,
                    -1
                ],
                [
                    301985045,
                    2,
                    451960,
                    9667303,
                    1,
                    0,
                    "{}",
                    1645820978,
                    5,
                    -1,
                    3,
                    2147483647
                ],
                [
                    360386054,
                    5,
                    453123,
                    9667303,
                    1,
                    0,
                    "{\"att\":{\"is_new\":{\"val\":\"0\"}}}",
                    1657299576,
                    5,
                    -1,
                    51,
                    -1
                ]
            ]
        ],
        [
            "11117538",
            [
                [
                    400005401,
                    16,
                    451770,
                    11117538,
                    1,
                    0,
                    "{}",
                    1661645022,
                    2,
                    -1,
                    19,
                    2147483647
                ],
                [
                    400005404,
                    1,
                    451960,
                    11117538,
                    1,
                    0,
                    "{}",
                    1661645022,
                    5,
                    -1,
                    3,
                    2147483647
                ]
            ]
        ],
        [
            "7528032",
            [
                [
                    438067935,
                    3,
                    453169,
                    7528032,
                    1,
                    0,
                    "",
                    1666735153,
                    2,
                    -1,
                    19,
                    -1
                ],
                [
                    83404242,
                    2,
                    451960,
                    7528032,
                    1,
                    0,
                    "{}",
                    1635713927,
                    5,
                    -1,
                    3,
                    2147483647
                ],
                [
                    357982065,
                    7,
                    453334,
                    7528032,
                    1,
                    0,
                    "{\"att\":{\"is_new\":{\"val\":\"0\"}}}",
                    1656802924,
                    5,
                    -1,
                    51,
                    -1
                ]
            ]
        ],
        [
            "8160212",
            [
                [
                    438384255,
                    5,
                    453169,
                    8160212,
                    1,
                    0,
                    "",
                    1666737151,
                    2,
                    -1,
                    19,
                    -1
                ],
                [
                    160015526,
                    1,
                    451960,
                    8160212,
                    1,
                    0,
                    "{}",
                    1636681870,
                    5,
                    -1,
                    3,
                    2147483647
                ]
            ]
        ],
        [
            "666022",
            [
                [
                    203924509,
                    14,
                    450847,
                    666022,
                    1,
                    0,
                    "{}",
                    1638032379,
                    2,
                    -1,
                    19,
                    2147483647
                ],
                [
                    203924517,
                    1,
                    451960,
                    666022,
                    1,
                    0,
                    "{}",
                    1638032379,
                    5,
                    -1,
                    3,
                    2147483647
                ]
            ]
        ],
        [
            "5946231",
            [
                [
                    436826555,
                    1,
                    453199,
                    5946231,
                    1,
                    0,
                    "",
                    1666728871,
                    2,
                    -1,
                    19,
                    -1
                ],
                [
                    431450818,
                    1,
                    451960,
                    5946231,
                    1,
                    0,
                    "{}",
                    1666627897,
                    5,
                    -1,
                    3,
                    2147483647
                ]
            ]
        ]
    ]
]

[POST] /game/advertisement/stopObserving

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/stopObserving HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 138
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

advertisementid=1&callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz
parametertypevaluecomments
advertisementidint-1
callNumint123
connect_id
lastCallTimetimestamp111
sessionIDstr

Response

[
    0 // result status code
]

AoE4

Request

POST /game/advertisement/stopObserving HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 140
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

advertisementid=50865077&callNum=350&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3141945&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
advertisementidint-1
callNumint123
connect_id
lastCallTimetimestamp111
sessionIDstr

Response

[
    0 // result status code
]

[POST] /game/advertisement/update

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/update HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 1660
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
Expect: 100-continue

advertisementid=1&appbinarychecksum=4141&automatchPoll_id=-1&callNum=123&connect_id=ccc&datachecksum=-777&description=SESSION_MATCH_KEY&hostid=1&isObservable=1&lastCallTime=111&mapname=no_map&matchtype=19&maxplayers=8&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&observerDelay=180&observerPassword=&options=opts&password=&passworded=0&sessionID=zzz&slotinfo=slot&state=-1&versionFlags=0&visible=0
parametertypevaluecomments
advertisementidint-1
appBinaryChecksumint4141
automatchPoll_idint-1
callNumint123
connect_id
dataChecksumint-777
descriptionstrSESSION_MATCH_KEY
hostidint1
isObservableint1
lastCallTimetimestamp111
mapnamestrno_map
matchtypeint19
maxplayersint8
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
observerDelayint180
observerPassword?None
options?opts
password?None
passwordedint/bool0
sessionIDstr
slotinfo?slot
stateint-1
versionFlagsint0
visibleint0

Response

[
    0,
    [
        186430525,
        109775243524512500,
        "0",
        233334,
        0,
        "TEST",
        "TEST",
        0,
        "my map",
        "eNpFUs2OgyAQfpc+gVQl6aEHGmxDUiC2mK17rGncxW7tZaPy9Dsw4HqaOPP9zDdsLn3N4NtKOzo2QcUZlSz+c+/fgy/54LSVE/YrekdMofm7xH+CyjpizDgdfMXbSVtW+VIbBhjpSwL/7r5QRtLrUD6vp51oPoi73J7kvOxeHfmqH7fj7dNlO+RuqZqagAWPuYx+lQFvQaffalsdUaelZ1OhJu/oAz3l2nYEufq0G1Fu9bnVryFglPWY4LNM3qXxeQT9GXab5RTwpeKAD9n0RH9nc6yzUCNvAb4i70BV9CL5SLDfzcm3cpCfYUfUk1SZpF1DrqitDOzOWqwt+LBNnOlS9rPmY4HcFfivBHJLzz1JHjntet/F74O+xaJtG/MQcGuBXmxNlWUn5AEvRpA4D3cUaX7NX0J+yoqoA1ljVjl4Lw59mC09Luq7/xt06w20Eel9Oc3Xfq5/CswSbhzxGbyHBfvDvPZdn/C5Nu8S+02xvkXu32IX3i/sX0IuUaNf/mdkujkBjue93+83f9Wl8QA=",
        0,
        8,
        "eNrVkVtPgzAYhv0tvQZDAWdC4g2MKkYWQShuxosKJes4BlBHFv+7K2ZTMhNDlsxw9R3b783zQll42oCyKmKWUiuPi3MWAU1W1ImiCqBuSMOK3JoCDQqgoSTjqSSAmIS7wbaqSEj3aZ7c0Tea7iubNOHSa8tuQ+TfsIze0wpVJKP2Q7fHapeSqO2u8JuvddfOaEOmpCFAA1Zyq7s+0h0fqU4Q8Wh6HtL9rufqTtLNZtSEPBoYJS3O8SIwy/f5ChkhTOcv1+sVkdcwSKJgZiJ3u6e7JkQ8Onhxg7Ml833M3+u2YV2BD+EQjQh7WMQfXGCPC5/swHzlR5GRvsnAHpmhKuUTqZT/9M9/LA/8I4P9S3/3jw33TzkRGeko/9RRqLwYhcrJKFRe/pPK57NPLoDn9g==",
        0,
        [
            [
                186430525,
                233334,
                -1,
                33833,
                -1,
                -1,
                "/10.0.11.21"
            ]
        ],
        0,
        512,
        0,
        0,
        1,
        0,
        null,
        "westeurope",
        null
    ]
]

AoE4

Request

POST /game/advertisement/update HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 1668
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Expect: 100-continue

advertisementid=50865084&appbinarychecksum=24916&automatchPoll_id=-1&callNum=274&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&datachecksum=-638535971&description=SESSION_MATCH_KEY&hostid=233334&isObservable=1&lastCallTime=3026321&mapname=no_map&matchtype=19&maxplayers=8&moddllchecksum=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&observerDelay=180&observerPassword=&options=eNp1jtEKgjAUhnuWXS9wkpZeVhRRQqB0ExJDD7Vym7hZiPjubSuoi7o85/++/5we8RNtteRUF5eE1gfQEhSKjzk2iYIKCs2kQHFvRgdlXQ2rip4N5FnmwcRCipJZzImD3V4lE1AmVkhBKZNtligeE/x9L9W00Rnj8K5qqLhBSe7EfVHuaCdbvZ+vt9DZZhL50SzCxJ9OIg/7XhiQMMg/YgaUq9+qo1rx4v4gw+gJPtNd0w==&password=&passworded=0&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&slotinfo=eNrtU02PmzAQ7W/hnFR8LOl6pT0sWZmAErIhfFc92IYIgyEoEBJS9b/XkDS7TbXqqZdqTx7PG888v5mR5NHX70K1224oS4xys/1MY+FBVu4myt1IqBvU0G1pPAsP0khoElT0pjgSNoj8Avhth0jSm7KoAEWWekeZz5M2YRe4zBeoIanTVUPcuE9Gi+Ql2cEdKpLFeoijtZ2guBvsvvK+HswiadAzapDwICSd2QQy29sybKK1MVlMDxR7oMJlxHBpt6Rk68iHefKKHbAO1Sgwb/1d6Ks5liUn1mEXQ60lMhORD/ZGtj3Op7yOYolhYHKfWro6OKHArrB8R5dUPOOy1EZQS0O5eSGzHlNPRlZ9MYqrv7/jIBBr7ttgH+SuDjMkRnXoxxzbHm7ynFzFTuOZd363HnimyNMYKa0WF7DmHFT+jhr0grnHNvTtNg5WdJmtuqWzUq2M8NMdaoYyOGHf43+wbjluiA65brYTyinjMaY9NSYXfXNeQ1xkubh0QoWf0lkPWyW6y+to4HzXUq6N6M7MCvuw67U16H077+7b+CSCC8dD6LN9DC3Guewj/W9xdod8kWtsDPhcIeBlbdRv+LrR0JN381CuRxl5Gs8jpaTMb3KZF+42C31Jw/qx4nOQ9bNk5J4TilBbOddcKSkkdeXz/+n9bPzelx7zAq0kBcyjYEGXrInP/YQdDpiHCyaSzpj40rn/kQ6WWLHXl7mrkqLX8mnAUGBxv8XcAnKNQINnzIn8Iws5z2h6ndltGFhTrIMMyV7uufHzdYYUrQ4DxkjO50QHEqHGZO6Y4Onp8VH4MfpzwfsNfLPc43e3eyy9rvf4H272B8sPlh8s/3eW3z79BF44tSI=&state=0&versionFlags=0&visible=0
parametertypevaluecomments
advertisementidint-1
appBinaryChecksumint4141
automatchPoll_idint-1
callNumint123
connect_id
dataChecksumint-777
descriptionstrSESSION_MATCH_KEY
hostidint1
isObservableint1
lastCallTimetimestamp111
mapnamestrno_map
matchtypeint19
maxplayersint8
moddllchecksumstr0
moddllfileINVALID
modnameINVALID
modversionINVALID
observerDelayint180
observerPasswordstr
optionsstropts
passwordstr
passwordedint/bool0
sessionIDstr
slotinfo?slot
stateint0
versionFlagsint0
visibleint0

Response

[
    0,
    [
        50865084,
        109775243868575631,
        "0",
        233334,
        0,
        "SESSION_MATCH_KEY",
        "SESSION_MATCH_KEY",
        0,
        "no_map",
        "eNp1jtEKgjAUhnuWXS9wkpZeVhRRQqB0ExJDD7Vym7hZiPjubSuoi7o85/++/5we8RNtteRUF5eE1gfQEhSKjzk2iYIKCs2kQHFvRgdlXQ2rip4N5FnmwcRCipJZzImD3V4lE1AmVkhBKZNtligeE/x9L9W00Rnj8K5qqLhBSe7EfVHuaCdbvZ+vt9DZZhL50SzCxJ9OIg/7XhiQMMg/YgaUq9+qo1rx4v4gw+gJPtNd0w==",
        0,
        8,
        "eNrtU02PmzAQ7W/hnFR8LOl6pT0sWZmAErIhfFc92IYIgyEoEBJS9b/XkDS7TbXqqZdqTx7PG888v5mR5NHX70K1224oS4xys/1MY+FBVu4myt1IqBvU0G1pPAsP0khoElT0pjgSNoj8Avhth0jSm7KoAEWWekeZz5M2YRe4zBeoIanTVUPcuE9Gi+Ql2cEdKpLFeoijtZ2guBvsvvK+HswiadAzapDwICSd2QQy29sybKK1MVlMDxR7oMJlxHBpt6Rk68iHefKKHbAO1Sgwb/1d6Ks5liUn1mEXQ60lMhORD/ZGtj3Op7yOYolhYHKfWro6OKHArrB8R5dUPOOy1EZQS0O5eSGzHlNPRlZ9MYqrv7/jIBBr7ttgH+SuDjMkRnXoxxzbHm7ynFzFTuOZd363HnimyNMYKa0WF7DmHFT+jhr0grnHNvTtNg5WdJmtuqWzUq2M8NMdaoYyOGHf43+wbjluiA65brYTyinjMaY9NSYXfXNeQ1xkubh0QoWf0lkPWyW6y+to4HzXUq6N6M7MCvuw67U16H077+7b+CSCC8dD6LN9DC3Guewj/W9xdod8kWtsDPhcIeBlbdRv+LrR0JN381CuRxl5Gs8jpaTMb3KZF+42C31Jw/qx4nOQ9bNk5J4TilBbOddcKSkkdeXz/+n9bPzelx7zAq0kBcyjYEGXrInP/YQdDpiHCyaSzpj40rn/kQ6WWLHXl7mrkqLX8mnAUGBxv8XcAnKNQINnzIn8Iws5z2h6ndltGFhTrIMMyV7uufHzdYYUrQ4DxkjO50QHEqHGZO6Y4Onp8VH4MfpzwfsNfLPc43e3eyy9rvf4H272B8sPlh8s/3eW3z79BF44tSI=",
        19,
        [
            [
                50865084,
                233334,
                -1,
                4275156,
                2039321,
                0,
                "/10.0.11.6"
            ]
        ],
        0,
        512,
        1,
        180,
        0,
        0,
        null,
        "ukwest",
        "UK"
    ]
]

[POST] /game/advertisement/updatePlatformLobbyID

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/updatePlatformLobbyID HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 163
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&matchID=555&platformlobbyID=1&sessionID=zzz
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp111
matchIDint555
platformlobbyIDint1
sessionIDstr

Response

[
    0
]

AoE4

Request

POST /game/advertisement/updatePlatformLobbyID HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 167
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=273&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3025521&matchID=50865084&platformlobbyID=109775243868575631&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp111
matchIDint555
platformlobbyIDint1
sessionIDstr

Response

[
    0
]

[POST] /game/advertisement/updateState (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/advertisement/updateState HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 146
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

advertisementid=1&callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&state=1
parametertypevaluecomments
advertisementidint1
callNumint123
connect_id
lastCallTimetimestamp111
sessionIDstr

Response

RESPONSE_TEMPLATE

[POST] /game/advertisement/updateTags

AUTHENTICATION

AoE2:DE

Request

POST /game/advertisement/updateTags HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 476

advertisementid=186430525&callNum=51&connect_id=6mikb1saqrmud2kte7ovswogamd2th&lastCallTime=263636&numericTagNames=["CheatsEnabled","Dataset","TreatyLength","Ranked","Password"]&numericTagValues=[0,1,0,0,0]&sessionID=6mikb1saqrmud2kte7ovswogamd2th&stringTagNames=["GameType","MapStyleType","Speed","VictoryType","Server"]&stringTagValues=["0","0","2","9","westeurope"]
parametertypevaluecomments
advertisementidint-1
callNumint123
connect_id
lastCallTimetimestamp111
numericTagNamesarr[enum/str][“CheatsEnabled”,“Dataset”,“TreatyLength”,“Ranked”,“Password”]
numericTagValuesarr[int][0,1,0,0,0]
sessionIDstr
stringTagNamesarr[enum/str][“GameType”,“MapStyleType”,“Speed”,“VictoryType”,“Server”]
stringTagValuesarr[str][“0”,“0”,“2”,“9”,“westeurope”]

Response

[
    0
]

Automatch Endpoints (Legacy)

Legacy endpoints for ranked matchmaking.

Authentication: All endpoints in this section require Steam authentication.

Note: See automatch2 for newer matchmaking endpoints.

Endpoints

EndpointMethodDescription
getAutomatchMapGETGet available maps for automatch

[GET] /game/automatch/getAutomatchMap

AUTHENTICATION

AoE2:DE

Request

GET /game/automatch/getAutomatchMap?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            1,
            "AfricanClearing.rms", // map_name
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            2, // map_id
            "Arabia.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            3,
            "Arena.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            4,
            "FourLakes.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            5,
            "Islands.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            6,
            "nomad.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            7,
            "Yucatan.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            8,
            "Arabia.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            9,
            "Arabia.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            10,
            "Arabia.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            11,
            "Arena.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            12,
            "Arena.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            13,
            "Arena.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            14,
            "Black_Forest.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            15,
            "Black_Forest.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            16,
            "Black_Forest.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            17,
            "Fortress.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            18,
            "Fortress.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            19,
            "Fortress.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            20,
            "Mediterranean.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            21,
            "Mediterranean.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            22,
            "Mediterranean.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            23,
            "megarandom.rms2",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            24,
            "megarandom.rms2",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            25,
            "megarandom.rms2",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            26,
            "Michi.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            27,
            "Michi.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            28,
            "Michi.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            29,
            "Nile Delta.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            30,
            "Nile Delta.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            31,
            "Nile Delta.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            32,
            "nomad.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            33,
            "nomad.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            34,
            "nomad.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            35,
            "Arabia.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            36,
            "Ghost_Lake.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            37,
            "goldenpit.rms2",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            38,
            "GoldenSwamp.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            39,
            "Kilimanjaro.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            40,
            "valley.rms2",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            41,
            "acropolis.rms2",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            42,
            "FourLakes.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            43,
            "Serengeti.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            44,
            "Arabia.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            45,
            "Arabia.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            46,
            "Arabia.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            47,
            "Ghost_Lake.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            48,
            "Ghost_Lake.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            49,
            "Ghost_Lake.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            50,
            "goldenpit.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            51,
            "goldenpit.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            52,
            "goldenpit.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            53,
            "GoldenSwamp.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            54,
            "GoldenSwamp.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            55,
            "GoldenSwamp.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            56,
            "Kilimanjaro.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            57,
            "Kilimanjaro.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            58,
            "Kilimanjaro.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            59,
            "valley.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            60,
            "valley.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            61,
            "valley.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            62,
            "cenotes.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            63,
            "cenotes.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            64,
            "cenotes.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            65,
            "lombardia.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            66,
            "lombardia.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            67,
            "lombardia.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            68,
            "Oasis.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            69,
            "Oasis.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            70,
            "Oasis.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            71,
            "Acclivity.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            72,
            "Arabia.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            73,
            "Atacama.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            74,
            "Enclosed.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            75,
            "FrigidLake.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            76,
            "Kawasan.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            77,
            "Morass.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            78,
            "NorthernIsles.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            79,
            "Shoals.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            80,
            "Acclivity.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            81,
            "Acclivity.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            82,
            "Acclivity.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            83,
            "Acclivity.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            84,
            "Acclivity.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            85,
            "Acclivity.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            86,
            "Acclivity.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            87,
            "Acclivity.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            88,
            "Acclivity.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            89,
            "Acclivity.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            90,
            "Acclivity.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            91,
            "Acclivity.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            92,
            "Acclivity.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            93,
            "Acclivity.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            94,
            "Acclivity.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            95,
            "Acclivity.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            96,
            "Acclivity.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            97,
            "Acclivity.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            98,
            "Acclivity.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            99,
            "Acclivity.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            100,
            "Acclivity.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            101,
            "Arabia.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            102,
            "Arabia.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            103,
            "Arabia.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            104,
            "Arabia.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            105,
            "Arabia.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            106,
            "Arabia.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            107,
            "Arabia.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            108,
            "Arabia.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            109,
            "Arabia.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            110,
            "Arabia.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            111,
            "Arabia.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            112,
            "Arabia.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            113,
            "Arabia.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            114,
            "Arabia.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            115,
            "Arabia.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            116,
            "Arabia.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            117,
            "Arabia.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            118,
            "Arabia.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            119,
            "Arabia.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            120,
            "Arabia.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            121,
            "Arabia.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            122,
            "Atacama.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            123,
            "Atacama.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            124,
            "Atacama.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            125,
            "Atacama.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            126,
            "Atacama.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            127,
            "Atacama.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            128,
            "Atacama.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            129,
            "Atacama.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            130,
            "Atacama.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            131,
            "Atacama.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            132,
            "Atacama.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            133,
            "Atacama.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            134,
            "Atacama.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            135,
            "Atacama.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            136,
            "Atacama.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            137,
            "Atacama.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            138,
            "Atacama.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            139,
            "Atacama.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            140,
            "Atacama.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            141,
            "Atacama.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            142,
            "Atacama.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            143,
            "Enclosed.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            144,
            "Enclosed.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            145,
            "Enclosed.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            146,
            "Enclosed.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            147,
            "Enclosed.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            148,
            "Enclosed.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            149,
            "Enclosed.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            150,
            "Enclosed.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            151,
            "Enclosed.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            152,
            "Enclosed.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            153,
            "Enclosed.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            154,
            "Enclosed.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            155,
            "Enclosed.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            156,
            "Enclosed.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            157,
            "Enclosed.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            158,
            "Enclosed.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            159,
            "Enclosed.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            160,
            "Enclosed.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            161,
            "Enclosed.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            162,
            "Enclosed.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            163,
            "Enclosed.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            164,
            "FrigidLake.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            165,
            "FrigidLake.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            166,
            "FrigidLake.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            167,
            "FrigidLake.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            168,
            "FrigidLake.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            169,
            "FrigidLake.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            170,
            "FrigidLake.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            171,
            "FrigidLake.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            172,
            "FrigidLake.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            173,
            "FrigidLake.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            174,
            "FrigidLake.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            175,
            "FrigidLake.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            176,
            "FrigidLake.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            177,
            "FrigidLake.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            178,
            "FrigidLake.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            179,
            "FrigidLake.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            180,
            "FrigidLake.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            181,
            "FrigidLake.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            182,
            "FrigidLake.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            183,
            "FrigidLake.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            184,
            "FrigidLake.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            185,
            "Kawasan.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            186,
            "Kawasan.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            187,
            "Kawasan.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            188,
            "Kawasan.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            189,
            "Kawasan.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            190,
            "Kawasan.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            191,
            "Kawasan.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            192,
            "Kawasan.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            193,
            "Kawasan.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            194,
            "Kawasan.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            195,
            "Kawasan.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            196,
            "Kawasan.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            197,
            "Kawasan.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            198,
            "Kawasan.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            199,
            "Kawasan.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            200,
            "Kawasan.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            201,
            "Kawasan.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            202,
            "Kawasan.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            203,
            "Kawasan.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            204,
            "Kawasan.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            205,
            "Kawasan.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            206,
            "Morass.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            207,
            "Morass.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            208,
            "Morass.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            209,
            "Morass.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            210,
            "Morass.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            211,
            "Morass.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            212,
            "Morass.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            213,
            "Morass.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            214,
            "Morass.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            215,
            "Morass.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            216,
            "Morass.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            217,
            "Morass.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            218,
            "Morass.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            219,
            "Morass.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            220,
            "Morass.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            221,
            "Morass.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            222,
            "Morass.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            223,
            "Morass.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            224,
            "Morass.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            225,
            "Morass.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            226,
            "Morass.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            227,
            "NorthernIsles.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            228,
            "NorthernIsles.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            229,
            "NorthernIsles.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            230,
            "NorthernIsles.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            231,
            "NorthernIsles.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            232,
            "NorthernIsles.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            233,
            "NorthernIsles.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            234,
            "NorthernIsles.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            235,
            "NorthernIsles.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            236,
            "NorthernIsles.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            237,
            "NorthernIsles.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            238,
            "NorthernIsles.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            239,
            "NorthernIsles.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            240,
            "NorthernIsles.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            241,
            "NorthernIsles.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            242,
            "NorthernIsles.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            243,
            "NorthernIsles.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            244,
            "NorthernIsles.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            245,
            "NorthernIsles.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            246,
            "NorthernIsles.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            247,
            "NorthernIsles.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            248,
            "Shoals.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            249,
            "Shoals.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            250,
            "Shoals.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            251,
            "Shoals.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            252,
            "Shoals.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            253,
            "Shoals.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            254,
            "Shoals.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            255,
            "Shoals.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            256,
            "Shoals.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            257,
            "Shoals.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            258,
            "Shoals.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            259,
            "Shoals.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            260,
            "Shoals.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            261,
            "Shoals.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            262,
            "Shoals.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            263,
            "Shoals.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            264,
            "Shoals.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            265,
            "Shoals.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            266,
            "Shoals.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            267,
            "Shoals.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            268,
            "Shoals.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            269,
            "AfricanClearing.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            270,
            "Arabia.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            271,
            "Arena.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            272,
            "FourLakes.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            273,
            "Islands.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            274,
            "nomad.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            275,
            "Yucatan.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            276,
            "Arabia.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            277,
            "Arabia.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            278,
            "Arabia.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            279,
            "Arabia.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            280,
            "Arabia.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            281,
            "Arabia.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            282,
            "Arabia.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            283,
            "Arabia.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            284,
            "Arabia.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            285,
            "Arabia.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            286,
            "Arabia.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            287,
            "Arabia.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            288,
            "Arabia.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            289,
            "Arabia.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            290,
            "Arabia.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            291,
            "Arabia.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            292,
            "Arabia.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            293,
            "Arabia.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            294,
            "Arabia.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            295,
            "Arabia.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            296,
            "Arabia.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            297,
            "Arena.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            298,
            "Arena.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            299,
            "Arena.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            300,
            "Arena.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            301,
            "Arena.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            302,
            "Arena.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            303,
            "Arena.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            304,
            "Arena.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            305,
            "Arena.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            306,
            "Arena.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            307,
            "Arena.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            308,
            "Arena.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            309,
            "Arena.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            310,
            "Arena.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            311,
            "Arena.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            312,
            "Arena.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            313,
            "Arena.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            314,
            "Arena.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            315,
            "Arena.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            316,
            "Arena.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            317,
            "Arena.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            318,
            "Black_Forest.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            319,
            "Black_Forest.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            320,
            "Black_Forest.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            321,
            "Black_Forest.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            322,
            "Black_Forest.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            323,
            "Black_Forest.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            324,
            "Black_Forest.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            325,
            "Black_Forest.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            326,
            "Black_Forest.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            327,
            "Black_Forest.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            328,
            "Black_Forest.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            329,
            "Black_Forest.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            330,
            "Black_Forest.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            331,
            "Black_Forest.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            332,
            "Black_Forest.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            333,
            "Black_Forest.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            334,
            "Black_Forest.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            335,
            "Black_Forest.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            336,
            "Black_Forest.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            337,
            "Black_Forest.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            338,
            "Black_Forest.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            339,
            "Fortress.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            340,
            "Fortress.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            341,
            "Fortress.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            342,
            "Fortress.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            343,
            "Fortress.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            344,
            "Fortress.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            345,
            "Fortress.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            346,
            "Fortress.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            347,
            "Fortress.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            348,
            "Fortress.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            349,
            "Fortress.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            350,
            "Fortress.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            351,
            "Fortress.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            352,
            "Fortress.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            353,
            "Fortress.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            354,
            "Fortress.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            355,
            "Fortress.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            356,
            "Fortress.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            357,
            "Fortress.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            358,
            "Fortress.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            359,
            "Fortress.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            360,
            "Mediterranean.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            361,
            "Mediterranean.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            362,
            "Mediterranean.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            363,
            "Mediterranean.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            364,
            "Mediterranean.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            365,
            "Mediterranean.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            366,
            "Mediterranean.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            367,
            "Mediterranean.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            368,
            "Mediterranean.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            369,
            "Mediterranean.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            370,
            "Mediterranean.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            371,
            "Mediterranean.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            372,
            "Mediterranean.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            373,
            "Mediterranean.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            374,
            "Mediterranean.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            375,
            "Mediterranean.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            376,
            "Mediterranean.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            377,
            "Mediterranean.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            378,
            "Mediterranean.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            379,
            "Mediterranean.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            380,
            "Mediterranean.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            381,
            "megarandom.rms2",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            382,
            "megarandom.rms2",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            383,
            "megarandom.rms2",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            384,
            "megarandom.rms2",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            385,
            "megarandom.rms2",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            386,
            "megarandom.rms2",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            387,
            "megarandom.rms2",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            388,
            "megarandom.rms2",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            389,
            "megarandom.rms2",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            390,
            "megarandom.rms2",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            391,
            "megarandom.rms2",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            392,
            "megarandom.rms2",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            393,
            "megarandom.rms2",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            394,
            "megarandom.rms2",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            395,
            "megarandom.rms2",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            396,
            "megarandom.rms2",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            397,
            "megarandom.rms2",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            398,
            "megarandom.rms2",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            399,
            "megarandom.rms2",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            400,
            "megarandom.rms2",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            401,
            "megarandom.rms2",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            402,
            "Michi.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            403,
            "Michi.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            404,
            "Michi.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            405,
            "Michi.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            406,
            "Michi.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            407,
            "Michi.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            408,
            "Michi.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            409,
            "Michi.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            410,
            "Michi.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            411,
            "Michi.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            412,
            "Michi.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            413,
            "Michi.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            414,
            "Michi.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            415,
            "Michi.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            416,
            "Michi.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            417,
            "Michi.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            418,
            "Michi.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            419,
            "Michi.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            420,
            "Michi.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            421,
            "Michi.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            422,
            "Michi.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            423,
            "Nile Delta.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            424,
            "Nile Delta.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            425,
            "Nile Delta.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            426,
            "Nile Delta.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            427,
            "Nile Delta.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            428,
            "Nile Delta.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            429,
            "Nile Delta.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            430,
            "Nile Delta.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            431,
            "Nile Delta.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            432,
            "Nile Delta.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            433,
            "Nile Delta.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            434,
            "Nile Delta.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            435,
            "Nile Delta.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            436,
            "Nile Delta.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            437,
            "Nile Delta.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            438,
            "Nile Delta.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            439,
            "Nile Delta.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            440,
            "Nile Delta.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            441,
            "Nile Delta.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            442,
            "Nile Delta.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            443,
            "Nile Delta.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            444,
            "nomad.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            445,
            "nomad.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            446,
            "nomad.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            447,
            "nomad.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            448,
            "nomad.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            449,
            "nomad.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            450,
            "nomad.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            451,
            "nomad.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            452,
            "nomad.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            453,
            "nomad.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            454,
            "nomad.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            455,
            "nomad.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            456,
            "nomad.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            457,
            "nomad.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            458,
            "nomad.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            459,
            "nomad.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            460,
            "nomad.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            461,
            "nomad.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            462,
            "nomad.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            463,
            "nomad.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            464,
            "nomad.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            465,
            "BR_BattleOnTheIce.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            466,
            "BR_ElDorado.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            467,
            "BR_FallOfAxum.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            468,
            "BR_FallOfRome.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            469,
            "BR_TheMajapahitEmpire.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            470,
            "Acclivity.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            471,
            "Arabia.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            472,
            "Atacama.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            473,
            "Enclosed.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            474,
            "FrigidLake.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            475,
            "Kawasan.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            476,
            "Morass.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            477,
            "NorthernIsles.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            478,
            "Shoals.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            479,
            "Acclivity.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            480,
            "Acclivity.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            481,
            "Acclivity.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            482,
            "Arabia.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            483,
            "Arabia.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            484,
            "Arabia.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            485,
            "Atacama.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            486,
            "Atacama.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            487,
            "Atacama.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            488,
            "Enclosed.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            489,
            "Enclosed.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            490,
            "Enclosed.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            491,
            "FrigidLake.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            492,
            "FrigidLake.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            493,
            "FrigidLake.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            494,
            "Kawasan.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            495,
            "Kawasan.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            496,
            "Kawasan.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            497,
            "Morass.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            498,
            "Morass.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            499,
            "Morass.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            500,
            "NorthernIsles.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            501,
            "NorthernIsles.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            502,
            "NorthernIsles.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            503,
            "Shoals.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            504,
            "Shoals.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            505,
            "Shoals.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ]
    ]
]

AoE4

Request

GET /game/automatch/getAutomatchMap?callNum=14&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=7072&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            19,
            "altai_tiny",
            2,
            2,
            1,
            "Altai",
            "",
            ""
        ],
        [
            24,
            "altai_tiny",
            2,
            2,
            1,
            "Altai",
            "",
            ""
        ],
        [
            47,
            "ancient_spires_tiny",
            2,
            2,
            1,
            "Ancient Spires",
            "",
            ""
        ],
        [
            179,
            "dry_arabia_tiny",
            2,
            2,
            1,
            "Dry Arabia",
            "",
            ""
        ],
        [
            203,
            "forest_ponds_tiny",
            2,
            2,
            1,
            null,
            "",
            ""
        ],
        [
            251,
            "hideout_tiny",
            2,
            2,
            1,
            null,
            "",
            ""
        ],
        [
            299,
            "hill_and_dale_tiny",
            2,
            2,
            1,
            "Hill and Dale",
            "",
            ""
        ],
        [
            347,
            "lipany_tiny",
            2,
            2,
            1,
            "Lipany",
            "",
            ""
        ],
        [
            371,
            "mediterranean_tiny",
            2,
            2,
            1,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            539,
            "pit_tiny",
            2,
            2,
            1,
            "The Pit",
            "",
            ""
        ],
        [
            17,
            "altai_small",
            2,
            4,
            2,
            "Altai",
            "",
            ""
        ],
        [
            41,
            "ancient_spires_small",
            2,
            4,
            2,
            "Ancient Spires",
            "",
            ""
        ],
        [
            173,
            "dry_arabia_small",
            2,
            4,
            2,
            "Dry Arabia",
            "",
            ""
        ],
        [
            197,
            "forest_ponds_small",
            2,
            4,
            2,
            null,
            "",
            ""
        ],
        [
            245,
            "hideout_small",
            2,
            4,
            2,
            null,
            "",
            ""
        ],
        [
            293,
            "hill_and_dale_small",
            2,
            4,
            2,
            "Hill and Dale",
            "",
            ""
        ],
        [
            341,
            "lipany_small",
            2,
            4,
            2,
            "Lipany",
            "",
            ""
        ],
        [
            365,
            "mediterranean_small",
            2,
            4,
            2,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            533,
            "pit_small",
            2,
            4,
            2,
            "The Pit",
            "",
            ""
        ],
        [
            11,
            "altai_medium",
            2,
            6,
            3,
            "Altai",
            "",
            ""
        ],
        [
            35,
            "ancient_spires_medium",
            2,
            6,
            3,
            "Ancient Spires",
            "",
            ""
        ],
        [
            167,
            "dry_arabia_medium",
            2,
            6,
            3,
            "Dry Arabia",
            "",
            ""
        ],
        [
            191,
            "forest_ponds_medium",
            2,
            6,
            3,
            null,
            "",
            ""
        ],
        [
            239,
            "hideout_medium",
            2,
            6,
            3,
            null,
            "",
            ""
        ],
        [
            287,
            "hill_and_dale_medium",
            2,
            6,
            3,
            "Hill and Dale",
            "",
            ""
        ],
        [
            335,
            "lipany_medium",
            2,
            6,
            3,
            "Lipany",
            "",
            ""
        ],
        [
            359,
            "mediterranean_medium",
            2,
            6,
            3,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            527,
            "pit_medium",
            2,
            6,
            3,
            "The Pit",
            "",
            ""
        ],
        [
            5,
            "altai_large",
            2,
            8,
            4,
            "Altai",
            "",
            ""
        ],
        [
            29,
            "ancient_spires_large",
            2,
            8,
            4,
            "Ancient Spires",
            "",
            ""
        ],
        [
            161,
            "dry_arabia_large",
            2,
            8,
            4,
            "Dry Arabia",
            "",
            ""
        ],
        [
            185,
            "forest_ponds_large",
            2,
            8,
            4,
            null,
            "",
            ""
        ],
        [
            233,
            "hideout_large",
            2,
            8,
            4,
            null,
            "",
            ""
        ],
        [
            281,
            "hill_and_dale_large",
            2,
            8,
            4,
            "Hill and Dale",
            "",
            ""
        ],
        [
            329,
            "lipany_large",
            2,
            8,
            4,
            "Lipany",
            "",
            ""
        ],
        [
            353,
            "mediterranean_large",
            2,
            8,
            4,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            521,
            "pit_large",
            2,
            8,
            4,
            "The Pit",
            "",
            ""
        ],
        [
            13,
            "altai_small",
            2,
            4,
            5,
            "Altai",
            "",
            ""
        ],
        [
            37,
            "ancient_spires_small",
            2,
            4,
            5,
            "Ancient Spires",
            "",
            ""
        ],
        [
            61,
            "archipelago_medium",
            2,
            4,
            5,
            "Archipelago",
            "",
            ""
        ],
        [
            121,
            "boulder_bay_small",
            2,
            4,
            5,
            "Boulder Bay",
            "",
            ""
        ],
        [
            169,
            "dry_arabia_small",
            2,
            4,
            5,
            "Dry Arabia",
            "",
            ""
        ],
        [
            193,
            "forest_ponds_small",
            2,
            4,
            5,
            null,
            "",
            ""
        ],
        [
            217,
            "french_pass_small",
            2,
            4,
            5,
            "French Pass",
            "",
            ""
        ],
        [
            241,
            "hideout_small",
            2,
            4,
            5,
            null,
            "",
            ""
        ],
        [
            265,
            "high_view_small",
            2,
            4,
            5,
            "High View",
            "",
            ""
        ],
        [
            289,
            "hill_and_dale_small",
            2,
            4,
            5,
            "Hill and Dale",
            "",
            ""
        ],
        [
            313,
            "king_of_hill_small",
            2,
            4,
            5,
            "King of Hill",
            "",
            ""
        ],
        [
            337,
            "lipany_small",
            2,
            4,
            5,
            "Lipany",
            "",
            ""
        ],
        [
            361,
            "mediterranean_small",
            2,
            4,
            5,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            385,
            "megarandom_small",
            2,
            4,
            5,
            "MegaRandom",
            "",
            ""
        ],
        [
            409,
            "mongolian_heights_small",
            2,
            4,
            5,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            433,
            "mountain_clearing_small",
            2,
            4,
            5,
            null,
            "",
            ""
        ],
        [
            457,
            "mountain_pass_small",
            2,
            4,
            5,
            "Mountain Pass",
            "",
            ""
        ],
        [
            481,
            "nagari_small",
            2,
            4,
            5,
            "Nagari",
            "",
            ""
        ],
        [
            505,
            "oasis_small",
            2,
            4,
            5,
            "Oasis",
            "",
            ""
        ],
        [
            529,
            "pit_small",
            2,
            4,
            5,
            "The Pit",
            "",
            ""
        ],
        [
            553,
            "prairie_small",
            2,
            4,
            5,
            null,
            "",
            ""
        ],
        [
            577,
            "rolling_rivers_small",
            2,
            4,
            5,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            601,
            "warring_islands_medium",
            2,
            4,
            5,
            "Warring Islands",
            "",
            ""
        ],
        [
            14,
            "altai_small",
            2,
            4,
            6,
            "Altai",
            "",
            ""
        ],
        [
            38,
            "ancient_spires_small",
            2,
            4,
            6,
            "Ancient Spires",
            "",
            ""
        ],
        [
            62,
            "archipelago_medium",
            2,
            4,
            6,
            "Archipelago",
            "",
            ""
        ],
        [
            122,
            "boulder_bay_small",
            2,
            4,
            6,
            "Boulder Bay",
            "",
            ""
        ],
        [
            170,
            "dry_arabia_small",
            2,
            4,
            6,
            "Dry Arabia",
            "",
            ""
        ],
        [
            194,
            "forest_ponds_small",
            2,
            4,
            6,
            null,
            "",
            ""
        ],
        [
            218,
            "french_pass_small",
            2,
            4,
            6,
            "French Pass",
            "",
            ""
        ],
        [
            242,
            "hideout_small",
            2,
            4,
            6,
            null,
            "",
            ""
        ],
        [
            266,
            "high_view_small",
            2,
            4,
            6,
            "High View",
            "",
            ""
        ],
        [
            290,
            "hill_and_dale_small",
            2,
            4,
            6,
            "Hill and Dale",
            "",
            ""
        ],
        [
            314,
            "king_of_hill_small",
            2,
            4,
            6,
            "King of Hill",
            "",
            ""
        ],
        [
            338,
            "lipany_small",
            2,
            4,
            6,
            "Lipany",
            "",
            ""
        ],
        [
            362,
            "mediterranean_small",
            2,
            4,
            6,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            386,
            "megarandom_small",
            2,
            4,
            6,
            "MegaRandom",
            "",
            ""
        ],
        [
            410,
            "mongolian_heights_small",
            2,
            4,
            6,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            434,
            "mountain_clearing_small",
            2,
            4,
            6,
            null,
            "",
            ""
        ],
        [
            458,
            "mountain_pass_small",
            2,
            4,
            6,
            "Mountain Pass",
            "",
            ""
        ],
        [
            482,
            "nagari_small",
            2,
            4,
            6,
            "Nagari",
            "",
            ""
        ],
        [
            506,
            "oasis_small",
            2,
            4,
            6,
            "Oasis",
            "",
            ""
        ],
        [
            530,
            "pit_small",
            2,
            4,
            6,
            "The Pit",
            "",
            ""
        ],
        [
            554,
            "prairie_small",
            2,
            4,
            6,
            null,
            "",
            ""
        ],
        [
            578,
            "rolling_rivers_small",
            2,
            4,
            6,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            602,
            "warring_islands_medium",
            2,
            4,
            6,
            "Warring Islands",
            "",
            ""
        ],
        [
            15,
            "altai_small",
            2,
            4,
            7,
            "Altai",
            "",
            ""
        ],
        [
            39,
            "ancient_spires_small",
            2,
            4,
            7,
            "Ancient Spires",
            "",
            ""
        ],
        [
            63,
            "archipelago_medium",
            2,
            4,
            7,
            "Archipelago",
            "",
            ""
        ],
        [
            123,
            "boulder_bay_small",
            2,
            4,
            7,
            "Boulder Bay",
            "",
            ""
        ],
        [
            171,
            "dry_arabia_small",
            2,
            4,
            7,
            "Dry Arabia",
            "",
            ""
        ],
        [
            195,
            "forest_ponds_small",
            2,
            4,
            7,
            null,
            "",
            ""
        ],
        [
            219,
            "french_pass_small",
            2,
            4,
            7,
            "French Pass",
            "",
            ""
        ],
        [
            243,
            "hideout_small",
            2,
            4,
            7,
            null,
            "",
            ""
        ],
        [
            267,
            "high_view_small",
            2,
            4,
            7,
            "High View",
            "",
            ""
        ],
        [
            291,
            "hill_and_dale_small",
            2,
            4,
            7,
            "Hill and Dale",
            "",
            ""
        ],
        [
            315,
            "king_of_hill_small",
            2,
            4,
            7,
            "King of Hill",
            "",
            ""
        ],
        [
            339,
            "lipany_small",
            2,
            4,
            7,
            "Lipany",
            "",
            ""
        ],
        [
            363,
            "mediterranean_small",
            2,
            4,
            7,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            387,
            "megarandom_small",
            2,
            4,
            7,
            "MegaRandom",
            "",
            ""
        ],
        [
            411,
            "mongolian_heights_small",
            2,
            4,
            7,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            435,
            "mountain_clearing_small",
            2,
            4,
            7,
            null,
            "",
            ""
        ],
        [
            459,
            "mountain_pass_small",
            2,
            4,
            7,
            "Mountain Pass",
            "",
            ""
        ],
        [
            483,
            "nagari_small",
            2,
            4,
            7,
            "Nagari",
            "",
            ""
        ],
        [
            507,
            "oasis_small",
            2,
            4,
            7,
            "Oasis",
            "",
            ""
        ],
        [
            531,
            "pit_small",
            2,
            4,
            7,
            "The Pit",
            "",
            ""
        ],
        [
            555,
            "prairie_small",
            2,
            4,
            7,
            null,
            "",
            ""
        ],
        [
            579,
            "rolling_rivers_small",
            2,
            4,
            7,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            603,
            "warring_islands_medium",
            2,
            4,
            7,
            "Warring Islands",
            "",
            ""
        ],
        [
            16,
            "altai_small",
            2,
            4,
            8,
            "Altai",
            "",
            ""
        ],
        [
            40,
            "ancient_spires_small",
            2,
            4,
            8,
            "Ancient Spires",
            "",
            ""
        ],
        [
            64,
            "archipelago_medium",
            2,
            4,
            8,
            "Archipelago",
            "",
            ""
        ],
        [
            124,
            "boulder_bay_small",
            2,
            4,
            8,
            "Boulder Bay",
            "",
            ""
        ],
        [
            172,
            "dry_arabia_small",
            2,
            4,
            8,
            "Dry Arabia",
            "",
            ""
        ],
        [
            196,
            "forest_ponds_small",
            2,
            4,
            8,
            null,
            "",
            ""
        ],
        [
            220,
            "french_pass_small",
            2,
            4,
            8,
            "French Pass",
            "",
            ""
        ],
        [
            244,
            "hideout_small",
            2,
            4,
            8,
            null,
            "",
            ""
        ],
        [
            268,
            "high_view_small",
            2,
            4,
            8,
            "High View",
            "",
            ""
        ],
        [
            292,
            "hill_and_dale_small",
            2,
            4,
            8,
            "Hill and Dale",
            "",
            ""
        ],
        [
            316,
            "king_of_hill_small",
            2,
            4,
            8,
            "King of Hill",
            "",
            ""
        ],
        [
            340,
            "lipany_small",
            2,
            4,
            8,
            "Lipany",
            "",
            ""
        ],
        [
            364,
            "mediterranean_small",
            2,
            4,
            8,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            388,
            "megarandom_small",
            2,
            4,
            8,
            "MegaRandom",
            "",
            ""
        ],
        [
            412,
            "mongolian_heights_small",
            2,
            4,
            8,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            436,
            "mountain_clearing_small",
            2,
            4,
            8,
            null,
            "",
            ""
        ],
        [
            460,
            "mountain_pass_small",
            2,
            4,
            8,
            "Mountain Pass",
            "",
            ""
        ],
        [
            484,
            "nagari_small",
            2,
            4,
            8,
            "Nagari",
            "",
            ""
        ],
        [
            508,
            "oasis_small",
            2,
            4,
            8,
            "Oasis",
            "",
            ""
        ],
        [
            532,
            "pit_small",
            2,
            4,
            8,
            "The Pit",
            "",
            ""
        ],
        [
            556,
            "prairie_small",
            2,
            4,
            8,
            null,
            "",
            ""
        ],
        [
            580,
            "rolling_rivers_small",
            2,
            4,
            8,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            604,
            "warring_islands_medium",
            2,
            4,
            8,
            "Warring Islands",
            "",
            ""
        ],
        [
            7,
            "altai_medium",
            2,
            6,
            9,
            "Altai",
            "",
            ""
        ],
        [
            31,
            "ancient_spires_medium",
            2,
            6,
            9,
            "Ancient Spires",
            "",
            ""
        ],
        [
            55,
            "archipelago_large",
            2,
            6,
            9,
            "Archipelago",
            "",
            ""
        ],
        [
            115,
            "boulder_bay_medium",
            2,
            6,
            9,
            "Boulder Bay",
            "",
            ""
        ],
        [
            163,
            "dry_arabia_medium",
            2,
            6,
            9,
            "Dry Arabia",
            "",
            ""
        ],
        [
            187,
            "forest_ponds_medium",
            2,
            6,
            9,
            null,
            "",
            ""
        ],
        [
            211,
            "french_pass_medium",
            2,
            6,
            9,
            "French Pass",
            "",
            ""
        ],
        [
            235,
            "hideout_medium",
            2,
            6,
            9,
            null,
            "",
            ""
        ],
        [
            259,
            "high_view_medium",
            2,
            6,
            9,
            "High View",
            "",
            ""
        ],
        [
            283,
            "hill_and_dale_medium",
            2,
            6,
            9,
            "Hill and Dale",
            "",
            ""
        ],
        [
            307,
            "king_of_hill_medium",
            2,
            6,
            9,
            "King of Hill",
            "",
            ""
        ],
        [
            331,
            "lipany_medium",
            2,
            6,
            9,
            "Lipany",
            "",
            ""
        ],
        [
            355,
            "mediterranean_medium",
            2,
            6,
            9,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            379,
            "megarandom_medium",
            2,
            6,
            9,
            "MegaRandom",
            "",
            ""
        ],
        [
            403,
            "mongolian_heights_medium",
            2,
            6,
            9,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            427,
            "mountain_clearing_medium",
            2,
            6,
            9,
            null,
            "",
            ""
        ],
        [
            451,
            "mountain_pass_medium",
            2,
            6,
            9,
            "Mountain Pass",
            "",
            ""
        ],
        [
            475,
            "nagari_medium",
            2,
            6,
            9,
            "Nagari",
            "",
            ""
        ],
        [
            499,
            "oasis_medium",
            2,
            6,
            9,
            "Oasis",
            "",
            ""
        ],
        [
            523,
            "pit_medium",
            2,
            6,
            9,
            "The Pit",
            "",
            ""
        ],
        [
            547,
            "prairie_medium",
            2,
            6,
            9,
            null,
            "",
            ""
        ],
        [
            571,
            "rolling_rivers_medium",
            2,
            6,
            9,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            595,
            "warring_islands_large",
            2,
            6,
            9,
            "Warring Islands",
            "",
            ""
        ],
        [
            8,
            "altai_medium",
            2,
            6,
            10,
            "Altai",
            "",
            ""
        ],
        [
            32,
            "ancient_spires_medium",
            2,
            6,
            10,
            "Ancient Spires",
            "",
            ""
        ],
        [
            56,
            "archipelago_large",
            2,
            6,
            10,
            "Archipelago",
            "",
            ""
        ],
        [
            116,
            "boulder_bay_medium",
            2,
            6,
            10,
            "Boulder Bay",
            "",
            ""
        ],
        [
            164,
            "dry_arabia_medium",
            2,
            6,
            10,
            "Dry Arabia",
            "",
            ""
        ],
        [
            188,
            "forest_ponds_medium",
            2,
            6,
            10,
            null,
            "",
            ""
        ],
        [
            212,
            "french_pass_medium",
            2,
            6,
            10,
            "French Pass",
            "",
            ""
        ],
        [
            236,
            "hideout_medium",
            2,
            6,
            10,
            null,
            "",
            ""
        ],
        [
            260,
            "high_view_medium",
            2,
            6,
            10,
            "High View",
            "",
            ""
        ],
        [
            284,
            "hill_and_dale_medium",
            2,
            6,
            10,
            "Hill and Dale",
            "",
            ""
        ],
        [
            308,
            "king_of_hill_medium",
            2,
            6,
            10,
            "King of Hill",
            "",
            ""
        ],
        [
            332,
            "lipany_medium",
            2,
            6,
            10,
            "Lipany",
            "",
            ""
        ],
        [
            356,
            "mediterranean_medium",
            2,
            6,
            10,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            380,
            "megarandom_medium",
            2,
            6,
            10,
            "MegaRandom",
            "",
            ""
        ],
        [
            404,
            "mongolian_heights_medium",
            2,
            6,
            10,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            428,
            "mountain_clearing_medium",
            2,
            6,
            10,
            null,
            "",
            ""
        ],
        [
            452,
            "mountain_pass_medium",
            2,
            6,
            10,
            "Mountain Pass",
            "",
            ""
        ],
        [
            476,
            "nagari_medium",
            2,
            6,
            10,
            "Nagari",
            "",
            ""
        ],
        [
            500,
            "oasis_medium",
            2,
            6,
            10,
            "Oasis",
            "",
            ""
        ],
        [
            524,
            "pit_medium",
            2,
            6,
            10,
            "The Pit",
            "",
            ""
        ],
        [
            548,
            "prairie_medium",
            2,
            6,
            10,
            null,
            "",
            ""
        ],
        [
            572,
            "rolling_rivers_medium",
            2,
            6,
            10,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            596,
            "warring_islands_large",
            2,
            6,
            10,
            "Warring Islands",
            "",
            ""
        ],
        [
            9,
            "altai_medium",
            2,
            6,
            11,
            "Altai",
            "",
            ""
        ],
        [
            33,
            "ancient_spires_medium",
            2,
            6,
            11,
            "Ancient Spires",
            "",
            ""
        ],
        [
            57,
            "archipelago_large",
            2,
            6,
            11,
            "Archipelago",
            "",
            ""
        ],
        [
            117,
            "boulder_bay_medium",
            2,
            6,
            11,
            "Boulder Bay",
            "",
            ""
        ],
        [
            165,
            "dry_arabia_medium",
            2,
            6,
            11,
            "Dry Arabia",
            "",
            ""
        ],
        [
            189,
            "forest_ponds_medium",
            2,
            6,
            11,
            null,
            "",
            ""
        ],
        [
            213,
            "french_pass_medium",
            2,
            6,
            11,
            "French Pass",
            "",
            ""
        ],
        [
            237,
            "hideout_medium",
            2,
            6,
            11,
            null,
            "",
            ""
        ],
        [
            261,
            "high_view_medium",
            2,
            6,
            11,
            "High View",
            "",
            ""
        ],
        [
            285,
            "hill_and_dale_medium",
            2,
            6,
            11,
            "Hill and Dale",
            "",
            ""
        ],
        [
            309,
            "king_of_hill_medium",
            2,
            6,
            11,
            "King of Hill",
            "",
            ""
        ],
        [
            333,
            "lipany_medium",
            2,
            6,
            11,
            "Lipany",
            "",
            ""
        ],
        [
            357,
            "mediterranean_medium",
            2,
            6,
            11,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            381,
            "megarandom_medium",
            2,
            6,
            11,
            "MegaRandom",
            "",
            ""
        ],
        [
            405,
            "mongolian_heights_medium",
            2,
            6,
            11,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            429,
            "mountain_clearing_medium",
            2,
            6,
            11,
            null,
            "",
            ""
        ],
        [
            453,
            "mountain_pass_medium",
            2,
            6,
            11,
            "Mountain Pass",
            "",
            ""
        ],
        [
            477,
            "nagari_medium",
            2,
            6,
            11,
            "Nagari",
            "",
            ""
        ],
        [
            501,
            "oasis_medium",
            2,
            6,
            11,
            "Oasis",
            "",
            ""
        ],
        [
            525,
            "pit_medium",
            2,
            6,
            11,
            "The Pit",
            "",
            ""
        ],
        [
            549,
            "prairie_medium",
            2,
            6,
            11,
            null,
            "",
            ""
        ],
        [
            573,
            "rolling_rivers_medium",
            2,
            6,
            11,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            597,
            "warring_islands_large",
            2,
            6,
            11,
            "Warring Islands",
            "",
            ""
        ],
        [
            10,
            "altai_medium",
            2,
            6,
            12,
            "Altai",
            "",
            ""
        ],
        [
            34,
            "ancient_spires_medium",
            2,
            6,
            12,
            "Ancient Spires",
            "",
            ""
        ],
        [
            58,
            "archipelago_large",
            2,
            6,
            12,
            "Archipelago",
            "",
            ""
        ],
        [
            118,
            "boulder_bay_medium",
            2,
            6,
            12,
            "Boulder Bay",
            "",
            ""
        ],
        [
            166,
            "dry_arabia_medium",
            2,
            6,
            12,
            "Dry Arabia",
            "",
            ""
        ],
        [
            190,
            "forest_ponds_medium",
            2,
            6,
            12,
            null,
            "",
            ""
        ],
        [
            214,
            "french_pass_medium",
            2,
            6,
            12,
            "French Pass",
            "",
            ""
        ],
        [
            238,
            "hideout_medium",
            2,
            6,
            12,
            null,
            "",
            ""
        ],
        [
            262,
            "high_view_medium",
            2,
            6,
            12,
            "High View",
            "",
            ""
        ],
        [
            286,
            "hill_and_dale_medium",
            2,
            6,
            12,
            "Hill and Dale",
            "",
            ""
        ],
        [
            310,
            "king_of_hill_medium",
            2,
            6,
            12,
            "King of Hill",
            "",
            ""
        ],
        [
            334,
            "lipany_medium",
            2,
            6,
            12,
            "Lipany",
            "",
            ""
        ],
        [
            358,
            "mediterranean_medium",
            2,
            6,
            12,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            382,
            "megarandom_medium",
            2,
            6,
            12,
            "MegaRandom",
            "",
            ""
        ],
        [
            406,
            "mongolian_heights_medium",
            2,
            6,
            12,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            430,
            "mountain_clearing_medium",
            2,
            6,
            12,
            null,
            "",
            ""
        ],
        [
            454,
            "mountain_pass_medium",
            2,
            6,
            12,
            "Mountain Pass",
            "",
            ""
        ],
        [
            478,
            "nagari_medium",
            2,
            6,
            12,
            "Nagari",
            "",
            ""
        ],
        [
            502,
            "oasis_medium",
            2,
            6,
            12,
            "Oasis",
            "",
            ""
        ],
        [
            526,
            "pit_medium",
            2,
            6,
            12,
            "The Pit",
            "",
            ""
        ],
        [
            550,
            "prairie_medium",
            2,
            6,
            12,
            null,
            "",
            ""
        ],
        [
            574,
            "rolling_rivers_medium",
            2,
            6,
            12,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            598,
            "warring_islands_large",
            2,
            6,
            12,
            "Warring Islands",
            "",
            ""
        ],
        [
            1,
            "altai_large",
            2,
            8,
            13,
            "Altai",
            "",
            ""
        ],
        [
            25,
            "ancient_spires_large",
            2,
            8,
            13,
            "Ancient Spires",
            "",
            ""
        ],
        [
            49,
            "archipelago_gigantic",
            2,
            8,
            13,
            "Archipelago",
            "",
            ""
        ],
        [
            109,
            "boulder_bay_large",
            2,
            8,
            13,
            "Boulder Bay",
            "",
            ""
        ],
        [
            157,
            "dry_arabia_large",
            2,
            8,
            13,
            "Dry Arabia",
            "",
            ""
        ],
        [
            181,
            "forest_ponds_large",
            2,
            8,
            13,
            null,
            "",
            ""
        ],
        [
            205,
            "french_pass_large",
            2,
            8,
            13,
            "French Pass",
            "",
            ""
        ],
        [
            229,
            "hideout_large",
            2,
            8,
            13,
            null,
            "",
            ""
        ],
        [
            253,
            "high_view_large",
            2,
            8,
            13,
            "High View",
            "",
            ""
        ],
        [
            277,
            "hill_and_dale_large",
            2,
            8,
            13,
            "Hill and Dale",
            "",
            ""
        ],
        [
            301,
            "king_of_hill_large",
            2,
            8,
            13,
            "King of Hill",
            "",
            ""
        ],
        [
            325,
            "lipany_large",
            2,
            8,
            13,
            "Lipany",
            "",
            ""
        ],
        [
            349,
            "mediterranean_large",
            2,
            8,
            13,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            373,
            "megarandom_large",
            2,
            8,
            13,
            "MegaRandom",
            "",
            ""
        ],
        [
            397,
            "mongolian_heights_large",
            2,
            8,
            13,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            421,
            "mountain_clearing_large",
            2,
            8,
            13,
            null,
            "",
            ""
        ],
        [
            445,
            "mountain_pass_large",
            2,
            8,
            13,
            "Mountain Pass",
            "",
            ""
        ],
        [
            469,
            "nagari_large",
            2,
            8,
            13,
            "Nagari",
            "",
            ""
        ],
        [
            493,
            "oasis_large",
            2,
            8,
            13,
            "Oasis",
            "",
            ""
        ],
        [
            517,
            "pit_large",
            2,
            8,
            13,
            "The Pit",
            "",
            ""
        ],
        [
            541,
            "prairie_large",
            2,
            8,
            13,
            null,
            "",
            ""
        ],
        [
            565,
            "rolling_rivers_large",
            2,
            8,
            13,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            589,
            "warring_islands_gigantic",
            2,
            8,
            13,
            "Warring Islands",
            "",
            ""
        ],
        [
            2,
            "altai_large",
            2,
            8,
            14,
            "Altai",
            "",
            ""
        ],
        [
            26,
            "ancient_spires_large",
            2,
            8,
            14,
            "Ancient Spires",
            "",
            ""
        ],
        [
            50,
            "archipelago_gigantic",
            2,
            8,
            14,
            "Archipelago",
            "",
            ""
        ],
        [
            110,
            "boulder_bay_large",
            2,
            8,
            14,
            "Boulder Bay",
            "",
            ""
        ],
        [
            158,
            "dry_arabia_large",
            2,
            8,
            14,
            "Dry Arabia",
            "",
            ""
        ],
        [
            182,
            "forest_ponds_large",
            2,
            8,
            14,
            null,
            "",
            ""
        ],
        [
            206,
            "french_pass_large",
            2,
            8,
            14,
            "French Pass",
            "",
            ""
        ],
        [
            230,
            "hideout_large",
            2,
            8,
            14,
            null,
            "",
            ""
        ],
        [
            254,
            "high_view_large",
            2,
            8,
            14,
            "High View",
            "",
            ""
        ],
        [
            278,
            "hill_and_dale_large",
            2,
            8,
            14,
            "Hill and Dale",
            "",
            ""
        ],
        [
            302,
            "king_of_hill_large",
            2,
            8,
            14,
            "King of Hill",
            "",
            ""
        ],
        [
            326,
            "lipany_large",
            2,
            8,
            14,
            "Lipany",
            "",
            ""
        ],
        [
            350,
            "mediterranean_large",
            2,
            8,
            14,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            374,
            "megarandom_large",
            2,
            8,
            14,
            "MegaRandom",
            "",
            ""
        ],
        [
            398,
            "mongolian_heights_large",
            2,
            8,
            14,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            422,
            "mountain_clearing_large",
            2,
            8,
            14,
            null,
            "",
            ""
        ],
        [
            446,
            "mountain_pass_large",
            2,
            8,
            14,
            "Mountain Pass",
            "",
            ""
        ],
        [
            470,
            "nagari_large",
            2,
            8,
            14,
            "Nagari",
            "",
            ""
        ],
        [
            494,
            "oasis_large",
            2,
            8,
            14,
            "Oasis",
            "",
            ""
        ],
        [
            518,
            "pit_large",
            2,
            8,
            14,
            "The Pit",
            "",
            ""
        ],
        [
            542,
            "prairie_large",
            2,
            8,
            14,
            null,
            "",
            ""
        ],
        [
            566,
            "rolling_rivers_large",
            2,
            8,
            14,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            590,
            "warring_islands_gigantic",
            2,
            8,
            14,
            "Warring Islands",
            "",
            ""
        ],
        [
            3,
            "altai_large",
            2,
            8,
            15,
            "Altai",
            "",
            ""
        ],
        [
            27,
            "ancient_spires_large",
            2,
            8,
            15,
            "Ancient Spires",
            "",
            ""
        ],
        [
            51,
            "archipelago_gigantic",
            2,
            8,
            15,
            "Archipelago",
            "",
            ""
        ],
        [
            111,
            "boulder_bay_large",
            2,
            8,
            15,
            "Boulder Bay",
            "",
            ""
        ],
        [
            159,
            "dry_arabia_large",
            2,
            8,
            15,
            "Dry Arabia",
            "",
            ""
        ],
        [
            183,
            "forest_ponds_large",
            2,
            8,
            15,
            null,
            "",
            ""
        ],
        [
            207,
            "french_pass_large",
            2,
            8,
            15,
            "French Pass",
            "",
            ""
        ],
        [
            231,
            "hideout_large",
            2,
            8,
            15,
            null,
            "",
            ""
        ],
        [
            255,
            "high_view_large",
            2,
            8,
            15,
            "High View",
            "",
            ""
        ],
        [
            279,
            "hill_and_dale_large",
            2,
            8,
            15,
            "Hill and Dale",
            "",
            ""
        ],
        [
            303,
            "king_of_hill_large",
            2,
            8,
            15,
            "King of Hill",
            "",
            ""
        ],
        [
            327,
            "lipany_large",
            2,
            8,
            15,
            "Lipany",
            "",
            ""
        ],
        [
            351,
            "mediterranean_large",
            2,
            8,
            15,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            375,
            "megarandom_large",
            2,
            8,
            15,
            "MegaRandom",
            "",
            ""
        ],
        [
            399,
            "mongolian_heights_large",
            2,
            8,
            15,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            423,
            "mountain_clearing_large",
            2,
            8,
            15,
            null,
            "",
            ""
        ],
        [
            447,
            "mountain_pass_large",
            2,
            8,
            15,
            "Mountain Pass",
            "",
            ""
        ],
        [
            471,
            "nagari_large",
            2,
            8,
            15,
            "Nagari",
            "",
            ""
        ],
        [
            495,
            "oasis_large",
            2,
            8,
            15,
            "Oasis",
            "",
            ""
        ],
        [
            519,
            "pit_large",
            2,
            8,
            15,
            "The Pit",
            "",
            ""
        ],
        [
            543,
            "prairie_large",
            2,
            8,
            15,
            null,
            "",
            ""
        ],
        [
            567,
            "rolling_rivers_large",
            2,
            8,
            15,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            591,
            "warring_islands_gigantic",
            2,
            8,
            15,
            "Warring Islands",
            "",
            ""
        ],
        [
            4,
            "altai_large",
            2,
            8,
            16,
            "Altai",
            "",
            ""
        ],
        [
            28,
            "ancient_spires_large",
            2,
            8,
            16,
            "Ancient Spires",
            "",
            ""
        ],
        [
            52,
            "archipelago_gigantic",
            2,
            8,
            16,
            "Archipelago",
            "",
            ""
        ],
        [
            112,
            "boulder_bay_large",
            2,
            8,
            16,
            "Boulder Bay",
            "",
            ""
        ],
        [
            160,
            "dry_arabia_large",
            2,
            8,
            16,
            "Dry Arabia",
            "",
            ""
        ],
        [
            184,
            "forest_ponds_large",
            2,
            8,
            16,
            null,
            "",
            ""
        ],
        [
            208,
            "french_pass_large",
            2,
            8,
            16,
            "French Pass",
            "",
            ""
        ],
        [
            232,
            "hideout_large",
            2,
            8,
            16,
            null,
            "",
            ""
        ],
        [
            256,
            "high_view_large",
            2,
            8,
            16,
            "High View",
            "",
            ""
        ],
        [
            280,
            "hill_and_dale_large",
            2,
            8,
            16,
            "Hill and Dale",
            "",
            ""
        ],
        [
            304,
            "king_of_hill_large",
            2,
            8,
            16,
            "King of Hill",
            "",
            ""
        ],
        [
            328,
            "lipany_large",
            2,
            8,
            16,
            "Lipany",
            "",
            ""
        ],
        [
            352,
            "mediterranean_large",
            2,
            8,
            16,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            376,
            "megarandom_large",
            2,
            8,
            16,
            "MegaRandom",
            "",
            ""
        ],
        [
            400,
            "mongolian_heights_large",
            2,
            8,
            16,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            424,
            "mountain_clearing_large",
            2,
            8,
            16,
            null,
            "",
            ""
        ],
        [
            448,
            "mountain_pass_large",
            2,
            8,
            16,
            "Mountain Pass",
            "",
            ""
        ],
        [
            472,
            "nagari_large",
            2,
            8,
            16,
            "Nagari",
            "",
            ""
        ],
        [
            496,
            "oasis_large",
            2,
            8,
            16,
            "Oasis",
            "",
            ""
        ],
        [
            520,
            "pit_large",
            2,
            8,
            16,
            "The Pit",
            "",
            ""
        ],
        [
            544,
            "prairie_large",
            2,
            8,
            16,
            null,
            "",
            ""
        ],
        [
            568,
            "rolling_rivers_large",
            2,
            8,
            16,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            592,
            "warring_islands_gigantic",
            2,
            8,
            16,
            "Warring Islands",
            "",
            ""
        ],
        [
            23,
            "altai_tiny",
            2,
            2,
            20,
            "Altai",
            "",
            ""
        ],
        [
            48,
            "ancient_spires_tiny",
            2,
            2,
            20,
            "Ancient Spires",
            "",
            ""
        ],
        [
            72,
            "archipelago_small",
            2,
            2,
            20,
            "Archipelago",
            "",
            ""
        ],
        [
            180,
            "dry_arabia_tiny",
            2,
            2,
            20,
            "Dry Arabia",
            "",
            ""
        ],
        [
            204,
            "forest_ponds_tiny",
            2,
            2,
            20,
            null,
            "",
            ""
        ],
        [
            228,
            "french_pass_tiny",
            2,
            2,
            20,
            "French Pass",
            "",
            ""
        ],
        [
            252,
            "hideout_tiny",
            2,
            2,
            20,
            null,
            "",
            ""
        ],
        [
            276,
            "high_view_tiny",
            2,
            2,
            20,
            "High View",
            "",
            ""
        ],
        [
            300,
            "hill_and_dale_tiny",
            2,
            2,
            20,
            "Hill and Dale",
            "",
            ""
        ],
        [
            324,
            "king_of_hill_tiny",
            2,
            2,
            20,
            "King of Hill",
            "",
            ""
        ],
        [
            348,
            "lipany_tiny",
            2,
            2,
            20,
            "Lipany",
            "",
            ""
        ],
        [
            372,
            "mediterranean_tiny",
            2,
            2,
            20,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            396,
            "megarandom_tiny",
            2,
            2,
            20,
            "MegaRandom",
            "",
            ""
        ],
        [
            420,
            "mongolian_heights_tiny",
            2,
            2,
            20,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            444,
            "mountain_clearing_tiny",
            2,
            2,
            20,
            null,
            "",
            ""
        ],
        [
            468,
            "mountain_pass_tiny",
            2,
            2,
            20,
            "Mountain Pass",
            "",
            ""
        ],
        [
            492,
            "nagari_tiny",
            2,
            2,
            20,
            "Nagari",
            "",
            ""
        ],
        [
            516,
            "oasis_tiny",
            2,
            2,
            20,
            "Oasis",
            "",
            ""
        ],
        [
            540,
            "pit_tiny",
            2,
            2,
            20,
            "The Pit",
            "",
            ""
        ],
        [
            564,
            "prairie_tiny",
            2,
            2,
            20,
            null,
            "",
            ""
        ],
        [
            588,
            "rolling_rivers_tiny",
            2,
            2,
            20,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            612,
            "warring_islands_small",
            2,
            2,
            20,
            "Warring Islands",
            "",
            ""
        ],
        [
            18,
            "altai_small",
            2,
            4,
            21,
            "Altai",
            "",
            ""
        ],
        [
            42,
            "ancient_spires_small",
            2,
            4,
            21,
            "Ancient Spires",
            "",
            ""
        ],
        [
            66,
            "archipelago_medium",
            2,
            4,
            21,
            "Archipelago",
            "",
            ""
        ],
        [
            126,
            "boulder_bay_small",
            2,
            4,
            21,
            "Boulder Bay",
            "",
            ""
        ],
        [
            174,
            "dry_arabia_small",
            2,
            4,
            21,
            "Dry Arabia",
            "",
            ""
        ],
        [
            198,
            "forest_ponds_small",
            2,
            4,
            21,
            null,
            "",
            ""
        ],
        [
            222,
            "french_pass_small",
            2,
            4,
            21,
            "French Pass",
            "",
            ""
        ],
        [
            246,
            "hideout_small",
            2,
            4,
            21,
            null,
            "",
            ""
        ],
        [
            270,
            "high_view_small",
            2,
            4,
            21,
            "High View",
            "",
            ""
        ],
        [
            294,
            "hill_and_dale_small",
            2,
            4,
            21,
            "Hill and Dale",
            "",
            ""
        ],
        [
            318,
            "king_of_hill_small",
            2,
            4,
            21,
            "King of Hill",
            "",
            ""
        ],
        [
            342,
            "lipany_small",
            2,
            4,
            21,
            "Lipany",
            "",
            ""
        ],
        [
            366,
            "mediterranean_small",
            2,
            4,
            21,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            390,
            "megarandom_small",
            2,
            4,
            21,
            "MegaRandom",
            "",
            ""
        ],
        [
            414,
            "mongolian_heights_small",
            2,
            4,
            21,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            438,
            "mountain_clearing_small",
            2,
            4,
            21,
            null,
            "",
            ""
        ],
        [
            462,
            "mountain_pass_small",
            2,
            4,
            21,
            "Mountain Pass",
            "",
            ""
        ],
        [
            486,
            "nagari_small",
            2,
            4,
            21,
            "Nagari",
            "",
            ""
        ],
        [
            510,
            "oasis_small",
            2,
            4,
            21,
            "Oasis",
            "",
            ""
        ],
        [
            534,
            "pit_small",
            2,
            4,
            21,
            "The Pit",
            "",
            ""
        ],
        [
            558,
            "prairie_small",
            2,
            4,
            21,
            null,
            "",
            ""
        ],
        [
            582,
            "rolling_rivers_small",
            2,
            4,
            21,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            606,
            "warring_islands_medium",
            2,
            4,
            21,
            "Warring Islands",
            "",
            ""
        ],
        [
            12,
            "altai_medium",
            2,
            6,
            22,
            "Altai",
            "",
            ""
        ],
        [
            36,
            "ancient_spires_medium",
            2,
            6,
            22,
            "Ancient Spires",
            "",
            ""
        ],
        [
            60,
            "archipelago_large",
            2,
            6,
            22,
            "Archipelago",
            "",
            ""
        ],
        [
            120,
            "boulder_bay_medium",
            2,
            6,
            22,
            "Boulder Bay",
            "",
            ""
        ],
        [
            168,
            "dry_arabia_medium",
            2,
            6,
            22,
            "Dry Arabia",
            "",
            ""
        ],
        [
            192,
            "forest_ponds_medium",
            2,
            6,
            22,
            null,
            "",
            ""
        ],
        [
            216,
            "french_pass_medium",
            2,
            6,
            22,
            "French Pass",
            "",
            ""
        ],
        [
            240,
            "hideout_medium",
            2,
            6,
            22,
            null,
            "",
            ""
        ],
        [
            264,
            "high_view_medium",
            2,
            6,
            22,
            "High View",
            "",
            ""
        ],
        [
            288,
            "hill_and_dale_medium",
            2,
            6,
            22,
            "Hill and Dale",
            "",
            ""
        ],
        [
            312,
            "king_of_hill_medium",
            2,
            6,
            22,
            "King of Hill",
            "",
            ""
        ],
        [
            336,
            "lipany_medium",
            2,
            6,
            22,
            "Lipany",
            "",
            ""
        ],
        [
            360,
            "mediterranean_medium",
            2,
            6,
            22,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            384,
            "megarandom_medium",
            2,
            6,
            22,
            "MegaRandom",
            "",
            ""
        ],
        [
            408,
            "mongolian_heights_medium",
            2,
            6,
            22,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            432,
            "mountain_clearing_medium",
            2,
            6,
            22,
            null,
            "",
            ""
        ],
        [
            456,
            "mountain_pass_medium",
            2,
            6,
            22,
            "Mountain Pass",
            "",
            ""
        ],
        [
            480,
            "nagari_medium",
            2,
            6,
            22,
            "Nagari",
            "",
            ""
        ],
        [
            504,
            "oasis_medium",
            2,
            6,
            22,
            "Oasis",
            "",
            ""
        ],
        [
            528,
            "pit_medium",
            2,
            6,
            22,
            "The Pit",
            "",
            ""
        ],
        [
            552,
            "prairie_medium",
            2,
            6,
            22,
            null,
            "",
            ""
        ],
        [
            576,
            "rolling_rivers_medium",
            2,
            6,
            22,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            600,
            "warring_islands_large",
            2,
            6,
            22,
            "Warring Islands",
            "",
            ""
        ],
        [
            6,
            "altai_large",
            2,
            8,
            23,
            "Altai",
            "",
            ""
        ],
        [
            30,
            "ancient_spires_large",
            2,
            8,
            23,
            "Ancient Spires",
            "",
            ""
        ],
        [
            54,
            "archipelago_gigantic",
            2,
            8,
            23,
            "Archipelago",
            "",
            ""
        ],
        [
            114,
            "boulder_bay_large",
            2,
            8,
            23,
            "Boulder Bay",
            "",
            ""
        ],
        [
            162,
            "dry_arabia_large",
            2,
            8,
            23,
            "Dry Arabia",
            "",
            ""
        ],
        [
            186,
            "forest_ponds_large",
            2,
            8,
            23,
            null,
            "",
            ""
        ],
        [
            210,
            "french_pass_large",
            2,
            8,
            23,
            "French Pass",
            "",
            ""
        ],
        [
            234,
            "hideout_large",
            2,
            8,
            23,
            null,
            "",
            ""
        ],
        [
            258,
            "high_view_large",
            2,
            8,
            23,
            "High View",
            "",
            ""
        ],
        [
            282,
            "hill_and_dale_large",
            2,
            8,
            23,
            "Hill and Dale",
            "",
            ""
        ],
        [
            306,
            "king_of_hill_large",
            2,
            8,
            23,
            "King of Hill",
            "",
            ""
        ],
        [
            330,
            "lipany_large",
            2,
            8,
            23,
            "Lipany",
            "",
            ""
        ],
        [
            354,
            "mediterranean_large",
            2,
            8,
            23,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            378,
            "megarandom_large",
            2,
            8,
            23,
            "MegaRandom",
            "",
            ""
        ],
        [
            402,
            "mongolian_heights_large",
            2,
            8,
            23,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            426,
            "mountain_clearing_large",
            2,
            8,
            23,
            null,
            "",
            ""
        ],
        [
            450,
            "mountain_pass_large",
            2,
            8,
            23,
            "Mountain Pass",
            "",
            ""
        ],
        [
            474,
            "nagari_large",
            2,
            8,
            23,
            "Nagari",
            "",
            ""
        ],
        [
            498,
            "oasis_large",
            2,
            8,
            23,
            "Oasis",
            "",
            ""
        ],
        [
            522,
            "pit_large",
            2,
            8,
            23,
            "The Pit",
            "",
            ""
        ],
        [
            546,
            "prairie_large",
            2,
            8,
            23,
            null,
            "",
            ""
        ],
        [
            570,
            "rolling_rivers_large",
            2,
            8,
            23,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            594,
            "warring_islands_gigantic",
            2,
            8,
            23,
            "Warring Islands",
            "",
            ""
        ],
        [
            43,
            "ancient_spires_tiny",
            2,
            2,
            24,
            "Ancient Spires",
            "",
            ""
        ],
        [
            67,
            "archipelago_small",
            2,
            2,
            24,
            "Archipelago",
            "",
            ""
        ],
        [
            175,
            "dry_arabia_tiny",
            2,
            2,
            24,
            "Dry Arabia",
            "",
            ""
        ],
        [
            199,
            "forest_ponds_tiny",
            2,
            2,
            24,
            null,
            "",
            ""
        ],
        [
            223,
            "french_pass_tiny",
            2,
            2,
            24,
            "French Pass",
            "",
            ""
        ],
        [
            247,
            "hideout_tiny",
            2,
            2,
            24,
            null,
            "",
            ""
        ],
        [
            271,
            "high_view_tiny",
            2,
            2,
            24,
            "High View",
            "",
            ""
        ],
        [
            295,
            "hill_and_dale_tiny",
            2,
            2,
            24,
            "Hill and Dale",
            "",
            ""
        ],
        [
            319,
            "king_of_hill_tiny",
            2,
            2,
            24,
            "King of Hill",
            "",
            ""
        ],
        [
            343,
            "lipany_tiny",
            2,
            2,
            24,
            "Lipany",
            "",
            ""
        ],
        [
            367,
            "mediterranean_tiny",
            2,
            2,
            24,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            391,
            "megarandom_tiny",
            2,
            2,
            24,
            "MegaRandom",
            "",
            ""
        ],
        [
            415,
            "mongolian_heights_tiny",
            2,
            2,
            24,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            439,
            "mountain_clearing_tiny",
            2,
            2,
            24,
            null,
            "",
            ""
        ],
        [
            463,
            "mountain_pass_tiny",
            2,
            2,
            24,
            "Mountain Pass",
            "",
            ""
        ],
        [
            487,
            "nagari_tiny",
            2,
            2,
            24,
            "Nagari",
            "",
            ""
        ],
        [
            511,
            "oasis_tiny",
            2,
            2,
            24,
            "Oasis",
            "",
            ""
        ],
        [
            535,
            "pit_tiny",
            2,
            2,
            24,
            "The Pit",
            "",
            ""
        ],
        [
            559,
            "prairie_tiny",
            2,
            2,
            24,
            null,
            "",
            ""
        ],
        [
            583,
            "rolling_rivers_tiny",
            2,
            2,
            24,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            607,
            "warring_islands_small",
            2,
            2,
            24,
            "Warring Islands",
            "",
            ""
        ],
        [
            20,
            "altai_tiny",
            2,
            2,
            25,
            "Altai",
            "",
            ""
        ],
        [
            44,
            "ancient_spires_tiny",
            2,
            2,
            25,
            "Ancient Spires",
            "",
            ""
        ],
        [
            68,
            "archipelago_small",
            2,
            2,
            25,
            "Archipelago",
            "",
            ""
        ],
        [
            176,
            "dry_arabia_tiny",
            2,
            2,
            25,
            "Dry Arabia",
            "",
            ""
        ],
        [
            200,
            "forest_ponds_tiny",
            2,
            2,
            25,
            null,
            "",
            ""
        ],
        [
            224,
            "french_pass_tiny",
            2,
            2,
            25,
            "French Pass",
            "",
            ""
        ],
        [
            248,
            "hideout_tiny",
            2,
            2,
            25,
            null,
            "",
            ""
        ],
        [
            272,
            "high_view_tiny",
            2,
            2,
            25,
            "High View",
            "",
            ""
        ],
        [
            296,
            "hill_and_dale_tiny",
            2,
            2,
            25,
            "Hill and Dale",
            "",
            ""
        ],
        [
            320,
            "king_of_hill_tiny",
            2,
            2,
            25,
            "King of Hill",
            "",
            ""
        ],
        [
            344,
            "lipany_tiny",
            2,
            2,
            25,
            "Lipany",
            "",
            ""
        ],
        [
            368,
            "mediterranean_tiny",
            2,
            2,
            25,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            392,
            "megarandom_tiny",
            2,
            2,
            25,
            "MegaRandom",
            "",
            ""
        ],
        [
            416,
            "mongolian_heights_tiny",
            2,
            2,
            25,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            440,
            "mountain_clearing_tiny",
            2,
            2,
            25,
            null,
            "",
            ""
        ],
        [
            464,
            "mountain_pass_tiny",
            2,
            2,
            25,
            "Mountain Pass",
            "",
            ""
        ],
        [
            488,
            "nagari_tiny",
            2,
            2,
            25,
            "Nagari",
            "",
            ""
        ],
        [
            512,
            "oasis_tiny",
            2,
            2,
            25,
            "Oasis",
            "",
            ""
        ],
        [
            536,
            "pit_tiny",
            2,
            2,
            25,
            "The Pit",
            "",
            ""
        ],
        [
            560,
            "prairie_tiny",
            2,
            2,
            25,
            null,
            "",
            ""
        ],
        [
            584,
            "rolling_rivers_tiny",
            2,
            2,
            25,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            608,
            "warring_islands_small",
            2,
            2,
            25,
            "Warring Islands",
            "",
            ""
        ],
        [
            21,
            "altai_tiny",
            2,
            2,
            26,
            "Altai",
            "",
            ""
        ],
        [
            45,
            "ancient_spires_tiny",
            2,
            2,
            26,
            "Ancient Spires",
            "",
            ""
        ],
        [
            69,
            "archipelago_small",
            2,
            2,
            26,
            "Archipelago",
            "",
            ""
        ],
        [
            177,
            "dry_arabia_tiny",
            2,
            2,
            26,
            "Dry Arabia",
            "",
            ""
        ],
        [
            201,
            "forest_ponds_tiny",
            2,
            2,
            26,
            null,
            "",
            ""
        ],
        [
            225,
            "french_pass_tiny",
            2,
            2,
            26,
            "French Pass",
            "",
            ""
        ],
        [
            249,
            "hideout_tiny",
            2,
            2,
            26,
            null,
            "",
            ""
        ],
        [
            273,
            "high_view_tiny",
            2,
            2,
            26,
            "High View",
            "",
            ""
        ],
        [
            297,
            "hill_and_dale_tiny",
            2,
            2,
            26,
            "Hill and Dale",
            "",
            ""
        ],
        [
            321,
            "king_of_hill_tiny",
            2,
            2,
            26,
            "King of Hill",
            "",
            ""
        ],
        [
            345,
            "lipany_tiny",
            2,
            2,
            26,
            "Lipany",
            "",
            ""
        ],
        [
            369,
            "mediterranean_tiny",
            2,
            2,
            26,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            393,
            "megarandom_tiny",
            2,
            2,
            26,
            "MegaRandom",
            "",
            ""
        ],
        [
            417,
            "mongolian_heights_tiny",
            2,
            2,
            26,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            441,
            "mountain_clearing_tiny",
            2,
            2,
            26,
            null,
            "",
            ""
        ],
        [
            465,
            "mountain_pass_tiny",
            2,
            2,
            26,
            "Mountain Pass",
            "",
            ""
        ],
        [
            489,
            "nagari_tiny",
            2,
            2,
            26,
            "Nagari",
            "",
            ""
        ],
        [
            513,
            "oasis_tiny",
            2,
            2,
            26,
            "Oasis",
            "",
            ""
        ],
        [
            537,
            "pit_tiny",
            2,
            2,
            26,
            "The Pit",
            "",
            ""
        ],
        [
            561,
            "prairie_tiny",
            2,
            2,
            26,
            null,
            "",
            ""
        ],
        [
            585,
            "rolling_rivers_tiny",
            2,
            2,
            26,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            609,
            "warring_islands_small",
            2,
            2,
            26,
            "Warring Islands",
            "",
            ""
        ],
        [
            22,
            "altai_tiny",
            2,
            2,
            27,
            "Altai",
            "",
            ""
        ],
        [
            46,
            "ancient_spires_tiny",
            2,
            2,
            27,
            "Ancient Spires",
            "",
            ""
        ],
        [
            70,
            "archipelago_small",
            2,
            2,
            27,
            "Archipelago",
            "",
            ""
        ],
        [
            178,
            "dry_arabia_tiny",
            2,
            2,
            27,
            "Dry Arabia",
            "",
            ""
        ],
        [
            202,
            "forest_ponds_tiny",
            2,
            2,
            27,
            null,
            "",
            ""
        ],
        [
            226,
            "french_pass_tiny",
            2,
            2,
            27,
            "French Pass",
            "",
            ""
        ],
        [
            250,
            "hideout_tiny",
            2,
            2,
            27,
            null,
            "",
            ""
        ],
        [
            274,
            "high_view_tiny",
            2,
            2,
            27,
            "High View",
            "",
            ""
        ],
        [
            298,
            "hill_and_dale_tiny",
            2,
            2,
            27,
            "Hill and Dale",
            "",
            ""
        ],
        [
            322,
            "king_of_hill_tiny",
            2,
            2,
            27,
            "King of Hill",
            "",
            ""
        ],
        [
            346,
            "lipany_tiny",
            2,
            2,
            27,
            "Lipany",
            "",
            ""
        ],
        [
            370,
            "mediterranean_tiny",
            2,
            2,
            27,
            "Qinghai Lake",
            "",
            ""
        ],
        [
            394,
            "megarandom_tiny",
            2,
            2,
            27,
            "MegaRandom",
            "",
            ""
        ],
        [
            418,
            "mongolian_heights_tiny",
            2,
            2,
            27,
            "Mongolian Heights",
            "",
            ""
        ],
        [
            442,
            "mountain_clearing_tiny",
            2,
            2,
            27,
            null,
            "",
            ""
        ],
        [
            466,
            "mountain_pass_tiny",
            2,
            2,
            27,
            "Mountain Pass",
            "",
            ""
        ],
        [
            490,
            "nagari_tiny",
            2,
            2,
            27,
            "Nagari",
            "",
            ""
        ],
        [
            514,
            "oasis_tiny",
            2,
            2,
            27,
            "Oasis",
            "",
            ""
        ],
        [
            538,
            "pit_tiny",
            2,
            2,
            27,
            "The Pit",
            "",
            ""
        ],
        [
            562,
            "prairie_tiny",
            2,
            2,
            27,
            null,
            "",
            ""
        ],
        [
            586,
            "rolling_rivers_tiny",
            2,
            2,
            27,
            "Rolling Rivers",
            "",
            ""
        ],
        [
            610,
            "warring_islands_small",
            2,
            2,
            27,
            "Warring Islands",
            "",
            ""
        ]
    ]
]

Automatch2 Endpoints

Endpoints for the newer ranked matchmaking system.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getAutomatchMapGETGet available ranked maps with map pool info
pollingGETPoll for matchmaking status updates
stoppollingPOSTStop matchmaking polling
updateStatusPOSTUpdate matchmaking status

[GET] /game/automatch2/getAutomatchMap

AUTHENTICATION

AoE2:DE

Request

GET /game/automatch2/getAutomatchMap?callNum=19&connect_id=6mikb1saqrmud2kte7ovswogamd2th&lastCallTime=9470&sessionID=6mikb1saqrmud2kte7ovswogamd2th HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            1, // map_id
            "AfricanClearing.rms", // map_name
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            2,
            "Arabia.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            3,
            "Arena.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            4,
            "FourLakes.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            5,
            "Islands.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            6,
            "nomad.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            7,
            "Yucatan.rms",
            2,
            2,
            6,
            null,
            null,
            ""
        ],
        [
            8,
            "Arabia.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            9,
            "Arabia.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            10,
            "Arabia.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            11,
            "Arena.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            12,
            "Arena.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            13,
            "Arena.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            14,
            "Black_Forest.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            15,
            "Black_Forest.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            16,
            "Black_Forest.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            17,
            "Fortress.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            18,
            "Fortress.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            19,
            "Fortress.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            20,
            "Mediterranean.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            21,
            "Mediterranean.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            22,
            "Mediterranean.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            23,
            "megarandom.rms2",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            24,
            "megarandom.rms2",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            25,
            "megarandom.rms2",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            26,
            "Michi.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            27,
            "Michi.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            28,
            "Michi.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            29,
            "Nile Delta.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            30,
            "Nile Delta.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            31,
            "Nile Delta.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            32,
            "nomad.rms",
            2,
            4,
            7,
            null,
            null,
            ""
        ],
        [
            33,
            "nomad.rms",
            2,
            6,
            8,
            null,
            null,
            ""
        ],
        [
            34,
            "nomad.rms",
            2,
            8,
            9,
            null,
            null,
            ""
        ],
        [
            35,
            "Arabia.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            36,
            "Ghost_Lake.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            37,
            "goldenpit.rms2",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            38,
            "GoldenSwamp.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            39,
            "Kilimanjaro.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            40,
            "valley.rms2",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            41,
            "acropolis.rms2",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            42,
            "FourLakes.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            43,
            "Serengeti.rms",
            2,
            2,
            2,
            null,
            null,
            ""
        ],
        [
            44,
            "Arabia.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            45,
            "Arabia.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            46,
            "Arabia.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            47,
            "Ghost_Lake.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            48,
            "Ghost_Lake.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            49,
            "Ghost_Lake.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            50,
            "goldenpit.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            51,
            "goldenpit.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            52,
            "goldenpit.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            53,
            "GoldenSwamp.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            54,
            "GoldenSwamp.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            55,
            "GoldenSwamp.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            56,
            "Kilimanjaro.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            57,
            "Kilimanjaro.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            58,
            "Kilimanjaro.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            59,
            "valley.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            60,
            "valley.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            61,
            "valley.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            62,
            "cenotes.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            63,
            "cenotes.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            64,
            "cenotes.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            65,
            "lombardia.rms2",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            66,
            "lombardia.rms2",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            67,
            "lombardia.rms2",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            68,
            "Oasis.rms",
            2,
            4,
            3,
            null,
            null,
            ""
        ],
        [
            69,
            "Oasis.rms",
            2,
            6,
            4,
            null,
            null,
            ""
        ],
        [
            70,
            "Oasis.rms",
            2,
            8,
            5,
            null,
            null,
            ""
        ],
        [
            71,
            "Acclivity.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            72,
            "Arabia.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            73,
            "Atacama.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            74,
            "Enclosed.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            75,
            "FrigidLake.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            76,
            "Kawasan.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            77,
            "Morass.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            78,
            "NorthernIsles.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            79,
            "Shoals.rms",
            2,
            2,
            11,
            null,
            null,
            ""
        ],
        [
            80,
            "Acclivity.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            81,
            "Acclivity.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            82,
            "Acclivity.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            83,
            "Acclivity.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            84,
            "Acclivity.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            85,
            "Acclivity.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            86,
            "Acclivity.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            87,
            "Acclivity.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            88,
            "Acclivity.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            89,
            "Acclivity.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            90,
            "Acclivity.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            91,
            "Acclivity.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            92,
            "Acclivity.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            93,
            "Acclivity.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            94,
            "Acclivity.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            95,
            "Acclivity.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            96,
            "Acclivity.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            97,
            "Acclivity.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            98,
            "Acclivity.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            99,
            "Acclivity.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            100,
            "Acclivity.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            101,
            "Arabia.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            102,
            "Arabia.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            103,
            "Arabia.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            104,
            "Arabia.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            105,
            "Arabia.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            106,
            "Arabia.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            107,
            "Arabia.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            108,
            "Arabia.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            109,
            "Arabia.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            110,
            "Arabia.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            111,
            "Arabia.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            112,
            "Arabia.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            113,
            "Arabia.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            114,
            "Arabia.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            115,
            "Arabia.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            116,
            "Arabia.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            117,
            "Arabia.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            118,
            "Arabia.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            119,
            "Arabia.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            120,
            "Arabia.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            121,
            "Arabia.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            122,
            "Atacama.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            123,
            "Atacama.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            124,
            "Atacama.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            125,
            "Atacama.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            126,
            "Atacama.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            127,
            "Atacama.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            128,
            "Atacama.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            129,
            "Atacama.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            130,
            "Atacama.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            131,
            "Atacama.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            132,
            "Atacama.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            133,
            "Atacama.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            134,
            "Atacama.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            135,
            "Atacama.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            136,
            "Atacama.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            137,
            "Atacama.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            138,
            "Atacama.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            139,
            "Atacama.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            140,
            "Atacama.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            141,
            "Atacama.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            142,
            "Atacama.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            143,
            "Enclosed.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            144,
            "Enclosed.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            145,
            "Enclosed.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            146,
            "Enclosed.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            147,
            "Enclosed.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            148,
            "Enclosed.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            149,
            "Enclosed.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            150,
            "Enclosed.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            151,
            "Enclosed.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            152,
            "Enclosed.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            153,
            "Enclosed.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            154,
            "Enclosed.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            155,
            "Enclosed.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            156,
            "Enclosed.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            157,
            "Enclosed.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            158,
            "Enclosed.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            159,
            "Enclosed.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            160,
            "Enclosed.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            161,
            "Enclosed.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            162,
            "Enclosed.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            163,
            "Enclosed.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            164,
            "FrigidLake.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            165,
            "FrigidLake.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            166,
            "FrigidLake.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            167,
            "FrigidLake.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            168,
            "FrigidLake.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            169,
            "FrigidLake.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            170,
            "FrigidLake.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            171,
            "FrigidLake.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            172,
            "FrigidLake.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            173,
            "FrigidLake.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            174,
            "FrigidLake.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            175,
            "FrigidLake.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            176,
            "FrigidLake.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            177,
            "FrigidLake.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            178,
            "FrigidLake.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            179,
            "FrigidLake.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            180,
            "FrigidLake.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            181,
            "FrigidLake.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            182,
            "FrigidLake.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            183,
            "FrigidLake.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            184,
            "FrigidLake.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            185,
            "Kawasan.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            186,
            "Kawasan.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            187,
            "Kawasan.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            188,
            "Kawasan.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            189,
            "Kawasan.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            190,
            "Kawasan.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            191,
            "Kawasan.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            192,
            "Kawasan.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            193,
            "Kawasan.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            194,
            "Kawasan.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            195,
            "Kawasan.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            196,
            "Kawasan.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            197,
            "Kawasan.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            198,
            "Kawasan.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            199,
            "Kawasan.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            200,
            "Kawasan.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            201,
            "Kawasan.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            202,
            "Kawasan.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            203,
            "Kawasan.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            204,
            "Kawasan.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            205,
            "Kawasan.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            206,
            "Morass.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            207,
            "Morass.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            208,
            "Morass.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            209,
            "Morass.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            210,
            "Morass.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            211,
            "Morass.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            212,
            "Morass.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            213,
            "Morass.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            214,
            "Morass.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            215,
            "Morass.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            216,
            "Morass.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            217,
            "Morass.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            218,
            "Morass.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            219,
            "Morass.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            220,
            "Morass.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            221,
            "Morass.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            222,
            "Morass.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            223,
            "Morass.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            224,
            "Morass.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            225,
            "Morass.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            226,
            "Morass.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            227,
            "NorthernIsles.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            228,
            "NorthernIsles.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            229,
            "NorthernIsles.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            230,
            "NorthernIsles.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            231,
            "NorthernIsles.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            232,
            "NorthernIsles.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            233,
            "NorthernIsles.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            234,
            "NorthernIsles.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            235,
            "NorthernIsles.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            236,
            "NorthernIsles.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            237,
            "NorthernIsles.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            238,
            "NorthernIsles.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            239,
            "NorthernIsles.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            240,
            "NorthernIsles.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            241,
            "NorthernIsles.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            242,
            "NorthernIsles.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            243,
            "NorthernIsles.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            244,
            "NorthernIsles.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            245,
            "NorthernIsles.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            246,
            "NorthernIsles.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            247,
            "NorthernIsles.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            248,
            "Shoals.rms",
            2,
            4,
            12,
            null,
            null,
            ""
        ],
        [
            249,
            "Shoals.rms",
            2,
            6,
            13,
            null,
            null,
            ""
        ],
        [
            250,
            "Shoals.rms",
            2,
            8,
            14,
            null,
            null,
            ""
        ],
        [
            251,
            "Shoals.rms",
            1,
            2,
            15,
            null,
            null,
            ""
        ],
        [
            252,
            "Shoals.rms",
            1,
            3,
            16,
            null,
            null,
            ""
        ],
        [
            253,
            "Shoals.rms",
            1,
            4,
            17,
            null,
            null,
            ""
        ],
        [
            254,
            "Shoals.rms",
            1,
            2,
            30,
            null,
            null,
            ""
        ],
        [
            255,
            "Shoals.rms",
            1,
            3,
            31,
            null,
            null,
            ""
        ],
        [
            256,
            "Shoals.rms",
            1,
            4,
            32,
            null,
            null,
            ""
        ],
        [
            257,
            "Shoals.rms",
            1,
            2,
            33,
            null,
            null,
            ""
        ],
        [
            258,
            "Shoals.rms",
            1,
            3,
            34,
            null,
            null,
            ""
        ],
        [
            259,
            "Shoals.rms",
            1,
            4,
            35,
            null,
            null,
            ""
        ],
        [
            260,
            "Shoals.rms",
            1,
            2,
            36,
            null,
            null,
            ""
        ],
        [
            261,
            "Shoals.rms",
            1,
            3,
            37,
            null,
            null,
            ""
        ],
        [
            262,
            "Shoals.rms",
            1,
            4,
            38,
            null,
            null,
            ""
        ],
        [
            263,
            "Shoals.rms",
            1,
            2,
            39,
            null,
            null,
            ""
        ],
        [
            264,
            "Shoals.rms",
            1,
            3,
            40,
            null,
            null,
            ""
        ],
        [
            265,
            "Shoals.rms",
            1,
            4,
            41,
            null,
            null,
            ""
        ],
        [
            266,
            "Shoals.rms",
            1,
            2,
            42,
            null,
            null,
            ""
        ],
        [
            267,
            "Shoals.rms",
            1,
            3,
            43,
            null,
            null,
            ""
        ],
        [
            268,
            "Shoals.rms",
            1,
            4,
            44,
            null,
            null,
            ""
        ],
        [
            269,
            "AfricanClearing.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            270,
            "Arabia.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            271,
            "Arena.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            272,
            "FourLakes.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            273,
            "Islands.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            274,
            "nomad.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            275,
            "Yucatan.rms",
            2,
            2,
            18,
            null,
            null,
            ""
        ],
        [
            276,
            "Arabia.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            277,
            "Arabia.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            278,
            "Arabia.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            279,
            "Arabia.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            280,
            "Arabia.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            281,
            "Arabia.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            282,
            "Arabia.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            283,
            "Arabia.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            284,
            "Arabia.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            285,
            "Arabia.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            286,
            "Arabia.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            287,
            "Arabia.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            288,
            "Arabia.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            289,
            "Arabia.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            290,
            "Arabia.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            291,
            "Arabia.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            292,
            "Arabia.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            293,
            "Arabia.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            294,
            "Arabia.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            295,
            "Arabia.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            296,
            "Arabia.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            297,
            "Arena.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            298,
            "Arena.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            299,
            "Arena.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            300,
            "Arena.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            301,
            "Arena.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            302,
            "Arena.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            303,
            "Arena.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            304,
            "Arena.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            305,
            "Arena.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            306,
            "Arena.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            307,
            "Arena.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            308,
            "Arena.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            309,
            "Arena.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            310,
            "Arena.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            311,
            "Arena.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            312,
            "Arena.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            313,
            "Arena.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            314,
            "Arena.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            315,
            "Arena.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            316,
            "Arena.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            317,
            "Arena.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            318,
            "Black_Forest.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            319,
            "Black_Forest.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            320,
            "Black_Forest.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            321,
            "Black_Forest.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            322,
            "Black_Forest.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            323,
            "Black_Forest.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            324,
            "Black_Forest.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            325,
            "Black_Forest.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            326,
            "Black_Forest.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            327,
            "Black_Forest.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            328,
            "Black_Forest.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            329,
            "Black_Forest.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            330,
            "Black_Forest.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            331,
            "Black_Forest.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            332,
            "Black_Forest.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            333,
            "Black_Forest.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            334,
            "Black_Forest.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            335,
            "Black_Forest.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            336,
            "Black_Forest.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            337,
            "Black_Forest.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            338,
            "Black_Forest.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            339,
            "Fortress.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            340,
            "Fortress.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            341,
            "Fortress.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            342,
            "Fortress.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            343,
            "Fortress.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            344,
            "Fortress.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            345,
            "Fortress.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            346,
            "Fortress.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            347,
            "Fortress.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            348,
            "Fortress.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            349,
            "Fortress.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            350,
            "Fortress.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            351,
            "Fortress.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            352,
            "Fortress.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            353,
            "Fortress.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            354,
            "Fortress.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            355,
            "Fortress.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            356,
            "Fortress.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            357,
            "Fortress.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            358,
            "Fortress.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            359,
            "Fortress.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            360,
            "Mediterranean.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            361,
            "Mediterranean.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            362,
            "Mediterranean.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            363,
            "Mediterranean.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            364,
            "Mediterranean.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            365,
            "Mediterranean.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            366,
            "Mediterranean.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            367,
            "Mediterranean.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            368,
            "Mediterranean.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            369,
            "Mediterranean.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            370,
            "Mediterranean.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            371,
            "Mediterranean.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            372,
            "Mediterranean.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            373,
            "Mediterranean.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            374,
            "Mediterranean.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            375,
            "Mediterranean.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            376,
            "Mediterranean.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            377,
            "Mediterranean.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            378,
            "Mediterranean.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            379,
            "Mediterranean.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            380,
            "Mediterranean.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            381,
            "megarandom.rms2",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            382,
            "megarandom.rms2",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            383,
            "megarandom.rms2",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            384,
            "megarandom.rms2",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            385,
            "megarandom.rms2",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            386,
            "megarandom.rms2",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            387,
            "megarandom.rms2",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            388,
            "megarandom.rms2",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            389,
            "megarandom.rms2",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            390,
            "megarandom.rms2",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            391,
            "megarandom.rms2",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            392,
            "megarandom.rms2",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            393,
            "megarandom.rms2",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            394,
            "megarandom.rms2",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            395,
            "megarandom.rms2",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            396,
            "megarandom.rms2",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            397,
            "megarandom.rms2",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            398,
            "megarandom.rms2",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            399,
            "megarandom.rms2",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            400,
            "megarandom.rms2",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            401,
            "megarandom.rms2",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            402,
            "Michi.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            403,
            "Michi.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            404,
            "Michi.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            405,
            "Michi.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            406,
            "Michi.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            407,
            "Michi.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            408,
            "Michi.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            409,
            "Michi.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            410,
            "Michi.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            411,
            "Michi.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            412,
            "Michi.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            413,
            "Michi.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            414,
            "Michi.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            415,
            "Michi.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            416,
            "Michi.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            417,
            "Michi.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            418,
            "Michi.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            419,
            "Michi.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            420,
            "Michi.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            421,
            "Michi.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            422,
            "Michi.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            423,
            "Nile Delta.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            424,
            "Nile Delta.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            425,
            "Nile Delta.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            426,
            "Nile Delta.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            427,
            "Nile Delta.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            428,
            "Nile Delta.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            429,
            "Nile Delta.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            430,
            "Nile Delta.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            431,
            "Nile Delta.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            432,
            "Nile Delta.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            433,
            "Nile Delta.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            434,
            "Nile Delta.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            435,
            "Nile Delta.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            436,
            "Nile Delta.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            437,
            "Nile Delta.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            438,
            "Nile Delta.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            439,
            "Nile Delta.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            440,
            "Nile Delta.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            441,
            "Nile Delta.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            442,
            "Nile Delta.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            443,
            "Nile Delta.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            444,
            "nomad.rms",
            2,
            4,
            19,
            null,
            null,
            ""
        ],
        [
            445,
            "nomad.rms",
            2,
            6,
            20,
            null,
            null,
            ""
        ],
        [
            446,
            "nomad.rms",
            2,
            8,
            21,
            null,
            null,
            ""
        ],
        [
            447,
            "nomad.rms",
            1,
            2,
            22,
            null,
            null,
            ""
        ],
        [
            448,
            "nomad.rms",
            1,
            3,
            23,
            null,
            null,
            ""
        ],
        [
            449,
            "nomad.rms",
            1,
            4,
            24,
            null,
            null,
            ""
        ],
        [
            450,
            "nomad.rms",
            1,
            2,
            45,
            null,
            null,
            ""
        ],
        [
            451,
            "nomad.rms",
            1,
            3,
            46,
            null,
            null,
            ""
        ],
        [
            452,
            "nomad.rms",
            1,
            4,
            47,
            null,
            null,
            ""
        ],
        [
            453,
            "nomad.rms",
            1,
            2,
            48,
            null,
            null,
            ""
        ],
        [
            454,
            "nomad.rms",
            1,
            3,
            49,
            null,
            null,
            ""
        ],
        [
            455,
            "nomad.rms",
            1,
            4,
            50,
            null,
            null,
            ""
        ],
        [
            456,
            "nomad.rms",
            1,
            2,
            51,
            null,
            null,
            ""
        ],
        [
            457,
            "nomad.rms",
            1,
            3,
            52,
            null,
            null,
            ""
        ],
        [
            458,
            "nomad.rms",
            1,
            4,
            53,
            null,
            null,
            ""
        ],
        [
            459,
            "nomad.rms",
            1,
            2,
            54,
            null,
            null,
            ""
        ],
        [
            460,
            "nomad.rms",
            1,
            3,
            55,
            null,
            null,
            ""
        ],
        [
            461,
            "nomad.rms",
            1,
            4,
            56,
            null,
            null,
            ""
        ],
        [
            462,
            "nomad.rms",
            1,
            2,
            57,
            null,
            null,
            ""
        ],
        [
            463,
            "nomad.rms",
            1,
            3,
            58,
            null,
            null,
            ""
        ],
        [
            464,
            "nomad.rms",
            1,
            4,
            59,
            null,
            null,
            ""
        ],
        [
            465,
            "BR_BattleOnTheIce.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            466,
            "BR_ElDorado.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            467,
            "BR_FallOfAxum.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            468,
            "BR_FallOfRome.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            469,
            "BR_TheMajapahitEmpire.rms",
            8,
            8,
            25,
            null,
            null,
            ""
        ],
        [
            470,
            "Acclivity.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            471,
            "Arabia.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            472,
            "Atacama.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            473,
            "Enclosed.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            474,
            "FrigidLake.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            475,
            "Kawasan.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            476,
            "Morass.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            477,
            "NorthernIsles.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            478,
            "Shoals.rms",
            2,
            2,
            26,
            null,
            null,
            ""
        ],
        [
            479,
            "Acclivity.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            480,
            "Acclivity.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            481,
            "Acclivity.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            482,
            "Arabia.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            483,
            "Arabia.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            484,
            "Arabia.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            485,
            "Atacama.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            486,
            "Atacama.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            487,
            "Atacama.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            488,
            "Enclosed.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            489,
            "Enclosed.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            490,
            "Enclosed.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            491,
            "FrigidLake.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            492,
            "FrigidLake.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            493,
            "FrigidLake.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            494,
            "Kawasan.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            495,
            "Kawasan.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            496,
            "Kawasan.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            497,
            "Morass.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            498,
            "Morass.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            499,
            "Morass.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            500,
            "NorthernIsles.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            501,
            "NorthernIsles.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            502,
            "NorthernIsles.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ],
        [
            503,
            "Shoals.rms",
            2,
            4,
            27,
            null,
            null,
            ""
        ],
        [
            504,
            "Shoals.rms",
            2,
            6,
            28,
            null,
            null,
            ""
        ],
        [
            505,
            "Shoals.rms",
            2,
            8,
            29,
            null,
            null,
            ""
        ]
    ]
]

[POST] /game/automatch2/polling

AUTHENTICATION

AoE2:DE

Request

POST /game/automatch2/polling HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 791
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

appBinCRC=9876&callNum=123&connect_id=ccc&dataCRC=6789&factionIDs=[0,0,0,0]&lastCallTime=111&matchTypes=[20,21,22,23]&modDLLFile=INVALID&modDllCRC=0&modName=INVALID&modVersion=INVALID&options=["","","",""]&partySessionID=444&raceInfoKey=[0,1,2,3]&raceInfoProfileID=[1,1,1,1]&raceInfoRaceID=[8,8,8,8]&relayPingTimes=[1,1,2,2,3,3,4,4,5]&relayRegion=eastus&relayRegions=["westeurope","ukwest","australiasoutheast","westindia","eastus","southeastasia","brazilsouth","westus2","koreacentral"]&sessionID=zzz&versionFlags=0
parametertypevaluecomments
appBinCRCCRC9876
callNumint123
connect_idstrccc
dataCRCint6789backwards appBinCRC?
factionIDsarray[int][0,0,0,0]
lastCallTimeint111
matchTypesarray[int][20,21,22,23]
modDLLFile?INVALID
modDllCRCint0
modNamestrINVALID
modVersionintINVALID
optionsarray[str][“”,“”,“”,“”]
partySessionIDint444
raceInfoKeyarray[int][0,1,2,3]
raceInfoProfileIDarray[int][1,1,1,1]
raceInfoRaceIDarray[int][8,8,8,8]
relayPingTimesarray[int][1,1,2,2,3,3,4,4,5]
relayRegionstr/enumeastus
relayRegionsarray[str/enum][“westeurope”,“ukwest”,“australiasoutheast”,“westindia”,“eastus”,“southeastasia”,“brazilsouth”,“westus2”,“koreacentral”]
sessionIDstrzzz
versionFlagsint0

Response

[
    0, // result status code
    [
        [
            "6",
            55,
            [
                [
                    0,
                    55
                ]
            ],
            "0"
        ]
    ],
    93826,
    null,
    233334,
    "Yucatan.rms", // map_name
    0,
    0,
    0,
    "2",
    "1",
    "6",
    186444398,
    "authtoken",
    "51.141.99.39", // matchmaking server ip?
    27014,
    27114,
    27214,
    "ukwest", // server location
    [
        [
            186444398,
            233334, // self player_id
            -1,
            33833,
            0,
            0,
            "/10.0.11.6"
        ],
        [
            186444398,
            4994658,
            31286,
            4037175,
            0,
            1,
            "/10.0.11.8"
        ]
    ],
    "",
    225
]

AoE4

Request

POST /game/automatch2/polling HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 2186
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Expect: 100-continue

appBinCRC=24916&callNum=275&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&dataCRC=-638535971&factionIDs=[0,0,0,0]&lastCallTime=3026838&matchTypes=[20,21,22,23]&modDLLFile=INVALID&modDllCRC=0&modName=INVALID&modVersion=INVALID&options=["","","",""]&partySessionID=50865084&raceInfoKey=[0,1,2,3]&raceInfoProfileID=[233334,233334,233334,233334]&raceInfoRaceID=[2039321,2039321,2039321,2039321]&relayPingTimes=[264,220,253,45,187,191,153,45,119]&relayRegion=ukwest&relayRegions=["australiasoutheast","brazilsouth","koreacentral","ukwest","southeastasia","westus2","westindia","westeurope","eastus"]&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&versionFlags=0&vetoMapKey=[0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3]&vetoMaps=["hideout_tiny","hideout_small","hideout_medium","hideout_large","archipelago_medium","high_view_small","archipelago_large","high_view_medium","archipelago_gigantic","high_view_large","archipelago_small","high_view_tiny","hideout_tiny","hideout_small","hideout_medium","hideout_large","archipelago_medium","high_view_small","archipelago_large","high_view_medium","archipelago_gigantic","high_view_large","archipelago_small","high_view_tiny","hideout_tiny","hideout_small","hideout_medium","hideout_large","archipelago_medium","high_view_small","archipelago_large","high_view_medium","archipelago_gigantic","high_view_large","archipelago_small","high_view_tiny","hideout_tiny","hideout_small","hideout_medium","hideout_large","archipelago_medium","high_view_small","archipelago_large","high_view_medium","archipelago_gigantic","high_view_large","archipelago_small","high_view_tiny"]
parametertypevaluecomments
appBinCRCCRC9876
callNumint123
connect_idstrccc
dataCRCint6789
factionIDsarray[int][0,0,0,0]
lastCallTimeint111
matchTypesarray[int][20,21,22,23]
modDLLFile?INVALID
modDllCRCint0
modNamestrINVALID
modVersionintINVALID
optionsarray[str][“”,“”,“”,“”]
partySessionIDint444
raceInfoKeyarray[int][0,1,2,3]
raceInfoProfileIDarray[int][1,1,1,1]
raceInfoRaceIDarray[int][8,8,8,8]
relayPingTimesarray[int][1,1,2,2,3,3,4,4,5]
relayRegionstr/enumeastus
relayRegionsarray[str/enum][“westeurope”,“ukwest”,“australiasoutheast”,“westindia”,“eastus”,“southeastasia”,“brazilsouth”,“westus2”,“koreacentral”]
sessionIDstrzzz
versionFlagsint0
vetoMapKeyarr[int][0,0,0,1,1,1,0]
vetoMapsarr[int][“hideout_tiny”,“hideout_small”,“hideout_medium”,“…”

Response

[
    0,
    [
        [
            "20",
            20,
            [
                [
                    137266,
                    1
                ],
                [
                    129267,
                    2
                ],
                [
                    199703,
                    2
                ],
                [
                    2039321,
                    4
                ],
                [
                    2058393,
                    6
                ],
                [
                    106553,
                    3
                ],
                [
                    131384,
                    2
                ]
            ],
            "0"
        ],
        [
            "21",
            20,
            [
                [
                    137266,
                    1
                ],
                [
                    133008,
                    2
                ],
                [
                    129267,
                    2
                ],
                [
                    199703,
                    2
                ],
                [
                    136150,
                    1
                ],
                [
                    2039321,
                    3
                ],
                [
                    2058393,
                    6
                ],
                [
                    106553,
                    2
                ],
                [
                    134522,
                    1
                ],
                [
                    131384,
                    3
                ]
            ],
            "0"
        ],
        [
            "22",
            32,
            [
                [
                    137266,
                    2
                ],
                [
                    133008,
                    1
                ],
                [
                    129267,
                    2
                ],
                [
                    199703,
                    3
                ],
                [
                    136150,
                    1
                ],
                [
                    2039321,
                    9
                ],
                [
                    2058393,
                    10
                ],
                [
                    106553,
                    5
                ],
                [
                    134522,
                    3
                ],
                [
                    131384,
                    5
                ]
            ],
            "0"
        ],
        [
            "23",
            32,
            [
                [
                    137266,
                    2
                ],
                [
                    129267,
                    2
                ],
                [
                    199703,
                    1
                ],
                [
                    136150,
                    1
                ],
                [
                    2039321,
                    10
                ],
                [
                    2058393,
                    11
                ],
                [
                    106553,
                    6
                ],
                [
                    131384,
                    3
                ]
            ],
            "0"
        ]
    ],
    88302,
    null,
    -1,
    "",
    -1,
    -1,
    -1,
    "0",
    "0",
    "-1",
    -1,
    "authtoken",
    "0.0.0.0",
    0,
    0,
    0,
    "",
    [],
    null,
    0
]

[POST] /game/automatch2/stoppolling

AUTHENTICATION

AoE2:DE

Request

POST /game/automatch2/stoppolling HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 144
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&commit=0&connect_id=ccc&lastCallTime=111&ownerProfileID=444&sessionID=zzz
parametertypevaluecomments
callNumint123
commitint/bool0
connect_idstrccc
lastCallTimeint111
ownerProfileIDint444
sessionIDstrzzz

Response

[
    0 // result status code
]

AoE4

Request

POST /game/automatch2/stoppolling HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 146
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=279&commit=0&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3028904&ownerProfileID=233334&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
commitint/bool0
connect_idstrccc
lastCallTimeint111
ownerProfileIDint444
sessionIDstrzzz

Response

[
    0 // result status code
]

[POST] /game/automatch2/updateStatus

AUTHENTICATION

AoE2:DE

Request

POST /game/automatch2/updateStatus HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 152
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&matchID=555&result=1&resultCode=0&sessionID=zzz
parametertypevaluecomments
callNumint123
connect_idstrccc
lastCallTimeint111
matchIDint555
resultint1
resultCodeint/bool0
sessionIDstrzzz

Response

[
    0, // result status code
    0
]

Challenge Endpoints

Endpoints for managing in-game challenges and tracking challenge progress. Challenges are time-limited objectives that reward players with items upon completion.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getChallengesGETGet available challenges with encrypted data signature
getChallengeProgressGETGet current player’s challenge progress
getChallengeProgressByProfileIDGETGet challenge progress for a specific profile
updateProgressBatchedPOSTUpdate progress for multiple challenges at once

[GET] /game/Challenge/getChallengeProgress

AUTHENTICATION

AoE2:DE

Request

GET /game/Challenge/getChallengeProgress?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            9996216,
            400000022,
            0,
            0,
            null,
            null
        ],
        [
            9996215,
            400000027,
            0,
            0,
            null,
            null
        ]
    ]
]

AoE4

Request

GET /game/Challenge/getChallengeProgress?callNum=169&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1984163&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            646542926,
            1472100,
            0,
            0,
            null,
            null
        ],
        [
            646542927,
            1400972,
            0,
            0,
            null,
            null
        ],
        [
            646542924,
            1472105,
            0,
            0,
            null,
            null
        ],
        [
            646542925,
            1411463,
            0,
            0,
            null,
            null
        ],
        [
            646542928,
            1472187,
            0,
            0,
            null,
            null
        ],
        [
            646542929,
            1400973,
            1,
            0,
            null,
            1666824369
        ],
        [
            646542930,
            1472185,
            0,
            0,
            null,
            null
        ],
        [
            646542933,
            1474590,
            0,
            0,
            null,
            null
        ],
        [
            646542934,
            1411637,
            0,
            0,
            null,
            null
        ],
        [
            646542931,
            1472103,
            0,
            0,
            null,
            null
        ],
        [
            646542932,
            1433131,
            0,
            0,
            null,
            null
        ],
        [
            646542915,
            1460288,
            0,
            0,
            null,
            null
        ],
        [
            646542916,
            1440397,
            0,
            0,
            null,
            null
        ],
        [
            646542913,
            1440340,
            0,
            0,
            null,
            null
        ],
        [
            646542914,
            1440428,
            0,
            0,
            null,
            null
        ],
        [
            646542919,
            1411469,
            0,
            0,
            null,
            null
        ],
        [
            646542917,
            1441732,
            0,
            0,
            null,
            null
        ],
        [
            646542918,
            1472232,
            0,
            0,
            null,
            null
        ],
        [
            646543050,
            1471943,
            0,
            0,
            null,
            null
        ],
        [
            646543053,
            1472198,
            0,
            0,
            null,
            null
        ],
        [
            646543054,
            1472555,
            0,
            0,
            1666828800,
            null
        ],
        [
            646543051,
            1471947,
            0,
            0,
            null,
            null
        ],
        [
            646543052,
            1471945,
            0,
            0,
            null,
            null
        ],
        [
            646543057,
            1428841,
            1,
            0,
            1666828800,
            1666824364
        ],
        [
            646543058,
            1424837,
            0,
            0,
            1666828800,
            null
        ],
        [
            646543055,
            1425217,
            0,
            0,
            1666828800,
            null
        ],
        [
            646543056,
            1425463,
            0,
            0,
            1666828800,
            null
        ],
        [
            646542922,
            1525111,
            0,
            0,
            null,
            null
        ],
        [
            646542923,
            1472107,
            0,
            0,
            null,
            null
        ],
        [
            646542920,
            1411467,
            0,
            0,
            null,
            null
        ],
        [
            646542921,
            1411465,
            0,
            0,
            null,
            null
        ],
        [
            646542948,
            1472059,
            0,
            0,
            null,
            null
        ],
        [
            646542949,
            1472697,
            0,
            0,
            null,
            null
        ],
        [
            646542946,
            1472174,
            0,
            0,
            null,
            null
        ],
        [
            646542947,
            1411471,
            0,
            0,
            null,
            null
        ],
        [
            646543002,
            1411661,
            0,
            0,
            null,
            null
        ],
        [
            646543003,
            1472143,
            0,
            0,
            null,
            null
        ],
        [
            646543000,
            1472704,
            0,
            0,
            null,
            null
        ],
        [
            646543001,
            1471977,
            0,
            0,
            null,
            null
        ],
        [
            646543006,
            1471971,
            0,
            0,
            null,
            null
        ],
        [
            646542951,
            1525083,
            0,
            0,
            null,
            null
        ],
        [
            646542952,
            1411647,
            0,
            0,
            null,
            null
        ],
        [
            646543007,
            1472024,
            0,
            0,
            null,
            null
        ],
        [
            646543004,
            1472141,
            0,
            0,
            null,
            null
        ],
        [
            646543005,
            1474286,
            0,
            0,
            null,
            null
        ],
        [
            646542950,
            1525085,
            0,
            0,
            null,
            null
        ],
        [
            646542955,
            1401285,
            0,
            0,
            null,
            null
        ],
        [
            646542956,
            1411643,
            0,
            0,
            null,
            null
        ],
        [
            646542953,
            1401283,
            0,
            0,
            null,
            null
        ],
        [
            646543008,
            1472091,
            0,
            0,
            null,
            null
        ],
        [
            646542954,
            1411645,
            0,
            0,
            null,
            null
        ],
        [
            646543009,
            1474274,
            0,
            0,
            null,
            null
        ],
        [
            646542937,
            1411477,
            0,
            0,
            null,
            null
        ],
        [
            646542938,
            1472170,
            0,
            0,
            null,
            null
        ],
        [
            646542935,
            1474593,
            0,
            0,
            null,
            null
        ],
        [
            646542936,
            1472172,
            0,
            0,
            null,
            null
        ],
        [
            646542939,
            1411639,
            0,
            0,
            null,
            null
        ],
        [
            646542940,
            1525087,
            0,
            0,
            null,
            null
        ],
        [
            646542941,
            1472056,
            0,
            0,
            null,
            null
        ],
        [
            646542944,
            1525081,
            0,
            0,
            null,
            null
        ],
        [
            646542945,
            1411473,
            0,
            0,
            null,
            null
        ],
        [
            646542942,
            1401279,
            0,
            0,
            null,
            null
        ],
        [
            646542943,
            1411475,
            0,
            0,
            null,
            null
        ],
        [
            646542968,
            1473254,
            0,
            0,
            null,
            null
        ],
        [
            646542969,
            1474586,
            0,
            0,
            null,
            null
        ],
        [
            646543020,
            1474313,
            0,
            0,
            null,
            null
        ],
        [
            646543021,
            1474276,
            0,
            0,
            null,
            null
        ],
        [
            646543024,
            1472134,
            0,
            0,
            null,
            null
        ],
        [
            646542970,
            1472200,
            0,
            0,
            null,
            null
        ],
        [
            646543025,
            1474311,
            0,
            0,
            null,
            null
        ],
        [
            646543022,
            1472015,
            0,
            0,
            null,
            null
        ],
        [
            646543023,
            1474278,
            0,
            0,
            null,
            null
        ],
        [
            646542973,
            1411655,
            0,
            0,
            null,
            null
        ],
        [
            646543028,
            1471949,
            0,
            0,
            null,
            null
        ],
        [
            646542974,
            1411653,
            0,
            0,
            null,
            null
        ],
        [
            646543029,
            1474309,
            0,
            0,
            null,
            null
        ],
        [
            646542971,
            1411659,
            0,
            0,
            null,
            null
        ],
        [
            646543026,
            1474260,
            0,
            0,
            null,
            null
        ],
        [
            646542972,
            1411657,
            0,
            0,
            null,
            null
        ],
        [
            646543027,
            1472084,
            0,
            0,
            null,
            null
        ],
        [
            646542977,
            1401290,
            0,
            0,
            null,
            null
        ],
        [
            646542978,
            1401291,
            0,
            0,
            null,
            null
        ],
        [
            646542975,
            1525109,
            0,
            0,
            null,
            null
        ],
        [
            646542976,
            1525107,
            0,
            0,
            null,
            null
        ],
        [
            646542959,
            1401288,
            0,
            0,
            null,
            null
        ],
        [
            646542957,
            1472040,
            0,
            0,
            null,
            null
        ],
        [
            646542958,
            1411641,
            0,
            0,
            null,
            null
        ],
        [
            646543010,
            1402686,
            0,
            0,
            null,
            null
        ],
        [
            646543013,
            1525209,
            0,
            0,
            null,
            null
        ],
        [
            646543014,
            1471965,
            0,
            0,
            null,
            null
        ],
        [
            646543011,
            1525207,
            0,
            0,
            null,
            null
        ],
        [
            646543012,
            1525205,
            0,
            0,
            null,
            null
        ],
        [
            646542962,
            1472166,
            0,
            0,
            null,
            null
        ],
        [
            646543017,
            1525203,
            0,
            0,
            null,
            null
        ],
        [
            646543018,
            1471967,
            0,
            0,
            null,
            null
        ],
        [
            646542963,
            1472044,
            0,
            0,
            null,
            null
        ],
        [
            646542960,
            1411649,
            0,
            0,
            null,
            null
        ],
        [
            646543015,
            1471963,
            0,
            0,
            null,
            null
        ],
        [
            646543016,
            1471969,
            0,
            0,
            null,
            null
        ],
        [
            646542961,
            1472204,
            0,
            0,
            null,
            null
        ],
        [
            646542966,
            1472202,
            0,
            0,
            null,
            null
        ],
        [
            646542967,
            1472168,
            0,
            0,
            null,
            null
        ],
        [
            646542964,
            1472164,
            0,
            0,
            null,
            null
        ],
        [
            646543019,
            1525201,
            0,
            0,
            null,
            null
        ],
        [
            646542965,
            1472042,
            0,
            0,
            null,
            null
        ],
        [
            646542908,
            1428475,
            0,
            0,
            null,
            null
        ],
        [
            646542909,
            1520550,
            0,
            0,
            null,
            null
        ],
        [
            646543042,
            1474546,
            0,
            0,
            null,
            null
        ],
        [
            646543043,
            1474264,
            0,
            0,
            null,
            null
        ],
        [
            646543040,
            1472087,
            0,
            0,
            null,
            null
        ],
        [
            646543041,
            1525091,
            0,
            0,
            null,
            null
        ],
        [
            646542991,
            1411667,
            0,
            0,
            null,
            null
        ],
        [
            646543046,
            1472191,
            0,
            0,
            null,
            null
        ],
        [
            646543047,
            1474250,
            0,
            0,
            null,
            null
        ],
        [
            646542992,
            1474284,
            0,
            0,
            null,
            null
        ],
        [
            646543044,
            1525097,
            0,
            0,
            null,
            null
        ],
        [
            646542990,
            1474282,
            0,
            0,
            null,
            null
        ],
        [
            646543045,
            1525095,
            0,
            0,
            null,
            null
        ],
        [
            646542995,
            1474280,
            0,
            0,
            null,
            null
        ],
        [
            646542996,
            1472702,
            0,
            0,
            null,
            null
        ],
        [
            646542993,
            1411665,
            0,
            0,
            null,
            null
        ],
        [
            646543048,
            1474252,
            0,
            0,
            null,
            null
        ],
        [
            646542994,
            1411663,
            0,
            0,
            null,
            null
        ],
        [
            646543049,
            1472193,
            0,
            0,
            null,
            null
        ],
        [
            646542911,
            1460335,
            0,
            0,
            null,
            null
        ],
        [
            646542999,
            1472706,
            0,
            0,
            null,
            null
        ],
        [
            646542912,
            1521701,
            0,
            0,
            null,
            null
        ],
        [
            646542997,
            1473518,
            0,
            0,
            null,
            null
        ],
        [
            646542910,
            1470814,
            0,
            0,
            null,
            null
        ],
        [
            646542998,
            1474609,
            0,
            0,
            null,
            null
        ],
        [
            646542979,
            1401292,
            0,
            0,
            null,
            null
        ],
        [
            646543031,
            1471953,
            0,
            0,
            null,
            null
        ],
        [
            646543032,
            1470862,
            0,
            0,
            null,
            null
        ],
        [
            646543030,
            1470864,
            0,
            0,
            null,
            null
        ],
        [
            646543035,
            1470868,
            0,
            0,
            null,
            null
        ],
        [
            646542980,
            1525105,
            0,
            0,
            null,
            null
        ],
        [
            646543036,
            1474307,
            0,
            0,
            null,
            null
        ],
        [
            646542981,
            1474613,
            1,
            0,
            null,
            1666824051
        ],
        [
            646543033,
            1471951,
            0,
            0,
            null,
            null
        ],
        [
            646543034,
            1472127,
            0,
            0,
            null,
            null
        ],
        [
            646542984,
            1411651,
            0,
            0,
            null,
            null
        ],
        [
            646543039,
            1525093,
            0,
            0,
            null,
            null
        ],
        [
            646542985,
            1473523,
            0,
            0,
            null,
            null
        ],
        [
            646543037,
            1470866,
            0,
            0,
            null,
            null
        ],
        [
            646542982,
            1525103,
            0,
            0,
            null,
            null
        ],
        [
            646543038,
            1472089,
            0,
            0,
            null,
            null
        ],
        [
            646542983,
            1474615,
            0,
            0,
            null,
            null
        ],
        [
            646542988,
            1471980,
            0,
            0,
            null,
            null
        ],
        [
            646542989,
            1411669,
            0,
            0,
            null,
            null
        ],
        [
            646542986,
            1472038,
            0,
            0,
            null,
            null
        ],
        [
            646542987,
            1472036,
            0,
            0,
            null,
            null
        ]
    ]
]

[GET] /game/Challenge/getChallengeProgressByProfileID (Missing Request, Parameters, Response)

AUTHENTICATION

Request, Parameters, Response

AoE2:DE

Request

REQUEST_TEMPLATE

PARAMETERS_TEMPLATE

Response

RESPONSE_TEMPLATE

[GET] /game/Challenge/getChallenges

AUTHENTICATION

AoE2:DE

Request

GET /game/Challenge/getChallenges?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&signature=sss HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

{
    "result": 0,
    "dataSignature": "Q8jVpeRaWqNAyXwg7I/+4elO6TtyZGGRFkgOzBdiuh+h3CTgIHvCODfZZ95GFMSSpkBOwAgW/rx0EOiPXLn1BKyQW1qjmLIJFkCAfy06JoxPGpRXoo6WxRyLhe3xg6YrIm4AVa2sxeAkA9mNfFfFr+feiSNZ/6HBp621flD+f2Y+zHPd3ClPcQGiEvQXy6CCzsfqifr15+zTXZKsrrCmKgnrWQpefBxcaQipsZy063tHmH1DVbq05nC+iiecZJjhe70Pn+hzTBli6AOhAvFjrU7/95JFyWuHsfHu9GjWWAz5XNppOaPs5qChhm4bqr/4hd6pmnD9h4htIDDctdiAJw=="
}

AoE4

Request

GET /game/Challenge/getChallenges?callNum=170&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1984780&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&signature=IrzFNAXOGFbB0WP3tc21BGDe8Br%2B1hZdG7L%2BONL8HourY0aIjyqbV%2FyrS7Dc6N%2BBqumlqrGFbJl9DDLJ6fdY8rcXNb%2BWQYep6als79ipXFgtS%2FFsy6Ewq6%2F31dfiloQzjdnGCljC%2ByaL%2BbtUL93e62AFOtihFfxD%2F6qcMLtZm4isuEHdUGcCn7MCyB409plnV6Qk5UitKHfx8OLAGBm0%2BF8%2BB6vtJTk0IrfwMWZQwzpx1uULTnLoLyJm6OPirHVqe8qi5Y29ZAw8bUZCdug8F2lX3ltuMFTnmVSSJBEV2WT8dssNiuTPdbTpZ30b6vv8SUAKaumVk4GsxcZHqsWPAA%3D%3D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

[
    0, // result status code
    [],
    [],
    "IrzFNAXOGFbB0WP3tc21BGDe8Br+1hZdG7L+ONL8HourY0aIjyqbV/yrS7Dc6N+BqumlqrGFbJl9DDLJ6fdY8rcXNb+WQYep6als79ipXFgtS/Fsy6Ewq6/31dfiloQzjdnGCljC+yaL+btUL93e62AFOtihFfxD/6qcMLtZm4isuEHdUGcCn7MCyB409plnV6Qk5UitKHfx8OLAGBm0+F8+B6vtJTk0IrfwMWZQwzpx1uULTnLoLyJm6OPirHVqe8qi5Y29ZAw8bUZCdug8F2lX3ltuMFTnmVSSJBEV2WT8dssNiuTPdbTpZ30b6vv8SUAKaumVk4GsxcZHqsWPAA=="
]

[POST] /game/challenge/updateProgressBatched (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/challenge/updateProgressBatched HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 162
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&progressIDs=[999]&sessionID=zzz&updateAmounts=[1]
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
progressIDsarray[int][999]
sessionIDstr
updateAmountsarray[int][1]

Response

[
    0 // result status code
]

AoE4

Request

POST /game/challenge/updateProgressBatched HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 164
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=86&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=327549&progressIDs=[646542981]&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&updateAmounts=[12]
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
progressIDsarray[int][999]
sessionIDstr
updateAmountsarray[int][1]

Response

[
    0 // result status code
]

Chat Endpoints

Endpoints for in-game chat functionality and messaging.

Authentication: All endpoints in this section require Steam authentication.

Warning: Accessing chat channels may be monitored. Use sparingly.

Endpoints

EndpointMethodDescription
deleteOfflineMessagePOSTDelete an offline message
getChatChannelsGETGet available chat channels
getOfflineMessagesGETRetrieve offline messages

[POST] /game/chat/deleteOfflineMessage (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/chat/deleteOfflineMessage HTTP/1.1
Cookie: ApplicationGatewayAffinity=d0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 131
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
messageIDint
sessionIDstr

Response

[
    0 // result status code
]

AoE4

Request

POST /game/chat/deleteOfflineMessage HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 131
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=47&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=24061&messageID=70218256&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
messageIDint
sessionIDstr

Response

[
    0 // result status code
]

[GET] /game/chat/getChatChannels

AUTHENTICATION

AoE2:DE

Request

GET /game/chat/getChatChannels?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
   0, // result status code
   [],
   100
]

AoE4

Request

GET /game/chat/getChatChannels?callNum=11&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=5481&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [],
    100
]

[GET] /game/chat/getOfflineMessages

AUTHENTICATION

AoE2:DE

Request

GET /game/chat/getOfflineMessages?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [],
    [
        [
            "233334", // self profile_id
            []
        ]
    ],
    [],
    [],
    []
]

AoE4

Request

GET /game/chat/getOfflineMessages?callNum=12&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=5996&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            0,
            2,
            "system",
            "",
            "",
            "",
            2,
            0,
            1,
            -1,
            null,
            "",
            4,
            []
        ]
    ],
    [
        [
            "233334",
            [
                [
                    70218256,
                    233334,
                    2,
                    "SYSTEM_OFFLINEITEM_COMMUNITY_EVENT",
                    "Event Items Granted!",
                    "These items have been granted as part of the currently running event.",
                    1666823722,
                    "",
                    70213314
                ],
                [
                    70218257,
                    233334,
                    2,
                    "SYSTEM_OFFLINEITEM_COMMUNITY_EVENT",
                    "Event Items Granted!",
                    "These items have been granted as part of the currently running event.",
                    1666823722,
                    "",
                    70213315
                ],
                [
                    70218258,
                    233334,
                    2,
                    "SYSTEM_OFFLINEITEM_COMMUNITY_EVENT",
                    "Event Items Granted!",
                    "These items have been granted as part of the currently running event.",
                    1666823722,
                    "",
                    70213316
                ]
            ]
        ]
    ],
    [
        [
            70213314,
            2,
            233334,
            0,
            0,
            1,
            null,
            null
        ],
        [
            70213315,
            2,
            233334,
            0,
            0,
            1,
            null,
            null
        ],
        [
            70213316,
            2,
            233334,
            0,
            0,
            1,
            null,
            null
        ]
    ],
    [
        [
            "70213314",
            []
        ],
        [
            "70213315",
            []
        ],
        [
            "70213316",
            []
        ]
    ],
    [
        [
            "70213314",
            [
                [
                    449911890,
                    2,
                    454345,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    -1,
                    70213314,
                    35,
                    -1
                ]
            ]
        ],
        [
            "70213315",
            [
                [
                    449911888,
                    2,
                    454343,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    -1,
                    70213315,
                    35,
                    -1
                ]
            ]
        ],
        [
            "70213316",
            [
                [
                    449911889,
                    2,
                    454344,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    -1,
                    70213316,
                    35,
                    -1
                ]
            ]
        ]
    ]
]

Clan Endpoints

Endpoints for clan/guild management including creation, membership, and settings.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
applyPOSTApply to join a clan
createPOSTCreate a new clan
disbandPOSTDisband/delete a clan
findGETSearch for clans
getClanGETGet clan information
getClanInfoFullGETGet detailed clan info with members
updatePOSTUpdate clan settings

[POST] /game/clan/apply

AUTHENTICATION

AoE2:DE

Request

POST /game/clan/apply HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 133

callNum=72&clanList_name=TURK&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&lastCallTime=1994252&sessionID=mfukppp90s845hti7ktv7wc7e50hkv
parametertypevaluecomments
callNumint40
clanList_namestrTURK
connect_idstr=sessionID
lastCallTimeint
sessionIDstr=connect_id

Response

[
    6 // result status code; 0 = invite sent, 6 = Clan is full
]

[POST] /game/clan/create

AUTHENTICATION

AoE2:DE

Request

POST /game/clan/create HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 429

callNum=40&chat=[]&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&cost=0&demote=[]&description=&disband=[]&editInfo=[]&editPermission=[]&fullName=Rusty&icon=CR-001&invite=[]&itemPrice_id=-1&joinPolicy=1&lastCallTime=631757&locStringID=[]&messageOfTheDay=&metadata=&name=Rusty&paymentitem=-1&permissionName=[]&promote=[]&rank=[]&remove=[]&sessionID=mfukppp90s845hti7ktv7wc7e50hkv&tags=[]
parametertypevaluecomments
callNumint40
chatarr[str]
connect_idstr=sessionID
costint0
demotearr[]
descriptionstr
disbandarr[]
editInfoarr[]
editPermissionarr[]
fullNamestr
iconstr/enumCR-001
invitearr[]
itemPrice_idint-1
joinPolicyint1
lastCallTimeint
locStringIDarr[]maybe ‘location’?
messageOfTheDaystr?
metadata?
namestr
paymentitemint-1
permissionNamearr[]
promotearr[]
rankarr[]
removearr[]
sessionIDstr=connect_id
tagsarr[]

Response

[
    3,
    null,
    null,
    []
]

[POST] /game/clan/disband

AUTHENTICATION

AoE2:DE

Request

POST /game/clan/disband HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 114

callNum=69&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&lastCallTime=1852544&sessionID=mfukppp90s845hti7ktv7wc7e50hkv
parametertypevaluecomments
callNumint40
connect_idstr=sessionID
lastCallTimeint
sessionIDstr=connect_id

Response

[
    0 // result status code
]

[GET] /game/clan/find

AUTHENTICATION

AoE2:DE

Request

GET /game/clan/find?callNum=35&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&count=50&joinPolicies=%5B0%2C1%2C2%5D&lastCallTime=74138&name=&sessionID=mfukppp90s845hti7ktv7wc7e50hkv&start=0&tags=%5B%5D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint35
connect_idstr=session_id
countint
joinPoliciesarr[int][0,1,2]
lastCallTimeint
namestr?
sessionIDstr=connect_id
startint0
tagsarr[?]

Response

[
    0, // result status code
    [
        [
            46, // clan_id
            "TURK", // clan_tag
            "TURKİYE", // clan long name
            "KAN KILIÃ DEHÅET\r\r    \r\r", // clan description
            "",
            "CR-036", // icon_id
            200, // clan member amount
            0,
            0,
            "",
            "",
            1671
        ],
        [
            91,
            "TdT",
            "TanaDelleTigri",
            "Qui nascono i lottatori più forti.",
            "",
            "CR-003",
            10,
            34,
            1,
            "",
            "",
            33337
        ],
        [
            92,
            "COOME",
            "COOMERS",
            "",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            33347
        ],
        [
            50,
            "BOTHN",
            "Bothnia_Inc",
            "",
            "",
            "CR-010",
            200,
            0,
            0,
            "",
            "",
            2652
        ],
        [
            94,
            "PGT",
            "PortugalGames",
            "PortugalGames Comunidade Portuguêsa!\rStream - twitch.tv/jpgbarros",
            "",
            "CR-036",
            200,
            0,
            0,
            "",
            "",
            33402
        ],
        [
            51,
            "KAOS",
            "KAOS",
            "",
            "",
            "0",
            1,
            68,
            1,
            "",
            "",
            2784
        ],
        [
            95,
            "L3Y1",
            "L3Y1",
            "[Taiwan親åå]  ç®æ¨ : HDé»è…¦æ¥µéææ°è…",
            "",
            "2",
            200,
            0,
            0,
            "",
            "",
            33406
        ],
        [
            97,
            "ALPHA",
            "Väyryset",
            "",
            "",
            "0",
            6,
            30,
            1,
            "",
            "",
            33460
        ],
        [
            54,
            "Reino",
            "Reino",
            "",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            3154
        ],
        [
            98,
            "RBT",
            "RainbowTurtles",
            "",
            "",
            "",
            1,
            22,
            1,
            "",
            "",
            33474
        ],
        [
            55,
            "Pink",
            "Pink_Fluffy_Ninjas",
            "",
            "",
            "",
            13,
            27,
            1,
            "",
            "",
            3640
        ],
        [
            99,
            "Burro",
            "LosDonBurro",
            "Vengan unanse burros latinos",
            "",
            "0",
            200,
            0,
            0,
            "",
            "",
            33530
        ],
        [
            58,
            "Lobit",
            "Lobitos",
            "",
            "",
            "0",
            2,
            106,
            1,
            "",
            "",
            3958
        ],
        [
            59,
            "GWC",
            "GigaWolveClan",
            "Seggelzentrale !!!\r\rGWC since 2000 ",
            "",
            "CR-003",
            13,
            21,
            1,
            "",
            "",
            3979
        ],
        [
            19,
            "WOLO",
            "WOLOLO",
            "",
            "",
            "1",
            200,
            0,
            0,
            "",
            "",
            155
        ],
        [
            3,
            "Disc",
            "disconnect",
            "",
            "",
            "0",
            3,
            17,
            1,
            "",
            "",
            62
        ],
        [
            4,
            "COBRA",
            "COBRA",
            "We drive fast cars",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            86
        ],
        [
            60,
            "CDL",
            "Cuddly_Death_Lords",
            "Fuzzy 'lil Balls of Get Rekt, Plebs.",
            "",
            "CR-003",
            9,
            13,
            1,
            "",
            "",
            3987
        ],
        [
            62,
            "RARG",
            "RanchosAOE",
            "",
            "",
            "0",
            2,
            154,
            1,
            "",
            "",
            4116
        ],
        [
            63,
            "COL",
            "COLOMBIA",
            "",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            4262
        ],
        [
            20,
            "Teste",
            "gyhh",
            "hello baabaiy",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            160
        ],
        [
            65,
            "TBH",
            "TheBrotherhood",
            "",
            "",
            "0",
            7,
            40,
            1,
            "",
            "",
            7013
        ],
        [
            66,
            "Dunn",
            "Dunndoof",
            "Uganda will rise!",
            "",
            "0",
            4,
            33,
            1,
            "",
            "",
            9468
        ],
        [
            67,
            "LLF",
            "LéoLeFaux",
            "",
            "",
            "",
            2,
            57,
            1,
            "",
            "",
            11706
        ],
        [
            69,
            "No1",
            "NumberOnes",
            "International NumberOne's |\r---------------------------------------/",
            "",
            "CR-036",
            200,
            0,
            0,
            "",
            "",
            17900
        ],
        [
            70,
            "ACID",
            "ACID",
            "",
            "",
            "CR-004",
            54,
            57,
            1,
            "",
            "",
            18770
        ],
        [
            72,
            "Tbies",
            "Teletubbies",
            "We are actually 49 Nibbas in this corp :\rJoin us\r\rBTW, Teletubbies is a PROCLAN",
            "",
            "CR-006",
            200,
            0,
            0,
            "",
            "",
            20285
        ],
        [
            73,
            "11151",
            "11241",
            "112312",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            21772
        ],
        [
            30,
            "SAVE",
            "SavingContent",
            "www.savingcontent.com",
            "",
            "0",
            200,
            0,
            0,
            "",
            "",
            341
        ],
        [
            74,
            "CiD",
            "CiD",
            "El mejor clan de Age Of Empires II ",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            23853
        ],
        [
            31,
            "DEV",
            "Forgotten_Empires",
            "Forgotten Empires Developers",
            "",
            "CR-007",
            15,
            30,
            1,
            "",
            "",
            348
        ],
        [
            75,
            "CPIE",
            "cepequeño",
            "Winzo Gei",
            "",
            "",
            1,
            100,
            1,
            "",
            "",
            23907
        ],
        [
            76,
            "AiR4",
            "AimbotRe4ct",
            "",
            "",
            "",
            2,
            49,
            1,
            "",
            "",
            24106
        ],
        [
            33,
            "Sergi",
            "Sergi",
            "Reported offensive clan description. Continued reports may result in clan removal.",
            "",
            "0",
            200,
            0,
            0,
            "",
            "",
            371
        ],
        [
            79,
            "Fxrs",
            "Fuxiras",
            "",
            "",
            "0",
            4,
            47,
            1,
            "",
            "",
            28558
        ],
        [
            39,
            "Cats",
            "CatsAreGreat",
            "meow.",
            "",
            "0",
            200,
            0,
            0,
            "",
            "",
            385
        ],
        [
            101,
            "Miku",
            "HatsuneMiku",
            "VOO17+ STEAM21+",
            "",
            "CR-001",
            1,
            39,
            1,
            "",
            "",
            33597
        ],
        [
            102,
            "SAIT",
            "Strange_Avengers_ITA",
            "",
            "",
            "",
            4,
            48,
            1,
            "",
            "",
            33666
        ],
        [
            105,
            "Oco",
            "Oco",
            "Apenas para os mais deliciosos estrategistas.",
            "",
            "0",
            6,
            79,
            1,
            "",
            "",
            33735
        ],
        [
            80,
            "SaGa",
            "éªç¥å¸å",
            "éªç¥å¸å",
            "",
            "",
            148,
            49,
            1,
            "",
            "",
            29215
        ],
        [
            107,
            "BuG",
            "Besoffen_und_Glücklich",
            "",
            "",
            "0",
            5,
            12,
            1,
            "",
            "",
            33828
        ],
        [
            108,
            "Jesus",
            "DeusVult",
            "We shall embrace our superior religion and take back jerusalem",
            "",
            "CR-005",
            200,
            0,
            0,
            "",
            "",
            33884
        ],
        [
            109,
            "MKS",
            "LosMancosKS",
            "Bienvenidos !! ",
            "",
            "CR-022",
            200,
            0,
            0,
            "",
            "",
            33941
        ],
        [
            83,
            "TATO",
            "TATOs",
            "GrandPotatos",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            29574
        ],
        [
            84,
            "BOE",
            "BestOfEarth",
            "",
            "",
            "CR-003",
            200,
            0,
            0,
            "",
            "",
            29660
        ],
        [
            85,
            "TNT",
            "Dinamita",
            "¡EQUIPO DINAMITA!",
            "",
            "CR-036",
            200,
            0,
            0,
            "",
            "",
            30249
        ],
        [
            42,
            "WOLO2",
            "WOLOLOLO",
            "",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            424
        ],
        [
            86,
            "PWDH",
            "PWDH",
            "Die PWDH-Community ist seit 1998 aktiv und freut sich auf die AoEII DE!\rRuhm und Ehre",
            "",
            "CR-036",
            200,
            0,
            0,
            "",
            "",
            30876
        ],
        [
            43,
            "ITA",
            "Italian_Brothers",
            "Italian Brothers Multiplatfrom Clan",
            "",
            "0",
            200,
            0,
            0,
            "",
            "",
            541
        ],
        [
            87,
            "GSKUB",
            "BONOBOS",
            "",
            "",
            "",
            1,
            44,
            1,
            "",
            "",
            31293
        ]
    ]
]

AoE3:DE

Request

GET /game/clan/find?callNum=35&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&count=50&joinPolicies=%5B0%2C1%2C2%5D&lastCallTime=74138&name=&sessionID=mfukppp90s845hti7ktv7wc7e50hkv&start=0&tags=%5B%5D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint35
connect_idstr=session_id
countint
joinPoliciesarr[int][0,1,2]
lastCallTimeint
namestr?
sessionIDstr=connect_id
startint0
tagsarr[?]

Response

[
    0,
    [
        [
            110,
            "TAST",
            "TAST",
            "TAMIL STAR",
            "",
            "",
            200,
            0,
            0,
            "",
            "Never Ever GiveUp",
            5449
        ],
        [
            112,
            "RUS",
            "RussianNovichok",
            "DRINK VDKA PLAY BALALAYKA",
            "",
            "",
            174,
            26,
            1,
            "",
            "DRINK WATER FROM NOVICHOK",
            5631
        ],
        [
            113,
            "KOREA",
            "TheRepublicOfKorea",
            "ìëí ëí민êµì íë ì´ì´ë¤ì ê³µê°",
            "",
            "",
            13,
            47,
            1,
            "",
            "",
            5846
        ],
        [
            114,
            "SvErS",
            "SvErS",
            "Clã do servidor do discord $SvErS$ Link: https://discord.gg/Ju5fR5h",
            "",
            "",
            4,
            91,
            1,
            "",
            "O andré é gay",
            5855
        ],
        [
            115,
            "GOYS",
            "Blonde_Boy_Crew",
            "Blessed With These Sweet Blonde Boys From Heaven",
            "",
            "",
            1,
            0,
            2,
            "",
            "",
            5982
        ],
        [
            116,
            "HUN",
            "Magyarok",
            "Ez a magyarok klánja!",
            "",
            "",
            200,
            0,
            0,
            "",
            "Tokugawa insta: superalex0102",
            5986
        ],
        [
            90,
            "TURK",
            "TÃRKİYE",
            "Herkez gelebilir dostça",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            3386
        ],
        [
            117,
            "FaDr",
            "Fettadrige",
            "Fettadrige Schleppteile",
            "",
            "",
            1,
            12,
            1,
            "",
            "",
            5997
        ],
        [
            91,
            "HYPE",
            "Hyperion",
            "Hello World!",
            "",
            "",
            200,
            0,
            0,
            "",
            "(â¯Â°â¡Â°)â¯ï¸µ â»ââ»   ã½(ಠÙÍಠ)ï¾",
            3402
        ],
        [
            118,
            "BLAKE",
            "Blake",
            "Tribute to Blake G.",
            "",
            "",
            1,
            8,
            1,
            "",
            "",
            6102
        ],
        [
            92,
            "SIT",
            "SittingDucks",
            "",
            "",
            "",
            3,
            197,
            1,
            "",
            "",
            3409
        ],
        [
            93,
            "emp",
            "Empire",
            "Join our Discord server!",
            "",
            "",
            200,
            0,
            0,
            "",
            "discord.gg/VuDt49Y",
            3962
        ],
        [
            94,
            "FEAR",
            "CrimsonRaiders",
            "We will rise from the ashes of defeat again and again.",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            4087
        ],
        [
            95,
            "NUGG",
            "NUGGETNATION",
            "Your guess is as good as ours!",
            "",
            "",
            200,
            0,
            1,
            "",
            "Welcome, we don't have jackets",
            4139
        ],
        [
            96,
            "YumiW",
            "YumiW",
            "YumiW",
            "",
            "",
            22,
            1,
            2,
            "",
            "Keep fighting guys",
            4306
        ],
        [
            98,
            "TTL",
            "Team_Tiamat_Legacy",
            "",
            "",
            "",
            1,
            53,
            1,
            "",
            "",
            4480
        ],
        [
            99,
            "KOH",
            "KingsOfHonour",
            "Only the most honourable may join.",
            "",
            "",
            3,
            0,
            2,
            "",
            "Victory through honour",
            4527
        ],
        [
            120,
            "GER",
            "Deutschland",
            "deutscher Clan,  aktive Spieler gesucht",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            6481
        ],
        [
            121,
            "eXo",
            "eXoClan",
            "LMAO",
            "",
            "",
            1,
            47,
            1,
            "",
            "",
            6600
        ],
        [
            122,
            "STOMP",
            "CompStomp",
            "We STOMP our enemies.",
            "",
            "",
            200,
            0,
            0,
            "",
            "Welcome! discord.gg/bypAt24",
            6692
        ],
        [
            123,
            "GJL",
            "GaiusJulius_Legion",
            "Der Clan rund um den Youtuber Gaius Julius Caesar!",
            "",
            "",
            200,
            0,
            0,
            "",
            "Heute ab 20 Uhr Livestream!",
            6717
        ],
        [
            124,
            "Leão",
            "Leão",
            "",
            "",
            "",
            199,
            1,
            1,
            "",
            "Felicidades meus amigos!",
            6814
        ],
        [
            125,
            "ORPHN",
            "SeveralOrphans",
            "Ma mums ded",
            "",
            "",
            2,
            0,
            2,
            "",
            "",
            6872
        ],
        [
            126,
            "LA9",
            "LaNovena",
            "",
            "",
            "",
            1,
            45,
            1,
            "",
            "",
            6886
        ],
        [
            129,
            "DOUDA",
            "Doudacorp",
            "Le clan de la Doudacorp",
            "",
            "",
            7,
            0,
            2,
            "",
            "Hugo aime les hommes poilus",
            7108
        ],
        [
            131,
            "test",
            "test",
            "test",
            "",
            "",
            3,
            0,
            2,
            "",
            "",
            7386
        ],
        [
            132,
            "FTM",
            "FATEMA",
            "Only reals fatems breo.",
            "",
            "",
            4,
            116,
            1,
            "",
            "",
            7406
        ],
        [
            134,
            "CHEN3",
            "3YYY",
            "123",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            7576
        ],
        [
            135,
            "PROFI",
            "PROFI",
            "ez",
            "",
            "",
            1,
            11,
            1,
            "",
            "",
            7642
        ],
        [
            137,
            "0rsw0",
            "0rsw012345japan",
            "",
            "",
            "",
            1,
            0,
            2,
            "",
            "",
            7915
        ],
        [
            70,
            "test2",
            "testests",
            "test",
            "",
            "",
            2,
            0,
            2,
            "",
            "",
            318
        ],
        [
            71,
            "Garde",
            "AlteGarde",
            "Garde des Pilophas",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            383
        ],
        [
            74,
            "1uk1",
            "1uk1",
            "Dutch clan playing Warcraft 3.. wait. Oh well, this game has a 3 in it..",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            498
        ],
        [
            76,
            "LSP",
            "ClandeLespol",
            "",
            "",
            "",
            1,
            0,
            2,
            "",
            "",
            519
        ],
        [
            77,
            "LpWG",
            "Die_LpWG",
            "Clan der Lets play WG",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            604
        ],
        [
            78,
            "FrtR",
            "Fratia_Biceps",
            "Big Biceps!",
            "",
            "",
            1,
            16,
            1,
            "",
            "",
            726
        ],
        [
            79,
            "MOULT",
            "MoultonBrotherhood",
            "Blood is thiccer than Water",
            "",
            "",
            1,
            5,
            1,
            "",
            "",
            744
        ],
        [
            100,
            "THE",
            "TriggerHappE",
            "The best clan in the universe",
            "",
            "",
            2,
            21,
            1,
            "",
            "",
            4611
        ],
        [
            101,
            "MSGB",
            "Alliance",
            "Old Friends smashing AI",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            4725
        ],
        [
            102,
            "SABRE",
            "SABRE",
            "Fight for friendship, fire for effect",
            "",
            "",
            6,
            72,
            1,
            "",
            "The sweatiest casuals",
            4849
        ],
        [
            103,
            "yofig",
            "Clanexe",
            "Hallo",
            "",
            "",
            2,
            20,
            1,
            "",
            "",
            4861
        ],
        [
            104,
            "DEUS",
            "DEUS",
            "Gods",
            "",
            "",
            5,
            0,
            2,
            "",
            "( . )( . )",
            4962
        ],
        [
            105,
            "3HUSS",
            "3HUSS",
            "3 HUSSAR OP",
            "",
            "",
            11,
            25,
            1,
            "",
            "",
            5038
        ],
        [
            80,
            "Blnts",
            "Blunts",
            "Weeds",
            "",
            "",
            1,
            9,
            1,
            "",
            "",
            1124
        ],
        [
            82,
            "Labsw",
            "Labswanz",
            "lbsw",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            2455
        ],
        [
            83,
            "Badia",
            "Bosghetto",
            "Non so cosa scrivere, ma scrivo lo stesso!",
            "",
            "",
            2,
            26,
            1,
            "",
            "",
            2460
        ],
        [
            84,
            "B33r",
            "B33rsheeps",
            "",
            "",
            "",
            2,
            0,
            2,
            "",
            "B33r!",
            2504
        ],
        [
            85,
            "RNG",
            "Renegados",
            "Os Renegados",
            "",
            "",
            2,
            0,
            2,
            "",
            "",
            2776
        ],
        [
            86,
            "klak",
            "klakkies",
            "grote klakbam",
            "",
            "",
            1,
            0,
            2,
            "",
            "",
            2828
        ],
        [
            87,
            "Envy",
            "Envy",
            "",
            "",
            "",
            200,
            0,
            0,
            "",
            "",
            3028
        ]
    ]
]

[GET] /game/clan/getClan

AUTHENTICATION

AoE2:DE

Request

GET /game/clan/getClan?callNum=58&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&lastCallTime=1593197&names=%5B%22Liiit%22%5D&sessionID=mfukppp90s845hti7ktv7wc7e50hkv HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint40
connect_idstr=sessionID
lastCallTimeint
namesarr[str][“Liiit”]
sessionIDstr=connect_id

Response

[
    0,
    [
        [
            11513, // clan_id
            "Liiit", // tag
            "Lithauen", // name
            "Pscht", // description
            "",
            "2",
            25,
            0,
            1,
            "",
            "",
            540532
        ]
    ]
]

[GET] /game/clan/getClanInfoFull

AUTHENTICATION

AoE2:DE

Request

GET /game/clan/getClanInfoFull?callNum=78&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&lastCallTime=2261986&name=KAOS&sessionID=mfukppp90s845hti7ktv7wc7e50hkv HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint40
connect_idstr=sessionID
lastCallTimeint
namestrKAOS
sessionIDstr=connect_id

Response

[
    0,
    [
        51,
        "KAOS",
        "KAOS",
        "",
        "",
        "0",
        1,
        68,
        1,
        "",
        "",
        2784,
        [
            [
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                "Leader",
                -1
            ],
            [
                2,
                1,
                1,
                1,
                1,
                1,
                0,
                0,
                0,
                "Officer",
                -1
            ],
            [
                3,
                1,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                "Member",
                -1
            ]
        ],
        [
            [
                [
                    21873,
                    209072,
                    "/steam/76561198024758674",
                    "{\"icon\":\"PR5-012\"}",
                    "[TF] Backyback",
                    "KAOS",
                    2187,
                    1105,
                    1,
                    3,
                    null,
                    "76561198024758674",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                1,
                1
            ],
            [
                [
                    656,
                    899304,
                    "/xboxlive/E7343FF1DE430E0424D9D6C6CFCB161472C8E2E2",
                    "{\"icon\":\"PR4-003\"}",
                    "VideoGorilla295",
                    "",
                    750097,
                    8,
                    1,
                    0,
                    null,
                    "2535453490662763",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1868,
                    1079615,
                    "/steam/76561198013913196",
                    "{\"icon\":\"PR5-026\"}",
                    "verobeach",
                    "",
                    1068723,
                    40,
                    1,
                    2,
                    null,
                    "76561198013913196",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    9526,
                    1924295,
                    "/steam/76561198049748976",
                    "{\"icon\":\"PR7-049\"}",
                    "âªéè²åå¼¹",
                    "",
                    1694737,
                    46,
                    1,
                    2,
                    null,
                    "76561198049748976",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1042,
                    2610059,
                    "/steam/76561198260700514",
                    "",
                    "SneakySneaky",
                    "",
                    2346250,
                    65,
                    1,
                    4,
                    null,
                    "76561198260700514",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2162,
                    2674097,
                    "/xboxlive/55A6BAABD29F3E2297C57129A4F38F99C4B01962",
                    "{\"icon\":\"PR1-003\"}",
                    "lilliemielie",
                    "",
                    2407980,
                    37,
                    1,
                    6,
                    null,
                    "2535473692864863",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    617,
                    2894731,
                    "/steam/76561198312112987",
                    "{\"icon\":\"PR3-005\"}",
                    "francog.fg",
                    "",
                    2618561,
                    0,
                    1,
                    4,
                    null,
                    "76561198312112987",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    637,
                    2948955,
                    "/xboxlive/C3B5ACB2FF742046BFEB5A03A695B32E4B8E38F1",
                    "",
                    "ChippingActor55",
                    "",
                    2668192,
                    6,
                    1,
                    2,
                    null,
                    "2535468133720759",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    4062,
                    3044596,
                    "/steam/76561198257643079",
                    "{\"icon\":\"PR5-060\"}",
                    "rorocas22",
                    "",
                    2755445,
                    35,
                    1,
                    0,
                    null,
                    "76561198257643079",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    4527,
                    3155735,
                    "/steam/76561198086844873",
                    "",
                    "Yarius",
                    "",
                    2858886,
                    53,
                    1,
                    0,
                    null,
                    "76561198086844873",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    79330,
                    3319765,
                    "/steam/76561199065831400",
                    "{\"icon\":\"PR3-054\"}",
                    "è¾ä¸½èçé£é¾",
                    "",
                    3009897,
                    988,
                    1,
                    4,
                    null,
                    "76561199065831400",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1239,
                    3472139,
                    "/steam/76561199092703322",
                    "{\"icon\":\"PR7-001\"}",
                    "è红水",
                    "",
                    3151995,
                    16,
                    1,
                    2,
                    null,
                    "76561199092703322",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    973,
                    4042914,
                    "/steam/76561198416827458",
                    "{\"icon\":\"PR7-085\"}",
                    "Sadhu",
                    "",
                    3401598,
                    9,
                    1,
                    2,
                    null,
                    "76561198416827458",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    3453,
                    4175774,
                    "/steam/76561199091524190",
                    "{\"icon\":\"PR7-003\"}",
                    "sipsid",
                    "",
                    3492938,
                    184,
                    1,
                    2,
                    null,
                    "76561199091524190",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    433,
                    4613365,
                    "/xboxlive/3426E7F95AB31F69386308404FED12C684FE420D",
                    "",
                    "Purpleblue2015",
                    "",
                    3780946,
                    0,
                    1,
                    3,
                    null,
                    "2535468608244514",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    8575,
                    4998808,
                    "/steam/76561199138162803",
                    "{\"icon\":\"PR7-087\"}",
                    "a0921180004",
                    "",
                    4039961,
                    175,
                    1,
                    0,
                    null,
                    "76561199138162803",
                    3,
                    [],
                    13,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    6881,
                    5600454,
                    "/steam/76561198433685310",
                    "{\"icon\":\"PR7-088\"}",
                    "å°è¯º",
                    "",
                    4435299,
                    370,
                    1,
                    2,
                    null,
                    "76561198433685310",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    3832,
                    5618590,
                    "/steam/76561199152408930",
                    "{\"icon\":\"PR7-085\"}",
                    "franvr40",
                    "",
                    4452419,
                    186,
                    1,
                    4,
                    null,
                    "76561199152408930",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    192,
                    5788696,
                    "/xboxlive/62FBF85E3BB40FBBBD1F6B66A531D5EBA6F1D265",
                    "",
                    "Sirloin952",
                    "",
                    4556022,
                    0,
                    1,
                    0,
                    null,
                    "2533274794148134",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1810,
                    5865222,
                    "/steam/76561198969927339",
                    "{\"icon\":\"PR7-003\"}",
                    "åçå°äº",
                    "",
                    4605733,
                    0,
                    1,
                    2,
                    null,
                    "76561198969927339",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    687,
                    5901687,
                    "/steam/76561199148632670",
                    "{\"icon\":\"PR7-003\"}",
                    "76561199148632670",
                    "",
                    4628030,
                    24,
                    1,
                    2,
                    null,
                    "76561199148632670",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    515,
                    6058234,
                    "/steam/76561198974101806",
                    "{\"icon\":\"PR7-003\"}",
                    "èç½éª",
                    "",
                    4750446,
                    0,
                    1,
                    2,
                    null,
                    "76561198974101806",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    3039,
                    6145301,
                    "/steam/76561197982710449",
                    "{\"icon\":\"PR1-009\"}",
                    "Burundanga",
                    "",
                    4779760,
                    157,
                    1,
                    0,
                    null,
                    "76561197982710449",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    3179,
                    6198959,
                    "/xboxlive/7E0ECA1DD736F4A103040F8D459EE8688FBAEE27",
                    "{\"icon\":\"PR7-084\"}",
                    "SoughtTarsier26",
                    "",
                    4812883,
                    6,
                    1,
                    0,
                    null,
                    "2535471440664709",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    10933,
                    6208163,
                    "/steam/76561199194637683",
                    "{\"icon\":\"PR7-010\"}",
                    "LadyRogue_",
                    "",
                    4818530,
                    424,
                    1,
                    0,
                    null,
                    "76561199194637683",
                    3,
                    [],
                    2,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    13905,
                    6264563,
                    "/steam/76561199127632708",
                    "{\"icon\":\"PR7-087\"}",
                    "kiko",
                    "",
                    4851404,
                    438,
                    1,
                    4,
                    null,
                    "76561199127632708",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    4669,
                    8091031,
                    "/steam/76561199219998099",
                    "{\"icon\":\"PR7-070\"}",
                    "schenkelcm25",
                    "",
                    5194609,
                    61,
                    1,
                    3,
                    null,
                    "76561199219998099",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1965,
                    8487076,
                    "/steam/76561198973318345",
                    "{\"icon\":\"PR7-003\"}",
                    "549357982",
                    "",
                    5241513,
                    2,
                    1,
                    2,
                    null,
                    "76561198973318345",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2445,
                    8604069,
                    "/xboxlive/4E2E4EEB97B08FADE5B8696A1DC6B6AC0EC3C49F",
                    "",
                    "Plob32",
                    "",
                    5676473,
                    114,
                    1,
                    5,
                    null,
                    "2535465433866776",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1459,
                    9439378,
                    "/steam/76561198817463966",
                    "{\"icon\":\"PR7-002\"}",
                    "ä¸ç¼å煦",
                    "",
                    5514253,
                    47,
                    1,
                    2,
                    null,
                    "76561198817463966",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    413,
                    9512599,
                    "/steam/76561199075031871",
                    "",
                    "è¾ç…-04-æ¨é³ã车ééå",
                    "",
                    5550226,
                    0,
                    1,
                    2,
                    null,
                    "76561199075031871",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2321,
                    9569181,
                    "/steam/76561198060180695",
                    "{\"icon\":\"PR5-064\"}",
                    "xeco",
                    "",
                    5571944,
                    66,
                    1,
                    0,
                    null,
                    "76561198060180695",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    777,
                    9588754,
                    "/steam/76561199243418106",
                    "",
                    "3515056957",
                    "",
                    5579398,
                    28,
                    1,
                    2,
                    null,
                    "76561199243418106",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    308,
                    9708287,
                    "/steam/76561199248704382",
                    "",
                    "pernelltd",
                    "",
                    5623531,
                    1,
                    1,
                    3,
                    null,
                    "76561199248704382",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    613,
                    9837923,
                    "/steam/76561199037558976",
                    "",
                    "yoner1996",
                    "",
                    5673177,
                    32,
                    1,
                    4,
                    null,
                    "76561199037558976",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2695,
                    9881741,
                    "/steam/76561199232868267",
                    "{\"icon\":\"PR5-050\"}",
                    "稻é¦è¿æ¯ä¸éé¦.",
                    "",
                    5690004,
                    134,
                    1,
                    2,
                    null,
                    "76561199232868267",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    688,
                    10010535,
                    "/steam/76561199226838106",
                    "",
                    "saurabhlande81",
                    "",
                    5757844,
                    0,
                    1,
                    2,
                    null,
                    "76561199226838106",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    182,
                    10032087,
                    "/steam/76561199268705022",
                    "",
                    "fenec88",
                    "",
                    5768797,
                    4,
                    1,
                    0,
                    null,
                    "76561199268705022",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1095,
                    10042206,
                    "/steam/76561199226067048",
                    "",
                    "anna.mosnova",
                    "",
                    5773428,
                    6,
                    1,
                    0,
                    null,
                    "76561199226067048",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1181,
                    10056651,
                    "/steam/76561199261721149",
                    "{\"icon\":\"PR4-004\"}",
                    "å»è±ª",
                    "",
                    5779800,
                    41,
                    1,
                    4,
                    null,
                    "76561199261721149",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    829,
                    10087994,
                    "/xboxlive/CF0E10E05BB0042FD38049DB95879EF7535310D3",
                    "{\"icon\":\"PR3-005\"}",
                    "VIXENTORIX",
                    "",
                    5800033,
                    25,
                    1,
                    4,
                    null,
                    "2535470838069657",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    568,
                    10144265,
                    "/steam/76561198333740368",
                    "{\"icon\":\"PR7-074\"}",
                    "酷酷ç大è¥çª",
                    "",
                    5817046,
                    16,
                    1,
                    2,
                    null,
                    "76561198333740368",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1290,
                    10149837,
                    "/steam/76561199276574490",
                    "{\"icon\":\"PR3-012\"}",
                    ".:Sir-Asu:.",
                    "",
                    5850980,
                    6,
                    1,
                    3,
                    null,
                    "76561199276574490",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    775,
                    10191842,
                    "/steam/76561198260698119",
                    "{\"icon\":\"PR3-012\"}",
                    "ç±é",
                    "",
                    6004297,
                    26,
                    1,
                    2,
                    null,
                    "76561198260698119",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    185,
                    10232784,
                    "/xboxlive/7B1BFAACA392F73CFD573CA7E18F6C089A8C3071",
                    "{\"icon\":\"PR1-008\"}",
                    "maugoe3392",
                    "",
                    5855130,
                    0,
                    1,
                    4,
                    null,
                    "2535430510001658",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    647,
                    10300961,
                    "/steam/76561199307977995",
                    "",
                    "maicolyara96",
                    "",
                    5882218,
                    7,
                    1,
                    4,
                    null,
                    "76561199307977995",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    827,
                    10344580,
                    "/xboxlive/62BF8C78775BC72991CB8B38BFBA3D6481AACA05",
                    "{\"icon\":\"PR1-007\"}",
                    "CompoundShark53",
                    "",
                    5900195,
                    0,
                    1,
                    4,
                    null,
                    "2535444698262114",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    573,
                    10413221,
                    "/steam/76561199186015204",
                    "{\"icon\":\"PR7-003\"}",
                    "è¶é¢æ¦è²",
                    "",
                    5927873,
                    6,
                    1,
                    2,
                    null,
                    "76561199186015204",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    382,
                    10419503,
                    "/steam/76561199111740309",
                    "",
                    "angelogallizzi10",
                    "",
                    5930982,
                    3,
                    1,
                    3,
                    null,
                    "76561199111740309",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1674,
                    10459196,
                    "/steam/76561198183357339",
                    "",
                    "200夿¤çè±å½å¤§çç³",
                    "",
                    5955286,
                    59,
                    1,
                    2,
                    null,
                    "76561198183357339",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2238,
                    10462312,
                    "/steam/76561198979244680",
                    "{\"icon\":\"PR1-003\"}",
                    "henry",
                    "",
                    5957171,
                    136,
                    1,
                    2,
                    null,
                    "76561198979244680",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    1791,
                    10464841,
                    "/steam/76561199231874017",
                    "{\"icon\":\"PR3-001\"}",
                    "æ¯å¨ku",
                    "",
                    5958655,
                    0,
                    1,
                    2,
                    null,
                    "76561199231874017",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    189,
                    10469797,
                    "/steam/76561199036329899",
                    "",
                    "maxsuelescolhidos",
                    "",
                    5961493,
                    1,
                    1,
                    4,
                    null,
                    "76561199036329899",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    91,
                    10493300,
                    "/steam/76561199001003399",
                    "",
                    "å±èæ°",
                    "",
                    5975588,
                    0,
                    1,
                    2,
                    null,
                    "76561199001003399",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    420,
                    10499791,
                    "/steam/76561199327191837",
                    "",
                    "udokaekwueme",
                    "",
                    5979361,
                    19,
                    1,
                    6,
                    null,
                    "76561199327191837",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    52,
                    10511176,
                    "/steam/76561198140877479",
                    "",
                    "sentis07",
                    "",
                    5985993,
                    0,
                    1,
                    2,
                    null,
                    "76561198140877479",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    756,
                    10567468,
                    "/steam/76561198308661976",
                    "{\"icon\":\"PR7-083\"}",
                    "Sk!pper",
                    "",
                    6018761,
                    34,
                    1,
                    0,
                    null,
                    "76561198308661976",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    687,
                    10584859,
                    "/steam/76561198855114081",
                    "{\"icon\":\"PR1-008\"}",
                    "叿°´çå…个",
                    "",
                    6028763,
                    0,
                    1,
                    2,
                    null,
                    "76561198855114081",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    194,
                    10647859,
                    "/steam/76561198029510052",
                    "{\"icon\":\"PR7-082\"}",
                    "Alvinsee",
                    "",
                    6052340,
                    0,
                    1,
                    2,
                    null,
                    "76561198029510052",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2283,
                    10756714,
                    "/steam/76561199185910369",
                    "{\"icon\":\"PR1-008\"}",
                    "Prudent",
                    "",
                    6085642,
                    188,
                    1,
                    3,
                    null,
                    "76561199185910369",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    2591,
                    10771127,
                    "/steam/76561199376691468",
                    "",
                    "cristianolaya96",
                    "",
                    6092035,
                    251,
                    1,
                    4,
                    null,
                    "76561199376691468",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    55,
                    10777239,
                    "/xboxlive/01C97B143ECACA30CED872EC4C4961F0E9F3629F",
                    "",
                    "FlipoBiscuit",
                    "",
                    6094860,
                    0,
                    1,
                    6,
                    null,
                    "2535415471814432",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    854,
                    10821207,
                    "/steam/76561199380035432",
                    "",
                    "591775912",
                    "",
                    6114059,
                    48,
                    1,
                    2,
                    null,
                    "76561199380035432",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    305,
                    10867539,
                    "/xboxlive/8200AB7DEAFCF7FEDB2CE7005E17817E079146F5",
                    "",
                    "StaidLeaf813871",
                    "",
                    6127333,
                    0,
                    1,
                    2,
                    null,
                    "2535426840585682",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    315,
                    10968638,
                    "/xboxlive/AC1837D4AA4DD8C2ED9436BC1D5885DAE55822FD",
                    "{\"icon\":\"PR7-084\"}",
                    "AirFive31396074",
                    "",
                    6156601,
                    0,
                    1,
                    0,
                    null,
                    "2535468910058655",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    973,
                    11191900,
                    "/steam/76561199260180212",
                    "",
                    "hanno.weidner",
                    "",
                    6183418,
                    0,
                    1,
                    0,
                    null,
                    "76561199260180212",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    148,
                    11326764,
                    "/xboxlive/27A70A32F3402086514D503D0DDDBFB31FC4A73B",
                    "",
                    "Loki6210",
                    "",
                    6243754,
                    1,
                    1,
                    4,
                    null,
                    "2535425783291922",
                    9,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    813,
                    11350538,
                    "/steam/76561199401563963",
                    "",
                    "Waiting for loveeeee",
                    "",
                    6249214,
                    34,
                    1,
                    2,
                    null,
                    "76561199401563963",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ],
            [
                [
                    825,
                    11353170,
                    "/steam/76561199299808297",
                    "{\"icon\":\"PR7-003\"}",
                    "8ed07a2e",
                    "",
                    6250394,
                    34,
                    1,
                    2,
                    null,
                    "76561199299808297",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                4,
                -1
            ]
        ]
    ]
]

[POST] /game/clan/update

AUTHENTICATION

AoE2:DE

Request

POST /game/clan/update HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 221

callNum=49&clanList_id=110061&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&description=TestyRusty2&icon=CR-001
&joinPolicy=1&lastCallTime=1246820&messageOfTheDay=&metadata=&sessionID=mfukppp90s845hti7ktv7wc7e50hkv&tags=[]
parametertypevaluecomments
callNumint40
clanList_idint40
connect_idstr=sessionID
descriptionstr
iconstr/enumCR-001
joinPolicyint1
lastCallTimeint
messageOfTheDaystr?
metadata?
sessionIDstr=connect_id
tagsarr[]

Response

[
    0, // result status code
    [
        110061, // clan_id
        "yyyy", // tag
        "Rusty1312", // name
        "TestyRusty2", // description
        "",
        "CR-001", // icon
        1,
        0,
        1,
        "",
        "",
        6298829
    ]
]

Cloud Endpoints

Endpoints for cloud storage operations, including downloading game data files and retrieving temporary credentials for Azure blob storage access.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getFileURLGET/POSTGet download URLs for cloud-hosted game files (SGA archives, locale data)
getTempCredentialsGETGet temporary SAS credentials for Azure blob storage access

[GET/POST] /game/cloud/getFileURL

AUTHENTICATION

AoE3:DE POST REQUEST!

AoE2:DE

Request

GET /game/cloud/getFileURL?callNum=123&connect_id=ccc&lastCallTime=111&names=["Attrib.sga","EngineData.sga"]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
namesarray[FileName][“Attrib.sga”,“EngineData.sga”]
sessionIDstr

Response

[
    0, // result status code
    [
        [
            "_data.txt",
            24,
            741324928,
            "https://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/game/6b861a867ce5f4e66131c929fe13db8baa40b5bb412255adcc225e6604ff703f"
        ],
        [
            "_resources.txt",
            29,
            1779231939,
            "https://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/game/d3349d2d70bc16cb5bd54aa07e2171bb9ccc02212f0a1145045e8a8bda2ff164"
        ]
    ]
]

AoE3:DE

Request

POST /game/cloud/getFileURL?callNum=24&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=10141&names=%5B%22iconPacks%22%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 140

callNum=24&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=10141&names=["iconPacks"]&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
namesarray[FileName][“iconPacks”]
sessionIDstr

Response

[
    2,
    [
        null
    ]
]

AoE4

Request

GET /game/cloud/getFileURL?callNum=15&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=7596&names=%5B%22Attrib.5.0.24916.0.sga%22%2C%22CardinalCampaignData.5.0.24916.0.sga%22%2C%22CardinalCampaignTensorFlow.5.0.24916.0.sga%22%2C%22CardinalData.5.0.24916.0.sga%22%2C%22CardinalTensorFlow.5.0.24916.0.sga%22%2C%22CardinalUI.5.0.24916.0.sga%22%2C%22CardinalUIArt.5.0.24916.0.sga%22%2C%22EngineData.5.0.24916.0.sga%22%2C%22EngineUI.5.0.24916.0.sga%22%2C%22LocaleArabic.5.0.24916.0.sga%22%2C%22LocaleBrazilianPortuguese.5.0.24916.0.sga%22%2C%22LocaleCzech.5.0.24916.0.sga%22%2C%22LocaleDanish.5.0.24916.0.sga%22%2C%22LocaleDutch.5.0.24916.0.sga%22%2C%22LocaleEnglish.5.0.24916.0.sga%22%2C%22LocaleFinnish.5.0.24916.0.sga%22%2C%22LocaleFrench.5.0.24916.0.sga%22%2C%22LocaleGerman.5.0.24916.0.sga%22%2C%22LocaleGreek.5.0.24916.0.sga%22%2C%22LocaleHebrew.5.0.24916.0.sga%22%2C%22LocaleHindi.5.0.24916.0.sga%22%2C%22LocaleHungarian.5.0.24916.0.sga%22%2C%22LocaleItalian.5.0.24916.0.sga%22%2C%22LocaleJapanese.5.0.24916.0.sga%22%2C%22LocaleKorean.5.0.24916.0.sga%22%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
namesarray[FileName][“Attrib.5.0.24916.0.sga”,“EngineData.5.0.24916.0.sga”, “…”]
sessionIDstr

Response

[
    2, // result status code
    [
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null,
        null
    ]
]

[GET] /game/cloud/getTempCredentials

AUTHENTICATION

AoE2:DE

Request

GET /game/cloud/getTempCredentials?callNum=27&connect_id=6mikb1saqrmud2kte7ovswogamd2th&key=%2Fcloudfiles%2Fgame%2F6b861a867ce5f4e66131c929fe13db8baa40b5bb412255adcc225e6604ff703f&lastCallTime=13534&sessionID=6mikb1saqrmud2kte7ovswogamd2th HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
keyfilefile.gz

Response

[
    0,
    1666391406,
    "sig=CSRCwzAc9nw5UxvHoTmIJnGFOhldBtiMcSMS0Y9g7vw%3D&se=2022-10-21T22%3A30%3A06Z&sv=2019-02-02&sp=r&sr=b",
    "/cloudfiles/game/6b861a867ce5f4e66131c929fe13db8baa40b5bb412255adcc225e6604ff703f"
]

Community Event Endpoints

Endpoints for time-limited community events, including seasonal events, ranked seasons, and special celebrations like anniversary events. Events can contain challenges, login rewards, and leaderboard configurations.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getAvailableCommunityEventsGETGet all active community events with season data, rank configurations, and rewards
getEventChallengeProgressGETGet player’s progress on event-specific challenges
getEventStatsGETGet player statistics for a specific event (rating, ranking, etc.)

[GET] /game/CommunityEvent/getAvailableCommunityEvents

AUTHENTICATION

AoE2:DE

Request

GET /game/CommunityEvent/getAvailableCommunityEvents?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [],
    [],
    [],
    [],
    [],
    []
]

AoE3:DE

Request

GET /game/CommunityEvent/getAvailableCommunityEvents?callNum=2&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=533&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            "Ageiversary 2022",
            1666720800,
            1669017600,
            1669017600,
            15,
            1,
            "{ \"name\": 55729, \"priority\" : 1 }"
        ]
    ],
    []
]

AoE4

Request

GET /game/CommunityEvent/getAvailableCommunityEvents?callNum=2&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=727&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            "Season 3 - Event 1a - Anniversary",
            1666716600,
            1669708740,
            1669708740,
            22,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Login Reward 1 - Anniversary",
            1666716600,
            1669708740,
            1669708740,
            24,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Login Reward 2 - Anniversary - chibi wololo",
            1666716600,
            1669708740,
            1669708740,
            25,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Login Reward 3 - Coin",
            1666716600,
            1669708740,
            1669708740,
            26,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Takeover Image - Anniversary",
            1666718100,
            1669708740,
            1669708740,
            28,
            0,
            null,
            "{\"frontEndImagePath\":\"\\\\Images\\\\backgrounds\\\\events\\\\s03_25anniversary.png\"}"
        ],
        [
            "Season 3 - Solo Ranked Season",
            1666804500,
            1676534340,
            1893484800,
            31,
            6,
            "Season 3",
            "{\"leaderboard\":{\"leaderboards\":[{\"copyFromBase\":1,\"scoringType\":2}],\"decay\":{\"reqRating\":1400,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_3.png\",\"icon2\":\"ffab3c\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1200},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_2.png\",\"icon2\":\"ffab3c\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1200},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_1.png\",\"icon2\":\"ffab3c\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1200},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_3.png\",\"icon2\":\"699dfd\",\"level\":15,\"tier\":5,\"minRating\":1350,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1199},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_2.png\",\"icon2\":\"699dfd\",\"level\":14,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1199},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_1.png\",\"icon2\":\"699dfd\",\"level\":13,\"tier\":5,\"minRating\":1200,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1199},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_3.png\",\"icon2\":\"65a1c4\",\"level\":12,\"tier\":4,\"minRating\":1150,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1198},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_2.png\",\"icon2\":\"65a1c4\",\"level\":11,\"tier\":4,\"minRating\":1100,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1198},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_1.png\",\"icon2\":\"65a1c4\",\"level\":10,\"tier\":4,\"minRating\":1000,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1198},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_3.png\",\"icon2\":\"ffd469\",\"level\":9,\"tier\":3,\"minRating\":900,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1197},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_2.png\",\"icon2\":\"ffd469\",\"level\":8,\"tier\":3,\"minRating\":800,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1197},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_1.png\",\"icon2\":\"ffd469\",\"level\":7,\"tier\":3,\"minRating\":700,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1197},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_3.png\",\"icon2\":\"a7aebb\",\"level\":6,\"tier\":2,\"minRating\":650,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1196},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_2.png\",\"icon2\":\"a7aebb\",\"level\":5,\"tier\":2,\"minRating\":600,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1196},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_1.png\",\"icon2\":\"a7aebb\",\"level\":4,\"tier\":2,\"minRating\":500,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1196},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_3.png\",\"icon2\":\"9d6242\",\"level\":3,\"tier\":1,\"minRating\":450,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1195},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_2.png\",\"icon2\":\"9d6242\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1195},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_1.png\",\"icon2\":\"9d6242\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1195}]},\"pointUpdate\":{\"winPtsDefault\":0,\"losePtsDefault\":0,\"maxWinPts\":45,\"minWinPts\":2,\"maxLosePts\":45,\"minLosePts\":4,\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.05\",\"adjustmentOnLoseDefault\":\"0.05\",\"winDifferenceToApply\":100,\"loseDifferenceToApply\":100}}}"
        ],
        [
            "Season 3 - Team Ranked Season",
            1666804500,
            1676534340,
            1893484800,
            32,
            6,
            "Season 3",
            "{\"leaderboard\":{\"leaderboards\":[{\"name\":\"Season 3 Team\",\"scoringType\":2,\"visibleToPublic\":true,\"mapEntries\":[{\"matchType\":2,\"race\":-1,\"statGroupType\":1},{\"matchType\":3,\"race\":-1,\"statGroupType\":1},{\"matchType\":4,\"race\":-1,\"statGroupType\":1}]}],\"decay\":{\"reqRating\":1400,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_conquerer_3.png\",\"icon2\":\"ffab3c\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1206},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_conquerer_2.png\",\"icon2\":\"ffab3c\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1206},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_conquerer_1.png\",\"icon2\":\"ffab3c\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1206},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_diamond_3.png\",\"icon2\":\"699dfd\",\"level\":15,\"tier\":5,\"minRating\":1350,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1205},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_diamond_2.png\",\"icon2\":\"699dfd\",\"level\":14,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1205},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_diamond_1.png\",\"icon2\":\"699dfd\",\"level\":13,\"tier\":5,\"minRating\":1200,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1205},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_platinum_3.png\",\"icon2\":\"65a1c4\",\"level\":12,\"tier\":4,\"minRating\":1150,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1204},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_platinum_2.png\",\"icon2\":\"65a1c4\",\"level\":11,\"tier\":4,\"minRating\":1100,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1204},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_platinum_1.png\",\"icon2\":\"65a1c4\",\"level\":10,\"tier\":4,\"minRating\":1000,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1204},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_gold_3.png\",\"icon2\":\"ffd469\",\"level\":9,\"tier\":3,\"minRating\":900,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1203},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_gold_2.png\",\"icon2\":\"ffd469\",\"level\":8,\"tier\":3,\"minRating\":800,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1203},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_gold_1.png\",\"icon2\":\"ffd469\",\"level\":7,\"tier\":3,\"minRating\":700,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1203},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_silver_3.png\",\"icon2\":\"a7aebb\",\"level\":6,\"tier\":2,\"minRating\":650,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1202},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_silver_2.png\",\"icon2\":\"a7aebb\",\"level\":5,\"tier\":2,\"minRating\":600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1202},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_silver_1.png\",\"icon2\":\"a7aebb\",\"level\":4,\"tier\":2,\"minRating\":500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1202},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_bronze_3.png\",\"icon2\":\"9d6242\",\"level\":3,\"tier\":1,\"minRating\":450,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1201},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_bronze_2.png\",\"icon2\":\"9d6242\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1201},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_bronze_1.png\",\"icon2\":\"9d6242\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1201}]},\"pointUpdate\":{\"winPtsDefault\":0,\"losePtsDefault\":0,\"maxWinPts\":45,\"minWinPts\":2,\"maxLosePts\":45,\"minLosePts\":4,\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.05\",\"adjustmentOnLoseDefault\":\"0.05\",\"winDifferenceToApply\":100,\"loseDifferenceToApply\":100}}}"
        ],
        [
            "Season 1 - Ranked Season - Festival of Ages",
            1649869200,
            1656608400,
            1893484800,
            3,
            6,
            "Season 1",
            "{\"leaderboard\":{\"leaderboards\":[{\"copyFromBase\":1,\"scoringType\":2}],\"decay\":{\"reqRating\":1015,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1059},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1059},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1059},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":15,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1060},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":14,\"tier\":5,\"minRating\":1230,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1060},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":13,\"tier\":5,\"minRating\":1130,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1060},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":12,\"tier\":4,\"minRating\":1090,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1062},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":11,\"tier\":4,\"minRating\":1050,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1062},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":10,\"tier\":4,\"minRating\":1015,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1062},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":9,\"tier\":3,\"minRating\":980,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1061},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":8,\"tier\":3,\"minRating\":930,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1061},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":7,\"tier\":3,\"minRating\":880,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1061},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":6,\"tier\":2,\"minRating\":840,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1063},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":5,\"tier\":2,\"minRating\":800,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1063},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":4,\"tier\":2,\"minRating\":770,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1063},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":3,\"tier\":1,\"minRating\":600,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1058},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1058},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1058}]},\"pointUpdate\":{\"winPtsDefault\":3,\"losePtsDefault\":0,\"maxWinPts\":65,\"minWinPts\":10,\"maxLosePts\":45,\"minLosePts\":5,\"maxWinChance\":\"0.8\",\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.09\",\"adjustmentOnLoseDefault\":\"0.06\",\"winDifferenceToApply\":250,\"loseDifferenceToApply\":250}}}"
        ],
        [
            "Season 2 - Ranked Season - Map Monsters",
            1657818000,
            1666681200,
            1893484800,
            15,
            6,
            "Season 2",
            "{\"leaderboard\":{\"leaderboards\":[{\"copyFromBase\":1,\"scoringType\":2}],\"decay\":{\"reqRating\":1400,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1131},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1131},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1131},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":15,\"tier\":5,\"minRating\":1350,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1132},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":14,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1132},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":13,\"tier\":5,\"minRating\":1200,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1132},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":12,\"tier\":4,\"minRating\":1150,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1134},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":11,\"tier\":4,\"minRating\":1100,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1134},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":10,\"tier\":4,\"minRating\":1000,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1134},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":9,\"tier\":3,\"minRating\":900,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1133},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":8,\"tier\":3,\"minRating\":800,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1133},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":7,\"tier\":3,\"minRating\":700,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1133},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":6,\"tier\":2,\"minRating\":650,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1135},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":5,\"tier\":2,\"minRating\":600,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1135},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":4,\"tier\":2,\"minRating\":500,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1135},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":3,\"tier\":1,\"minRating\":450,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1130},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1130},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1130}]},\"pointUpdate\":{\"winPtsDefault\":0,\"losePtsDefault\":0,\"maxWinPts\":45,\"minWinPts\":2,\"maxLosePts\":45,\"minLosePts\":4,\"maxWinChance\":\"0.8\",\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.05\",\"adjustmentOnLoseDefault\":\"0.05\",\"winDifferenceToApply\":100,\"loseDifferenceToApply\":100}}}"
        ]
    ],
    [
        [
            21,
            22,
            -1,
            6,
            1525307,
            "{\"challenge\":[{\"periodBegin\":1666691400000,\"slot\":5,\"definitionID\":[1525309,1525311,1525313,1525315,1525329,1525331]}]}"
        ],
        [
            23,
            24,
            -1,
            1,
            1174,
            ""
        ],
        [
            24,
            25,
            -1,
            1,
            1175,
            ""
        ],
        [
            3,
            3,
            -1,
            5,
            -1,
            ""
        ],
        [
            25,
            26,
            -1,
            1,
            1176,
            ""
        ],
        [
            14,
            15,
            -1,
            5,
            -1,
            ""
        ],
        [
            29,
            31,
            -1,
            5,
            -1,
            ""
        ],
        [
            30,
            32,
            -1,
            5,
            -1,
            ""
        ]
    ],
    [],
    [
        [
            3,
            1,
            "Season 1 - Ranked Season - Festival of Ages_Slot1_1v1Ranked",
            1,
            2
        ],
        [
            15,
            2,
            "Season 2 - Ranked Season - Map Monsters_Slot1_1v1Ranked",
            1,
            2
        ],
        [
            31,
            5,
            "Season 3 - Solo Ranked Season_Slot1_1v1Ranked",
            1,
            2
        ],
        [
            32,
            6,
            "Season 3 - Team Ranked Season_Season 3 Team",
            1,
            2
        ]
    ],
    [
        [
            1,
            1,
            1,
            -1,
            3
        ],
        [
            2,
            1,
            1,
            -1,
            15
        ],
        [
            5,
            1,
            1,
            -1,
            31
        ],
        [
            6,
            2,
            1,
            -1,
            32
        ],
        [
            6,
            3,
            1,
            -1,
            32
        ],
        [
            6,
            4,
            1,
            -1,
            32
        ]
    ],
    [
        [
            1,
            -1,
            "Bronze I",
            0,
            100,
            "\\Images\\multiplayer\\bronze_1.png",
            1,
            "Bronze I",
            null,
            1,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1058
        ],
        [
            2,
            -1,
            "Bronze II",
            400,
            100,
            "\\Images\\multiplayer\\bronze_2.png",
            1,
            "Bronze II",
            null,
            1,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1058
        ],
        [
            3,
            -1,
            "Bronze III",
            600,
            100,
            "\\Images\\multiplayer\\bronze_3.png",
            1,
            "Bronze III",
            null,
            1,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1058
        ],
        [
            4,
            -1,
            "Silver I",
            770,
            100,
            "\\Images\\multiplayer\\silver_1.png",
            1,
            "Silver I",
            null,
            2,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1063
        ],
        [
            5,
            -1,
            "Silver II",
            800,
            100,
            "\\Images\\multiplayer\\silver_2.png",
            1,
            "Silver II",
            null,
            2,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1063
        ],
        [
            6,
            -1,
            "Silver III",
            840,
            100,
            "\\Images\\multiplayer\\silver_3.png",
            1,
            "Silver III",
            null,
            2,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1063
        ],
        [
            7,
            -1,
            "Gold I",
            880,
            100,
            "\\Images\\multiplayer\\gold_1.png",
            1,
            "Gold I",
            null,
            3,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1061
        ],
        [
            8,
            -1,
            "Gold II",
            930,
            100,
            "\\Images\\multiplayer\\gold_2.png",
            1,
            "Gold II",
            null,
            3,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1061
        ],
        [
            9,
            -1,
            "Gold III",
            980,
            100,
            "\\Images\\multiplayer\\gold_3.png",
            1,
            "Gold III",
            null,
            3,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1061
        ],
        [
            10,
            -1,
            "Platinum I",
            1015,
            100,
            "\\Images\\multiplayer\\platinum_1.png",
            1,
            "Platinum I",
            null,
            4,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1062
        ],
        [
            11,
            -1,
            "Platinum II",
            1050,
            100,
            "\\Images\\multiplayer\\platinum_2.png",
            1,
            "Platinum II",
            null,
            4,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1062
        ],
        [
            12,
            -1,
            "Platinum III",
            1090,
            100,
            "\\Images\\multiplayer\\platinum_3.png",
            1,
            "Platinum III",
            null,
            4,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1062
        ],
        [
            13,
            -1,
            "Diamond I",
            1130,
            100,
            "\\Images\\multiplayer\\diamond_1.png",
            1,
            "Diamond I",
            null,
            5,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1060
        ],
        [
            14,
            -1,
            "Diamond II",
            1230,
            100,
            "\\Images\\multiplayer\\diamond_2.png",
            1,
            "Diamond II",
            null,
            5,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1060
        ],
        [
            15,
            -1,
            "Diamond III",
            1300,
            100,
            "\\Images\\multiplayer\\diamond_3.png",
            1,
            "Diamond III",
            null,
            5,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            3,
            1060
        ],
        [
            16,
            -1,
            "Conqueror I",
            1400,
            100,
            "\\Images\\multiplayer\\conquerer_1.png",
            1,
            "Conqueror I",
            null,
            6,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1059
        ],
        [
            17,
            -1,
            "Conqueror II",
            1500,
            100,
            "\\Images\\multiplayer\\conquerer_2.png",
            1,
            "Conqueror II",
            null,
            6,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1059
        ],
        [
            18,
            -1,
            "Conqueror III",
            1600,
            100,
            "\\Images\\multiplayer\\conquerer_3.png",
            1,
            "Conqueror III",
            null,
            6,
            "\\Images\\multiplayer\\rank_glow.png",
            3,
            1059
        ],
        [
            1,
            -1,
            "Bronze I",
            0,
            100,
            "\\Images\\multiplayer\\bronze_1.png",
            1,
            "Bronze I",
            null,
            1,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1130
        ],
        [
            2,
            -1,
            "Bronze II",
            400,
            100,
            "\\Images\\multiplayer\\bronze_2.png",
            1,
            "Bronze II",
            null,
            1,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1130
        ],
        [
            3,
            -1,
            "Bronze III",
            450,
            100,
            "\\Images\\multiplayer\\bronze_3.png",
            1,
            "Bronze III",
            null,
            1,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1130
        ],
        [
            4,
            -1,
            "Silver I",
            500,
            100,
            "\\Images\\multiplayer\\silver_1.png",
            1,
            "Silver I",
            null,
            2,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1135
        ],
        [
            5,
            -1,
            "Silver II",
            600,
            100,
            "\\Images\\multiplayer\\silver_2.png",
            1,
            "Silver II",
            null,
            2,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1135
        ],
        [
            6,
            -1,
            "Silver III",
            650,
            100,
            "\\Images\\multiplayer\\silver_3.png",
            1,
            "Silver III",
            null,
            2,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1135
        ],
        [
            7,
            -1,
            "Gold I",
            700,
            100,
            "\\Images\\multiplayer\\gold_1.png",
            1,
            "Gold I",
            null,
            3,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1133
        ],
        [
            8,
            -1,
            "Gold II",
            800,
            100,
            "\\Images\\multiplayer\\gold_2.png",
            1,
            "Gold II",
            null,
            3,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1133
        ],
        [
            9,
            -1,
            "Gold III",
            900,
            100,
            "\\Images\\multiplayer\\gold_3.png",
            1,
            "Gold III",
            null,
            3,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1133
        ],
        [
            10,
            -1,
            "Platinum I",
            1000,
            100,
            "\\Images\\multiplayer\\platinum_1.png",
            1,
            "Platinum I",
            null,
            4,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1134
        ],
        [
            11,
            -1,
            "Platinum II",
            1100,
            100,
            "\\Images\\multiplayer\\platinum_2.png",
            1,
            "Platinum II",
            null,
            4,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1134
        ],
        [
            12,
            -1,
            "Platinum III",
            1150,
            100,
            "\\Images\\multiplayer\\platinum_3.png",
            1,
            "Platinum III",
            null,
            4,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1134
        ],
        [
            13,
            -1,
            "Diamond I",
            1200,
            100,
            "\\Images\\multiplayer\\diamond_1.png",
            1,
            "Diamond I",
            null,
            5,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1132
        ],
        [
            14,
            -1,
            "Diamond II",
            1300,
            100,
            "\\Images\\multiplayer\\diamond_2.png",
            1,
            "Diamond II",
            null,
            5,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1132
        ],
        [
            15,
            -1,
            "Diamond III",
            1350,
            100,
            "\\Images\\multiplayer\\diamond_3.png",
            1,
            "Diamond III",
            null,
            5,
            "\\Images\\multiplayer\\rank_glow_blue.png",
            15,
            1132
        ],
        [
            16,
            -1,
            "Conqueror I",
            1400,
            100,
            "\\Images\\multiplayer\\conquerer_1.png",
            1,
            "Conqueror I",
            null,
            6,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1131
        ],
        [
            17,
            -1,
            "Conqueror II",
            1500,
            100,
            "\\Images\\multiplayer\\conquerer_2.png",
            1,
            "Conqueror II",
            null,
            6,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1131
        ],
        [
            18,
            -1,
            "Conqueror III",
            1600,
            100,
            "\\Images\\multiplayer\\conquerer_3.png",
            1,
            "Conqueror III",
            null,
            6,
            "\\Images\\multiplayer\\rank_glow.png",
            15,
            1131
        ],
        [
            1,
            -1,
            "Bronze I",
            0,
            100,
            "\\Images\\multiplayer\\bronze_1.png",
            1,
            "Bronze I",
            null,
            1,
            "9d6242",
            31,
            1195
        ],
        [
            2,
            -1,
            "Bronze II",
            400,
            100,
            "\\Images\\multiplayer\\bronze_2.png",
            1,
            "Bronze II",
            null,
            1,
            "9d6242",
            31,
            1195
        ],
        [
            3,
            -1,
            "Bronze III",
            450,
            100,
            "\\Images\\multiplayer\\bronze_3.png",
            1,
            "Bronze III",
            null,
            1,
            "9d6242",
            31,
            1195
        ],
        [
            4,
            -1,
            "Silver I",
            500,
            100,
            "\\Images\\multiplayer\\silver_1.png",
            1,
            "Silver I",
            null,
            2,
            "a7aebb",
            31,
            1196
        ],
        [
            5,
            -1,
            "Silver II",
            600,
            100,
            "\\Images\\multiplayer\\silver_2.png",
            1,
            "Silver II",
            null,
            2,
            "a7aebb",
            31,
            1196
        ],
        [
            6,
            -1,
            "Silver III",
            650,
            100,
            "\\Images\\multiplayer\\silver_3.png",
            1,
            "Silver III",
            null,
            2,
            "a7aebb",
            31,
            1196
        ],
        [
            7,
            -1,
            "Gold I",
            700,
            100,
            "\\Images\\multiplayer\\gold_1.png",
            1,
            "Gold I",
            null,
            3,
            "ffd469",
            31,
            1197
        ],
        [
            8,
            -1,
            "Gold II",
            800,
            100,
            "\\Images\\multiplayer\\gold_2.png",
            1,
            "Gold II",
            null,
            3,
            "ffd469",
            31,
            1197
        ],
        [
            9,
            -1,
            "Gold III",
            900,
            100,
            "\\Images\\multiplayer\\gold_3.png",
            1,
            "Gold III",
            null,
            3,
            "ffd469",
            31,
            1197
        ],
        [
            10,
            -1,
            "Platinum I",
            1000,
            100,
            "\\Images\\multiplayer\\platinum_1.png",
            1,
            "Platinum I",
            null,
            4,
            "65a1c4",
            31,
            1198
        ],
        [
            11,
            -1,
            "Platinum II",
            1100,
            100,
            "\\Images\\multiplayer\\platinum_2.png",
            1,
            "Platinum II",
            null,
            4,
            "65a1c4",
            31,
            1198
        ],
        [
            12,
            -1,
            "Platinum III",
            1150,
            100,
            "\\Images\\multiplayer\\platinum_3.png",
            1,
            "Platinum III",
            null,
            4,
            "65a1c4",
            31,
            1198
        ],
        [
            13,
            -1,
            "Diamond I",
            1200,
            100,
            "\\Images\\multiplayer\\diamond_1.png",
            1,
            "Diamond I",
            null,
            5,
            "699dfd",
            31,
            1199
        ],
        [
            14,
            -1,
            "Diamond II",
            1300,
            100,
            "\\Images\\multiplayer\\diamond_2.png",
            1,
            "Diamond II",
            null,
            5,
            "699dfd",
            31,
            1199
        ],
        [
            15,
            -1,
            "Diamond III",
            1350,
            100,
            "\\Images\\multiplayer\\diamond_3.png",
            1,
            "Diamond III",
            null,
            5,
            "699dfd",
            31,
            1199
        ],
        [
            16,
            -1,
            "Conqueror I",
            1400,
            100,
            "\\Images\\multiplayer\\conquerer_1.png",
            1,
            "Conqueror I",
            null,
            6,
            "ffab3c",
            31,
            1200
        ],
        [
            17,
            -1,
            "Conqueror II",
            1500,
            100,
            "\\Images\\multiplayer\\conquerer_2.png",
            1,
            "Conqueror II",
            null,
            6,
            "ffab3c",
            31,
            1200
        ],
        [
            18,
            -1,
            "Conqueror III",
            1600,
            100,
            "\\Images\\multiplayer\\conquerer_3.png",
            1,
            "Conqueror III",
            null,
            6,
            "ffab3c",
            31,
            1200
        ],
        [
            1,
            -1,
            "Bronze I",
            0,
            100,
            "\\Images\\multiplayer\\team_bronze_1.png",
            1,
            "Bronze I",
            null,
            1,
            "9d6242",
            32,
            1201
        ],
        [
            2,
            -1,
            "Bronze II",
            400,
            100,
            "\\Images\\multiplayer\\team_bronze_2.png",
            1,
            "Bronze II",
            null,
            1,
            "9d6242",
            32,
            1201
        ],
        [
            3,
            -1,
            "Bronze III",
            450,
            100,
            "\\Images\\multiplayer\\team_bronze_3.png",
            1,
            "Bronze III",
            null,
            1,
            "9d6242",
            32,
            1201
        ],
        [
            4,
            -1,
            "Silver I",
            500,
            100,
            "\\Images\\multiplayer\\team_silver_1.png",
            1,
            "Silver I",
            null,
            2,
            "a7aebb",
            32,
            1202
        ],
        [
            5,
            -1,
            "Silver II",
            600,
            100,
            "\\Images\\multiplayer\\team_silver_2.png",
            1,
            "Silver II",
            null,
            2,
            "a7aebb",
            32,
            1202
        ],
        [
            6,
            -1,
            "Silver III",
            650,
            100,
            "\\Images\\multiplayer\\team_silver_3.png",
            1,
            "Silver III",
            null,
            2,
            "a7aebb",
            32,
            1202
        ],
        [
            7,
            -1,
            "Gold I",
            700,
            100,
            "\\Images\\multiplayer\\team_gold_1.png",
            1,
            "Gold I",
            null,
            3,
            "ffd469",
            32,
            1203
        ],
        [
            8,
            -1,
            "Gold II",
            800,
            100,
            "\\Images\\multiplayer\\team_gold_2.png",
            1,
            "Gold II",
            null,
            3,
            "ffd469",
            32,
            1203
        ],
        [
            9,
            -1,
            "Gold III",
            900,
            100,
            "\\Images\\multiplayer\\team_gold_3.png",
            1,
            "Gold III",
            null,
            3,
            "ffd469",
            32,
            1203
        ],
        [
            10,
            -1,
            "Platinum I",
            1000,
            100,
            "\\Images\\multiplayer\\team_platinum_1.png",
            1,
            "Platinum I",
            null,
            4,
            "65a1c4",
            32,
            1204
        ],
        [
            11,
            -1,
            "Platinum II",
            1100,
            100,
            "\\Images\\multiplayer\\team_platinum_2.png",
            1,
            "Platinum II",
            null,
            4,
            "65a1c4",
            32,
            1204
        ],
        [
            12,
            -1,
            "Platinum III",
            1150,
            100,
            "\\Images\\multiplayer\\team_platinum_3.png",
            1,
            "Platinum III",
            null,
            4,
            "65a1c4",
            32,
            1204
        ],
        [
            13,
            -1,
            "Diamond I",
            1200,
            100,
            "\\Images\\multiplayer\\team_diamond_1.png",
            1,
            "Diamond I",
            null,
            5,
            "699dfd",
            32,
            1205
        ],
        [
            14,
            -1,
            "Diamond II",
            1300,
            100,
            "\\Images\\multiplayer\\team_diamond_2.png",
            1,
            "Diamond II",
            null,
            5,
            "699dfd",
            32,
            1205
        ],
        [
            15,
            -1,
            "Diamond III",
            1350,
            100,
            "\\Images\\multiplayer\\team_diamond_3.png",
            1,
            "Diamond III",
            null,
            5,
            "699dfd",
            32,
            1205
        ],
        [
            16,
            -1,
            "Conqueror I",
            1400,
            100,
            "\\Images\\multiplayer\\team_conquerer_1.png",
            1,
            "Conqueror I",
            null,
            6,
            "ffab3c",
            32,
            1206
        ],
        [
            17,
            -1,
            "Conqueror II",
            1500,
            100,
            "\\Images\\multiplayer\\team_conquerer_2.png",
            1,
            "Conqueror II",
            null,
            6,
            "ffab3c",
            32,
            1206
        ],
        [
            18,
            -1,
            "Conqueror III",
            1600,
            100,
            "\\Images\\multiplayer\\team_conquerer_3.png",
            1,
            "Conqueror III",
            null,
            6,
            "ffab3c",
            32,
            1206
        ]
    ]
]

[GET] /game/CommunityEvent/getEventChallengeProgress

AUTHENTICATION

AoE4

Request

GET /game/CommunityEvent/getEventChallengeProgress?callNum=220&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&event_id=22&lastCallTime=2935574&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
event_idint22
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            16273087,
            1525309,
            0,
            0,
            1669708740,
            null,
            22,
            1666716600
        ],
        [
            16273088,
            1525311,
            0,
            0,
            1669708740,
            null,
            22,
            1666716600
        ],
        [
            16273089,
            1525313,
            0,
            0,
            1669708740,
            null,
            22,
            1666716600
        ],
        [
            16273090,
            1525315,
            0,
            0,
            1669708740,
            null,
            22,
            1666716600
        ],
        [
            16273091,
            1525329,
            0,
            0,
            1669708740,
            null,
            22,
            1666716600
        ],
        [
            16273092,
            1525331,
            0,
            0,
            1669708740,
            null,
            22,
            1666716600
        ]
    ]
]

[GET] /game/CommunityEvent/getEventStats

AUTHENTICATION

AoE4

Request

GET /game/CommunityEvent/getEventStats?callNum=310&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&event_id=31&group_type=1&lastCallTime=3084269&member_id=11190194&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
event_idint31
group_typeint1
lastCallTimetimestamp
member_idint11190194
sessionIDstr

Response

[
    0, // result status code
    [
        "4097972"
    ],
    [
        [
            19321,
            11190194,
            "/steam/76561198827722196",
            "{\"sharedHistory\":0}",
            "Pikaboo",
            "",
            4097972,
            235234,
            126,
            2,
            null,
            "76561198827722196",
            3,
            []
        ]
    ],
    [],
    []
]

Invitation Endpoints

Endpoints for managing game lobby invitations, allowing players to invite others to join their game or cancel pending invitations.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
extendInvitationPOSTSend a game lobby invitation to another player
cancelInvitationPOSTCancel a pending invitation

[POST] /game/invitation/cancelInvitation

AUTHENTICATION

AoE2:DE

Request

POST /game/invitation/cancelInvitation HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 153

callNum=133&connect_id=6mikb1saqrmud2kte7ovswogamd2th&gatheringid=186430525&inviteeid=421346&lastCallTime=476928&sessionID=6mikb1saqrmud2kte7ovswogamd2th
parametertypevaluecomments
callNumint123
connect_idstr
gatheringidint
inviteeidint
lastCallTimetimestamp
sessionIDstr

Response

[
    2  // result status code
]

[POST] /game/invitation/extendInvitation

AUTHENTICATION

AoE2:DE

Request

POST /game/invitation/extendInvitation HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 172
parametertypevaluecomments
callNumint123
connect_idstr
gatheringidint
gatheringpasswordstr
inviteeidint
lastCallTimetimestamp
sessionIDstr

Response

[
    2 // result status code
]

Item Endpoints

Endpoints for managing in-game items, inventory, and the item shop.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
detachItemsPOSTDetach items from loadout
getInventoryByProfileIDsGETGet inventory for player(s)
getItemBundleItemsJsonGETGet item bundle contents
getItemDefinitionsJsonGETGet all item definitions
getItemLoadoutsGETGet player’s item loadouts
getItemPricesGETGet item shop prices
getLevelRewardsTableJsonGETGet level-up rewards table
getPersonalizedSaleItemsGETGet personalized sale offers
getScheduledSaleAndItemsGETGet scheduled sales
moveChargesPOSTMove item charges
moveItemPOSTMove item in inventory
openItemPackPOSTOpen an item pack/lootbox
signItemsPOSTSign items for verification
updateItemAttributesPOSTUpdate item attributes

[POST] /game/item/detachItems

AUTHENTICATION

AoE4

Request

POST /game/item/detachItems HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 278
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=25&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&itemCharges=[1,1,1,1,1,1]&itemIDs=[449911890,449911890,449911888,449911890,449911888,449911889]&itemLocations=[0,0,0,0,0,0]&lastCallTime=12729&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
connect_id
itemChargesarr[int][1,1,1,1,1,1]
itemIDsarray[int][4,5]
itemLocationsarray[int][12,3]
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        0,
        1,
        0,
        1,
        1,
        0
    ],
    [
        [
            449911890,
            3,
            454345,
            233334, // self profile_id
            1,
            0,
            "",
            1666823722,
            0,
            -1,
            35,
            -1
        ],
        [
            449911888,
            3,
            454343,
            233334, // self profile_id
            1,
            0,
            "",
            1666823722,
            0,
            -1,
            35,
            -1
        ],
        [
            449911889,
            3,
            454344,
            233334, // self profile_id
            1,
            0,
            "",
            1666823722,
            0,
            -1,
            35,
            -1
        ]
    ]
]

[GET] /game/item/getInventoryByProfileIDs

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getInventoryByProfileIDs?callNum=123&connect_id=ccc&lastCallTime=111&profileIDs=[1,1]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
profileIDsarray[int][123,411]

Response

[
    0, // result status code
    [
        [
            "233334", // self profile_id
            [
                [
                    7867717,
                    3,
                    400000065,
                    233334, // self profile_id
                    1,
                    0,
                    "",
                    1604440343,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    8552503,
                    3,
                    400000081,
                    233334,
                    1,
                    0,
                    "",
                    1607595936,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    8780780,
                    3,
                    400000079,
                    233334,
                    1,
                    0,
                    "",
                    1607853219,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    8829583,
                    3,
                    400000082,
                    233334,
                    1,
                    0,
                    "",
                    1607940526,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    8866653,
                    3,
                    400000080,
                    233334,
                    1,
                    0,
                    "",
                    1608028659,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    9960621,
                    3,
                    400000088,
                    233334,
                    1,
                    0,
                    "",
                    1612269371,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    14211263,
                    3,
                    210401,
                    233334,
                    1,
                    0,
                    "",
                    1621845865,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    15671195,
                    3,
                    211001,
                    233334,
                    1,
                    0,
                    "",
                    1633497493,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    16160634,
                    3,
                    211002,
                    233334,
                    1,
                    0,
                    "",
                    1633952542,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    16271751,
                    3,
                    211003,
                    233334,
                    1,
                    0,
                    "",
                    1634116647,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    16326585,
                    3,
                    211004,
                    233334,
                    1,
                    0,
                    "",
                    1634213958,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    16375552,
                    3,
                    211005,
                    233334,
                    1,
                    0,
                    "",
                    1634305583,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211740,
                    3,
                    211112,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211741,
                    3,
                    211113,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211742,
                    3,
                    211114,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211743,
                    3,
                    211115,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211744,
                    3,
                    211116,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211745,
                    3,
                    211117,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211746,
                    3,
                    211118,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211747,
                    3,
                    211119,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211748,
                    3,
                    211120,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211749,
                    3,
                    211121,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211750,
                    3,
                    211122,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    21211751,
                    3,
                    211123,
                    233334,
                    1,
                    0,
                    "",
                    1637569426,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898625,
                    3,
                    211124,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898626,
                    3,
                    211125,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898627,
                    3,
                    211126,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898628,
                    3,
                    211127,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898629,
                    3,
                    211128,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898630,
                    3,
                    211129,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898631,
                    3,
                    211130,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898632,
                    3,
                    211131,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    24898633,
                    3,
                    211132,
                    233334,
                    1,
                    0,
                    "",
                    1638202045,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    27126998,
                    3,
                    220201,
                    233334,
                    1,
                    0,
                    "",
                    1645642535,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    27177332,
                    3,
                    220202,
                    233334,
                    1,
                    0,
                    "",
                    1645710293,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    27226199,
                    3,
                    220203,
                    233334,
                    1,
                    0,
                    "",
                    1645781644,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    27394699,
                    3,
                    220204,
                    233334,
                    1,
                    0,
                    "",
                    1646045001,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    27528996,
                    3,
                    220205,
                    233334,
                    1,
                    0,
                    "",
                    1646424580,
                    0,
                    -1,
                    0,
                    -1
                ],
                [
                    31620831,
                    3,
                    220901,
                    233334,
                    1,
                    0,
                    "",
                    1663872251,
                    0,
                    -1,
                    0,
                    -1
                ]
            ]
        ]
    ],
    [
        [
            "233334",
            [
                [
                    1,
                    0,
                    0,
                    0,
                    10000,
                    0,
                    0,
                    0,
                    1
                ],
                [
                    2,
                    0,
                    1,
                    0,
                    10000,
                    0,
                    1,
                    1,
                    0
                ]
            ]
        ]
    ]
]

AoE3:DE

Request

GET /game/item/getInventoryByProfileIDs?callNum=10&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=2857&profileIDs=%5B9655781%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profileIDsarray[int][123,411]
sessionIDstr

Response

[
    0,
    [],
    [
        [
            "9633781", // self profile_id
            [
                [
                    1,
                    0,
                    0,
                    0,
                    1000,
                    0,
                    0,
                    0,
                    0
                ],
                [
                    2,
                    0,
                    1,
                    1001,
                    1,
                    0,
                    1,
                    0,
                    0
                ],
                [
                    3,
                    0,
                    2,
                    4,
                    16,
                    0,
                    1,
                    0,
                    1
                ],
                [
                    4,
                    0,
                    3,
                    1002,
                    32,
                    0,
                    0,
                    0,
                    0
                ],
                [
                    5,
                    0,
                    4,
                    1003,
                    32,
                    0,
                    0,
                    0,
                    0
                ]
            ]
        ]
    ]
]

AoE4

Request

GET /game/item/getInventoryByProfileIDs?callNum=177&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1988396&profileIDs=%5B233334%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profileIDsarray[int][123,411]
sessionIDstr

Response

[
    0,
    [
        [
            "233334",
            [
                [
                    449911682,
                    0,
                    450847,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911683,
                    0,
                    451704,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911684,
                    0,
                    451848,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911685,
                    0,
                    451762,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911686,
                    0,
                    451806,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911687,
                    0,
                    451770,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911688,
                    0,
                    451840,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911689,
                    0,
                    451923,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    4,
                    -1,
                    3,
                    -1
                ],
                [
                    449911690,
                    0,
                    451960,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    5,
                    -1,
                    3,
                    -1
                ],
                [
                    449911691,
                    1,
                    452595,
                    233334,
                    45940,
                    0,
                    "",
                    1666823722,
                    3,
                    -1,
                    3,
                    -1
                ],
                [
                    449911692,
                    0,
                    452658,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911693,
                    0,
                    453818,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911694,
                    0,
                    453824,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911695,
                    0,
                    453821,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911696,
                    0,
                    453832,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911697,
                    0,
                    453827,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911698,
                    0,
                    453811,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911699,
                    0,
                    453836,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911700,
                    0,
                    453813,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911701,
                    0,
                    453825,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911702,
                    0,
                    453826,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911703,
                    0,
                    453810,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911704,
                    0,
                    453817,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911705,
                    0,
                    453819,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911706,
                    0,
                    453823,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911707,
                    0,
                    453838,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911708,
                    0,
                    453812,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911709,
                    0,
                    453828,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911710,
                    0,
                    453814,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911711,
                    0,
                    453822,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911712,
                    0,
                    453937,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911713,
                    0,
                    454271,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911714,
                    0,
                    454272,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911715,
                    0,
                    454336,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911716,
                    1,
                    454438,
                    233334,
                    2,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911717,
                    0,
                    454434,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911718,
                    0,
                    454433,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911719,
                    0,
                    454432,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911720,
                    0,
                    454431,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911721,
                    0,
                    454430,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911722,
                    0,
                    454429,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911723,
                    0,
                    454428,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911724,
                    0,
                    454435,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911725,
                    0,
                    454425,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911726,
                    0,
                    454426,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911727,
                    0,
                    454424,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911728,
                    0,
                    454423,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911729,
                    0,
                    454422,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911730,
                    0,
                    454414,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911731,
                    0,
                    454412,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911732,
                    0,
                    454411,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911733,
                    0,
                    454408,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911734,
                    0,
                    454407,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911735,
                    0,
                    454404,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911736,
                    0,
                    454402,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911737,
                    0,
                    454400,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911738,
                    0,
                    454398,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911739,
                    0,
                    454396,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911740,
                    0,
                    454394,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911741,
                    0,
                    454390,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911742,
                    0,
                    454389,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911743,
                    0,
                    454392,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911744,
                    0,
                    454391,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911745,
                    0,
                    454393,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911746,
                    0,
                    454395,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911747,
                    0,
                    454397,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911748,
                    0,
                    454399,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911749,
                    0,
                    454401,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911750,
                    0,
                    454388,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911751,
                    0,
                    454403,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911752,
                    0,
                    454405,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911753,
                    0,
                    454406,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911754,
                    0,
                    454409,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911755,
                    0,
                    454410,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911756,
                    0,
                    454413,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911757,
                    0,
                    454420,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911758,
                    0,
                    454421,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911759,
                    0,
                    454419,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911760,
                    0,
                    454418,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911761,
                    0,
                    454417,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911762,
                    0,
                    454415,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911763,
                    0,
                    454416,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911764,
                    0,
                    454437,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911765,
                    0,
                    454427,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911766,
                    0,
                    454436,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911767,
                    0,
                    454450,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911768,
                    0,
                    454447,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911769,
                    0,
                    454448,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911770,
                    0,
                    454446,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911771,
                    0,
                    454445,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911772,
                    0,
                    454444,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911773,
                    0,
                    454443,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911774,
                    0,
                    454442,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911775,
                    0,
                    454441,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911776,
                    0,
                    454440,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911777,
                    0,
                    454439,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911779,
                    0,
                    454449,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911780,
                    0,
                    454486,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911781,
                    0,
                    454481,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911782,
                    0,
                    454480,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911783,
                    0,
                    454477,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911784,
                    0,
                    454479,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911785,
                    0,
                    454478,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911786,
                    0,
                    454476,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911787,
                    0,
                    454475,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911788,
                    0,
                    454474,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911789,
                    0,
                    454473,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911790,
                    0,
                    454472,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911791,
                    0,
                    454471,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911792,
                    0,
                    454470,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911793,
                    0,
                    454469,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911794,
                    0,
                    454466,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911795,
                    0,
                    454482,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911796,
                    0,
                    454459,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911797,
                    0,
                    454452,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911798,
                    0,
                    454451,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911799,
                    0,
                    454453,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911800,
                    0,
                    454455,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911801,
                    0,
                    454456,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911802,
                    0,
                    454457,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911803,
                    0,
                    454458,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911804,
                    0,
                    454467,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911805,
                    0,
                    454468,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911806,
                    0,
                    454465,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911807,
                    0,
                    454464,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911808,
                    0,
                    454463,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911809,
                    0,
                    454462,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911810,
                    0,
                    454461,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911811,
                    0,
                    454454,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911812,
                    0,
                    454460,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911813,
                    0,
                    454484,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911814,
                    0,
                    454485,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911815,
                    0,
                    454483,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911816,
                    0,
                    454490,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911817,
                    0,
                    454489,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911818,
                    0,
                    454488,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911819,
                    0,
                    454487,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911820,
                    0,
                    453169,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911821,
                    0,
                    453199,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911822,
                    0,
                    453795,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911823,
                    0,
                    453797,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911824,
                    0,
                    453798,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911825,
                    0,
                    453800,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911826,
                    0,
                    453803,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911827,
                    0,
                    453808,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911828,
                    0,
                    451924,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911829,
                    0,
                    451925,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911830,
                    0,
                    452649,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911831,
                    0,
                    451927,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911832,
                    0,
                    451928,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911833,
                    0,
                    451929,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911834,
                    0,
                    451946,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911835,
                    0,
                    451951,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911836,
                    0,
                    451954,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911837,
                    0,
                    451952,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911838,
                    0,
                    452482,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911839,
                    0,
                    452483,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911840,
                    0,
                    452484,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911841,
                    0,
                    452522,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911842,
                    0,
                    452530,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911843,
                    0,
                    452529,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911844,
                    0,
                    452532,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911845,
                    0,
                    452527,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911846,
                    0,
                    452526,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911847,
                    0,
                    452525,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911848,
                    0,
                    452524,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911849,
                    0,
                    452523,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911850,
                    0,
                    452535,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911851,
                    0,
                    452534,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911852,
                    0,
                    452540,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911853,
                    0,
                    452536,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911854,
                    0,
                    452539,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911855,
                    0,
                    452538,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911856,
                    0,
                    452541,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911857,
                    0,
                    452545,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911858,
                    0,
                    452551,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911859,
                    0,
                    452548,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911860,
                    0,
                    452547,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911861,
                    0,
                    452546,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911862,
                    0,
                    452485,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911863,
                    0,
                    452543,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911864,
                    0,
                    452544,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911865,
                    0,
                    452549,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911866,
                    0,
                    452550,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911867,
                    0,
                    452515,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911868,
                    0,
                    452516,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911869,
                    0,
                    452520,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911870,
                    0,
                    452519,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911871,
                    0,
                    452487,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911872,
                    0,
                    452517,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911873,
                    0,
                    452518,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911874,
                    0,
                    452486,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911875,
                    0,
                    451953,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911876,
                    0,
                    452552,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911877,
                    0,
                    452553,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911878,
                    0,
                    452554,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911879,
                    0,
                    452555,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911880,
                    0,
                    452558,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911881,
                    0,
                    452556,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911882,
                    0,
                    452489,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911883,
                    0,
                    452488,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911884,
                    0,
                    452557,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    3,
                    -1
                ],
                [
                    449911888,
                    3,
                    454343,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    35,
                    -1
                ],
                [
                    449911889,
                    3,
                    454344,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    35,
                    -1
                ],
                [
                    449911890,
                    3,
                    454345,
                    233334,
                    1,
                    0,
                    "",
                    1666823722,
                    0,
                    -1,
                    35,
                    -1
                ],
                [
                    449956868,
                    3,
                    451896,
                    233334,
                    1,
                    0,
                    "",
                    1666824369,
                    0,
                    -1,
                    35,
                    -1
                ],
                [
                    449956869,
                    3,
                    451895,
                    233334,
                    1,
                    0,
                    "",
                    1666824369,
                    0,
                    -1,
                    35,
                    -1
                ],
                [
                    449956870,
                    3,
                    453018,
                    233334,
                    1,
                    0,
                    "",
                    1666824369,
                    0,
                    -1,
                    35,
                    -1
                ]
            ]
        ]
    ],
    [
        [
            "233334",
            [
                [
                    1,
                    0,
                    0,
                    0,
                    1000,
                    0,
                    0,
                    0,
                    0
                ],
                [
                    2,
                    0,
                    1,
                    1,
                    2,
                    1,
                    0,
                    0,
                    0
                ],
                [
                    3,
                    0,
                    2,
                    4,
                    1,
                    0,
                    1,
                    1,
                    1
                ],
                [
                    4,
                    0,
                    3,
                    1397006,
                    1,
                    0,
                    1,
                    0,
                    0
                ],
                [
                    5,
                    0,
                    4,
                    1405268,
                    1,
                    0,
                    1,
                    0,
                    0
                ],
                [
                    6,
                    0,
                    5,
                    1408204,
                    1,
                    0,
                    1,
                    1,
                    0
                ]
            ]
        ]
    ]
]

[GET] /game/item/getItemBundleItemsJson

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getItemBundleItemsJson?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&signature=sss HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

{
    "result": 0,
    "dataSignature": "Q8jVpeRaWqNAyXwg7I/+4elO6TtyZGGRFkgOzBdiuh+h3CTgIHvCODfZZ95GFMSSpkBOwAgW/rx0EOiPXLn1BKyQW1qjmLIJFkCAfy06JoxPGpRXoo6WxRyLhe3xg6YrIm4AVa2sxeAkA9mNfFfFr+feiSNZ/6HBp621flD+f2Y+zHPd3ClPcQGiEvQXy6CCzsfqifr15+zTXZKsrrCmKgnrWQpefBxcaQipsZy063tHmH1DVbq05nC+iiecZJjhe70Pn+hzTBli6AOhAvFjrU7/95JFyWuHsfHu9GjWWAz5XNppOaPs5qChhm4bqr/4hd6pmnD9h4htIDDctdiAJw=="
}

AoE4

Request

GET /game/item/getItemBundleItemsJson?callNum=223&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=2937108&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&signature=fQDmHzAkaNfK40Ajoc1HDWJ6Fh4o43%2FmKKwoTOOtnWnoyKS7GiG07DGlO30sW5RpXAAcWbhOdpz27%2BGS7vI947VQv6I6onHGc6OkmlF3GUKeZnmYLZcm%2BZURtdWpo6%2BBX%2F6RY%2FFPgnYomeCcDtMbmSMYM5KkWy09j3jOotN%2FIHCQD0rPZAkFdUV8nMeSTDAh1WcM%2BS6eWROjfy9yuZ76x2ZrNDNamFS9noHP%2Bi3ViCtQjdmwy9Q%2BVWKKzdmoAIM8tri3YEZMPJH%2FVMJyRENE7J4VMGGL6lzAkNmjIm%2BT66w%2B7XIRiC3aWo5DY8RdsvuIDpExG3AyQXr%2FL2dGT87POg%3D%3D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

{
    "result": 0,
    "dataSignature": "fQDmHzAkaNfK40Ajoc1HDWJ6Fh4o43/mKKwoTOOtnWnoyKS7GiG07DGlO30sW5RpXAAcWbhOdpz27+GS7vI947VQv6I6onHGc6OkmlF3GUKeZnmYLZcm+ZURtdWpo6+BX/6RY/FPgnYomeCcDtMbmSMYM5KkWy09j3jOotN/IHCQD0rPZAkFdUV8nMeSTDAh1WcM+S6eWROjfy9yuZ76x2ZrNDNamFS9noHP+i3ViCtQjdmwy9Q+VWKKzdmoAIM8tri3YEZMPJH/VMJyRENE7J4VMGGL6lzAkNmjIm+T66w+7XIRiC3aWo5DY8RdsvuIDpExG3AyQXr/L2dGT87POg=="
}

[GET] /game/item/getItemDefinitionsJson (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

GET /game/item/getItemDefinitionsJson?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&signature=sss HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

RESPONSE_TEMPLATE

[GET] /game/item/getItemLoadouts

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getItemLoadouts?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    []
]

AoE4

Request

GET /game/item/getItemLoadouts?callNum=174&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1986847&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    []
]

[GET] /game/item/getItemPrices

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getItemPrices?accountType=3&callNum=123&connect_id=ccc&country=us&currency=usd&lastCallTime=111&saleVersion=-1&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
accountTypeint3
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
countryISO 3166-1 Alpha-2us
currencyISO 4217usd
saleVersionint-1

Response

RESPONSE_TEMPLATE

AoE4

Request

GET /game/item/getItemPrices?accountType=3&callNum=119&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&country=de&currency=eur&lastCallTime=653353&saleVersion=-1&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
accountTypeint3
callNumint123
connect_id
lastCallTimetimestamp
countryISO 3166-1 Alpha-2us
currencyISO 4217usd
saleVersionint-1
sessionIDstr

Response

[
    0, // result status code
    [],
    0,
    []
]

[GET] /game/item/getLevelRewardsTableJson

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getLevelRewardsTableJson?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&signature=sss HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

RESPONSE_TEMPLATE

AoE4

Request

GET /game/item/getLevelRewardsTableJson?callNum=216&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=2933258&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&signature=fXXM4SDq55MySPTT1KNG2I2l%2BjrHSKlXuakKPXfxrRowBDmE6zNji4qI9GkjciECpSrDrsPBMxuLij1iCapwM420bekwi8TQXimm%2BVHDU%2BkL02HiaKyHt5gdftJgYA2z0BwcpGozWtq21lGC%2FQo7%2BHD83F%2Bj1mgUQRFhXnVJRHwDFRT%2Bz5cvjxBU05SI0VTxZ7SOZl9LPK5TJ2YaC7KxEfjD7ZBkVzIbuhgD1rzTXEb%2Bav%2Bl3Q%2B3JXe9GBzSKWZ0VPDBrAhywanO1B0F%2Bq%2BkA1semppZC4fVeMONEoj8NrO%2FWZDkiZZwuVhx%2FHebF6iiBsUUlfeSqRJP2QyD%2Bg6Xwg%3D%3D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
signaturestr

Response

{
    "result": 0,
    "dataSignature": "fXXM4SDq55MySPTT1KNG2I2l+jrHSKlXuakKPXfxrRowBDmE6zNji4qI9GkjciECpSrDrsPBMxuLij1iCapwM420bekwi8TQXimm+VHDU+kL02HiaKyHt5gdftJgYA2z0BwcpGozWtq21lGC/Qo7+HD83F+j1mgUQRFhXnVJRHwDFRT+z5cvjxBU05SI0VTxZ7SOZl9LPK5TJ2YaC7KxEfjD7ZBkVzIbuhgD1rzTXEb+av+l3Q+3JXe9GBzSKWZ0VPDBrAhywanO1B0F+q+kA1semppZC4fVeMONEoj8NrO/WZDkiZZwuVhx/HebF6iiBsUUlfeSqRJP2QyD+g6Xwg=="
}

[GET] /game/item/getPersonalizedSaleItems

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getPersonalizedSaleItems?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

RESPONSE_TEMPLATE

AoE4

Request

GET /game/item/getPersonalizedSaleItems?callNum=129&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=658503&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [],
    []
]

[GET] /game/item/getScheduledSaleAndItems

AUTHENTICATION

AoE2:DE

Request

GET /game/item/getScheduledSaleAndItems?callNum=123&connect_id=ccc&lastCallTime=111&saleType=1&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
saleTypeint1

Response

RESPONSE_TEMPLATE

AoE4

Request

GET /game/item/getScheduledSaleAndItems?callNum=120&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=653869&saleType=1&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
saleTypeint1
sessionIDstr

Response

[
    0, // result status code
    [],
    [],
    0
]

[POST] /game/item/moveCharges

AUTHENTICATION

AoE2:DE

Request

POST /game/item/moveCharges HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 202
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&charges=[123]&connect_id=ccc&deletes=[1]&fromItemIDs=[321]&lastCallTime=111&sessionID=zzz&toItemIDs=[456]
parametertypevaluecomments
callNumint123
chargesarray[int][123]
connect_id
deletesarray[int][1]
fromItemIDsarray[int][4,5]
lastCallTimetimestamp
sessionIDstr
toItemIDsarray[int][1,3]

Response

RESPONSE_TEMPLATE

AoE4

Request

POST /game/item/moveCharges HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 198
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=36&charges=[1]&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&deletes=[1]&fromItemIDs=[449911778]&lastCallTime=18396&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&toItemIDs=[449911716]
parametertypevaluecomments
callNumint123
chargesarray[int][123]
connect_id
deletesarray[int][1]
fromItemIDsarray[int][4,5]
lastCallTimetimestamp
sessionIDstr
toItemIDsarray[int][1,3]

Response

[
    0,
    [
        0
    ],
    [
        0
    ],
    [
        2
    ],
    [
        [
            449911716,
            1,
            454438,
            233334, // self profile_id
            2,
            0,
            "",
            1666823722,
            0,
            -1,
            3,
            -1
        ]
    ]
]

[POST] /game/item/moveItem (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/item/moveItem HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 220
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&itemIDs=[1,2]&itemLocationIDs=[0,2]&lastCallTime=111&posIDs=[-1,-1]&sessionID=zzz&slotIDs=[-1,-1]
parametertypevaluecomments
callNumint123
connect_id
itemIDsarray[int][4,5]
itemLocationIDsarray[int][12,3]
lastCallTimetimestamp
posIDsarray[int][-1,-1]
sessionIDstr
slotIDsarray[int][1,3]

Response

RESPONSE_TEMPLATE

[POST] /game/item/openItemPack

AUTHENTICATION

AoE2:DE

Request

POST /game/item/openItemPack HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 171
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&choices=[]&connect_id=ccc&itemInstance_id=5678&itemLocation_id=0&lastCallTime=111&sessionID=zzz
parametertypevaluecomments
callNumint123
choicesarray[?][]
connect_id
itemInstance_idint5678
itemLocation_idint0
lastCallTimetimestamp
sessionIDstr

Response

RESPONSE_TEMPLATE

AoE4

Request

POST /game/item/openItemPack HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 173
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=128&choices=[]&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&itemInstance_id=449956852&itemLocation_id=0&lastCallTime=658002&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
choicesarray[?][]
connect_id
itemInstance_idint5678
itemLocation_idint0
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            449957613,
            1,
            452595,
            233334, // self profile_id
            45939,
            0,
            "",
            1666824381,
            0,
            -1,
            3,
            -1
        ]
    ]
]

[POST] /game/item/signItems

AUTHENTICATION

AoE2:DE

Request

POST /game/item/signItems HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 127
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&crc=888&lastCallTime=111&sessionID=zzz
parametertypevaluecomments
callNumint123
connect_id
crcint888
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    "kIZljYcuEnBkLRNBimBbsnUgCKNRVAim+ZhvQ6uyBnfIwjjXX2P9ZxWlExJEVePgzFzO9dNioZUkKOLjtyeWyfvTojyyxMAIZVP9jUKoB73U6aAsozt+JFbcztFhs6IRezW/lhqtkVrZQwYD3ex4y8suVZRnUouZUXo103b/jyqpha0YvlsWGuuqP/6GBthZU9qsJqHT+YbhAu40bDLvwq9fVksqbdaoBJOmc2dGPrSZFguFJSNmmLcOTQQkIZc/sBaSaTpNFk57zafVz4qe9HAGRxHdF1pfDDsIzEq2Glp65f3yrNFQDLZtshfgGItlIDFa/i6D+qw3TA5FfARgyw=="
]

AoE4

Request

POST /game/item/signItems HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 127
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=34&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&crc=3611078805&lastCallTime=17363&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
connect_id
crcint888
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    "Gv20EHYdVJtMQMzFWmLCja2JdJpgV+/fsN31PYFG5mpYpmbCxihWLET0mAbBpLSFP3TOayG9943zTLtW1K/M95CPyVbQZsaFJOWgqN3310esgCeSirxNCfvM76g94BSeJDI5nD+TxGE0gF1diez2M5VU8PRYlHAyLrF2lHvvtwLXBu807AaaiA22nwShh11uA8MzL7LOI3aVIbSnLj16ywCLKnrEANQe8JTKttuMUFvF2f596hY+mZHxNIw2IjREHo2OgNt6vKvv9l6Jpi6beSXr3Dalhu6oj0oRotXkeCPUp08Q6P1knu3CwnwOtJPs7+PCEUIQUM1XR41mOq0Dgw=="
]

[POST] /game/item/updateItemAttributes

AUTHENTICATION

AoE4

Request

POST /game/item/updateItemAttributes HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=8fcf0d772d3c17881a57cd3841278a97;ApplicationGatewayAffinityCORS=8fcf0d772d3c17881a57cd3841278a97;worldsedgelink=1976371368;
Cache-Control: no-store
Content-Length: 236
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

attributeKeys=[["is_new"]]&attributeValues=[["0"]]&callNum=49&connect_id=59izpfd14rbl5go285a3v22lhu33hg&itemInstance_ids=[449911889]&lastCallTime=44733&sessionID=59izpfd14rbl5go285a3v22lhu33hg&xpGains=[0]
parametertypevaluecomments
attributeKeysarr[arr[str]][[“is_new”]]
attributeValuesarr[arr[str]][[“0”]]
callNumint49
connect_idstr59izpfd14rbl5go285a3v22lhu33hg
itemInstance_idsarr[int][449911889]
lastCallTimeint44733
sessionIDstr59izpfd14rbl5go285a3v22lhu33hgis connect_id
xpGainsarr[int][0]

Response

[
    0,
    [
        [
            0,
            [
                0
            ]
        ]
    ],
    [
        [
            449911889,
            4,
            454344,
            233334, // self profile_id
            1,
            0,
            "{\"att\":{\"is_new\":{\"val\":\"0\"}}}",
            1666823722,
            0,
            -1,
            35,
            -1
        ]
    ]
]

Leaderboard Endpoints

Endpoints for accessing player rankings, statistics, and match history.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getAvailableLeaderboardsGETGet all leaderboard definitions, match types, civilizations, and regions
getLeaderBoardGETGet ranked leaderboard entries with player stats
getPartyStatGETGet statistics for a party/team
getPersonalStatGETGet personal statistics for a player
getRecentMatchHistoryGET/POSTGet recent match history for player(s)
getRecentMatchSinglePlayerHistoryGETGet single-player match history
getStatGroupsByProfileIDsGETGet stat groups for multiple profile IDs
getStatsForLeaderboardByProfileNameGETSearch leaderboard stats by player name
setAvatarStatValuesPOSTUpdate avatar statistics

[GET] /game/Leaderboard/getAvailableLeaderboards (Definitions, Translations)

AUTHENTICATION

The response contains definitions of various strings to lookup.

AoE2:DE

Request

GET /game/Leaderboard/getAvailableLeaderboards?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [
        [
            1,
            2,
            1,
            -1
        ],
        [
            2,
            3,
            1,
            -1
        ],
        [
            2,
            4,
            1,
            -1
        ],
        [
            2,
            5,
            1,
            -1
        ],
        [
            1,
            60,
            1,
            -1
        ],
        [
            2,
            61,
            1,
            -1
        ],
        [
            3,
            6,
            1,
            -1
        ],
        [
            4,
            7,
            1,
            -1
        ],
        [
            4,
            8,
            1,
            -1
        ],
        [
            4,
            9,
            1,
            -1
        ],
        [
            13,
            26,
            1,
            -1
        ],
        [
            14,
            27,
            1,
            -1
        ],
        [
            14,
            28,
            1,
            -1
        ],
        [
            14,
            29,
            1,
            -1
        ],
        [
            5,
            10,
            1,
            -1
        ]
    ],
    [
        [
            1,
            "SOLO_DM_RANKED",
            1
        ],
        [
            2,
            "TEAM_DM_RANKED",
            1
        ],
        [
            3,
            "SOLO_RM_RANKED",
            1
        ],
        [
            4,
            "TEAM_RM_RANKED",
            1
        ],
        [
            5,
            "SOLO_BR_RANKED",
            1
        ],
        [
            13,
            "SOLO_EW_RANKED",
            1
        ],
        [
            14,
            "TEAM_EW_RANKED",
            1
        ]
    ],
    [
        [
            -1,
            "INVALID",
            0,
            0,
            null,
            0.0,
            0
        ],
        [
            0,
            "CUSTOM",
            0,
            0,
            null,
            1.0,
            1
        ],
        [
            1,
            "PARTY",
            0,
            0,
            null,
            0.0,
            0
        ],
        [
            2,
            "1V1",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            3,
            "2V2",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            4,
            "3V3",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            5,
            "4V4",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            6,
            "1V1",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            7,
            "2V2",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            8,
            "3V3",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            9,
            "4V4",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            10,
            "FFA",
            1,
            8,
            null,
            1.0,
            2
        ],
        [
            11,
            "1V1",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            12,
            "2V2",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            13,
            "3V3",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            14,
            "4V4",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            15,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            16,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            17,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            18,
            "1V1",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            19,
            "2V2",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            20,
            "3V3",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            21,
            "4V4",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            22,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            23,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            24,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            25,
            "FFA",
            1,
            8,
            null,
            1.0,
            2
        ],
        [
            26,
            "1V1",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            27,
            "2V2",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            28,
            "3V3",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            29,
            "4V4",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            30,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            31,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            32,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            33,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            34,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            35,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            36,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            37,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            38,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            39,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            40,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            41,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            42,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            43,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            44,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            45,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            46,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            47,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            48,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            49,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            50,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            51,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            52,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            53,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            54,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            55,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            56,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            57,
            "2VAI",
            2,
            1,
            null,
            1.0,
            2
        ],
        [
            58,
            "3VAI",
            3,
            1,
            null,
            1.0,
            2
        ],
        [
            59,
            "4VAI",
            4,
            1,
            null,
            1.0,
            2
        ],
        [
            60,
            "CUSTOM_DM_1v1",
            1,
            2,
            null,
            1.0,
            1
        ],
        [
            61,
            "CUSTOM_DM_TEAM",
            4,
            2,
            null,
            1.0,
            1
        ]
    ],
    [
        [
            0,
            "Aztec",
            0,
            null
        ],
        [
            1,
            "Berbers",
            0,
            null
        ],
        [
            2,
            "Britons",
            0,
            null
        ],
        [
            3,
            "Bulgarians",
            0,
            null
        ],
        [
            4,
            "Burmese",
            0,
            null
        ],
        [
            5,
            "Byzantines",
            0,
            null
        ],
        [
            6,
            "Celts",
            0,
            null
        ],
        [
            7,
            "Chinese",
            0,
            null
        ],
        [
            8,
            "Cumans",
            0,
            null
        ],
        [
            9,
            "Ethiopians",
            0,
            null
        ],
        [
            10,
            "Franks",
            0,
            null
        ],
        [
            11,
            "Goths",
            0,
            null
        ],
        [
            12,
            "Huns",
            0,
            null
        ],
        [
            13,
            "Incas",
            0,
            null
        ],
        [
            14,
            "Hindustanis",
            0,
            null
        ],
        [
            15,
            "Italians",
            0,
            null
        ],
        [
            16,
            "Japanese",
            0,
            null
        ],
        [
            17,
            "Khmer",
            0,
            null
        ],
        [
            18,
            "Koreans",
            0,
            null
        ],
        [
            19,
            "Lithuanians",
            0,
            null
        ],
        [
            20,
            "Magyars",
            0,
            null
        ],
        [
            21,
            "Malay",
            0,
            null
        ],
        [
            22,
            "Malians",
            0,
            null
        ],
        [
            23,
            "Mayans",
            0,
            null
        ],
        [
            24,
            "Mongols",
            0,
            null
        ],
        [
            25,
            "Persians",
            0,
            null
        ],
        [
            26,
            "Portuguese",
            0,
            null
        ],
        [
            27,
            "Saracens",
            0,
            null
        ],
        [
            28,
            "Slavs",
            0,
            null
        ],
        [
            29,
            "Spanish",
            0,
            null
        ],
        [
            30,
            "Tatars",
            0,
            null
        ],
        [
            31,
            "Teutons",
            0,
            null
        ],
        [
            32,
            "Turks",
            0,
            null
        ],
        [
            33,
            "Vietnamese",
            0,
            null
        ],
        [
            34,
            "Vikings",
            0,
            null
        ],
        [
            35,
            "Burgundians",
            0,
            null
        ],
        [
            36,
            "Sicilians",
            0,
            null
        ],
        [
            37,
            "Poles",
            0,
            null
        ],
        [
            38,
            "Bohemians",
            0,
            null
        ],
        [
            39,
            "Bengalis",
            0,
            null
        ],
        [
            40,
            "Dravidians",
            0,
            null
        ],
        [
            41,
            "Gurjaras",
            0,
            null
        ]
    ],
    [],
    [
        [
            0,
            "Europe",
            null
        ],
        [
            1,
            "Middle East",
            null
        ],
        [
            2,
            "Asia",
            null
        ],
        [
            3,
            "North America",
            null
        ],
        [
            4,
            "South America",
            null
        ],
        [
            5,
            "Oceania",
            null
        ],
        [
            6,
            "Africa",
            null
        ],
        [
            7,
            "Unknown",
            null
        ]
    ],
    [],
    [
        [
            1,
            "STAT_NUM_WINS",
            null,
            4,
            0
        ],
        [
            2,
            "STAT_NUM_MVP_AWARDS",
            null,
            4,
            0
        ],
        [
            3,
            "STAT_VICTORY_BRITONS",
            null,
            4,
            0
        ],
        [
            4,
            "STAT_VICTORY_FRANKS",
            null,
            4,
            0
        ],
        [
            5,
            "STAT_VICTORY_GOTHS",
            null,
            4,
            0
        ],
        [
            6,
            "STAT_VICTORY_TEUTONS",
            null,
            4,
            0
        ],
        [
            7,
            "STAT_VICTORY_JAPANESE",
            null,
            4,
            0
        ],
        [
            8,
            "STAT_VICTORY_CHINESE",
            null,
            4,
            0
        ],
        [
            9,
            "STAT_VICTORY_BYZANTINES",
            null,
            4,
            0
        ],
        [
            10,
            "STAT_VICTORY_PERSIANS",
            null,
            4,
            0
        ],
        [
            11,
            "STAT_VICTORY_SARACENS",
            null,
            4,
            0
        ],
        [
            12,
            "STAT_VICTORY_TURKS",
            null,
            4,
            0
        ],
        [
            13,
            "STAT_VICTORY_VIKINGS",
            null,
            4,
            0
        ],
        [
            14,
            "STAT_VICTORY_MONGOLS",
            null,
            4,
            0
        ],
        [
            15,
            "STAT_VICTORY_CELTS",
            null,
            4,
            0
        ],
        [
            16,
            "STAT_VICTORY_SPANISH",
            null,
            4,
            0
        ],
        [
            17,
            "STAT_VICTORY_AZTECS",
            null,
            4,
            0
        ],
        [
            18,
            "STAT_VICTORY_MAYANS",
            null,
            4,
            0
        ],
        [
            19,
            "STAT_VICTORY_HUNS",
            null,
            4,
            0
        ],
        [
            20,
            "STAT_VICTORY_KOREANS",
            null,
            4,
            0
        ],
        [
            21,
            "STAT_VICTORY_ITALIANS",
            null,
            4,
            0
        ],
        [
            22,
            "STAT_VICTORY_INDIANS",
            null,
            4,
            0
        ],
        [
            23,
            "STAT_VICTORY_INCAS",
            null,
            4,
            0
        ],
        [
            24,
            "STAT_VICTORY_MAGYAR",
            null,
            4,
            0
        ],
        [
            25,
            "STAT_VICTORY_SLAVS",
            null,
            4,
            0
        ],
        [
            26,
            "STAT_VICTORY_PORTUGUESE",
            null,
            4,
            0
        ],
        [
            27,
            "STAT_VICTORY_ETHIOPIANS",
            null,
            4,
            0
        ],
        [
            28,
            "STAT_VICTORY_MALIANS",
            null,
            4,
            0
        ],
        [
            29,
            "STAT_VICTORY_BERBERS",
            null,
            4,
            0
        ],
        [
            30,
            "STAT_VICTORY_KHMER",
            null,
            4,
            0
        ],
        [
            31,
            "STAT_VICTORY_MALAY",
            null,
            4,
            0
        ],
        [
            32,
            "STAT_VICTORY_BURMESE",
            null,
            4,
            0
        ],
        [
            33,
            "STAT_VICTORY_VIETNAMESE",
            null,
            4,
            0
        ],
        [
            34,
            "STAT_VICTORY_BULGARIANS",
            null,
            4,
            0
        ],
        [
            35,
            "STAT_VICTORY_TATARS",
            null,
            4,
            0
        ],
        [
            36,
            "STAT_VICTORY_CUMANS",
            null,
            4,
            0
        ],
        [
            37,
            "STAT_VICTORY_LITHUANIANS",
            null,
            4,
            0
        ],
        [
            38,
            "STAT_VICTORY_RANDOM",
            null,
            4,
            0
        ],
        [
            39,
            "STAT_HIGHEST_SCORE_TOTAL",
            null,
            4,
            0
        ],
        [
            40,
            "STAT_HIGHEST_SCORE_MILITARY",
            null,
            4,
            0
        ],
        [
            41,
            "STAT_HIGHEST_SCORE_ECONOMIC",
            null,
            4,
            0
        ],
        [
            42,
            "STAT_HIGHEST_SCORE_TECHNOLOGY",
            null,
            4,
            0
        ],
        [
            43,
            "STAT_HIGHEST_SCORE_SOCIETY",
            null,
            4,
            0
        ],
        [
            44,
            "STAT_CAREER_UNITS_KILLED",
            null,
            4,
            0
        ],
        [
            45,
            "STAT_CAREER_UNITS_LOST",
            null,
            4,
            0
        ],
        [
            46,
            "STAT_CAREER_UNITS_CONVERTED",
            null,
            4,
            0
        ],
        [
            47,
            "STAT_CAREER_BUILDINGS_RAZED",
            null,
            4,
            0
        ],
        [
            48,
            "STAT_CAREER_BUILDINGS_LOST",
            null,
            4,
            0
        ],
        [
            49,
            "STAT_CAREER_NUM_WONDERS",
            null,
            4,
            0
        ],
        [
            50,
            "STAT_CAREER_NUM_CASTLES",
            null,
            4,
            0
        ],
        [
            51,
            "STAT_CAREER_CONVERTED_BY_MISSIONARIES",
            null,
            4,
            0
        ],
        [
            52,
            "STAT_CAREER_KILLED_BY_DEMOS",
            null,
            4,
            0
        ],
        [
            53,
            "STAT_CAREER_KILLED_BY_TREBS",
            null,
            4,
            0
        ],
        [
            54,
            "STAT_CAREER_KILLED_BY_MANGOS",
            null,
            4,
            0
        ],
        [
            55,
            "STAT_CAREER_DESTROYED_BY_TARKANS",
            null,
            4,
            0
        ],
        [
            56,
            "STAT_CAREER_DESTROYED_BY_RAMS",
            null,
            4,
            0
        ],
        [
            57,
            "STAT_CAREER_CASTLES_DESTROYED",
            null,
            4,
            0
        ],
        [
            58,
            "STAT_ELO",
            null,
            4,
            0
        ],
        [
            59,
            "STAT_GAMES_PLAYED_OFFLINE",
            null,
            4,
            0
        ],
        [
            60,
            "STAT_GAMES_PLAYED_ONLINE",
            null,
            4,
            0
        ],
        [
            61,
            "STAT_GAMES_PLAYED_RANDOM",
            null,
            4,
            0
        ],
        [
            62,
            "STAT_GAMES_PLAYED_TURBO",
            null,
            4,
            0
        ],
        [
            63,
            "STAT_GAMES_PLAYED_DEATHMATCH",
            null,
            4,
            0
        ],
        [
            64,
            "STAT_GAMES_PLAYED_SCENARIO",
            null,
            4,
            0
        ],
        [
            65,
            "STAT_GAMES_PLAYED_KINGOFHILL",
            null,
            4,
            0
        ],
        [
            66,
            "STAT_GAMES_PLAYED_WONDERRACE",
            null,
            4,
            0
        ],
        [
            67,
            "STAT_GAMES_PLAYED_DEFENDWONDER",
            null,
            4,
            0
        ],
        [
            68,
            "STAT_CAREER_MAX_CPUS_DEFEATED",
            null,
            4,
            0
        ],
        [
            69,
            "STAT_DEFEATED_BRITONS",
            null,
            4,
            0
        ],
        [
            70,
            "STAT_DEFEATED_FRANKS",
            null,
            4,
            0
        ],
        [
            71,
            "STAT_DEFEATED_GOTHS",
            null,
            4,
            0
        ],
        [
            72,
            "STAT_DEFEATED_TEUTONS",
            null,
            4,
            0
        ],
        [
            73,
            "STAT_DEFEATED_JAPANESE",
            null,
            4,
            0
        ],
        [
            74,
            "STAT_DEFEATED_CHINESE",
            null,
            4,
            0
        ],
        [
            75,
            "STAT_DEFEATED_BYZANTINES",
            null,
            4,
            0
        ],
        [
            76,
            "STAT_DEFEATED_PERSIANS",
            null,
            4,
            0
        ],
        [
            77,
            "STAT_DEFEATED_SARACENS",
            null,
            4,
            0
        ],
        [
            78,
            "STAT_DEFEATED_TURKS",
            null,
            4,
            0
        ],
        [
            79,
            "STAT_DEFEATED_VIKINGS",
            null,
            4,
            0
        ],
        [
            80,
            "STAT_DEFEATED_MONGOLS",
            null,
            4,
            0
        ],
        [
            81,
            "STAT_DEFEATED_CELTS",
            null,
            4,
            0
        ],
        [
            82,
            "STAT_DEFEATED_SPANISH",
            null,
            4,
            0
        ],
        [
            83,
            "STAT_DEFEATED_AZTECS",
            null,
            4,
            0
        ],
        [
            84,
            "STAT_DEFEATED_MAYANS",
            null,
            4,
            0
        ],
        [
            85,
            "STAT_DEFEATED_HUNS",
            null,
            4,
            0
        ],
        [
            86,
            "STAT_DEFEATED_KOREANS",
            null,
            4,
            0
        ],
        [
            87,
            "STAT_DEFEATED_ITALIANS",
            null,
            4,
            0
        ],
        [
            88,
            "STAT_DEFEATED_INDIANS",
            null,
            4,
            0
        ],
        [
            89,
            "STAT_DEFEATED_INCAS",
            null,
            4,
            0
        ],
        [
            90,
            "STAT_DEFEATED_MAGYAR",
            null,
            4,
            0
        ],
        [
            91,
            "STAT_DEFEATED_SLAVS",
            null,
            4,
            0
        ],
        [
            92,
            "STAT_DEFEATED_PORTUGUESE",
            null,
            4,
            0
        ],
        [
            93,
            "STAT_DEFEATED_ETHIOPIANS",
            null,
            4,
            0
        ],
        [
            94,
            "STAT_DEFEATED_MALIANS",
            null,
            4,
            0
        ],
        [
            95,
            "STAT_DEFEATED_BERBERS",
            null,
            4,
            0
        ],
        [
            96,
            "STAT_DEFEATED_KHMER",
            null,
            4,
            0
        ],
        [
            97,
            "STAT_DEFEATED_MALAY",
            null,
            4,
            0
        ],
        [
            98,
            "STAT_DEFEATED_BURMESE",
            null,
            4,
            0
        ],
        [
            99,
            "STAT_DEFEATED_VIETNAMESE",
            null,
            4,
            0
        ],
        [
            100,
            "STAT_DEFEATED_BULGARIANS",
            null,
            4,
            0
        ],
        [
            101,
            "STAT_DEFEATED_TATARS",
            null,
            4,
            0
        ],
        [
            102,
            "STAT_DEFEATED_CUMANS",
            null,
            4,
            0
        ],
        [
            103,
            "STAT_DEFEATED_LITHUANIANS",
            null,
            4,
            0
        ],
        [
            104,
            "STAT_DEFEATED_RANDOM",
            null,
            4,
            0
        ],
        [
            105,
            "STAT_SINGLEBATTLE_UNITS_KILLED",
            null,
            4,
            0
        ],
        [
            106,
            "STAT_SINGLEBATTLE_UNITS_LOST",
            null,
            4,
            0
        ],
        [
            107,
            "STAT_SINGLEBATTLE_UNITS_CONVERTED",
            null,
            4,
            0
        ],
        [
            108,
            "STAT_SINGLEBATTLE_BUILDINGS_RAZED",
            null,
            4,
            0
        ],
        [
            109,
            "STAT_SINGLEBATTLE_BUILDINGS_LOST",
            null,
            4,
            0
        ],
        [
            110,
            "STAT_SINGLEBATTLE_NUM_WONDERS",
            null,
            4,
            0
        ],
        [
            111,
            "STAT_SINGLEBATTLE_NUM_CASTLES",
            null,
            4,
            0
        ],
        [
            112,
            "STAT_CAMPAIGN_COMPLETE_WALLACE",
            null,
            4,
            0
        ],
        [
            113,
            "STAT_CAMPAIGN_COMPLETE_JOANARC",
            null,
            4,
            0
        ],
        [
            114,
            "STAT_CAMPAIGN_COMPLETE_SALADON",
            null,
            4,
            0
        ],
        [
            115,
            "STAT_CAMPAIGN_COMPLETE_KHAN",
            null,
            4,
            0
        ],
        [
            116,
            "STAT_CAMPAIGN_COMPLETE_BARBAROSSA",
            null,
            4,
            0
        ],
        [
            117,
            "STAT_CAMPAIGN_COMPLETE_ATTILA",
            null,
            4,
            0
        ],
        [
            118,
            "STAT_CAMPAIGN_COMPLETE_ELCID",
            null,
            4,
            0
        ],
        [
            119,
            "STAT_CAMPAIGN_COMPLETE_MONTEZUMA",
            null,
            4,
            0
        ],
        [
            120,
            "STAT_CAMPAIGN_COMPLETE_CONQUERERS",
            null,
            4,
            0
        ],
        [
            121,
            "STAT_CAMPAIGN_COMPLETED_ALL",
            null,
            4,
            0
        ],
        [
            122,
            "STAT_ELO_DM",
            null,
            4,
            0
        ],
        [
            123,
            "STAT_ELO_DM_UTC",
            null,
            4,
            0
        ],
        [
            124,
            "STAT_ELO_DM_BEGIN",
            null,
            4,
            0
        ],
        [
            125,
            "STAT_ELO_DM_END",
            null,
            4,
            0
        ],
        [
            126,
            "STAT_ELO_DM_WINS",
            null,
            4,
            0
        ],
        [
            127,
            "STAT_ELO_RM",
            null,
            4,
            0
        ],
        [
            128,
            "STAT_ELO_RM_UTC",
            null,
            4,
            0
        ],
        [
            129,
            "STAT_ELO_RM_BEGIN",
            null,
            4,
            0
        ],
        [
            130,
            "STAT_ELO_RM_END",
            null,
            4,
            0
        ],
        [
            131,
            "STAT_ELO_RM_WINS",
            null,
            4,
            0
        ],
        [
            132,
            "STAT_ELO_XDM",
            null,
            4,
            0
        ],
        [
            133,
            "STAT_ELO_XDM_UTC",
            null,
            4,
            0
        ],
        [
            134,
            "STAT_ELO_XDM_BEGIN",
            null,
            4,
            0
        ],
        [
            135,
            "STAT_ELO_XDM_END",
            null,
            4,
            0
        ],
        [
            136,
            "STAT_ELO_XDM_WINS",
            null,
            4,
            0
        ],
        [
            137,
            "STAT_ELO_XRM",
            null,
            4,
            0
        ],
        [
            138,
            "STAT_ELO_XRM_UTC",
            null,
            4,
            0
        ],
        [
            139,
            "STAT_ELO_XRM_BEGIN",
            null,
            4,
            0
        ],
        [
            140,
            "STAT_ELO_XRM_END",
            null,
            4,
            0
        ],
        [
            141,
            "STAT_ELO_XRM_WINS",
            null,
            4,
            0
        ],
        [
            142,
            "STAT_OVERALL_GAME_STARTS",
            null,
            4,
            0
        ],
        [
            143,
            "STAT_OVERALL_STDSTARTS",
            null,
            4,
            0
        ],
        [
            144,
            "STAT_OVERALL_CAMPSTARTS",
            null,
            4,
            0
        ],
        [
            145,
            "STAT_OVERALL_MPSTARTS",
            null,
            4,
            0
        ],
        [
            146,
            "STAT_OVERALL_MP_2P_TOTAL",
            null,
            4,
            0
        ],
        [
            147,
            "STAT_OVERALL_MP_XP_TOTAL",
            null,
            4,
            0
        ],
        [
            148,
            "STAT_OVERALL_MP_NOTEAM_TOTAL",
            null,
            4,
            0
        ],
        [
            149,
            "STAT_OVERALL_MP_TEAM_TOTAL",
            null,
            4,
            0
        ],
        [
            150,
            "STAT_OVERALL_MP_STARTS_1",
            null,
            4,
            0
        ],
        [
            151,
            "STAT_OVERALL_MP_WITH_SPECTATOR_TOTAL_1",
            null,
            4,
            0
        ],
        [
            152,
            "STAT_OVERALL_MP_RANKED_TOTAL_1",
            null,
            4,
            0
        ],
        [
            153,
            "STAT_TREBS_BUILT",
            null,
            4,
            0
        ],
        [
            154,
            "STAT_CONDOTTIERO_TRAINED",
            null,
            4,
            0
        ],
        [
            155,
            "STAT_FARMS_BUILT",
            null,
            4,
            0
        ],
        [
            156,
            "STAT_RELICS_COLLECTED",
            null,
            4,
            0
        ],
        [
            157,
            "STAT_VILLAGERS_KILLED_BY_MILITIA_IN_DARK_AGE",
            null,
            4,
            0
        ],
        [
            158,
            "STAT_CHU_KO_NU_ARROWS_FIRED",
            null,
            4,
            0
        ],
        [
            159,
            "STAT_KESHIK_GOLD",
            null,
            4,
            0
        ],
        [
            160,
            "STAT_SINCE_NAVALBATTLE_FISHING_OVERALL_SPFINISHS",
            null,
            4,
            0
        ],
        [
            161,
            "STAT_NAVALBATTLE_SP",
            null,
            4,
            0
        ],
        [
            162,
            "STAT_NAVALBATTLE_CIV_VIKING",
            null,
            4,
            0
        ],
        [
            163,
            "STAT_FISHING_SP",
            null,
            4,
            0
        ],
        [
            164,
            "STAT_FISHING_CIV_VIKING",
            null,
            4,
            0
        ],
        [
            165,
            "STAT_POP_CAP_200_SP",
            null,
            4,
            0
        ],
        [
            166,
            "STAT_POP_PEAK_200_SP",
            null,
            4,
            0
        ],
        [
            167,
            "STAT_PLAYED_Coastal",
            null,
            4,
            0
        ],
        [
            168,
            "STAT_SINCE_NAVALBATTLE_FISHING_OVERALL_MPFINISHS",
            null,
            4,
            0
        ],
        [
            169,
            "STAT_FISHING_MP",
            null,
            4,
            0
        ],
        [
            170,
            "STAT_FISHING_CIV_BURMESE",
            null,
            4,
            0
        ],
        [
            171,
            "STAT_POP_CAP_200_MP",
            null,
            4,
            0
        ],
        [
            172,
            "STAT_POP_PEAK_200_MP",
            null,
            4,
            0
        ],
        [
            173,
            "STAT_TOTAL_GAMES",
            null,
            4,
            0
        ],
        [
            174,
            "STAT_VICTORY_BURGUNDIANS",
            null,
            4,
            0
        ],
        [
            175,
            "STAT_VICTORY_SICILIANS",
            null,
            4,
            0
        ],
        [
            176,
            "STAT_DEFEATED_BURGUNDIANS",
            null,
            4,
            0
        ],
        [
            177,
            "STAT_DEFEATED_SICILIANS",
            null,
            4,
            0
        ],
        [
            184,
            "STAT_VICTORY_POLES",
            null,
            4,
            0
        ],
        [
            185,
            "STAT_VICTORY_BOHEMIANS",
            null,
            4,
            0
        ],
        [
            186,
            "STAT_DEFEATED_POLES",
            null,
            4,
            0
        ],
        [
            187,
            "STAT_DEFEATED_BOHEMIANS",
            null,
            4,
            0
        ],
        [
            194,
            "STAT_FAST_FOOD",
            null,
            4,
            0
        ],
        [
            195,
            "STAT_VICTORY_BENGALIS",
            null,
            4,
            0
        ],
        [
            196,
            "STAT_VICTORY_DRAVIDIANS",
            null,
            4,
            0
        ],
        [
            197,
            "STAT_VICTORY_GURJARAS",
            null,
            4,
            0
        ],
        [
            198,
            "STAT_DEFEATED_BENGALIS",
            null,
            4,
            0
        ],
        [
            199,
            "STAT_DEFEATED_DRAVIDIANS",
            null,
            4,
            0
        ],
        [
            200,
            "STAT_DEFEATED_GURJARAS",
            null,
            4,
            0
        ],
        [
            201,
            "STAT_KING_OF_THE_SEAS",
            null,
            4,
            0
        ],
        [
            1001,
            "EVENT_STAT_MONGOL_RAIDING",
            null,
            4,
            1
        ],
        [
            1002,
            "EVENT_STAT_MONGOL_RAIDING_LATEST",
            null,
            4,
            0
        ],
        [
            1003,
            "EVENT_STAT_BARBAROSSA_BRAWL",
            null,
            4,
            1
        ],
        [
            1004,
            "EVENT_STAT_BARBAROSSA_BRAWL_LATEST",
            null,
            4,
            0
        ],
        [
            2000,
            "STAT_CAMPAIGN_CAM1_1",
            null,
            4,
            0
        ],
        [
            2001,
            "STAT_CAMPAIGN_CAM1_2",
            null,
            4,
            0
        ],
        [
            2002,
            "STAT_CAMPAIGN_CAM1_3",
            null,
            4,
            0
        ],
        [
            2003,
            "STAT_CAMPAIGN_CAM1_4",
            null,
            4,
            0
        ],
        [
            2004,
            "STAT_CAMPAIGN_CAM1_5",
            null,
            4,
            0
        ],
        [
            2005,
            "STAT_CAMPAIGN_CAM1_6",
            null,
            4,
            0
        ],
        [
            2006,
            "STAT_CAMPAIGN_CAM1_7",
            null,
            4,
            0
        ],
        [
            2007,
            "STAT_CAMPAIGN_CAM0_1",
            null,
            4,
            0
        ],
        [
            2008,
            "STAT_CAMPAIGN_CAM0_2",
            null,
            4,
            0
        ],
        [
            2009,
            "STAT_CAMPAIGN_CAM0_3",
            null,
            4,
            0
        ],
        [
            2010,
            "STAT_CAMPAIGN_CAM0_4",
            null,
            4,
            0
        ],
        [
            2011,
            "STAT_CAMPAIGN_CAM0_5",
            null,
            4,
            0
        ],
        [
            2012,
            "STAT_CAMPAIGN_CAM0_6",
            null,
            4,
            0
        ],
        [
            2013,
            "STAT_CAMPAIGN_CAM0_7",
            null,
            4,
            0
        ],
        [
            2014,
            "STAT_CAMPAIGN_CAM0_8",
            null,
            4,
            0
        ],
        [
            2015,
            "STAT_CAMPAIGN_CAM0_9",
            null,
            4,
            0
        ],
        [
            2016,
            "STAT_CAMPAIGN_ACAM1_1",
            null,
            4,
            0
        ],
        [
            2017,
            "STAT_CAMPAIGN_ACAM1_2",
            null,
            4,
            0
        ],
        [
            2018,
            "STAT_CAMPAIGN_ACAM1_3",
            null,
            4,
            0
        ],
        [
            2019,
            "STAT_CAMPAIGN_ACAM1_4",
            null,
            4,
            0
        ],
        [
            2020,
            "STAT_CAMPAIGN_ACAM1_5",
            null,
            4,
            0
        ],
        [
            2021,
            "STAT_CAMPAIGN_ACAM2_1",
            null,
            4,
            0
        ],
        [
            2022,
            "STAT_CAMPAIGN_ACAM2_2",
            null,
            4,
            0
        ],
        [
            2023,
            "STAT_CAMPAIGN_ACAM2_3",
            null,
            4,
            0
        ],
        [
            2024,
            "STAT_CAMPAIGN_ACAM2_4",
            null,
            4,
            0
        ],
        [
            2025,
            "STAT_CAMPAIGN_ACAM2_5",
            null,
            4,
            0
        ],
        [
            2026,
            "STAT_CAMPAIGN_ACAM3_1",
            null,
            4,
            0
        ],
        [
            2027,
            "STAT_CAMPAIGN_ACAM3_2",
            null,
            4,
            0
        ],
        [
            2028,
            "STAT_CAMPAIGN_ACAM3_3",
            null,
            4,
            0
        ],
        [
            2029,
            "STAT_CAMPAIGN_ACAM3_4",
            null,
            4,
            0
        ],
        [
            2030,
            "STAT_CAMPAIGN_ACAM3_5",
            null,
            4,
            0
        ],
        [
            2031,
            "STAT_CAMPAIGN_ACAM4_1",
            null,
            4,
            0
        ],
        [
            2032,
            "STAT_CAMPAIGN_ACAM4_2",
            null,
            4,
            0
        ],
        [
            2033,
            "STAT_CAMPAIGN_ACAM4_3",
            null,
            4,
            0
        ],
        [
            2034,
            "STAT_CAMPAIGN_ACAM4_4",
            null,
            4,
            0
        ],
        [
            2035,
            "STAT_CAMPAIGN_ACAM4_5",
            null,
            4,
            0
        ],
        [
            2036,
            "STAT_CAMPAIGN_CAM2_1",
            null,
            4,
            0
        ],
        [
            2037,
            "STAT_CAMPAIGN_CAM2_2",
            null,
            4,
            0
        ],
        [
            2038,
            "STAT_CAMPAIGN_CAM2_3",
            null,
            4,
            0
        ],
        [
            2039,
            "STAT_CAMPAIGN_CAM2_4",
            null,
            4,
            0
        ],
        [
            2040,
            "STAT_CAMPAIGN_CAM2_5",
            null,
            4,
            0
        ],
        [
            2041,
            "STAT_CAMPAIGN_CAM2_6",
            null,
            4,
            0
        ],
        [
            2042,
            "STAT_CAMPAIGN_CAM3_1",
            null,
            4,
            0
        ],
        [
            2043,
            "STAT_CAMPAIGN_CAM3_2",
            null,
            4,
            0
        ],
        [
            2044,
            "STAT_CAMPAIGN_CAM3_3",
            null,
            4,
            0
        ],
        [
            2045,
            "STAT_CAMPAIGN_CAM3_4",
            null,
            4,
            0
        ],
        [
            2046,
            "STAT_CAMPAIGN_CAM3_5",
            null,
            4,
            0
        ],
        [
            2047,
            "STAT_CAMPAIGN_CAM3_6",
            null,
            4,
            0
        ],
        [
            2048,
            "STAT_CAMPAIGN_CAM4_1",
            null,
            4,
            0
        ],
        [
            2049,
            "STAT_CAMPAIGN_CAM4_2",
            null,
            4,
            0
        ],
        [
            2050,
            "STAT_CAMPAIGN_CAM4_3",
            null,
            4,
            0
        ],
        [
            2051,
            "STAT_CAMPAIGN_CAM4_4",
            null,
            4,
            0
        ],
        [
            2052,
            "STAT_CAMPAIGN_CAM4_5",
            null,
            4,
            0
        ],
        [
            2053,
            "STAT_CAMPAIGN_CAM4_6",
            null,
            4,
            0
        ],
        [
            2054,
            "STAT_CAMPAIGN_CAM5_1",
            null,
            4,
            0
        ],
        [
            2055,
            "STAT_CAMPAIGN_CAM5_2",
            null,
            4,
            0
        ],
        [
            2056,
            "STAT_CAMPAIGN_CAM5_3",
            null,
            4,
            0
        ],
        [
            2057,
            "STAT_CAMPAIGN_CAM5_4",
            null,
            4,
            0
        ],
        [
            2058,
            "STAT_CAMPAIGN_CAM5_5",
            null,
            4,
            0
        ],
        [
            2059,
            "STAT_CAMPAIGN_CAM5_6",
            null,
            4,
            0
        ],
        [
            2060,
            "STAT_CAMPAIGN_COOP9_1",
            null,
            4,
            0
        ],
        [
            2061,
            "STAT_CAMPAIGN_COOP9_2",
            null,
            4,
            0
        ],
        [
            2062,
            "STAT_CAMPAIGN_COOP9_3",
            null,
            4,
            0
        ],
        [
            2063,
            "STAT_CAMPAIGN_COOP9_4",
            null,
            4,
            0
        ],
        [
            2064,
            "STAT_CAMPAIGN_COOP9_5",
            null,
            4,
            0
        ],
        [
            2065,
            "STAT_CAMPAIGN_DCAM0_NEW_1",
            null,
            4,
            0
        ],
        [
            2066,
            "STAT_CAMPAIGN_DCAM0_NEW_2",
            null,
            4,
            0
        ],
        [
            2067,
            "STAT_CAMPAIGN_EECAM1_1",
            null,
            4,
            0
        ],
        [
            2068,
            "STAT_CAMPAIGN_EECAM1_2",
            null,
            4,
            0
        ],
        [
            2069,
            "STAT_CAMPAIGN_EECAM1_3",
            null,
            4,
            0
        ],
        [
            2070,
            "STAT_CAMPAIGN_EECAM1_4",
            null,
            4,
            0
        ],
        [
            2071,
            "STAT_CAMPAIGN_EECAM1_5",
            null,
            4,
            0
        ],
        [
            2072,
            "STAT_CAMPAIGN_EECAM2_1",
            null,
            4,
            0
        ],
        [
            2073,
            "STAT_CAMPAIGN_EECAM2_2",
            null,
            4,
            0
        ],
        [
            2074,
            "STAT_CAMPAIGN_EECAM2_3",
            null,
            4,
            0
        ],
        [
            2075,
            "STAT_CAMPAIGN_EECAM2_4",
            null,
            4,
            0
        ],
        [
            2076,
            "STAT_CAMPAIGN_EECAM2_5",
            null,
            4,
            0
        ],
        [
            2077,
            "STAT_CAMPAIGN_EECAM2_6",
            null,
            4,
            0
        ],
        [
            2078,
            "STAT_CAMPAIGN_EECAM3_1",
            null,
            4,
            0
        ],
        [
            2079,
            "STAT_CAMPAIGN_EECAM3_2",
            null,
            4,
            0
        ],
        [
            2080,
            "STAT_CAMPAIGN_EECAM3_3",
            null,
            4,
            0
        ],
        [
            2081,
            "STAT_CAMPAIGN_EECAM3_4",
            null,
            4,
            0
        ],
        [
            2082,
            "STAT_CAMPAIGN_EECAM3_5",
            null,
            4,
            0
        ],
        [
            2083,
            "STAT_CAMPAIGN_EECAM3_6",
            null,
            4,
            0
        ],
        [
            2084,
            "STAT_CAMPAIGN_FCAM1_1",
            null,
            4,
            0
        ],
        [
            2085,
            "STAT_CAMPAIGN_FCAM1_2",
            null,
            4,
            0
        ],
        [
            2086,
            "STAT_CAMPAIGN_FCAM1_3",
            null,
            4,
            0
        ],
        [
            2087,
            "STAT_CAMPAIGN_FCAM1_4",
            null,
            4,
            0
        ],
        [
            2088,
            "STAT_CAMPAIGN_FCAM1_5",
            null,
            4,
            0
        ],
        [
            2089,
            "STAT_CAMPAIGN_FCAM2_1",
            null,
            4,
            0
        ],
        [
            2090,
            "STAT_CAMPAIGN_FCAM2_2",
            null,
            4,
            0
        ],
        [
            2091,
            "STAT_CAMPAIGN_FCAM2_3",
            null,
            4,
            0
        ],
        [
            2092,
            "STAT_CAMPAIGN_FCAM2_4",
            null,
            4,
            0
        ],
        [
            2093,
            "STAT_CAMPAIGN_FCAM2_5",
            null,
            4,
            0
        ],
        [
            2094,
            "STAT_CAMPAIGN_FCAM2_6",
            null,
            4,
            0
        ],
        [
            2095,
            "STAT_CAMPAIGN_FCAM3_1",
            null,
            4,
            0
        ],
        [
            2096,
            "STAT_CAMPAIGN_FCAM3_2",
            null,
            4,
            0
        ],
        [
            2097,
            "STAT_CAMPAIGN_FCAM3_3",
            null,
            4,
            0
        ],
        [
            2098,
            "STAT_CAMPAIGN_FCAM3_4",
            null,
            4,
            0
        ],
        [
            2099,
            "STAT_CAMPAIGN_FCAM3_5",
            null,
            4,
            0
        ],
        [
            2100,
            "STAT_CAMPAIGN_FCAM4_1",
            null,
            4,
            0
        ],
        [
            2101,
            "STAT_CAMPAIGN_FCAM4_2",
            null,
            4,
            0
        ],
        [
            2102,
            "STAT_CAMPAIGN_FCAM4_3",
            null,
            4,
            0
        ],
        [
            2103,
            "STAT_CAMPAIGN_FCAM4_4",
            null,
            4,
            0
        ],
        [
            2104,
            "STAT_CAMPAIGN_FCAM4_5",
            null,
            4,
            0
        ],
        [
            2105,
            "STAT_CAMPAIGN_FCAM5_1",
            null,
            4,
            0
        ],
        [
            2106,
            "STAT_CAMPAIGN_FCAM5_2",
            null,
            4,
            0
        ],
        [
            2107,
            "STAT_CAMPAIGN_FCAM5_3",
            null,
            4,
            0
        ],
        [
            2108,
            "STAT_CAMPAIGN_FCAM5_4",
            null,
            4,
            0
        ],
        [
            2109,
            "STAT_CAMPAIGN_FCAM5_5",
            null,
            4,
            0
        ],
        [
            2110,
            "STAT_CAMPAIGN_FCAM6_1",
            null,
            4,
            0
        ],
        [
            2111,
            "STAT_CAMPAIGN_FCAM6_2",
            null,
            4,
            0
        ],
        [
            2112,
            "STAT_CAMPAIGN_FCAM6_3",
            null,
            4,
            0
        ],
        [
            2113,
            "STAT_CAMPAIGN_FCAM6_4",
            null,
            4,
            0
        ],
        [
            2114,
            "STAT_CAMPAIGN_FCAM6_5",
            null,
            4,
            0
        ],
        [
            2115,
            "STAT_CAMPAIGN_FCAM7_1",
            null,
            4,
            0
        ],
        [
            2116,
            "STAT_CAMPAIGN_FCAM7_2",
            null,
            4,
            0
        ],
        [
            2117,
            "STAT_CAMPAIGN_FCAM7_3",
            null,
            4,
            0
        ],
        [
            2118,
            "STAT_CAMPAIGN_FCAM7_4",
            null,
            4,
            0
        ],
        [
            2119,
            "STAT_CAMPAIGN_FCAM7_5",
            null,
            4,
            0
        ],
        [
            2120,
            "STAT_CAMPAIGN_FCAM7_6",
            null,
            4,
            0
        ],
        [
            2121,
            "STAT_CAMPAIGN_FCAM7_7",
            null,
            4,
            0
        ],
        [
            2122,
            "STAT_CAMPAIGN_FCAM7_8",
            null,
            4,
            0
        ],
        [
            2123,
            "STAT_CAMPAIGN_FCAM7_9",
            null,
            4,
            0
        ],
        [
            2124,
            "STAT_CAMPAIGN_FCAM7_10",
            null,
            4,
            0
        ],
        [
            2125,
            "STAT_CAMPAIGN_FCAM7_11",
            null,
            4,
            0
        ],
        [
            2126,
            "STAT_CAMPAIGN_FCAM7_12",
            null,
            4,
            0
        ],
        [
            2127,
            "STAT_CAMPAIGN_FCAM7_13",
            null,
            4,
            0
        ],
        [
            2128,
            "STAT_CAMPAIGN_FCAM7_14",
            null,
            4,
            0
        ],
        [
            2129,
            "STAT_CAMPAIGN_FCAM7_15",
            null,
            4,
            0
        ],
        [
            2130,
            "STAT_CAMPAIGN_FCAM7_16",
            null,
            4,
            0
        ],
        [
            2131,
            "STAT_CAMPAIGN_KCAM1_1",
            null,
            4,
            0
        ],
        [
            2132,
            "STAT_CAMPAIGN_KCAM1_2",
            null,
            4,
            0
        ],
        [
            2133,
            "STAT_CAMPAIGN_KCAM1_3",
            null,
            4,
            0
        ],
        [
            2134,
            "STAT_CAMPAIGN_KCAM1_4",
            null,
            4,
            0
        ],
        [
            2135,
            "STAT_CAMPAIGN_KCAM1_5",
            null,
            4,
            0
        ],
        [
            2136,
            "STAT_CAMPAIGN_KCAM1_6",
            null,
            4,
            0
        ],
        [
            2137,
            "STAT_CAMPAIGN_KCAM2_1",
            null,
            4,
            0
        ],
        [
            2138,
            "STAT_CAMPAIGN_KCAM2_2",
            null,
            4,
            0
        ],
        [
            2139,
            "STAT_CAMPAIGN_KCAM2_3",
            null,
            4,
            0
        ],
        [
            2140,
            "STAT_CAMPAIGN_KCAM2_4",
            null,
            4,
            0
        ],
        [
            2141,
            "STAT_CAMPAIGN_KCAM2_5",
            null,
            4,
            0
        ],
        [
            2142,
            "STAT_CAMPAIGN_KCAM3_1",
            null,
            4,
            0
        ],
        [
            2143,
            "STAT_CAMPAIGN_KCAM3_2",
            null,
            4,
            0
        ],
        [
            2144,
            "STAT_CAMPAIGN_KCAM3_3",
            null,
            4,
            0
        ],
        [
            2145,
            "STAT_CAMPAIGN_KCAM3_4",
            null,
            4,
            0
        ],
        [
            2146,
            "STAT_CAMPAIGN_KCAM3_5",
            null,
            4,
            0
        ],
        [
            2147,
            "STAT_CAMPAIGN_RCAM1_1",
            null,
            4,
            0
        ],
        [
            2148,
            "STAT_CAMPAIGN_RCAM1_2",
            null,
            4,
            0
        ],
        [
            2149,
            "STAT_CAMPAIGN_RCAM1_3",
            null,
            4,
            0
        ],
        [
            2150,
            "STAT_CAMPAIGN_RCAM1_4",
            null,
            4,
            0
        ],
        [
            2151,
            "STAT_CAMPAIGN_RCAM1_5",
            null,
            4,
            0
        ],
        [
            2152,
            "STAT_CAMPAIGN_RCAM2_1",
            null,
            4,
            0
        ],
        [
            2153,
            "STAT_CAMPAIGN_RCAM2_2",
            null,
            4,
            0
        ],
        [
            2154,
            "STAT_CAMPAIGN_RCAM2_3",
            null,
            4,
            0
        ],
        [
            2155,
            "STAT_CAMPAIGN_RCAM2_4",
            null,
            4,
            0
        ],
        [
            2156,
            "STAT_CAMPAIGN_RCAM2_5",
            null,
            4,
            0
        ],
        [
            2157,
            "STAT_CAMPAIGN_RCAM3_1",
            null,
            4,
            0
        ],
        [
            2158,
            "STAT_CAMPAIGN_RCAM3_2",
            null,
            4,
            0
        ],
        [
            2159,
            "STAT_CAMPAIGN_RCAM3_3",
            null,
            4,
            0
        ],
        [
            2160,
            "STAT_CAMPAIGN_RCAM3_4",
            null,
            4,
            0
        ],
        [
            2161,
            "STAT_CAMPAIGN_RCAM3_5",
            null,
            4,
            0
        ],
        [
            2162,
            "STAT_CAMPAIGN_RCAM4_1",
            null,
            4,
            0
        ],
        [
            2163,
            "STAT_CAMPAIGN_RCAM4_2",
            null,
            4,
            0
        ],
        [
            2164,
            "STAT_CAMPAIGN_RCAM4_3",
            null,
            4,
            0
        ],
        [
            2165,
            "STAT_CAMPAIGN_RCAM4_4",
            null,
            4,
            0
        ],
        [
            2166,
            "STAT_CAMPAIGN_RCAM4_5",
            null,
            4,
            0
        ],
        [
            2167,
            "STAT_CAMPAIGN_RCAM4_6",
            null,
            4,
            0
        ],
        [
            2168,
            "STAT_CAMPAIGN_WECAM1_1",
            null,
            4,
            0
        ],
        [
            2169,
            "STAT_CAMPAIGN_WECAM1_2",
            null,
            4,
            0
        ],
        [
            2170,
            "STAT_CAMPAIGN_WECAM1_3",
            null,
            4,
            0
        ],
        [
            2171,
            "STAT_CAMPAIGN_WECAM1_4",
            null,
            4,
            0
        ],
        [
            2172,
            "STAT_CAMPAIGN_WECAM1_5",
            null,
            4,
            0
        ],
        [
            2173,
            "STAT_CAMPAIGN_WECAM2_1",
            null,
            4,
            0
        ],
        [
            2174,
            "STAT_CAMPAIGN_WECAM2_2",
            null,
            4,
            0
        ],
        [
            2175,
            "STAT_CAMPAIGN_WECAM2_3",
            null,
            4,
            0
        ],
        [
            2176,
            "STAT_CAMPAIGN_WECAM2_4",
            null,
            4,
            0
        ],
        [
            2177,
            "STAT_CAMPAIGN_WECAM2_5",
            null,
            4,
            0
        ],
        [
            2178,
            "STAT_CAMPAIGN_WECAM2_6",
            null,
            4,
            0
        ],
        [
            2179,
            "STAT_CAMPAIGN_WECAM3_1",
            null,
            4,
            0
        ],
        [
            2180,
            "STAT_CAMPAIGN_WECAM3_2",
            null,
            4,
            0
        ],
        [
            2181,
            "STAT_CAMPAIGN_WECAM3_3",
            null,
            4,
            0
        ],
        [
            2182,
            "STAT_CAMPAIGN_WECAM3_4",
            null,
            4,
            0
        ],
        [
            2183,
            "STAT_CAMPAIGN_WECAM3_5",
            null,
            4,
            0
        ],
        [
            2184,
            "STAT_CAMPAIGN_XCAM1_1",
            null,
            4,
            0
        ],
        [
            2185,
            "STAT_CAMPAIGN_XCAM1_2",
            null,
            4,
            0
        ],
        [
            2186,
            "STAT_CAMPAIGN_XCAM1_3",
            null,
            4,
            0
        ],
        [
            2187,
            "STAT_CAMPAIGN_XCAM1_4",
            null,
            4,
            0
        ],
        [
            2188,
            "STAT_CAMPAIGN_XCAM1_5",
            null,
            4,
            0
        ],
        [
            2189,
            "STAT_CAMPAIGN_XCAM1_6",
            null,
            4,
            0
        ],
        [
            2190,
            "STAT_CAMPAIGN_XCAM2_1",
            null,
            4,
            0
        ],
        [
            2191,
            "STAT_CAMPAIGN_XCAM2_2",
            null,
            4,
            0
        ],
        [
            2192,
            "STAT_CAMPAIGN_XCAM2_3",
            null,
            4,
            0
        ],
        [
            2193,
            "STAT_CAMPAIGN_XCAM2_4",
            null,
            4,
            0
        ],
        [
            2194,
            "STAT_CAMPAIGN_XCAM2_5",
            null,
            4,
            0
        ],
        [
            2195,
            "STAT_CAMPAIGN_XCAM2_6",
            null,
            4,
            0
        ],
        [
            2196,
            "STAT_CAMPAIGN_XCAM3_1",
            null,
            4,
            0
        ],
        [
            2197,
            "STAT_CAMPAIGN_XCAM3_2",
            null,
            4,
            0
        ],
        [
            2198,
            "STAT_CAMPAIGN_XCAM3_3",
            null,
            4,
            0
        ],
        [
            2199,
            "STAT_CAMPAIGN_XCAM3_4",
            null,
            4,
            0
        ],
        [
            2200,
            "STAT_CAMPAIGN_XCAM3_5",
            null,
            4,
            0
        ],
        [
            2201,
            "STAT_CAMPAIGN_XCAM3_6",
            null,
            4,
            0
        ],
        [
            2202,
            "STAT_CAMPAIGN_COOP3_1",
            null,
            4,
            0
        ],
        [
            2203,
            "STAT_CAMPAIGN_COOP3_2",
            null,
            4,
            0
        ],
        [
            2204,
            "STAT_CAMPAIGN_COOP3_3",
            null,
            4,
            0
        ],
        [
            2205,
            "STAT_CAMPAIGN_COOP3_4",
            null,
            4,
            0
        ],
        [
            2206,
            "STAT_CAMPAIGN_COOP3_5",
            null,
            4,
            0
        ],
        [
            2207,
            "STAT_CAMPAIGN_COOP3_6",
            null,
            4,
            0
        ],
        [
            2208,
            "STAT_CAMPAIGN_COOP6_1",
            null,
            4,
            0
        ],
        [
            2209,
            "STAT_CAMPAIGN_COOP6_2",
            null,
            4,
            0
        ],
        [
            2210,
            "STAT_CAMPAIGN_COOP6_3",
            null,
            4,
            0
        ],
        [
            2211,
            "STAT_CAMPAIGN_COOP6_4",
            null,
            4,
            0
        ],
        [
            2212,
            "STAT_CAMPAIGN_COOP6_5",
            null,
            4,
            0
        ],
        [
            2213,
            "STAT_CAMPAIGN_COOP6_6",
            null,
            4,
            0
        ],
        [
            2214,
            "STAT_CAMPAIGN_COOP10_1",
            null,
            4,
            0
        ],
        [
            2215,
            "STAT_CAMPAIGN_COOP10_2",
            null,
            4,
            0
        ],
        [
            2216,
            "STAT_CAMPAIGN_COOP10_3",
            null,
            4,
            0
        ],
        [
            2217,
            "STAT_CAMPAIGN_COOP10_4",
            null,
            4,
            0
        ],
        [
            2218,
            "STAT_CAMPAIGN_COOP10_5",
            null,
            4,
            0
        ],
        [
            2219,
            "STAT_CAMPAIGN_COOP17_1",
            null,
            4,
            0
        ],
        [
            2220,
            "STAT_CAMPAIGN_COOP17_2",
            null,
            4,
            0
        ],
        [
            2221,
            "STAT_CAMPAIGN_COOP17_3",
            null,
            4,
            0
        ],
        [
            2222,
            "STAT_CAMPAIGN_COOP17_4",
            null,
            4,
            0
        ],
        [
            2223,
            "STAT_CAMPAIGN_COOP17_5",
            null,
            4,
            0
        ],
        [
            2224,
            "STAT_CAMPAIGN_COOP22_1",
            null,
            4,
            0
        ],
        [
            2225,
            "STAT_CAMPAIGN_COOP22_2",
            null,
            4,
            0
        ],
        [
            2226,
            "STAT_CAMPAIGN_COOP22_3",
            null,
            4,
            0
        ],
        [
            2227,
            "STAT_CAMPAIGN_COOP22_4",
            null,
            4,
            0
        ],
        [
            2228,
            "STAT_CAMPAIGN_COOP22_5",
            null,
            4,
            0
        ],
        [
            2229,
            "STAT_CAMPAIGN_COOP25_1",
            null,
            4,
            0
        ],
        [
            2230,
            "STAT_CAMPAIGN_COOP25_2",
            null,
            4,
            0
        ],
        [
            2231,
            "STAT_CAMPAIGN_COOP25_3",
            null,
            4,
            0
        ],
        [
            2232,
            "STAT_CAMPAIGN_COOP25_4",
            null,
            4,
            0
        ],
        [
            2233,
            "STAT_CAMPAIGN_COOP25_5",
            null,
            4,
            0
        ],
        [
            2234,
            "STAT_CAMPAIGN_COOP25_6",
            null,
            4,
            0
        ],
        [
            2235,
            "STAT_CAMPAIGN_INCAM1_1",
            null,
            4,
            0
        ],
        [
            2236,
            "STAT_CAMPAIGN_INCAM1_2",
            null,
            4,
            0
        ],
        [
            2237,
            "STAT_CAMPAIGN_INCAM1_3",
            null,
            4,
            0
        ],
        [
            2238,
            "STAT_CAMPAIGN_INCAM1_4",
            null,
            4,
            0
        ],
        [
            2239,
            "STAT_CAMPAIGN_INCAM1_5",
            null,
            4,
            0
        ],
        [
            2240,
            "STAT_CAMPAIGN_INCAM2_1",
            null,
            4,
            0
        ],
        [
            2241,
            "STAT_CAMPAIGN_INCAM2_2",
            null,
            4,
            0
        ],
        [
            2242,
            "STAT_CAMPAIGN_INCAM2_3",
            null,
            4,
            0
        ],
        [
            2243,
            "STAT_CAMPAIGN_INCAM2_4",
            null,
            4,
            0
        ],
        [
            2244,
            "STAT_CAMPAIGN_INCAM2_5",
            null,
            4,
            0
        ],
        [
            2245,
            "STAT_CAMPAIGN_INCAM3_1",
            null,
            4,
            0
        ],
        [
            2246,
            "STAT_CAMPAIGN_INCAM3_2",
            null,
            4,
            0
        ],
        [
            2247,
            "STAT_CAMPAIGN_INCAM3_3",
            null,
            4,
            0
        ],
        [
            2248,
            "STAT_CAMPAIGN_INCAM3_4",
            null,
            4,
            0
        ],
        [
            2249,
            "STAT_CAMPAIGN_INCAM3_5",
            null,
            4,
            0
        ]
    ]
]

AoE3:DE

Request

GET /game/Leaderboard/getAvailableLeaderboards?callNum=25&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=10667&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            0,
            0,
            1,
            -1
        ],
        [
            1,
            1,
            1,
            -1
        ],
        [
            2,
            2,
            1,
            -1
        ],
        [
            2,
            3,
            1,
            -1
        ],
        [
            2,
            4,
            1,
            -1
        ],
        [
            4,
            5,
            1,
            -1
        ],
        [
            4,
            6,
            1,
            -1
        ],
        [
            4,
            7,
            1,
            -1
        ],
        [
            4,
            8,
            1,
            -1
        ],
        [
            3,
            9,
            1,
            -1
        ],
        [
            3,
            10,
            1,
            -1
        ],
        [
            3,
            11,
            1,
            -1
        ],
        [
            3,
            12,
            1,
            -1
        ],
        [
            3,
            14,
            1,
            -1
        ],
        [
            3,
            15,
            1,
            -1
        ],
        [
            3,
            16,
            1,
            -1
        ],
        [
            3,
            17,
            1,
            -1
        ],
        [
            5,
            18,
            1,
            -1
        ],
        [
            6,
            19,
            1,
            -1
        ],
        [
            6,
            20,
            1,
            -1
        ],
        [
            6,
            21,
            1,
            -1
        ],
        [
            3,
            22,
            1,
            -1
        ],
        [
            4,
            23,
            1,
            -1
        ]
    ],
    [
        [
            0,
            "Custom",
            0
        ],
        [
            1,
            "1v1Supremacy",
            1
        ],
        [
            2,
            "TeamSupremacy",
            1
        ],
        [
            3,
            "Treaty",
            1
        ],
        [
            4,
            "Deathmatch",
            1
        ],
        [
            5,
            "1v1EmpireWars",
            1
        ],
        [
            6,
            "TeamEmpireWars",
            1
        ]
    ],
    [
        [
            -1,
            "INVALID",
            0,
            0,
            null,
            0.0,
            0
        ],
        [
            0,
            "CUSTOM",
            0,
            0,
            null,
            1.0,
            1
        ],
        [
            1,
            "1V1_SUPREMACY",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            2,
            "2V2_SUPREMACY",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            3,
            "3V3_SUPREMACY",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            4,
            "4V4_SUPREMACY",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            5,
            "1V1_DEATHMATCH",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            6,
            "2V2_DEATHMATCH",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            7,
            "3V3_DEATHMATCH",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            8,
            "4V4_DEATHMATCH",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            9,
            "1V1_TREATY",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            10,
            "2V2_TREATY",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            11,
            "3V3_TREATY",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            12,
            "4V4_TREATY",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            13,
            "MATCHMAKING",
            4,
            1,
            null,
            1.0,
            3
        ],
        [
            14,
            "1V1_TREATY",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            15,
            "2V2_TREATY",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            16,
            "3V3_TREATY",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            17,
            "4V4_TREATY",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            18,
            "1V1_EMPIREWARS",
            1,
            2,
            null,
            1.0,
            2
        ],
        [
            19,
            "2V2_EMPIREWARS",
            2,
            2,
            null,
            1.0,
            2
        ],
        [
            20,
            "3V3_EMPIREWARS",
            3,
            2,
            null,
            1.0,
            2
        ],
        [
            21,
            "4V4_EMPIREWARS",
            4,
            2,
            null,
            1.0,
            2
        ],
        [
            22,
            "RANKED_TREATY",
            0,
            0,
            null,
            1.0,
            1
        ],
        [
            23,
            "RANKED_DEATHMATCH",
            0,
            0,
            null,
            1.0,
            1
        ]
    ],
    [
        [
            1,
            "Spanish",
            0,
            null
        ],
        [
            2,
            "British",
            0,
            null
        ],
        [
            3,
            "French",
            0,
            null
        ],
        [
            4,
            "Portuguese",
            0,
            null
        ],
        [
            5,
            "Dutch",
            0,
            null
        ],
        [
            6,
            "Russians",
            0,
            null
        ],
        [
            7,
            "Germans",
            0,
            null
        ],
        [
            8,
            "Ottomans",
            0,
            null
        ],
        [
            9,
            "Iroquois",
            0,
            null
        ],
        [
            10,
            "Sioux",
            0,
            null
        ],
        [
            11,
            "Aztecs",
            0,
            null
        ],
        [
            12,
            "Chinese",
            0,
            null
        ],
        [
            13,
            "Japanese",
            0,
            null
        ],
        [
            14,
            "Indians",
            0,
            null
        ],
        [
            15,
            "Incas",
            0,
            null
        ],
        [
            16,
            "Swedish",
            0,
            null
        ],
        [
            49,
            "RandomCiv",
            0,
            null
        ]
    ],
    [],
    [
        [
            0,
            "Europe",
            null
        ],
        [
            1,
            "Middle East",
            null
        ],
        [
            2,
            "Asia",
            null
        ],
        [
            3,
            "North America",
            null
        ],
        [
            4,
            "South America",
            null
        ],
        [
            5,
            "Oceania",
            null
        ],
        [
            6,
            "Africa",
            null
        ],
        [
            7,
            "Unknown",
            null
        ]
    ],
    [],
    [
        [
            1,
            "STAT_CHALLENGE_GAUNTLET_SCENARIO",
            null,
            4,
            0
        ],
        [
            2,
            "STAT_EVENT_LUNAR_CHALLENGE_14",
            null,
            4,
            0
        ],
        [
            3,
            "STAT_EVENT_LUNAR_CHALLENGE_15",
            null,
            4,
            0
        ],
        [
            4,
            "STAT_EVENT_LUNAR_CHALLENGE_16",
            null,
            4,
            0
        ],
        [
            5,
            "STAT_RANKED_TOTAL_WINS",
            null,
            0,
            0
        ],
        [
            6,
            "STAT_RANKED_TOTAL_GAMES",
            null,
            0,
            0
        ],
        [
            7,
            "STAT_RANKED_WINS_SPANISH",
            null,
            0,
            0
        ],
        [
            8,
            "STAT_RANKED_TOTAL_GAMES_SPANISH",
            null,
            0,
            0
        ],
        [
            9,
            "STAT_RANKED_WINS_BRITISH",
            null,
            0,
            0
        ],
        [
            10,
            "STAT_RANKED_TOTAL_GAMES_BRITISH",
            null,
            0,
            0
        ],
        [
            11,
            "STAT_RANKED_WINS_FRENCH",
            null,
            0,
            0
        ],
        [
            12,
            "STAT_RANKED_TOTAL_GAMES_FRENCH",
            null,
            0,
            0
        ],
        [
            13,
            "STAT_RANKED_WINS_PORTUGUESE",
            null,
            0,
            0
        ],
        [
            14,
            "STAT_RANKED_TOTAL_GAMES_PORTUGUESE",
            null,
            0,
            0
        ],
        [
            15,
            "STAT_RANKED_WINS_DUTCH",
            null,
            0,
            0
        ],
        [
            16,
            "STAT_RANKED_TOTAL_GAMES_DUTCH",
            null,
            0,
            0
        ],
        [
            17,
            "STAT_RANKED_WINS_RUSSIANS",
            null,
            0,
            0
        ],
        [
            18,
            "STAT_RANKED_TOTAL_GAMES_RUSSIANS",
            null,
            0,
            0
        ],
        [
            19,
            "STAT_RANKED_WINS_GERMANS",
            null,
            0,
            0
        ],
        [
            20,
            "STAT_RANKED_TOTAL_GAMES_GERMANS",
            null,
            0,
            0
        ],
        [
            21,
            "STAT_RANKED_WINS_OTTOMANS",
            null,
            0,
            0
        ],
        [
            22,
            "STAT_RANKED_TOTAL_GAMES_OTTOMANS",
            null,
            0,
            0
        ],
        [
            23,
            "STAT_RANKED_WINS_HAUDENOSAUNEE",
            null,
            0,
            0
        ],
        [
            24,
            "STAT_RANKED_TOTAL_GAMES_HAUDENOSAUNEE",
            null,
            0,
            0
        ],
        [
            25,
            "STAT_RANKED_WINS_LAKOTA",
            null,
            0,
            0
        ],
        [
            26,
            "STAT_RANKED_TOTAL_GAMES_LAKOTA",
            null,
            0,
            0
        ],
        [
            27,
            "STAT_RANKED_WINS_AZTECS",
            null,
            0,
            0
        ],
        [
            28,
            "STAT_RANKED_TOTAL_GAMES_AZTECS",
            null,
            0,
            0
        ],
        [
            29,
            "STAT_RANKED_WINS_CHINESE",
            null,
            0,
            0
        ],
        [
            30,
            "STAT_RANKED_TOTAL_GAMES_CHINESE",
            null,
            0,
            0
        ],
        [
            31,
            "STAT_RANKED_WINS_JAPANESE",
            null,
            0,
            0
        ],
        [
            32,
            "STAT_RANKED_TOTAL_GAMES_JAPANESE",
            null,
            0,
            0
        ],
        [
            33,
            "STAT_RANKED_WINS_INDIANS",
            null,
            0,
            0
        ],
        [
            34,
            "STAT_RANKED_TOTAL_GAMES_INDIANS",
            null,
            0,
            0
        ],
        [
            35,
            "STAT_RANKED_WINS_INCAS",
            null,
            0,
            0
        ],
        [
            36,
            "STAT_RANKED_TOTAL_GAMES_INCAS",
            null,
            0,
            0
        ],
        [
            37,
            "STAT_RANKED_WINS_SWEDISH",
            null,
            0,
            0
        ],
        [
            38,
            "STAT_RANKED_TOTAL_GAMES_SWEDISH",
            null,
            0,
            0
        ],
        [
            39,
            "STAT_RANKED_WINS_AMERICANS",
            null,
            0,
            0
        ],
        [
            40,
            "STAT_RANKED_TOTAL_GAMES_AMERICANS",
            null,
            0,
            0
        ],
        [
            41,
            "STAT_RANKED_WINS_RANDOMCIV",
            null,
            0,
            0
        ],
        [
            42,
            "STAT_RANKED_TOTAL_GAMES_RANDOMCIV",
            null,
            0,
            0
        ],
        [
            43,
            "STAT_EVENT_USA_CHALLENGE_7",
            null,
            4,
            0
        ],
        [
            44,
            "STAT_EVENT_USA_CHALLENGE_36",
            null,
            4,
            0
        ],
        [
            45,
            "STAT_RANKED_HIGHEST_SCORE_TOTAL",
            null,
            0,
            0
        ],
        [
            46,
            "STAT_RANKED_HIGHEST_SCORE_MILITARY",
            null,
            0,
            0
        ],
        [
            47,
            "STAT_RANKED_HIGHEST_SCORE_ECONOMIC",
            null,
            0,
            0
        ],
        [
            48,
            "STAT_RANKED_AWARDS_MOST_TREASURES",
            null,
            0,
            0
        ],
        [
            49,
            "STAT_RANKED_AWARDS_MOST_IMPROVEMENTS",
            null,
            0,
            0
        ],
        [
            50,
            "STAT_RANKED_AWARDS_MOST_RESOURCES",
            null,
            0,
            0
        ],
        [
            51,
            "STAT_RANKED_AWARDS_LEAST_RESOURCES",
            null,
            0,
            0
        ],
        [
            52,
            "STAT_RANKED_AWARDS_MOST_MILITARY",
            null,
            0,
            0
        ],
        [
            53,
            "STAT_RANKED_AWARDS_MOST_KILLS",
            null,
            0,
            0
        ],
        [
            54,
            "STAT_RANKED_AWARDS_MOST_LOSSES",
            null,
            0,
            0
        ],
        [
            55,
            "STAT_RANKED_AWARDS_HIGHEST_SCORE",
            null,
            0,
            0
        ],
        [
            56,
            "STAT_RANKED_TOTAL_UNITS_KILLED",
            null,
            0,
            0
        ],
        [
            57,
            "STAT_RANKED_TOTAL_UNITS_LOST",
            null,
            0,
            0
        ],
        [
            58,
            "STAT_RANKED_TOTAL_UNITS_CONVERTED",
            null,
            0,
            0
        ],
        [
            59,
            "STAT_RANKED_TOTAL_BUILDINGS_RAZED",
            null,
            0,
            0
        ],
        [
            60,
            "STAT_RANKED_TOTAL_BUILDINGS_LOST",
            null,
            0,
            0
        ],
        [
            61,
            "STAT_RANKED_SINGLEBATTLE_UNITS_KILLED",
            null,
            0,
            0
        ],
        [
            62,
            "STAT_RANKED_SINGLEBATTLE_UNITS_LOST",
            null,
            0,
            0
        ],
        [
            63,
            "STAT_RANKED_SINGLEBATTLE_UNITS_CONVERTED",
            null,
            0,
            0
        ],
        [
            64,
            "STAT_RANKED_SINGLEBATTLE_BUILDINGS_RAZED",
            null,
            0,
            0
        ],
        [
            65,
            "STAT_RANKED_SINGLEBATTLE_BUILDINGS_LOST",
            null,
            0,
            0
        ],
        [
            66,
            "STAT_RANKED_DEFEATED_SPANISH",
            null,
            0,
            0
        ],
        [
            67,
            "STAT_RANKED_DEFEATED_BRITISH",
            null,
            0,
            0
        ],
        [
            68,
            "STAT_RANKED_DEFEATED_FRENCH",
            null,
            0,
            0
        ],
        [
            69,
            "STAT_RANKED_DEFEATED_PORTUGUESE",
            null,
            0,
            0
        ],
        [
            70,
            "STAT_RANKED_DEFEATED_DUTCH",
            null,
            0,
            0
        ],
        [
            71,
            "STAT_RANKED_DEFEATED_RUSSIANS",
            null,
            0,
            0
        ],
        [
            72,
            "STAT_RANKED_DEFEATED_GERMANS",
            null,
            0,
            0
        ],
        [
            73,
            "STAT_RANKED_DEFEATED_OTTOMANS",
            null,
            0,
            0
        ],
        [
            74,
            "STAT_RANKED_DEFEATED_HAUDENOSAUNEE",
            null,
            0,
            0
        ],
        [
            75,
            "STAT_RANKED_DEFEATED_LAKOTA",
            null,
            0,
            0
        ],
        [
            76,
            "STAT_RANKED_DEFEATED_AZTECS",
            null,
            0,
            0
        ],
        [
            77,
            "STAT_RANKED_DEFEATED_CHINESE",
            null,
            0,
            0
        ],
        [
            78,
            "STAT_RANKED_DEFEATED_JAPANESE",
            null,
            0,
            0
        ],
        [
            79,
            "STAT_RANKED_DEFEATED_INDIANS",
            null,
            0,
            0
        ],
        [
            80,
            "STAT_RANKED_DEFEATED_INCAS",
            null,
            0,
            0
        ],
        [
            81,
            "STAT_RANKED_DEFEATED_SWEDISH",
            null,
            0,
            0
        ],
        [
            82,
            "STAT_RANKED_DEFEATED_AMERICANS",
            null,
            0,
            0
        ],
        [
            83,
            "STAT_RANKED_DEFEATED_RANDOMCIV",
            null,
            0,
            0
        ],
        [
            84,
            "STAT_RANKED_WINS_MAP_ALASKA",
            null,
            0,
            0
        ],
        [
            85,
            "STAT_RANKED_TOTAL_GAMES_MAP_ALASKA",
            null,
            0,
            0
        ],
        [
            86,
            "STAT_RANKED_WINS_MAP_ANDES_UPPER",
            null,
            0,
            0
        ],
        [
            87,
            "STAT_RANKED_TOTAL_GAMES_MAP_ANDES_UPPER",
            null,
            0,
            0
        ],
        [
            88,
            "STAT_RANKED_WINS_MAP_ARAUCANIA",
            null,
            0,
            0
        ],
        [
            89,
            "STAT_RANKED_TOTAL_GAMES_MAP_ARAUCANIA",
            null,
            0,
            0
        ],
        [
            90,
            "STAT_RANKED_WINS_MAP_ARCTIC_TERRITORIES",
            null,
            0,
            0
        ],
        [
            91,
            "STAT_RANKED_TOTAL_GAMES_MAP_ARCTIC_TERRITORIES",
            null,
            0,
            0
        ],
        [
            92,
            "STAT_RANKED_WINS_BAJA_MAP_CALIFORNIA",
            null,
            0,
            0
        ],
        [
            93,
            "STAT_RANKED_TOTAL_GAMES_MAP_BAJA_CALIFORNIA",
            null,
            0,
            0
        ],
        [
            94,
            "STAT_RANKED_WINS_MAP_BORNEO",
            null,
            0,
            0
        ],
        [
            95,
            "STAT_RANKED_TOTAL_GAMES_MAP_BORNEO",
            null,
            0,
            0
        ],
        [
            96,
            "STAT_RANKED_WINS_MAP_CASCADE_RANGE",
            null,
            0,
            0
        ],
        [
            97,
            "STAT_RANKED_TOTAL_GAMES_MAP_CASCADE_RANGE",
            null,
            0,
            0
        ],
        [
            98,
            "STAT_RANKED_WINS_MAP_CENTRAL_PLAIN",
            null,
            0,
            0
        ],
        [
            99,
            "STAT_RANKED_TOTAL_GAMES_MAP_CENTRAL_PLAIN",
            null,
            0,
            0
        ],
        [
            100,
            "STAT_RANKED_WINS_MAP_COLORADO",
            null,
            0,
            0
        ],
        [
            101,
            "STAT_RANKED_TOTAL_GAMES_MAP_COLORADO",
            null,
            0,
            0
        ],
        [
            102,
            "STAT_RANKED_WINS_MAP_DAKOTA",
            null,
            0,
            0
        ],
        [
            103,
            "STAT_RANKED_TOTAL_GAMES_MAP_DAKOTA",
            null,
            0,
            0
        ],
        [
            104,
            "STAT_RANKED_WINS_MAP_DECCAN",
            null,
            0,
            0
        ],
        [
            105,
            "STAT_RANKED_TOTAL_GAMES_MAP_DECCAN",
            null,
            0,
            0
        ],
        [
            106,
            "STAT_RANKED_WINS_MAP_FERTILE_CRESCENT",
            null,
            0,
            0
        ],
        [
            107,
            "STAT_RANKED_TOTAL_GAMES_MAP_FERTILE_CRESCENT",
            null,
            0,
            0
        ],
        [
            108,
            "STAT_RANKED_WINS_MAP_FLORIDA",
            null,
            0,
            0
        ],
        [
            109,
            "STAT_RANKED_TOTAL_GAMES_MAP_FLORIDA",
            null,
            0,
            0
        ],
        [
            110,
            "STAT_RANKED_WINS_MAP_GRAN_CHACO",
            null,
            0,
            0
        ],
        [
            111,
            "STAT_RANKED_TOTAL_GAMES_MAP_GRAN_CHACO",
            null,
            0,
            0
        ],
        [
            112,
            "STAT_RANKED_WINS_MAP_HOKKAIDO",
            null,
            0,
            0
        ],
        [
            113,
            "STAT_RANKED_TOTAL_GAMES_MAP_HOKKAIDO",
            null,
            0,
            0
        ],
        [
            114,
            "STAT_RANKED_WINS_MAP_HIMALAYAS",
            null,
            0,
            0
        ],
        [
            115,
            "STAT_RANKED_TOTAL_GAMES_MAP_HIMALAYAS",
            null,
            0,
            0
        ],
        [
            116,
            "STAT_RANKED_WINS_MAP_INDONESIA",
            null,
            0,
            0
        ],
        [
            117,
            "STAT_RANKED_TOTAL_GAMES_MAP_INDONESIA",
            null,
            0,
            0
        ],
        [
            118,
            "STAT_RANKED_WINS_MAP_KAMCHATKA",
            null,
            0,
            0
        ],
        [
            119,
            "STAT_RANKED_TOTAL_GAMES_MAP_KAMCHATKA",
            null,
            0,
            0
        ],
        [
            120,
            "STAT_RANKED_WINS_MAP_KOREA",
            null,
            0,
            0
        ],
        [
            121,
            "STAT_RANKED_TOTAL_GAMES_MAP_KOREA",
            null,
            0,
            0
        ],
        [
            122,
            "STAT_RANKED_WINS_MAP_MALAYSIA",
            null,
            0,
            0
        ],
        [
            123,
            "STAT_RANKED_TOTAL_GAMES_MAP_MALAYSIA",
            null,
            0,
            0
        ],
        [
            124,
            "STAT_RANKED_WINS_MAP_MANCHURIA",
            null,
            0,
            0
        ],
        [
            125,
            "STAT_RANKED_TOTAL_GAMES_MAP_MANCHURIA",
            null,
            0,
            0
        ],
        [
            126,
            "STAT_RANKED_WINS_MAP_MEXICO",
            null,
            0,
            0
        ],
        [
            127,
            "STAT_RANKED_TOTAL_GAMES_MAP_MEXICO",
            null,
            0,
            0
        ],
        [
            128,
            "STAT_RANKED_WINS_MAP_MONGOLIA",
            null,
            0,
            0
        ],
        [
            129,
            "STAT_RANKED_TOTAL_GAMES_MAP_MONGOLIA",
            null,
            0,
            0
        ],
        [
            130,
            "STAT_RANKED_WINS_MAP_NEW_ENGLAND",
            null,
            0,
            0
        ],
        [
            131,
            "STAT_RANKED_TOTAL_GAMES_MAP_NEW_ENGLAND",
            null,
            0,
            0
        ],
        [
            132,
            "STAT_RANKED_WINS_MAP_OZARKS",
            null,
            0,
            0
        ],
        [
            133,
            "STAT_RANKED_TOTAL_GAMES_MAP_OZARKS",
            null,
            0,
            0
        ],
        [
            134,
            "STAT_RANKED_WINS_MAP_PAMPAS_SIERRAS",
            null,
            0,
            0
        ],
        [
            135,
            "STAT_RANKED_TOTAL_GAMES_MAP_PAMPAS_SIERRAS",
            null,
            0,
            0
        ],
        [
            136,
            "STAT_RANKED_WINS_MAP_PARALLEL_RIVERS",
            null,
            0,
            0
        ],
        [
            137,
            "STAT_RANKED_TOTAL_GAMES_MAP_PARALLEL_RIVERS",
            null,
            0,
            0
        ],
        [
            138,
            "STAT_RANKED_WINS_MAP_PATAGONIA",
            null,
            0,
            0
        ],
        [
            139,
            "STAT_RANKED_TOTAL_GAMES_MAP_PATAGONIA",
            null,
            0,
            0
        ],
        [
            140,
            "STAT_RANKED_WINS_MAP_PUNJAB",
            null,
            0,
            0
        ],
        [
            141,
            "STAT_RANKED_TOTAL_GAMES_MAP_PUNJAB",
            null,
            0,
            0
        ],
        [
            142,
            "STAT_RANKED_WINS_MAP_SAGUENAY",
            null,
            0,
            0
        ],
        [
            143,
            "STAT_RANKED_TOTAL_GAMES_MAP_SAGUENAY",
            null,
            0,
            0
        ],
        [
            144,
            "STAT_RANKED_WINS_MAP_SIBERIA",
            null,
            0,
            0
        ],
        [
            145,
            "STAT_RANKED_TOTAL_GAMES_MAP_SIBERIA",
            null,
            0,
            0
        ],
        [
            146,
            "STAT_RANKED_WINS_MAP_YUKON",
            null,
            0,
            0
        ],
        [
            147,
            "STAT_RANKED_TOTAL_GAMES_MAP_YUKON",
            null,
            0,
            0
        ],
        [
            148,
            "STAT_RANKED_WINS_MAP_AF_ARABIA",
            null,
            0,
            0
        ],
        [
            149,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_ARABIA",
            null,
            0,
            0
        ],
        [
            150,
            "STAT_RANKED_WINS_MAP_AF_ATLAS",
            null,
            0,
            0
        ],
        [
            151,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_ATLAS",
            null,
            0,
            0
        ],
        [
            152,
            "STAT_RANKED_WINS_MAP_AF_CONGO_BASIN",
            null,
            0,
            0
        ],
        [
            153,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_CONGO_BASIN",
            null,
            0,
            0
        ],
        [
            154,
            "STAT_RANKED_WINS_MAP_AF_DARFUR",
            null,
            0,
            0
        ],
        [
            155,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_DARFUR",
            null,
            0,
            0
        ],
        [
            156,
            "STAT_RANKED_WINS_MAP_AF_DARFUR_LARGE",
            null,
            0,
            0
        ],
        [
            157,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_DARFUR_LARGE",
            null,
            0,
            0
        ],
        [
            158,
            "STAT_RANKED_WINS_MAP_AF_DUNES",
            null,
            0,
            0
        ],
        [
            159,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_DUNES",
            null,
            0,
            0
        ],
        [
            160,
            "STAT_RANKED_WINS_MAP_AF_GOLD_COAST",
            null,
            0,
            0
        ],
        [
            161,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_GOLD_COAST",
            null,
            0,
            0
        ],
        [
            162,
            "STAT_RANKED_WINS_MAP_AF_GREAT_GIFT",
            null,
            0,
            0
        ],
        [
            163,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_GREAT_GIFT",
            null,
            0,
            0
        ],
        [
            164,
            "STAT_RANKED_WINS_MAP_AF_HIGHLANDS",
            null,
            0,
            0
        ],
        [
            165,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_HIGHLANDS",
            null,
            0,
            0
        ],
        [
            166,
            "STAT_RANKED_WINS_MAP_AF_HORN",
            null,
            0,
            0
        ],
        [
            167,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_HORN",
            null,
            0,
            0
        ],
        [
            168,
            "STAT_RANKED_WINS_MAP_AF_IVORY_COAST",
            null,
            0,
            0
        ],
        [
            169,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_IVORY_COAST",
            null,
            0,
            0
        ],
        [
            170,
            "STAT_RANKED_WINS_MAP_AF_LAKE_CHAD",
            null,
            0,
            0
        ],
        [
            171,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_LAKE_CHAD",
            null,
            0,
            0
        ],
        [
            172,
            "STAT_RANKED_WINS_MAP_AF_LAKE_VICTORIA",
            null,
            0,
            0
        ],
        [
            173,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_LAKE_VICTORIA",
            null,
            0,
            0
        ],
        [
            174,
            "STAT_RANKED_WINS_MAP_AF_NIGER_DELTA",
            null,
            0,
            0
        ],
        [
            175,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_NIGER_DELTA",
            null,
            0,
            0
        ],
        [
            176,
            "STAT_RANKED_WINS_MAP_AF_NIGER_RIVER",
            null,
            0,
            0
        ],
        [
            177,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_NIGER_RIVER",
            null,
            0,
            0
        ],
        [
            178,
            "STAT_RANKED_WINS_MAP_AF_NILE_VALLEY",
            null,
            0,
            0
        ],
        [
            179,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_NILE_VALLEY",
            null,
            0,
            0
        ],
        [
            180,
            "STAT_RANKED_WINS_MAP_AF_NILE_VALLEY_LARGE",
            null,
            0,
            0
        ],
        [
            181,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_NILE_VALLEY_LARGE",
            null,
            0,
            0
        ],
        [
            182,
            "STAT_RANKED_WINS_MAP_AF_PEPPER_COAST",
            null,
            0,
            0
        ],
        [
            183,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_PEPPER_COAST",
            null,
            0,
            0
        ],
        [
            184,
            "STAT_RANKED_WINS_MAP_AF_SAHEL",
            null,
            0,
            0
        ],
        [
            185,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_SAHEL",
            null,
            0,
            0
        ],
        [
            186,
            "STAT_RANKED_WINS_MAP_AF_SAVANNA",
            null,
            0,
            0
        ],
        [
            187,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_SAVANNA",
            null,
            0,
            0
        ],
        [
            188,
            "STAT_RANKED_WINS_MAP_AF_SAVANNA_LARGE",
            null,
            0,
            0
        ],
        [
            189,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_SAVANNA_LARGE",
            null,
            0,
            0
        ],
        [
            190,
            "STAT_RANKED_WINS_MAP_AF_SIWA_OASIS",
            null,
            0,
            0
        ],
        [
            191,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_SIWA_OASIS",
            null,
            0,
            0
        ],
        [
            192,
            "STAT_RANKED_WINS_MAP_AF_SUDD",
            null,
            0,
            0
        ],
        [
            193,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_SUDD",
            null,
            0,
            0
        ],
        [
            194,
            "STAT_RANKED_WINS_MAP_AF_SWAHILI_COAST",
            null,
            0,
            0
        ],
        [
            195,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_SWAHILI_COAST",
            null,
            0,
            0
        ],
        [
            196,
            "STAT_RANKED_WINS_MAP_AF_TASSILI",
            null,
            0,
            0
        ],
        [
            197,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_TASSILI",
            null,
            0,
            0
        ],
        [
            198,
            "STAT_RANKED_WINS_MAP_AF_TRIPOLITANIA",
            null,
            0,
            0
        ],
        [
            199,
            "STAT_RANKED_TOTAL_GAMES_MAP_AF_TRIPOLITANIA",
            null,
            0,
            0
        ],
        [
            200,
            "STAT_EVENT_AFRICA_CHALLENGE_5",
            null,
            4,
            0
        ],
        [
            201,
            "STAT_EVENT_MEXICO_CHALLENGE_10",
            null,
            4,
            0
        ],
        [
            202,
            "STAT_EVENT_2022_LUNAR_CHALLENGE_61",
            null,
            4,
            0
        ],
        [
            203,
            "STAT_EVENT_2022_LUNAR_CHALLENGE_62",
            null,
            4,
            0
        ],
        [
            204,
            "STAT_EVENT_2022_LUNAR_CHALLENGE_63",
            null,
            4,
            0
        ],
        [
            205,
            "STAT_EVENT_2022_INT_WOMENS_CHALLENGE_69",
            null,
            4,
            0
        ],
        [
            206,
            "STAT_EVENT_2022_INT_WOMENS_CHALLENGE_70",
            null,
            4,
            0
        ],
        [
            207,
            "STAT_EVENT_2022_INT_WOMENS_CHALLENGE_71",
            null,
            4,
            0
        ],
        [
            208,
            "STAT_EVENT_2022_INT_WOMENS_CHALLENGE_72",
            null,
            4,
            0
        ],
        [
            209,
            "STAT_EVENT_2022_INT_WOMENS_CHALLENGE_73",
            null,
            4,
            0
        ],
        [
            210,
            "STAT_EVENT_2022_SPRING_CHALLENGE_77",
            null,
            4,
            0
        ],
        [
            211,
            "STAT_EVENT_2022_SPRING_CHALLENGE_78",
            null,
            4,
            0
        ],
        [
            212,
            "STAT_EVENT_2022_SPRING_CHALLENGE_79",
            null,
            4,
            0
        ],
        [
            213,
            "STAT_EVENT_BROOKLYN_CHALLENGE_17",
            null,
            4,
            0
        ],
        [
            214,
            "STAT_EVENT_BROOKLYN_CHALLENGE_20",
            null,
            4,
            0
        ],
        [
            215,
            "STAT_EVENT_BROOKLYN_CHALLENGE_25",
            null,
            4,
            0
        ],
        [
            216,
            "STAT_EVENT_BROOKLYN_CHALLENGE_27",
            null,
            4,
            0
        ],
        [
            217,
            "STAT_RANKED_WINS_ETHIOPIANS",
            null,
            0,
            0
        ],
        [
            218,
            "STAT_RANKED_TOTAL_GAMES_ETHIOPIANS",
            null,
            0,
            0
        ],
        [
            219,
            "STAT_RANKED_WINS_HAUSA",
            null,
            0,
            0
        ],
        [
            220,
            "STAT_RANKED_TOTAL_GAMES_HAUSA",
            null,
            0,
            0
        ],
        [
            221,
            "STAT_RANKED_WINS_MEXICANS",
            null,
            0,
            0
        ],
        [
            222,
            "STAT_RANKED_TOTAL_GAMES_MEXICANS",
            null,
            0,
            0
        ],
        [
            223,
            "STAT_RANKED_WINS_ITALIANS",
            null,
            0,
            0
        ],
        [
            224,
            "STAT_RANKED_TOTAL_GAMES_ITALIANS",
            null,
            0,
            0
        ],
        [
            225,
            "STAT_RANKED_WINS_MALTESE",
            null,
            0,
            0
        ],
        [
            226,
            "STAT_RANKED_TOTAL_GAMES_MALTESE",
            null,
            0,
            0
        ],
        [
            227,
            "STAT_RANKED_DEFEATED_ETHIOPIANS",
            null,
            0,
            0
        ],
        [
            228,
            "STAT_RANKED_DEFEATED_HAUSA",
            null,
            0,
            0
        ],
        [
            229,
            "STAT_RANKED_DEFEATED_MEXICANS",
            null,
            0,
            0
        ],
        [
            230,
            "STAT_RANKED_DEFEATED_ITALIANS",
            null,
            0,
            0
        ],
        [
            231,
            "STAT_RANKED_DEFEATED_MALTESE",
            null,
            0,
            0
        ],
        [
            232,
            "STAT_EVENT_2022_AGEIVERSARY_CHALLENGE_98",
            null,
            4,
            0
        ],
        [
            233,
            "STAT_EVENT_2022_AGEIVERSARY_CHALLENGE_103",
            null,
            4,
            0
        ]
    ]
]

AoE4

Request

GET /game/Leaderboard/getAvailableLeaderboards?callNum=1&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=60&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            0,
            0,
            1,
            -1
        ],
        [
            1,
            1,
            1,
            -1
        ],
        [
            2,
            2,
            1,
            -1
        ],
        [
            3,
            3,
            1,
            -1
        ],
        [
            4,
            4,
            1,
            -1
        ],
        [
            5,
            5,
            0,
            -1
        ],
        [
            6,
            6,
            0,
            -1
        ],
        [
            7,
            7,
            0,
            -1
        ],
        [
            8,
            8,
            0,
            -1
        ],
        [
            9,
            9,
            0,
            -1
        ],
        [
            10,
            10,
            0,
            -1
        ],
        [
            11,
            11,
            0,
            -1
        ],
        [
            12,
            12,
            0,
            -1
        ],
        [
            13,
            13,
            0,
            -1
        ],
        [
            14,
            14,
            0,
            -1
        ],
        [
            15,
            15,
            0,
            -1
        ],
        [
            16,
            16,
            0,
            -1
        ],
        [
            17,
            20,
            1,
            -1
        ],
        [
            18,
            21,
            1,
            -1
        ],
        [
            19,
            22,
            1,
            -1
        ],
        [
            20,
            23,
            1,
            -1
        ],
        [
            21,
            24,
            0,
            -1
        ],
        [
            22,
            25,
            0,
            -1
        ],
        [
            23,
            26,
            0,
            -1
        ],
        [
            24,
            27,
            0,
            -1
        ],
        [
            25,
            28,
            1,
            -1
        ],
        [
            26,
            29,
            1,
            -1
        ],
        [
            27,
            30,
            1,
            -1
        ],
        [
            28,
            31,
            1,
            -1
        ],
        [
            29,
            32,
            0,
            -1
        ],
        [
            30,
            33,
            0,
            -1
        ],
        [
            31,
            34,
            0,
            -1
        ],
        [
            32,
            35,
            0,
            -1
        ],
        [
            33,
            36,
            0,
            -1
        ],
        [
            34,
            37,
            0,
            -1
        ],
        [
            35,
            38,
            0,
            -1
        ],
        [
            36,
            39,
            0,
            -1
        ],
        [
            37,
            40,
            0,
            -1
        ],
        [
            38,
            41,
            0,
            -1
        ],
        [
            39,
            42,
            0,
            -1
        ],
        [
            40,
            43,
            0,
            -1
        ],
        [
            41,
            44,
            1,
            -1
        ],
        [
            42,
            45,
            1,
            -1
        ],
        [
            43,
            46,
            1,
            -1
        ],
        [
            44,
            47,
            1,
            -1
        ],
        [
            45,
            48,
            0,
            -1
        ],
        [
            46,
            49,
            0,
            -1
        ],
        [
            47,
            50,
            0,
            -1
        ],
        [
            48,
            51,
            0,
            -1
        ],
        [
            49,
            52,
            0,
            -1
        ]
    ],
    [
        [
            0,
            "Custom",
            1
        ],
        [
            1,
            "Slot1_1v1Ranked",
            1
        ],
        [
            2,
            "Slot1_2v2Ranked",
            1
        ],
        [
            3,
            "Slot1_3v3Ranked",
            1
        ],
        [
            4,
            "Slot1_4v4Ranked",
            1
        ],
        [
            5,
            "Slot1_2v2AIEasy",
            1
        ],
        [
            6,
            "Slot1_2v2AIMedium",
            1
        ],
        [
            7,
            "Slot1_2v2AIHard",
            1
        ],
        [
            8,
            "Slot1_2v2AIExpert",
            1
        ],
        [
            9,
            "Slot1_3v3AIEasy",
            1
        ],
        [
            10,
            "Slot1_3v3AIMedium",
            1
        ],
        [
            11,
            "Slot1_3v3AIHard",
            1
        ],
        [
            12,
            "Slot1_3v3AIExpert",
            1
        ],
        [
            13,
            "Slot1_4v4AIEasy",
            1
        ],
        [
            14,
            "Slot1_4v4AIMedium",
            1
        ],
        [
            15,
            "Slot1_4v4AIHard",
            1
        ],
        [
            16,
            "Slot1_4v4AIExpert",
            1
        ],
        [
            17,
            "Slot1_1v1Unranked",
            1
        ],
        [
            18,
            "Slot1_2v2Unranked",
            1
        ],
        [
            19,
            "Slot1_3v3Unranked",
            1
        ],
        [
            20,
            "Slot1_4v4Unranked",
            1
        ],
        [
            21,
            "Slot1_1v1AIEasy",
            1
        ],
        [
            22,
            "Slot1_1v1AIMedium",
            1
        ],
        [
            23,
            "Slot1_1v1AIHard",
            1
        ],
        [
            24,
            "Slot1_1v1AIExpert",
            1
        ],
        [
            25,
            "Slot2_1v1Ranked",
            1
        ],
        [
            26,
            "Slot2_2v2Ranked",
            1
        ],
        [
            27,
            "Slot2_3v3Ranked",
            1
        ],
        [
            28,
            "Slot2_4v4Ranked",
            1
        ],
        [
            29,
            "Slot2_2v2AIEasy",
            1
        ],
        [
            30,
            "Slot2_2v2AIMedium",
            1
        ],
        [
            31,
            "Slot2_2v2AIHard",
            1
        ],
        [
            32,
            "Slot2_2v2AIExpert",
            1
        ],
        [
            33,
            "Slot2_3v3AIEasy",
            1
        ],
        [
            34,
            "Slot2_3v3AIMedium",
            1
        ],
        [
            35,
            "Slot2_3v3AIHard",
            1
        ],
        [
            36,
            "Slot2_3v3AIExpert",
            1
        ],
        [
            37,
            "Slot2_4v4AIEasy",
            1
        ],
        [
            38,
            "Slot2_4v4AIMedium",
            1
        ],
        [
            39,
            "Slot2_4v4AIHard",
            1
        ],
        [
            40,
            "Slot2_4v4AIExpert",
            1
        ],
        [
            41,
            "Slot2_1v1Unranked",
            1
        ],
        [
            42,
            "Slot2_2v2Unranked",
            1
        ],
        [
            43,
            "Slot2_3v3Unranked",
            1
        ],
        [
            44,
            "Slot2_4v4Unranked",
            1
        ],
        [
            45,
            "Slot2_1v1AIEasy",
            1
        ],
        [
            46,
            "Slot2_1v1AIMedium",
            1
        ],
        [
            47,
            "Slot2_1v1AIHard",
            1
        ],
        [
            48,
            "Slot2_1v1AIExpert",
            1
        ],
        [
            49,
            "Skirmish",
            0
        ]
    ],
    [
        [
            -1,
            "INVALID",
            0,
            0,
            null,
            0.0,
            0,
            ""
        ],
        [
            0,
            "CUSTOM",
            0,
            0,
            "Friends Games",
            1.0,
            1,
            ""
        ],
        [
            1,
            "SLOT1_1V1_RANKED",
            1,
            2,
            "1v1",
            1.0,
            2,
            ""
        ],
        [
            2,
            "SLOT1_2V2_RANKED",
            2,
            2,
            "2v2",
            1.0,
            2,
            ""
        ],
        [
            3,
            "SLOT1_3V3_RANKED",
            3,
            2,
            "3v3",
            1.0,
            2,
            ""
        ],
        [
            4,
            "SLOT1_4V4_RANKED",
            4,
            2,
            "4v4",
            1.0,
            2,
            ""
        ],
        [
            5,
            "SLOT1_2V2_AI_EASY",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            6,
            "SLOT1_2V2_AI_MEDIUM",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            7,
            "SLOT1_2V2_AI_HARD",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            8,
            "SLOT1_2V2_AI_EXPERT",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            9,
            "SLOT1_3V3_AI_EASY",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            10,
            "SLOT1_3V3_AI_MEDIUM",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            11,
            "SLOT1_3V3_AI_HARD",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            12,
            "SLOT1_3V3_AI_EXPERT",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            13,
            "SLOT1_4V4_AI_EASY",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            14,
            "SLOT1_4V4_AI_MEDIUM",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            15,
            "SLOT1_4V4_AI_HARD",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            16,
            "SLOT1_4V4_AI_EXPERT",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            17,
            "CAMPAIGN",
            0,
            0,
            null,
            1.0,
            3,
            ""
        ],
        [
            18,
            "REPLAY",
            0,
            0,
            null,
            0.0,
            1,
            ""
        ],
        [
            19,
            "PARTY",
            0,
            0,
            null,
            0.0,
            0,
            ""
        ],
        [
            20,
            "SLOT1_1V1_UNRANKED",
            1,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            21,
            "SLOT1_2V2_UNRANKED",
            2,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            22,
            "SLOT1_3V3_UNRANKED",
            3,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            23,
            "SLOT1_4V4_UNRANKED",
            4,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            24,
            "SLOT1_1V1_AI_EASY",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            25,
            "SLOT1_1V1_AI_MEDIUM",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            26,
            "SLOT1_1V1_AI_HARD",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            27,
            "SLOT1_1V1_AI_EXPERT",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            28,
            "SLOT2_1V1_RANKED",
            1,
            2,
            "1v1",
            1.0,
            2,
            ""
        ],
        [
            29,
            "SLOT2_2V2_RANKED",
            2,
            2,
            "2v2",
            1.0,
            2,
            ""
        ],
        [
            30,
            "SLOT2_3V3_RANKED",
            3,
            2,
            "3v3",
            1.0,
            2,
            ""
        ],
        [
            31,
            "SLOT2_4V4_RANKED",
            4,
            2,
            "4v4",
            1.0,
            2,
            ""
        ],
        [
            32,
            "SLOT2_2V2_AI_EASY",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            33,
            "SLOT2_2V2_AI_MEDIUM",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            34,
            "SLOT2_2V2_AI_HARD",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            35,
            "SLOT2_2V2_AI_EXPERT",
            2,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            36,
            "SLOT2_3V3_AI_EASY",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            37,
            "SLOT2_3V3_AI_MEDIUM",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            38,
            "SLOT2_3V3_AI_HARD",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            39,
            "SLOT2_3V3_AI_EXPERT",
            3,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            40,
            "SLOT2_4V4_AI_EASY",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            41,
            "SLOT2_4V4_AI_MEDIUM",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            42,
            "SLOT2_4V4_AI_HARD",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            43,
            "SLOT2_4V4_AI_EXPERT",
            4,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            44,
            "SLOT2_1V1_UNRANKED",
            1,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            45,
            "SLOT2_2V2_UNRANKED",
            2,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            46,
            "SLOT2_3V3_UNRANKED",
            3,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            47,
            "SLOT2_4V4_UNRANKED",
            4,
            2,
            null,
            1.0,
            2,
            ""
        ],
        [
            48,
            "SLOT2_1V1_AI_EASY",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            49,
            "SLOT2_1V1_AI_MEDIUM",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            50,
            "SLOT2_1V1_AI_HARD",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            51,
            "SLOT2_1V1_AI_EXPERT",
            1,
            1,
            null,
            1.0,
            2,
            ""
        ],
        [
            52,
            "SKIRMISH",
            0,
            0,
            null,
            1.0,
            1,
            ""
        ],
        [
            55,
            "SKIRMISH",
            0,
            0,
            null,
            1.0,
            1,
            ""
        ]
    ],
    [
        [
            106553,
            "English",
            0,
            "English"
        ],
        [
            129267,
            "Mongol",
            0,
            "Mongols"
        ],
        [
            131384,
            "French",
            0,
            "French"
        ],
        [
            133008,
            "Rus",
            0,
            "Rus"
        ],
        [
            134522,
            "Hre",
            0,
            "Holy Roman Empire"
        ],
        [
            136150,
            "Sultanate",
            0,
            "Delhi Sultanate"
        ],
        [
            137266,
            "Chinese",
            0,
            "Chinese"
        ],
        [
            182910,
            "Lithuania",
            0,
            "Lithuania"
        ],
        [
            186603,
            "Poland",
            0,
            "Poland"
        ],
        [
            186624,
            "Bohemia",
            0,
            "Bohemia"
        ],
        [
            187558,
            "Hungary",
            0,
            "Hungary"
        ],
        [
            187855,
            "Novgorod",
            0,
            "Novgorod"
        ],
        [
            195982,
            "A_Different_Kind_Of_Rus",
            0,
            null
        ],
        [
            199703,
            "Abbasid",
            0,
            "Abbasid Dynasty"
        ],
        [
            205592,
            "Danes",
            0,
            "Danes"
        ],
        [
            205674,
            "Saxons",
            0,
            "Anglo-Saxons"
        ],
        [
            221744,
            "Normans",
            0,
            "Normans"
        ],
        [
            2039321,
            "Ottoman",
            0,
            "Ottomans"
        ],
        [
            2058393,
            "Malian",
            0,
            "Malians"
        ]
    ],
    [],
    [
        [
            0,
            "Europe",
            "Europe"
        ],
        [
            1,
            "Middle East",
            "Middle East"
        ],
        [
            2,
            "Asia",
            "Asia"
        ],
        [
            3,
            "North America",
            "North America"
        ],
        [
            4,
            "South America",
            "South America"
        ],
        [
            5,
            "Oceania",
            "Oceania"
        ],
        [
            6,
            "Africa",
            "Africa"
        ],
        [
            7,
            "Unknown",
            "Unknown"
        ]
    ],
    [
        [
            1,
            -1,
            "Bronze Tier 3",
            0,
            100,
            "",
            1,
            "Bronze III",
            null,
            1,
            ""
        ],
        [
            2,
            -1,
            "Bronze Tier 2",
            400,
            100,
            "",
            1,
            "Bronze II",
            null,
            1,
            ""
        ],
        [
            3,
            -1,
            "Bronze Tier 1",
            700,
            100,
            "",
            1,
            "Bronze I",
            null,
            1,
            ""
        ],
        [
            4,
            -1,
            "Silver Tier 3",
            1000,
            100,
            "",
            1,
            "Silver III",
            null,
            2,
            ""
        ],
        [
            5,
            -1,
            "Silver Tier 2",
            1200,
            100,
            "",
            1,
            "Silver II",
            null,
            2,
            ""
        ],
        [
            6,
            -1,
            "Silver Tier 1",
            1400,
            100,
            "",
            1,
            "Silver I",
            null,
            2,
            ""
        ],
        [
            7,
            -1,
            "Gold Tier 3",
            1500,
            100,
            "",
            1,
            "Gold III",
            null,
            3,
            ""
        ],
        [
            8,
            -1,
            "Gold Tier 2",
            1600,
            100,
            "",
            1,
            "Gold II",
            null,
            3,
            ""
        ],
        [
            9,
            -1,
            "Gold Tier 1",
            1700,
            100,
            "",
            1,
            "Gold I",
            null,
            3,
            ""
        ],
        [
            10,
            -1,
            "Platinum Tier 3",
            1800,
            100,
            "",
            1,
            "Platinum III",
            null,
            4,
            ""
        ],
        [
            11,
            -1,
            "Platinum Tier 2",
            1900,
            100,
            "",
            1,
            "Platinum II",
            null,
            4,
            ""
        ],
        [
            12,
            -1,
            "Platinum Tier 1",
            2000,
            100,
            "",
            1,
            "Platinum I",
            null,
            4,
            ""
        ],
        [
            13,
            -1,
            "Diamond Tier 3",
            2100,
            100,
            "",
            1,
            "Diamond III",
            null,
            5,
            ""
        ],
        [
            14,
            -1,
            "Diamond Tier 2",
            2200,
            100,
            "",
            1,
            "Diamond II",
            null,
            5,
            ""
        ],
        [
            15,
            -1,
            "Diamond Tier 1",
            2300,
            100,
            "",
            1,
            "Diamond I",
            null,
            5,
            ""
        ],
        [
            16,
            -1,
            "Conqueror Tier 3",
            2400,
            100,
            "",
            1,
            "Conqueror III",
            null,
            6,
            ""
        ],
        [
            17,
            -1,
            "Conqueror Tier 2",
            2500,
            100,
            "",
            1,
            "Conqueror II",
            null,
            6,
            ""
        ],
        [
            18,
            -1,
            "Conqueror Tier 1",
            2600,
            100,
            "",
            1,
            "Conqueror I",
            null,
            6,
            ""
        ]
    ],
    [
        [
            1,
            "Campaign Completed",
            null,
            0,
            1
        ],
        [
            2,
            "1v1 Ranked Played As English",
            null,
            0,
            1
        ],
        [
            3,
            "1v1 Ranked Won As English",
            null,
            0,
            1
        ],
        [
            4,
            "1v1 Ranked Played As French",
            null,
            0,
            1
        ],
        [
            5,
            "1v1 Ranked Won As French",
            null,
            0,
            1
        ],
        [
            6,
            "1v1 Ranked Played As HRE",
            null,
            0,
            1
        ],
        [
            7,
            "1v1 Ranked Won As HRE",
            null,
            0,
            1
        ],
        [
            8,
            "1v1 Ranked Played As Mongol",
            null,
            0,
            1
        ],
        [
            9,
            "1v1 Ranked Won As Mongol",
            null,
            0,
            1
        ],
        [
            10,
            "1v1 Ranked Played As Rus",
            null,
            0,
            1
        ],
        [
            11,
            "1v1 Ranked Won As Rus",
            null,
            0,
            1
        ],
        [
            12,
            "1v1 Ranked Played As Sultanate",
            null,
            0,
            1
        ],
        [
            13,
            "1v1 Ranked Won As Sultanate",
            null,
            0,
            1
        ],
        [
            14,
            "1v1 Ranked Played As Abbasid",
            null,
            0,
            1
        ],
        [
            15,
            "1v1 Ranked Won As Abbasid",
            null,
            0,
            1
        ],
        [
            16,
            "1v1 Ranked Played As Chinese",
            null,
            0,
            1
        ],
        [
            17,
            "1v1 Ranked Won As Chinese",
            null,
            0,
            1
        ],
        [
            9001,
            "The Dark Age",
            null,
            4,
            0
        ],
        [
            9002,
            "Early Economy",
            null,
            4,
            0
        ],
        [
            9003,
            "Combat Basics",
            null,
            4,
            0
        ],
        [
            9004,
            "Early Siege",
            null,
            4,
            0
        ],
        [
            9005,
            "Late Economy",
            null,
            4,
            0
        ],
        [
            9006,
            "Late Siege",
            null,
            4,
            0
        ]
    ]
]

[GET] /game/Leaderboard/getLeaderBoard

AUTHENTICATION

AoE2:DE

Request

GET /game/Leaderboard/getLeaderBoard?callNum=83&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&count=100&lastCallTime=2994419&leaderboard_id=3&sessionID=mfukppp90s845hti7ktv7wc7e50hkv&sortBy=1&start=1 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
leaderboard_idint
startint
sortByint1
countint

Response

[
    0, // result status code
    [
        [
            4429597,
            "",
            "",
            1,
            [
                5591467
            ]
        ],
        [
            447572,
            "",
            "",
            1,
            [
                591696
            ]
        ]
    ],
    [
        [
            12342,
            5591467,
            "/steam/76561199163227629",
            "",
            "Flying Sausage",
            "",
            4429597,
            1143,
            1,
            0,
            null,
            "76561199163227629",
            3,
            []
        ],
        [
            72160,
            591696,
            "/steam/76561198311510515",
            "{\"icon\":\"PR3-060\"}",
            "[ONAGER] Nova_8",
            "ONGER",
            447572,
            3331,
            2,
            2,
            null,
            "76561198311510515",
            3,
            []
        ]
    ],
    [
        [
            447572,
            0,
            3244,
            803,
            6,
            0,
            238,
            1,
            128907,
            -1,
            -1,
            1,
            4021,
            1644702944
        ],
        [
            4429597,
            0,
            978,
            115,
            8,
            0,
            9,
            2,
            128907,
            -1,
            -1,
            1,
            3526,
            1644671894
        ]
    ]
]

AoE3:DE

Request

GET /game/Leaderboard/getLeaderBoard?accountType=3&callNum=30&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&count=195&crossplayEnabled=true&lastCallTime=10066&leaderboard_id=1&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3&sortBy=1&start=1 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
leaderboard_idint
startint
sortByint1
countint

Response

[
    0,
    [
        [
            435622,
            "",
            "",
            1,
            [
                3847518
            ]
        ],
        [
            37450,
            "",
            "",
            1,
            [
                451068
            ]
        ],
        [
            2497216,
            "",
            "",
            1,
            [
                11366637
            ]
        ],
        [
            1332795,
            "",
            "",
            1,
            [
                5734276
            ]
        ],
        [
            1072275,
            "",
            "",
            1,
            [
                5169939
            ]
        ],
        [
            354414,
            "",
            "",
            1,
            [
                3779517
            ]
        ],
        [
            56536,
            "",
            "",
            1,
            [
                2954122
            ]
        ],
        [
            37576,
            "",
            "",
            1,
            [
                3601034
            ]
        ],
        [
            2067691,
            "",
            "",
            1,
            [
                9612887
            ]
        ],
        [
            608823,
            "",
            "",
            1,
            [
                4106588
            ]
        ],
        [
            2515636,
            "",
            "",
            1,
            [
                11450648
            ]
        ],
        [
            18028,
            "",
            "",
            1,
            [
                3592629
            ]
        ],
        [
            2480225,
            "",
            "",
            1,
            [
                11285643
            ]
        ],
        [
            7334,
            "",
            "",
            1,
            [
                3588027
            ]
        ],
        [
            864407,
            "",
            "",
            1,
            [
                928962
            ]
        ],
        [
            2475433,
            "",
            "",
            1,
            [
                11262944
            ]
        ],
        [
            65813,
            "",
            "",
            1,
            [
                271652
            ]
        ],
        [
            2430884,
            "",
            "",
            1,
            [
                10385111
            ]
        ],
        [
            361,
            "",
            "",
            1,
            [
                3551288
            ]
        ],
        [
            1614645,
            "",
            "",
            1,
            [
                6316120
            ]
        ],
        [
            1356890,
            "",
            "",
            1,
            [
                5782845
            ]
        ],
        [
            58604,
            "",
            "",
            1,
            [
                3610171
            ]
        ],
        [
            26200,
            "",
            "",
            1,
            [
                3341
            ]
        ],
        [
            10662,
            "",
            "",
            1,
            [
                1472268
            ]
        ],
        [
            671194,
            "",
            "",
            1,
            [
                4250857
            ]
        ],
        [
            23945,
            "",
            "",
            1,
            [
                178464
            ]
        ],
        [
            1080915,
            "",
            "",
            1,
            [
                5188036
            ]
        ],
        [
            238589,
            "",
            "",
            1,
            [
                322388
            ]
        ],
        [
            8314,
            "",
            "",
            1,
            [
                3016448
            ]
        ],
        [
            1003399,
            "",
            "",
            1,
            [
                5012193
            ]
        ],
        [
            2114502,
            "",
            "",
            1,
            [
                9853386
            ]
        ],
        [
            433909,
            "",
            "",
            1,
            [
                3845997
            ]
        ],
        [
            474091,
            "",
            "",
            1,
            [
                3883926
            ]
        ],
        [
            1966476,
            "",
            "",
            1,
            [
                9054970
            ]
        ],
        [
            1141161,
            "",
            "",
            1,
            [
                5333978
            ]
        ],
        [
            54254,
            "",
            "",
            1,
            [
                3608259
            ]
        ],
        [
            2021908,
            "",
            "",
            1,
            [
                9396034
            ]
        ],
        [
            2251308,
            "",
            "",
            1,
            [
                10409230
            ]
        ],
        [
            521176,
            "",
            "",
            1,
            [
                3937454
            ]
        ],
        [
            142798,
            "",
            "",
            1,
            [
                3648678
            ]
        ],
        [
            83259,
            "",
            "",
            1,
            [
                3621182
            ]
        ],
        [
            121498,
            "",
            "",
            1,
            [
                3638858
            ]
        ],
        [
            1310515,
            "",
            "",
            1,
            [
                5690440
            ]
        ],
        [
            5711,
            "",
            "",
            1,
            [
                73877
            ]
        ],
        [
            54810,
            "",
            "",
            1,
            [
                3608508
            ]
        ],
        [
            252601,
            "",
            "",
            1,
            [
                2788194
            ]
        ],
        [
            38648,
            "",
            "",
            1,
            [
                3601502
            ]
        ],
        [
            1950456,
            "",
            "",
            1,
            [
                8965739
            ]
        ],
        [
            1615196,
            "",
            "",
            1,
            [
                6317257
            ]
        ],
        [
            18244,
            "",
            "",
            1,
            [
                1201691
            ]
        ],
        [
            2113300,
            "",
            "",
            1,
            [
                9541510
            ]
        ],
        [
            935950,
            "",
            "",
            1,
            [
                4856368
            ]
        ],
        [
            343846,
            "",
            "",
            1,
            [
                3771489
            ]
        ],
        [
            1939437,
            "",
            "",
            1,
            [
                8900881
            ]
        ],
        [
            41231,
            "",
            "",
            1,
            [
                3602647
            ]
        ],
        [
            2092456,
            "",
            "",
            1,
            [
                9741295
            ]
        ],
        [
            2519926,
            "",
            "",
            1,
            [
                11470980
            ]
        ],
        [
            684172,
            "",
            "",
            1,
            [
                359225
            ]
        ],
        [
            2228224,
            "",
            "",
            1,
            [
                10302326
            ]
        ],
        [
            1013142,
            "",
            "",
            1,
            [
                5033495
            ]
        ],
        [
            2458969,
            "",
            "",
            1,
            [
                11182861
            ]
        ],
        [
            1310059,
            "",
            "",
            1,
            [
                5689558
            ]
        ],
        [
            81535,
            "",
            "",
            1,
            [
                3620424
            ]
        ],
        [
            2490348,
            "",
            "",
            1,
            [
                11334305
            ]
        ],
        [
            741570,
            "",
            "",
            1,
            [
                4405513
            ]
        ],
        [
            2423509,
            "",
            "",
            1,
            [
                10821389
            ]
        ],
        [
            36443,
            "",
            "",
            1,
            [
                3600540
            ]
        ],
        [
            1128801,
            "",
            "",
            1,
            [
                5296397
            ]
        ],
        [
            975522,
            "",
            "",
            1,
            [
                4948840
            ]
        ],
        [
            123818,
            "",
            "",
            1,
            [
                3639975
            ]
        ],
        [
            141529,
            "",
            "",
            1,
            [
                3648097
            ]
        ],
        [
            59290,
            "",
            "",
            1,
            [
                3610468
            ]
        ],
        [
            19555,
            "",
            "",
            1,
            [
                699031
            ]
        ],
        [
            725198,
            "",
            "",
            1,
            [
                4374424
            ]
        ],
        [
            2123270,
            "",
            "",
            1,
            [
                9896121
            ]
        ],
        [
            694407,
            "",
            "",
            1,
            [
                4315200
            ]
        ],
        [
            1355487,
            "",
            "",
            1,
            [
                1121205
            ]
        ],
        [
            1357788,
            "",
            "",
            1,
            [
                5784793
            ]
        ],
        [
            2461472,
            "",
            "",
            1,
            [
                11196582
            ]
        ],
        [
            1683561,
            "",
            "",
            1,
            [
                6340208
            ]
        ],
        [
            76730,
            "",
            "",
            1,
            [
                216984
            ]
        ],
        [
            894164,
            "",
            "",
            1,
            [
                4769645
            ]
        ],
        [
            688899,
            "",
            "",
            1,
            [
                4300962
            ]
        ],
        [
            458165,
            "",
            "",
            1,
            [
                3868202
            ]
        ],
        [
            77824,
            "",
            "",
            1,
            [
                2955524
            ]
        ],
        [
            66711,
            "",
            "",
            1,
            [
                3613714
            ]
        ],
        [
            2413757,
            "",
            "",
            1,
            [
                10782925
            ]
        ],
        [
            2475965,
            "",
            "",
            1,
            [
                11265396
            ]
        ],
        [
            119545,
            "",
            "",
            1,
            [
                5525
            ]
        ],
        [
            4665,
            "",
            "",
            1,
            [
                3586977
            ]
        ],
        [
            30209,
            "",
            "",
            1,
            [
                3597805
            ]
        ],
        [
            862686,
            "",
            "",
            1,
            [
                4695924
            ]
        ],
        [
            111247,
            "",
            "",
            1,
            [
                701879
            ]
        ],
        [
            692689,
            "",
            "",
            1,
            [
                4311533
            ]
        ],
        [
            2171894,
            "",
            "",
            1,
            [
                10076308
            ]
        ],
        [
            3230,
            "",
            "",
            1,
            [
                575055
            ]
        ],
        [
            1034294,
            "",
            "",
            1,
            [
                5088518
            ]
        ],
        [
            21734,
            "",
            "",
            1,
            [
                3594226
            ]
        ],
        [
            127394,
            "",
            "",
            1,
            [
                3641647
            ]
        ],
        [
            1530601,
            "",
            "",
            1,
            [
                6155054
            ]
        ],
        [
            531217,
            "",
            "",
            1,
            [
                3949787
            ]
        ],
        [
            2112491,
            "",
            "",
            1,
            [
                9843140
            ]
        ],
        [
            2440890,
            "",
            "",
            1,
            [
                10942077
            ]
        ],
        [
            413278,
            "",
            "",
            1,
            [
                3827724
            ]
        ],
        [
            7045,
            "",
            "",
            1,
            [
                350892
            ]
        ],
        [
            814433,
            "",
            "",
            1,
            [
                4575769
            ]
        ],
        [
            1301776,
            "",
            "",
            1,
            [
                5673431
            ]
        ],
        [
            181866,
            "",
            "",
            1,
            [
                779397
            ]
        ],
        [
            54071,
            "",
            "",
            1,
            [
                693987
            ]
        ],
        [
            2476918,
            "",
            "",
            1,
            [
                11269796
            ]
        ],
        [
            1742674,
            "",
            "",
            1,
            [
                6824447
            ]
        ],
        [
            693928,
            "",
            "",
            1,
            [
                4314153
            ]
        ],
        [
            705796,
            "",
            "",
            1,
            [
                4338523
            ]
        ],
        [
            105193,
            "",
            "",
            1,
            [
                2868755
            ]
        ],
        [
            1385010,
            "",
            "",
            1,
            [
                5843368
            ]
        ],
        [
            849429,
            "",
            "",
            1,
            [
                4664705
            ]
        ],
        [
            81570,
            "",
            "",
            1,
            [
                3620442
            ]
        ],
        [
            10133,
            "",
            "",
            1,
            [
                3404684
            ]
        ],
        [
            13767,
            "",
            "",
            1,
            [
                3590777
            ]
        ],
        [
            172222,
            "",
            "",
            1,
            [
                3663083
            ]
        ],
        [
            2275255,
            "",
            "",
            1,
            [
                10493137
            ]
        ],
        [
            816624,
            "",
            "",
            1,
            [
                4580984
            ]
        ],
        [
            189919,
            "",
            "",
            1,
            [
                3672477
            ]
        ],
        [
            355115,
            "",
            "",
            1,
            [
                3780073
            ]
        ],
        [
            2834,
            "",
            "",
            1,
            [
                643918
            ]
        ],
        [
            3927,
            "",
            "",
            1,
            [
                608897
            ]
        ],
        [
            967815,
            "",
            "",
            1,
            [
                4929681
            ]
        ],
        [
            56388,
            "",
            "",
            1,
            [
                3609213
            ]
        ],
        [
            3367,
            "",
            "",
            1,
            [
                3586457
            ]
        ],
        [
            13411,
            "",
            "",
            1,
            [
                531900
            ]
        ],
        [
            14744,
            "",
            "",
            1,
            [
                3294919
            ]
        ],
        [
            1514842,
            "",
            "",
            1,
            [
                6123718
            ]
        ],
        [
            651501,
            "",
            "",
            1,
            [
                4192013
            ]
        ],
        [
            942893,
            "",
            "",
            1,
            [
                4871045
            ]
        ],
        [
            1509258,
            "",
            "",
            1,
            [
                6112746
            ]
        ],
        [
            22453,
            "",
            "",
            1,
            [
                3594515
            ]
        ],
        [
            632665,
            "",
            "",
            1,
            [
                4156324
            ]
        ],
        [
            49491,
            "",
            "",
            1,
            [
                3606197
            ]
        ],
        [
            2467989,
            "",
            "",
            1,
            [
                11228111
            ]
        ],
        [
            2075385,
            "",
            "",
            1,
            [
                9653532
            ]
        ],
        [
            2404288,
            "",
            "",
            1,
            [
                10748148
            ]
        ],
        [
            1120622,
            "",
            "",
            1,
            [
                5272598
            ]
        ],
        [
            1373951,
            "",
            "",
            1,
            [
                5819596
            ]
        ],
        [
            95624,
            "",
            "",
            1,
            [
                219632
            ]
        ],
        [
            566967,
            "",
            "",
            1,
            [
                3999243
            ]
        ],
        [
            92116,
            "",
            "",
            1,
            [
                3309756
            ]
        ],
        [
            62967,
            "",
            "",
            1,
            [
                1694667
            ]
        ],
        [
            386776,
            "",
            "",
            1,
            [
                3805137
            ]
        ],
        [
            25055,
            "",
            "",
            1,
            [
                3595660
            ]
        ],
        [
            1937530,
            "",
            "",
            1,
            [
                8885042
            ]
        ],
        [
            31968,
            "",
            "",
            1,
            [
                419232
            ]
        ],
        [
            11698,
            "",
            "",
            1,
            [
                3589907
            ]
        ],
        [
            31844,
            "",
            "",
            1,
            [
                2859411
            ]
        ],
        [
            4370,
            "",
            "",
            1,
            [
                3586846
            ]
        ],
        [
            16550,
            "",
            "",
            1,
            [
                1580353
            ]
        ],
        [
            1595029,
            "",
            "",
            1,
            [
                6276137
            ]
        ],
        [
            839530,
            "",
            "",
            1,
            [
                4639863
            ]
        ],
        [
            2187154,
            "",
            "",
            1,
            [
                10144725
            ]
        ],
        [
            1120486,
            "",
            "",
            1,
            [
                5272308
            ]
        ],
        [
            2318946,
            "",
            "",
            1,
            [
                10620796
            ]
        ],
        [
            1263094,
            "",
            "",
            1,
            [
                5598276
            ]
        ],
        [
            2105690,
            "",
            "",
            1,
            [
                9808874
            ]
        ],
        [
            1411385,
            "",
            "",
            1,
            [
                5897581
            ]
        ],
        [
            841344,
            "",
            "",
            1,
            [
                4644584
            ]
        ],
        [
            1673139,
            "",
            "",
            1,
            [
                6433080
            ]
        ],
        [
            1242720,
            "",
            "",
            1,
            [
                5561939
            ]
        ],
        [
            1705556,
            "",
            "",
            1,
            [
                6747170
            ]
        ],
        [
            1489522,
            "",
            "",
            1,
            [
                6069863
            ]
        ],
        [
            1467983,
            "",
            "",
            1,
            [
                6020982
            ]
        ],
        [
            11679,
            "",
            "",
            1,
            [
                3589898
            ]
        ],
        [
            495837,
            "",
            "",
            1,
            [
                3907973
            ]
        ],
        [
            2225900,
            "",
            "",
            1,
            [
                10292931
            ]
        ],
        [
            57835,
            "",
            "",
            1,
            [
                3609822
            ]
        ],
        [
            48372,
            "",
            "",
            1,
            [
                641589
            ]
        ],
        [
            2183208,
            "",
            "",
            1,
            [
                10126818
            ]
        ],
        [
            1018094,
            "",
            "",
            1,
            [
                5045777
            ]
        ],
        [
            2216897,
            "",
            "",
            1,
            [
                10267621
            ]
        ],
        [
            1332458,
            "",
            "",
            1,
            [
                5733603
            ]
        ],
        [
            2022000,
            "",
            "",
            1,
            [
                9396522
            ]
        ],
        [
            1095931,
            "",
            "",
            1,
            [
                5220204
            ]
        ],
        [
            1859811,
            "",
            "",
            1,
            [
                8320205
            ]
        ],
        [
            387798,
            "",
            "",
            1,
            [
                3805896
            ]
        ],
        [
            2421862,
            "",
            "",
            1,
            [
                10814970
            ]
        ],
        [
            104679,
            "",
            "",
            1,
            [
                3631137
            ]
        ],
        [
            436420,
            "",
            "",
            1,
            [
                3848179
            ]
        ],
        [
            46614,
            "",
            "",
            1,
            [
                3605009
            ]
        ],
        [
            2448653,
            "",
            "",
            1,
            [
                10978552
            ]
        ],
        [
            2241843,
            "",
            "",
            1,
            [
                10362548
            ]
        ],
        [
            51071,
            "",
            "",
            1,
            [
                533832
            ]
        ],
        [
            1038930,
            "",
            "",
            1,
            [
                5099388
            ]
        ],
        [
            899797,
            "",
            "",
            1,
            [
                4779793
            ]
        ],
        [
            2190673,
            "",
            "",
            1,
            [
                10161416
            ]
        ],
        [
            78654,
            "",
            "",
            1,
            [
                3619118
            ]
        ],
        [
            26102,
            "",
            "",
            1,
            [
                3596104
            ]
        ],
        [
            2115912,
            "",
            "",
            1,
            [
                9860564
            ]
        ]
    ],
    [
        [
            1020,
            5188036,
            "/steam/76561198111432709",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":190,\"ac\":3}",
            "SuperNova!",
            "",
            1080915,
            0,
            1,
            2,
            null,
            "76561198111432709",
            3,
            []
        ],
        [
            3690,
            1694667,
            "/steam/76561198298976699",
            "{\"v\":1,\"twr\":3,\"wlr\":2,\"ai\":2,\"ac\":3}",
            "$teppenwolf_",
            "KEKs",
            62967,
            0,
            1,
            0,
            null,
            "76561198298976699",
            3,
            []
        ],
        [
            1298,
            10302326,
            "/steam/76561198442678589",
            "{\"v\":1,\"twr\":2,\"wlr\":4,\"ai\":187,\"ac\":3}",
            "nobumanteikoku",
            "iLF",
            2228224,
            0,
            1,
            2,
            null,
            "76561198442678589",
            3,
            []
        ],
        [
            7596,
            3606197,
            "/steam/76561198177799675",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":191,\"ac\":3}",
            "autism",
            "",
            49491,
            0,
            1,
            3,
            null,
            "76561198177799675",
            3,
            []
        ],
        [
            274,
            9843140,
            "/steam/76561199153324355",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":190,\"ac\":3}",
            "ð",
            "",
            2112491,
            0,
            1,
            4,
            null,
            "76561199153324355",
            3,
            []
        ],
        [
            8169,
            928962,
            "/xboxlive/CA2C3A6E1B326C432D936DF945D0D864E6CF2A9B",
            "{\"v\":1,\"twr\":3,\"wlr\":3,\"ai\":202,\"ac\":3}",
            "ChefSudiste",
            "PFW",
            864407,
            0,
            1,
            3,
            null,
            "2535415992953763",
            9,
            []
        ],
        [
            6627,
            3608259,
            "/steam/76561198012680583",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":37,\"ac\":3}",
            "adventuremode",
            "",
            54254,
            0,
            1,
            3,
            null,
            "76561198012680583",
            3,
            []
        ],
        [
            2621,
            5689558,
            "/steam/76561199167389378",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":151,\"ac\":3}",
            "ðð",
            "",
            1310059,
            0,
            1,
            0,
            null,
            "76561199167389378",
            3,
            []
        ],
        [
            3287,
            5561939,
            "/steam/76561197988781517",
            "{\"v\":1,\"twr\":1,\"wlr\":4,\"ai\":28,\"ac\":3}",
            "xitaxuta",
            "",
            1242720,
            0,
            1,
            3,
            null,
            "76561197988781517",
            3,
            []
        ],
        [
            145,
            11265396,
            "/steam/76561198862874992",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "æ»ä¹å°±æ¯é常å¯ç±",
            "",
            2475965,
            0,
            1,
            2,
            null,
            "76561198862874992",
            3,
            []
        ],
        [
            1671,
            3847518,
            "/steam/76561198238196672",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":16,\"ac\":1}",
            "Aileyugg",
            "GGGGG",
            435622,
            0,
            1,
            2,
            null,
            "76561198238196672",
            3,
            []
        ],
        [
            4386,
            5819596,
            "/steam/76561199175373392",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "Ginger beer enjoyer",
            "",
            1373951,
            0,
            1,
            0,
            null,
            "76561199175373392",
            3,
            []
        ],
        [
            9614,
            3551288,
            "/steam/76561198054879706",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":18,\"ac\":3}",
            "Aizamk",
            "PIRO",
            361,
            0,
            1,
            0,
            null,
            "76561198054879706",
            3,
            []
        ],
        [
            12120,
            2859411,
            "/steam/76561198798131515",
            "{\"v\":1,\"twr\":5,\"wlr\":3,\"ai\":7,\"ac\":1}",
            "Feldherr Tobi",
            "Bayer",
            31844,
            0,
            1,
            0,
            null,
            "76561198798131515",
            3,
            []
        ],
        [
            1934,
            6747170,
            "/steam/76561199210109411",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":26,\"ac\":3}",
            "kitit",
            "aÅÆa",
            1705556,
            0,
            1,
            2,
            null,
            "76561199210109411",
            3,
            []
        ],
        [
            3524,
            6020982,
            "/steam/76561199185075058",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":199,\"ac\":3}",
            "说å¾å¥½åæ»æ°´",
            "",
            1467983,
            0,
            1,
            2,
            null,
            "76561199185075058",
            3,
            []
        ],
        [
            1116,
            10409230,
            "/steam/76561199317329705",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":4,\"ac\":2}",
            "Machiavelli",
            "",
            2251308,
            0,
            1,
            4,
            null,
            "76561199317329705",
            3,
            []
        ],
        [
            2935,
            5690440,
            "/steam/76561199082221786",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":191,\"ac\":3}",
            "piroshaky",
            "",
            1310515,
            0,
            1,
            2,
            null,
            "76561199082221786",
            3,
            []
        ],
        [
            8957,
            3949787,
            "/steam/76561199084576694",
            "{\"v\":1,\"twr\":7,\"wlr\":3,\"ai\":197,\"ac\":3}",
            "PaulManda",
            "Wazza",
            531217,
            0,
            1,
            4,
            null,
            "76561199084576694",
            3,
            []
        ],
        [
            1589,
            3999243,
            "/steam/76561199105391176",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":4,\"ac\":3}",
            "Just_smileã",
            "",
            566967,
            0,
            1,
            0,
            null,
            "76561199105391176",
            3,
            []
        ],
        [
            13065,
            3590777,
            "/steam/76561199022935550",
            "{\"v\":1,\"twr\":4,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "Abraham Lincoln",
            "TPG",
            13767,
            0,
            1,
            2,
            null,
            "76561199022935550",
            3,
            []
        ],
        [
            7287,
            3610468,
            "/steam/76561198972215265",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "Brownsound7",
            "",
            59290,
            0,
            1,
            0,
            null,
            "76561198972215265",
            3,
            []
        ],
        [
            6638,
            3595660,
            "/steam/76561198810179928",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":199,\"ac\":3}",
            "åæ»ä¸è½å¤ç",
            "TOP",
            25055,
            0,
            1,
            2,
            null,
            "76561198810179928",
            3,
            []
        ],
        [
            409,
            9896121,
            "/steam/76561199262243029",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "ä½ è¦åæä¸ºä»ä¹ä¼æå°æ",
            "",
            2123270,
            0,
            1,
            2,
            null,
            "76561199262243029",
            3,
            []
        ],
        [
            11078,
            3404684,
            "/steam/76561198807204277",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":86,\"ac\":3}",
            "Kévin",
            "PLOP",
            10133,
            0,
            1,
            0,
            null,
            "76561198807204277",
            3,
            []
        ],
        [
            3169,
            322388,
            "/steam/76561198847065286",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":173,\"ac\":3}",
            "Viva",
            "",
            238589,
            0,
            1,
            2,
            null,
            "76561198847065286",
            3,
            []
        ],
        [
            7276,
            4929681,
            "/steam/76561198099145212",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":41,\"ac\":1}",
            "dane",
            "å°ç£å",
            967815,
            0,
            1,
            2,
            null,
            "76561198099145212",
            3,
            []
        ],
        [
            1101,
            10782925,
            "/steam/76561198030566961",
            "{\"v\":1,\"twr\":2,\"wlr\":4,\"ai\":194,\"ac\":3}",
            "Cheaper7",
            "",
            2413757,
            0,
            1,
            2,
            null,
            "76561198030566961",
            3,
            []
        ],
        [
            3912,
            3937454,
            "/steam/76561198013895496",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "MastaOfDisasta",
            "",
            521176,
            0,
            1,
            0,
            null,
            "76561198013895496",
            3,
            []
        ],
        [
            6818,
            4664705,
            "/steam/76561198843381716",
            "{\"v\":1,\"twr\":4,\"wlr\":4,\"ai\":68,\"ac\":3}",
            "HSAä½è°ç·ç¥",
            "",
            849429,
            0,
            1,
            2,
            null,
            "76561198843381716",
            3,
            []
        ],
        [
            7123,
            693987,
            "/steam/76561198198483423",
            "{\"v\":1,\"twr\":6,\"wlr\":2,\"ai\":156,\"ac\":3}",
            "IndenKampf",
            "TOP",
            54071,
            0,
            1,
            2,
            null,
            "76561198198483423",
            3,
            []
        ],
        [
            1271,
            9612887,
            "/steam/76561199244267457",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":197,\"ac\":3}",
            "positive vibes only",
            "",
            2067691,
            0,
            1,
            3,
            null,
            "76561199244267457",
            3,
            []
        ],
        [
            4774,
            6824447,
            "/steam/76561198818809521",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "weakmid",
            "",
            1742674,
            0,
            1,
            2,
            null,
            "76561198818809521",
            3,
            []
        ],
        [
            9968,
            5033495,
            "/steam/76561198801457204",
            "{\"v\":1,\"twr\":3,\"wlr\":4,\"ai\":107,\"ac\":3}",
            "Kaleli",
            "JACKD",
            1013142,
            0,
            1,
            2,
            null,
            "76561198801457204",
            3,
            []
        ],
        [
            10748,
            3294919,
            "/steam/76561198059442739",
            "{\"v\":1,\"twr\":4,\"wlr\":3,\"ai\":35,\"ac\":1}",
            "Sir Lose-a-Lot",
            "NGDZ",
            14744,
            0,
            1,
            0,
            null,
            "76561198059442739",
            3,
            []
        ],
        [
            11773,
            4405513,
            "/steam/76561198871958102",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":57,\"ac\":1}",
            "8aceMark1R",
            "TOP",
            741570,
            0,
            1,
            2,
            null,
            "76561198871958102",
            3,
            []
        ],
        [
            9240,
            3600540,
            "/steam/76561198167717006",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":103,\"ac\":3}",
            "you.08.15",
            "ããããã",
            36443,
            0,
            1,
            2,
            null,
            "76561198167717006",
            3,
            []
        ],
        [
            7709,
            3594226,
            "/steam/76561198166074079",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":27,\"ac\":3}",
            "Camoka",
            "Cøøl",
            21734,
            0,
            1,
            2,
            null,
            "76561198166074079",
            3,
            []
        ],
        [
            410,
            5272308,
            "/steam/76561199151621015",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":182,\"ac\":3}",
            "Stark",
            "",
            1120486,
            0,
            1,
            0,
            null,
            "76561199151621015",
            3,
            []
        ],
        [
            10361,
            3631137,
            "/steam/76561198852785259",
            "{\"v\":1,\"twr\":6,\"wlr\":0,\"ai\":60,\"ac\":1}",
            "EliteRifleman",
            "SpNz",
            104679,
            0,
            1,
            4,
            null,
            "76561198852785259",
            3,
            []
        ],
        [
            5960,
            4639863,
            "/steam/76561198346477201",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":2,\"ac\":0}",
            "pigu",
            "",
            839530,
            0,
            1,
            0,
            null,
            "76561198346477201",
            3,
            []
        ],
        [
            1177,
            10144725,
            "/steam/76561199215354379",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":82,\"ac\":3}",
            "Martiskainen",
            "FPLC",
            2187154,
            0,
            1,
            0,
            null,
            "76561199215354379",
            3,
            []
        ],
        [
            711,
            11366637,
            "/steam/76561199404007195",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":181,\"ac\":3}",
            "el emperador de britannia",
            "",
            2497216,
            0,
            1,
            6,
            null,
            "76561199404007195",
            3,
            []
        ],
        [
            4847,
            779397,
            "/steam/76561198263385830",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":15,\"ac\":1}",
            "Deng",
            "åè±å¢å",
            181866,
            0,
            1,
            2,
            null,
            "76561198263385830",
            3,
            []
        ],
        [
            15280,
            3609213,
            "/steam/76561198202909463",
            "{\"v\":1,\"twr\":5,\"wlr\":0,\"ai\":31,\"ac\":3}",
            "GG.Revnak",
            "FPLC",
            56388,
            0,
            1,
            2,
            null,
            "76561198202909463",
            3,
            []
        ],
        [
            6154,
            3601502,
            "/steam/76561198067645375",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":108,\"ac\":3}",
            "piropiro",
            "PIRO",
            38648,
            0,
            1,
            2,
            null,
            "76561198067645375",
            3,
            []
        ],
        [
            851,
            10748148,
            "/steam/76561199375383234",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":54,\"ac\":3}",
            "å½å…¶è«æç¥å…®ï¼ç¬å£¹é",
            "",
            2404288,
            0,
            1,
            2,
            null,
            "76561199375383234",
            3,
            []
        ],
        [
            6848,
            359225,
            "/steam/76561198372786222",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":45,\"ac\":1}",
            "Altria",
            "AOTDE",
            684172,
            0,
            1,
            2,
            null,
            "76561198372786222",
            3,
            []
        ],
        [
            2263,
            4156324,
            "/steam/76561198437766437",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "æ¦åºã¶åå鹤",
            "",
            632665,
            0,
            1,
            2,
            null,
            "76561198437766437",
            3,
            []
        ],
        [
            5364,
            2954122,
            "/steam/76561198075477338",
            "{\"v\":1,\"twr\":5,\"wlr\":3,\"ai\":199,\"ac\":3}",
            "king crimson",
            "",
            56536,
            0,
            1,
            2,
            null,
            "76561198075477338",
            3,
            []
        ],
        [
            2488,
            533832,
            "/steam/76561198102794255",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":1,\"ac\":0}",
            "Happycat",
            "DLM",
            51071,
            0,
            1,
            0,
            null,
            "76561198102794255",
            3,
            []
        ],
        [
            7556,
            4695924,
            "/steam/76561198869621059",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":202,\"ac\":3}",
            "ChefHors-la-liste",
            "PFW",
            862686,
            0,
            1,
            0,
            null,
            "76561198869621059",
            3,
            []
        ],
        [
            1301,
            3613714,
            "/steam/76561198178307678",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":8,\"ac\":1}",
            "diarouga",
            "",
            66711,
            0,
            1,
            0,
            null,
            "76561198178307678",
            3,
            []
        ],
        [
            1109,
            1121205,
            "/steam/76561198358417444",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "XJTUåå",
            "ROOM",
            1355487,
            0,
            1,
            2,
            null,
            "76561198358417444",
            3,
            []
        ],
        [
            5019,
            9853386,
            "/steam/76561198262442899",
            "{\"v\":1,\"twr\":4,\"wlr\":2,\"ai\":160,\"ac\":3}",
            "weALLgonnaDie_",
            "FPLC",
            2114502,
            0,
            1,
            1,
            null,
            "76561198262442899",
            3,
            []
        ],
        [
            4667,
            4311533,
            "/steam/76561198115395285",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":86,\"ac\":3}",
            "Asuka Langley sÅryÅ«",
            "",
            692689,
            0,
            1,
            4,
            null,
            "76561198115395285",
            3,
            []
        ],
        [
            1272,
            3586977,
            "/steam/76561198147657933",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":196,\"ac\":3}",
            "Mephisto",
            "TOP",
            4665,
            0,
            1,
            2,
            null,
            "76561198147657933",
            3,
            []
        ],
        [
            5749,
            3883926,
            "/steam/76561198431547045",
            "{\"v\":1,\"twr\":2,\"wlr\":4,\"ai\":199,\"ac\":3}",
            "TheNewTowerDefenceGameIsSoFun",
            "AOTDE",
            474091,
            0,
            1,
            2,
            null,
            "76561198431547045",
            3,
            []
        ],
        [
            18643,
            350892,
            "/steam/76561198403374210",
            "{\"v\":1,\"twr\":7,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "kanimisoniki",
            "ããããã",
            7045,
            0,
            1,
            2,
            null,
            "76561198403374210",
            3,
            []
        ],
        [
            605,
            8885042,
            "/steam/76561199228427006",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":44,\"ac\":3}",
            "ç¿äººé©¯å…½å¸",
            "LGWAR",
            1937530,
            0,
            1,
            5,
            null,
            "76561199228427006",
            3,
            []
        ],
        [
            1303,
            8900881,
            "/steam/76561198080928959",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":194,\"ac\":3}",
            "camokaslag",
            "Cøøl",
            1939437,
            0,
            1,
            2,
            null,
            "76561198080928959",
            3,
            []
        ],
        [
            6691,
            531900,
            "/steam/76561198000245602",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "racon",
            "",
            13411,
            0,
            1,
            2,
            null,
            "76561198000245602",
            3,
            []
        ],
        [
            292,
            9653532,
            "/steam/76561199246990451",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":45,\"ac\":3}",
            "gkumtnti",
            "",
            2075385,
            0,
            1,
            2,
            null,
            "76561199246990451",
            3,
            []
        ],
        [
            1119,
            10362548,
            "/steam/76561199337623935",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":191,\"ac\":3}",
            "CathdL",
            "åè±å¢å",
            2241843,
            0,
            1,
            2,
            null,
            "76561199337623935",
            3,
            []
        ],
        [
            9977,
            5733603,
            "/steam/76561198893031426",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":200,\"ac\":3}",
            "kerimb1903",
            "",
            1332458,
            0,
            1,
            2,
            null,
            "76561198893031426",
            3,
            []
        ],
        [
            11212,
            1472268,
            "/steam/76561198286217268",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":191,\"ac\":3}",
            "April",
            "",
            10662,
            0,
            1,
            2,
            null,
            "76561198286217268",
            3,
            []
        ],
        [
            10335,
            451068,
            "/steam/76561197984045738",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":83,\"ac\":3}",
            "Twitch_iamxage",
            "TcP",
            37450,
            0,
            1,
            0,
            null,
            "76561197984045738",
            3,
            []
        ],
        [
            10815,
            5088518,
            "/steam/76561198992692876",
            "{\"v\":1,\"twr\":6,\"wlr\":0,\"ai\":10,\"ac\":0}",
            "dogwang",
            "",
            1034294,
            0,
            1,
            2,
            null,
            "76561198992692876",
            3,
            []
        ],
        [
            2712,
            8320205,
            "/steam/76561199221386761",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":9,\"ac\":0}",
            "iLostMyName",
            "",
            1859811,
            0,
            1,
            0,
            null,
            "76561199221386761",
            3,
            []
        ],
        [
            659,
            10076308,
            "/steam/76561198971958594",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":56,\"ac\":3}",
            "non Vegemite dog",
            "",
            2171894,
            0,
            1,
            2,
            null,
            "76561198971958594",
            3,
            []
        ],
        [
            6571,
            4856368,
            "/steam/76561198976704669",
            "{\"v\":1,\"twr\":3,\"wlr\":2,\"ai\":3,\"ac\":0}",
            "hammerofjudah18",
            "PаpÑ",
            935950,
            0,
            1,
            0,
            null,
            "76561198976704669",
            3,
            []
        ],
        [
            3504,
            3586846,
            "/steam/76561198814089504",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":184,\"ac\":3}",
            "åµå¾·æè´¡",
            "NTDE",
            4370,
            0,
            1,
            2,
            null,
            "76561198814089504",
            3,
            []
        ],
        [
            8369,
            5782845,
            "/steam/76561198203203633",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":201,\"ac\":3}",
            "Apocalypse_",
            "KEKs",
            1356890,
            0,
            1,
            4,
            null,
            "76561198203203633",
            3,
            []
        ],
        [
            3356,
            4374424,
            "/steam/76561198105321604",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":72,\"ac\":3}",
            "天é大éé¿",
            "TSGOP",
            725198,
            0,
            1,
            2,
            null,
            "76561198105321604",
            3,
            []
        ],
        [
            5645,
            1201691,
            "/steam/76561198122695325",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":108,\"ac\":3}",
            "DarkPhoenix24",
            "APEMP",
            18244,
            0,
            1,
            0,
            null,
            "76561198122695325",
            3,
            []
        ],
        [
            5998,
            4948840,
            "/steam/76561198104205420",
            "{\"v\":1,\"twr\":7,\"wlr\":4,\"ai\":188,\"ac\":3}",
            "èå®",
            "",
            975522,
            0,
            1,
            2,
            null,
            "76561198104205420",
            3,
            []
        ],
        [
            8253,
            3597805,
            "/steam/76561198971535352",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "èçé¡¿",
            "HDG",
            30209,
            0,
            1,
            2,
            null,
            "76561198971535352",
            3,
            []
        ],
        [
            5762,
            419232,
            "/steam/76561198145527017",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":50,\"ac\":1}",
            "ç±å½å°å¥³ä¸éªè²",
            "",
            31968,
            0,
            1,
            2,
            null,
            "76561198145527017",
            3,
            []
        ],
        [
            255,
            11182861,
            "/steam/76561199387690528",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":201,\"ac\":3}",
            "顺其èªç¶",
            "",
            2458969,
            0,
            1,
            2,
            null,
            "76561199387690528",
            3,
            []
        ],
        [
            562,
            5843368,
            "/steam/76561199177250768",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "åµå¾·æè´¡",
            "",
            1385010,
            0,
            1,
            2,
            null,
            "76561199177250768",
            3,
            []
        ],
        [
            12419,
            3619118,
            "/steam/76561199092542720",
            "{\"v\":1,\"twr\":4,\"wlr\":2,\"ai\":14,\"ac\":3}",
            "passi_99",
            "YumiW",
            78654,
            0,
            1,
            0,
            null,
            "76561199092542720",
            3,
            []
        ],
        [
            793,
            10620796,
            "/steam/76561199367090999",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":66,\"ac\":3}",
            "Kaportacı Kazım",
            "XILED",
            2318946,
            0,
            1,
            2,
            null,
            "76561199367090999",
            3,
            []
        ],
        [
            8104,
            3805137,
            "/steam/76561198210255201",
            "{\"v\":1,\"twr\":4,\"wlr\":3,\"ai\":58,\"ac\":1}",
            "SuperNova!",
            "AOTDE",
            386776,
            0,
            1,
            2,
            null,
            "76561198210255201",
            3,
            []
        ],
        [
            191,
            9741295,
            "/steam/76561199153862078",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":1,\"ac\":0}",
            "T",
            "",
            2092456,
            0,
            1,
            4,
            null,
            "76561199153862078",
            3,
            []
        ],
        [
            6362,
            3639975,
            "/steam/76561198153863179",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "New_World_-90_Percent_Population",
            "",
            123818,
            0,
            1,
            3,
            null,
            "76561198153863179",
            3,
            []
        ],
        [
            120,
            11450648,
            "/steam/76561199415263726",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":1,\"ac\":0}",
            "tengo el mejor baraja",
            "",
            2515636,
            0,
            1,
            6,
            null,
            "76561199415263726",
            3,
            []
        ],
        [
            1791,
            5272598,
            "/steam/76561199151644999",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":8,\"ac\":0}",
            "nice hotfix",
            "FPLC",
            1120622,
            0,
            1,
            0,
            null,
            "76561199151644999",
            3,
            []
        ],
        [
            10521,
            3341,
            "/steam/76561198104330114",
            "{\"v\":1,\"twr\":5,\"wlr\":3,\"ai\":2,\"ac\":3}",
            "Frontline",
            "",
            26200,
            0,
            1,
            3,
            null,
            "76561198104330114",
            3,
            []
        ],
        [
            9417,
            4106588,
            "/steam/76561198402432616",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":59,\"ac\":3}",
            "EverProvence",
            "TPG",
            608823,
            0,
            1,
            2,
            null,
            "76561198402432616",
            3,
            []
        ],
        [
            3749,
            3601034,
            "/steam/76561198099216183",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "PARAIBAHH",
            "",
            37576,
            0,
            1,
            4,
            null,
            "76561198099216183",
            3,
            []
        ],
        [
            563,
            10821389,
            "/steam/76561199380237477",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":164,\"ac\":3}",
            "ç ´åé…å§",
            "åè±å¢å",
            2423509,
            0,
            1,
            5,
            null,
            "76561199380237477",
            3,
            []
        ],
        [
            4856,
            6276137,
            "/steam/76561199197913222",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":201,\"ac\":3}",
            "Bumin Qaghan",
            "FPLC",
            1595029,
            0,
            1,
            2,
            null,
            "76561199197913222",
            3,
            []
        ],
        [
            1412,
            4871045,
            "/steam/76561199132788808",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":162,\"ac\":3}",
            "æ»ç°å¤ç",
            "",
            942893,
            0,
            1,
            5,
            null,
            "76561199132788808",
            3,
            []
        ],
        [
            2867,
            219632,
            "/steam/76561198025416651",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":160,\"ac\":3}",
            "Neko",
            "BLACK",
            95624,
            0,
            1,
            2,
            null,
            "76561198025416651",
            3,
            []
        ],
        [
            10584,
            2788194,
            "/steam/76561198279518586",
            "{\"v\":1,\"twr\":6,\"wlr\":4,\"ai\":199,\"ac\":3}",
            "Annihilater",
            "",
            252601,
            0,
            1,
            2,
            null,
            "76561198279518586",
            3,
            []
        ],
        [
            2323,
            10814970,
            "/steam/76561199380110189",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":201,\"ac\":3}",
            "Bilge Qaghan",
            "FPLC",
            2421862,
            0,
            1,
            2,
            null,
            "76561199380110189",
            3,
            []
        ],
        [
            4883,
            3648678,
            "/steam/76561198096091914",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":192,\"ac\":3}",
            "common sage",
            "åè±å¢å",
            142798,
            0,
            1,
            3,
            null,
            "76561198096091914",
            3,
            []
        ],
        [
            10000,
            3589898,
            "/steam/76561198865802331",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":47,\"ac\":3}",
            "Ungurs",
            "JACKD",
            11679,
            0,
            1,
            0,
            null,
            "76561198865802331",
            3,
            []
        ],
        [
            5530,
            3620442,
            "/steam/76561198017057449",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "Lion Heart",
            "RVOLT",
            81570,
            0,
            1,
            0,
            null,
            "76561198017057449",
            3,
            []
        ],
        [
            339,
            11285643,
            "/steam/76561199395849280",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":1,\"ac\":0}",
            "gracefulrestart",
            "",
            2480225,
            0,
            1,
            2,
            null,
            "76561199395849280",
            3,
            []
        ],
        [
            3261,
            3868202,
            "/steam/76561199025038158",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":186,\"ac\":3}",
            "goodname",
            "",
            458165,
            0,
            1,
            2,
            null,
            "76561199025038158",
            3,
            []
        ],
        [
            3129,
            3848179,
            "/steam/76561198116870435",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":32,\"ac\":3}",
            "Katata_Fisch",
            "",
            436420,
            0,
            1,
            0,
            null,
            "76561198116870435",
            3,
            []
        ],
        [
            1464,
            6433080,
            "/steam/76561199206323096",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":196,\"ac\":3}",
            "M",
            "",
            1673139,
            0,
            1,
            2,
            null,
            "76561199206323096",
            3,
            []
        ],
        [
            9948,
            641589,
            "/steam/76561198881345736",
            "{\"v\":1,\"twr\":5,\"wlr\":3,\"ai\":173,\"ac\":3}",
            "é¿å¼ä¸æå¢",
            "TPG",
            48372,
            0,
            1,
            2,
            null,
            "76561198881345736",
            3,
            []
        ],
        [
            6343,
            5525,
            "/steam/76561198019305989",
            "{\"v\":1,\"twr\":5,\"wlr\":0,\"ai\":77,\"ac\":3}",
            "Yoqpasa",
            "ArC",
            119545,
            0,
            1,
            0,
            null,
            "76561198019305989",
            3,
            []
        ],
        [
            8711,
            4314153,
            "/steam/76561198936850643",
            "{\"v\":1,\"twr\":7,\"wlr\":3,\"ai\":133,\"ac\":3}",
            "ginga55212",
            "å¤§æ¥æ¬å¸å½",
            693928,
            0,
            1,
            2,
            null,
            "76561198936850643",
            3,
            []
        ],
        [
            1386,
            9396034,
            "/steam/76561199238763552",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":191,\"ac\":3}",
            "DDFantasy",
            "ssMgc",
            2021908,
            0,
            1,
            2,
            null,
            "76561199238763552",
            3,
            []
        ],
        [
            1760,
            10978552,
            "/steam/76561199186045225",
            "{\"v\":1,\"twr\":1,\"wlr\":5,\"ai\":189,\"ac\":3}",
            "War Sword Gaming",
            "FPLC",
            2448653,
            0,
            1,
            2,
            null,
            "76561199186045225",
            3,
            []
        ],
        [
            1118,
            5784793,
            "/steam/76561198449458362",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":77,\"ac\":3}",
            "wildberry",
            "",
            1357788,
            0,
            1,
            0,
            null,
            "76561198449458362",
            3,
            []
        ],
        [
            1386,
            5333978,
            "/steam/76561199154754804",
            "{\"v\":1,\"twr\":1,\"wlr\":4,\"ai\":156,\"ac\":3}",
            "Musk Falc",
            "",
            1141161,
            0,
            1,
            0,
            null,
            "76561199154754804",
            3,
            []
        ],
        [
            5284,
            3610171,
            "/steam/76561199028146842",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":31,\"ac\":3}",
            "khorix",
            "",
            58604,
            0,
            1,
            3,
            null,
            "76561199028146842",
            3,
            []
        ],
        [
            6017,
            4779793,
            "/steam/76561198445843363",
            "{\"v\":1,\"twr\":5,\"wlr\":3,\"ai\":80,\"ac\":3}",
            "â NANAKO KING",
            "èæ°ä¹å®¶",
            899797,
            0,
            1,
            2,
            null,
            "76561198445843363",
            3,
            []
        ],
        [
            9990,
            4300962,
            "/steam/76561199030580209",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":26,\"ac\":3}",
            "DonVitoAndolini",
            "ããããã",
            688899,
            0,
            1,
            2,
            null,
            "76561199030580209",
            3,
            []
        ],
        [
            5481,
            3621182,
            "/steam/76561198802101019",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":63,\"ac\":1}",
            "Mack",
            "JACKD",
            83259,
            0,
            1,
            3,
            null,
            "76561198802101019",
            3,
            []
        ],
        [
            9205,
            2868755,
            "/steam/76561198344259453",
            "{\"v\":1,\"twr\":7,\"wlr\":3,\"ai\":87,\"ac\":3}",
            "edwardhartemink",
            "",
            105193,
            0,
            1,
            3,
            null,
            "76561198344259453",
            3,
            []
        ],
        [
            2621,
            9860564,
            "/steam/76561198348891133",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":3,\"ac\":0}",
            "melbrooks1975",
            "",
            2115912,
            0,
            1,
            3,
            null,
            "76561198348891133",
            3,
            []
        ],
        [
            193,
            10493137,
            "/steam/76561199174394922",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":1,\"ac\":0}",
            "Obama",
            "",
            2275255,
            0,
            1,
            0,
            null,
            "76561199174394922",
            3,
            []
        ],
        [
            6204,
            3596104,
            "/steam/76561198062182426",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":34,\"ac\":1}",
            "LazarosVas",
            "GMDS",
            26102,
            0,
            1,
            0,
            null,
            "76561198062182426",
            3,
            []
        ],
        [
            5601,
            4338523,
            "/steam/76561198006628081",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":5,\"ac\":3}",
            "Eternal_Major",
            "Doofi",
            705796,
            0,
            1,
            0,
            null,
            "76561198006628081",
            3,
            []
        ],
        [
            3827,
            3907973,
            "/steam/76561197980603848",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":14,\"ac\":3}",
            "DAbnn",
            "JACKD",
            495837,
            0,
            1,
            0,
            null,
            "76561197980603848",
            3,
            []
        ],
        [
            415,
            10267621,
            "/steam/76561199304803603",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":45,\"ac\":3}",
            "Irish",
            "mhack",
            2216897,
            0,
            1,
            3,
            null,
            "76561199304803603",
            3,
            []
        ],
        [
            854,
            5598276,
            "/steam/76561199163419418",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":63,\"ac\":3}",
            "Amalthea",
            "",
            1263094,
            0,
            1,
            0,
            null,
            "76561199163419418",
            3,
            []
        ],
        [
            11952,
            3588027,
            "/steam/76561197960946414",
            "{\"v\":1,\"twr\":3,\"wlr\":4,\"ai\":203,\"ac\":3}",
            "barker",
            "tex",
            7334,
            0,
            1,
            3,
            null,
            "76561197960946414",
            3,
            []
        ],
        [
            2907,
            6316120,
            "/steam/76561198870987291",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":178,\"ac\":3}",
            "Blaximus",
            "УÐРÐÐ",
            1614645,
            0,
            1,
            0,
            null,
            "76561198870987291",
            3,
            []
        ],
        [
            4619,
            3620424,
            "/steam/76561198345882649",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":40,\"ac\":3}",
            "alistairpeter",
            "ᵡXáµáµ",
            81535,
            0,
            1,
            3,
            null,
            "76561198345882649",
            3,
            []
        ],
        [
            1804,
            9054970,
            "/steam/76561198869700200",
            "{\"v\":1,\"twr\":3,\"wlr\":4,\"ai\":199,\"ac\":3}",
            "åªæä¸",
            "",
            1966476,
            0,
            1,
            2,
            null,
            "76561198869700200",
            3,
            []
        ],
        [
            20812,
            701879,
            "/steam/76561198206085488",
            "{\"v\":1,\"twr\":6,\"wlr\":2,\"ai\":20,\"ac\":3}",
            "andrewgs",
            "ããããã",
            111247,
            0,
            1,
            0,
            null,
            "76561198206085488",
            3,
            []
        ],
        [
            15718,
            271652,
            "/steam/76561198271985595",
            "{\"v\":1,\"twr\":7,\"wlr\":3,\"ai\":3,\"ac\":1}",
            "JulianK",
            "AOEMC",
            65813,
            0,
            1,
            0,
            null,
            "76561198271985595",
            3,
            []
        ],
        [
            2444,
            5897581,
            "/steam/76561199179878106",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":9,\"ac\":0}",
            "ç¸ææ²¡é±äº",
            "",
            1411385,
            0,
            1,
            0,
            null,
            "76561199179878106",
            3,
            []
        ],
        [
            12422,
            608897,
            "/steam/76561198117211519",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":39,\"ac\":1}",
            "Ezad",
            "KEKs",
            3927,
            0,
            1,
            0,
            null,
            "76561198117211519",
            3,
            []
        ],
        [
            4758,
            3648097,
            "/steam/76561198821215459",
            "{\"v\":1,\"twr\":5,\"wlr\":4,\"ai\":203,\"ac\":3}",
            "udmun",
            "Cøøl",
            141529,
            0,
            1,
            2,
            null,
            "76561198821215459",
            3,
            []
        ],
        [
            4202,
            3638858,
            "/steam/76561198994896195",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":200,\"ac\":3}",
            "Mephist010",
            "Vets",
            121498,
            0,
            1,
            0,
            null,
            "76561198994896195",
            3,
            []
        ],
        [
            8454,
            4769645,
            "/steam/76561199125453567",
            "{\"v\":1,\"twr\":3,\"wlr\":3,\"ai\":110,\"ac\":3}",
            "timojin_",
            "",
            894164,
            0,
            1,
            2,
            null,
            "76561199125453567",
            3,
            []
        ],
        [
            9409,
            3589907,
            "/steam/76561198372949183",
            "{\"v\":1,\"twr\":3,\"wlr\":2,\"ai\":9,\"ac\":0}",
            "TestoBirne",
            "APEMP",
            11698,
            0,
            1,
            0,
            null,
            "76561198372949183",
            3,
            []
        ],
        [
            11193,
            5734276,
            "/steam/76561198400750133",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":39,\"ac\":3}",
            "मà¥à¤à¥ पता नहà¥",
            "TSGOP",
            1332795,
            0,
            1,
            0,
            null,
            "76561198400750133",
            3,
            []
        ],
        [
            659,
            11196582,
            "/steam/76561199388153584",
            "{\"v\":1,\"twr\":1,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "ComeGetSome",
            "",
            2461472,
            0,
            1,
            2,
            null,
            "76561199388153584",
            3,
            []
        ],
        [
            11990,
            3827724,
            "/steam/76561199100576142",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":200,\"ac\":3}",
            "[CRHP] Hispano",
            "",
            413278,
            0,
            1,
            0,
            null,
            "76561199100576142",
            3,
            []
        ],
        [
            3133,
            5099388,
            "/steam/76561199141939652",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":109,\"ac\":3}",
            "kerimb1903",
            "",
            1038930,
            0,
            1,
            0,
            null,
            "76561199141939652",
            3,
            []
        ],
        [
            4684,
            3605009,
            "/steam/76561198263084994",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":191,\"ac\":3}",
            "Zanerre",
            "FPLC",
            46614,
            0,
            1,
            0,
            null,
            "76561198263084994",
            3,
            []
        ],
        [
            4737,
            6069863,
            "/steam/76561199187056716",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":163,\"ac\":3}",
            "sant_pedro11",
            "LatWs",
            1489522,
            0,
            1,
            3,
            null,
            "76561199187056716",
            3,
            []
        ],
        [
            646,
            10126818,
            "/steam/76561198074861393",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":107,\"ac\":3}",
            "Keturboy",
            "",
            2183208,
            0,
            1,
            0,
            null,
            "76561198074861393",
            3,
            []
        ],
        [
            236,
            10292931,
            "/steam/76561199310254824",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "人æºå…»è",
            "",
            2225900,
            0,
            1,
            2,
            null,
            "76561199310254824",
            3,
            []
        ],
        [
            629,
            11334305,
            "/steam/76561199402569943",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "Died Suddenly",
            "",
            2490348,
            0,
            1,
            3,
            null,
            "76561199402569943",
            3,
            []
        ],
        [
            7580,
            178464,
            "/steam/76561198406941099",
            "{\"v\":1,\"twr\":4,\"wlr\":2,\"ai\":7,\"ac\":6}",
            "Gimmick_aoe",
            "",
            23945,
            0,
            1,
            0,
            null,
            "76561198406941099",
            3,
            []
        ],
        [
            155,
            11228111,
            "/steam/76561199389418992",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":170,\"ac\":3}",
            "verVain",
            "",
            2467989,
            0,
            1,
            0,
            null,
            "76561199389418992",
            3,
            []
        ],
        [
            959,
            6155054,
            "/steam/76561199191314529",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":29,\"ac\":1}",
            "好å¥ç游æ",
            "Qing",
            1530601,
            0,
            1,
            5,
            null,
            "76561199191314529",
            3,
            []
        ],
        [
            227,
            10942077,
            "/steam/76561199384405440",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":1,\"ac\":0}",
            "Dr_HouseMD",
            "",
            2440890,
            0,
            1,
            4,
            null,
            "76561199384405440",
            3,
            []
        ],
        [
            6380,
            3594515,
            "/steam/76561198871695723",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "éæ»¡æ¥¼",
            "ZSsai",
            22453,
            0,
            1,
            2,
            null,
            "76561198871695723",
            3,
            []
        ],
        [
            1447,
            4315200,
            "/steam/76561199113222225",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":190,\"ac\":3}",
            "#####",
            "",
            694407,
            0,
            1,
            2,
            null,
            "76561199113222225",
            3,
            []
        ],
        [
            2916,
            9541510,
            "/steam/76561198368095524",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":68,\"ac\":1}",
            "göktürük",
            "FPLC",
            2113300,
            0,
            1,
            2,
            null,
            "76561198368095524",
            3,
            []
        ],
        [
            1515,
            4580984,
            "/steam/76561198247670996",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":187,\"ac\":3}",
            "Pätte",
            "",
            816624,
            0,
            1,
            0,
            null,
            "76561198247670996",
            3,
            []
        ],
        [
            4746,
            3586457,
            "/steam/76561198035550616",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":67,\"ac\":3}",
            "Jeri",
            "YumiW",
            3367,
            0,
            1,
            0,
            null,
            "76561198035550616",
            3,
            []
        ],
        [
            11195,
            575055,
            "/steam/76561198292110142",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":205,\"ac\":3}",
            "D\u2022F\u2022S | Optimus",
            "",
            3230,
            0,
            1,
            0,
            null,
            "76561198292110142",
            3,
            []
        ],
        [
            11467,
            3609822,
            "/steam/76561198075152814",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":153,\"ac\":3}",
            "Kynesie",
            "FPLC",
            57835,
            0,
            1,
            0,
            null,
            "76561198075152814",
            3,
            []
        ],
        [
            13496,
            2955524,
            "/steam/76561198174394506",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":168,\"ac\":3}",
            "ANIMUSVOX",
            "DaB0Ã",
            77824,
            0,
            1,
            0,
            null,
            "76561198174394506",
            3,
            []
        ],
        [
            620,
            11269796,
            "/steam/76561199393650641",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "ä½å¨å¸å½æ¶ä»£3é",
            "",
            2476918,
            0,
            1,
            2,
            null,
            "76561199393650641",
            3,
            []
        ],
        [
            1193,
            9396522,
            "/steam/76561199238751391",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":23,\"ac\":6}",
            "çäºæ·®åå为æ³",
            "",
            2022000,
            0,
            1,
            2,
            null,
            "76561199238751391",
            3,
            []
        ],
        [
            2518,
            699031,
            "/steam/76561198167691871",
            "{\"v\":1,\"twr\":2,\"wlr\":4,\"ai\":200,\"ac\":3}",
            "snowww",
            "Vets",
            19555,
            0,
            1,
            0,
            null,
            "76561198167691871",
            3,
            []
        ],
        [
            9067,
            216984,
            "/steam/76561198330076364",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":5,\"ac\":0}",
            "_Carp_",
            "RøyaL",
            76730,
            0,
            1,
            4,
            null,
            "76561198330076364",
            3,
            []
        ],
        [
            3889,
            4192013,
            "/steam/76561199110600043",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":71,\"ac\":3}",
            "GuiliuG",
            "",
            651501,
            0,
            1,
            0,
            null,
            "76561199110600043",
            3,
            []
        ],
        [
            7371,
            73877,
            "/steam/76561198179722205",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":45,\"ac\":1}",
            "Yukietti",
            "ãã¥ã¼ãã£",
            5711,
            0,
            1,
            2,
            null,
            "76561198179722205",
            3,
            []
        ],
        [
            17448,
            3016448,
            "/steam/76561198309738843",
            "{\"v\":1,\"twr\":7,\"wlr\":3,\"ai\":202,\"ac\":3}",
            "ThunderTiger",
            "ELKO",
            8314,
            0,
            1,
            4,
            null,
            "76561198309738843",
            3,
            []
        ],
        [
            2705,
            6112746,
            "/steam/76561199188835260",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "lil strife",
            "LGWAR",
            1509258,
            0,
            1,
            0,
            null,
            "76561199188835260",
            3,
            []
        ],
        [
            1342,
            6340208,
            "/steam/76561199201681904",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":7,\"ac\":2}",
            "Cadillac_of_the_Skies",
            "JACKD",
            1683561,
            0,
            1,
            0,
            null,
            "76561199201681904",
            3,
            []
        ],
        [
            1016,
            3592629,
            "/steam/76561198070669153",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":177,\"ac\":3}",
            "[~] BRIGADIER",
            "",
            18028,
            0,
            1,
            0,
            null,
            "76561198070669153",
            3,
            []
        ],
        [
            8414,
            3309756,
            "/steam/76561198010665389",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":196,\"ac\":3}",
            "Pewpew-ll",
            "",
            92116,
            0,
            1,
            0,
            null,
            "76561198010665389",
            3,
            []
        ],
        [
            9196,
            3608508,
            "/steam/76561198807615118",
            "{\"v\":1,\"twr\":6,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "Diplomatic Solution",
            "NerVe",
            54810,
            0,
            1,
            0,
            null,
            "76561198807615118",
            3,
            []
        ],
        [
            2741,
            6317257,
            "/steam/76561199199712150",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "rukietti",
            "RVOLT",
            1615196,
            0,
            1,
            2,
            null,
            "76561199199712150",
            3,
            []
        ],
        [
            2126,
            4250857,
            "/steam/76561198983718938",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "åµå¾·æè´¡",
            "NTDE",
            671194,
            0,
            1,
            2,
            null,
            "76561198983718938",
            3,
            []
        ],
        [
            5094,
            3805896,
            "/steam/76561198315942245",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":185,\"ac\":3}",
            "inchman",
            "TPG",
            387798,
            0,
            1,
            5,
            null,
            "76561198315942245",
            3,
            []
        ],
        [
            2416,
            3602647,
            "/steam/76561198975897905",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":178,\"ac\":3}",
            "A2",
            "AOTDE",
            41231,
            0,
            1,
            2,
            null,
            "76561198975897905",
            3,
            []
        ],
        [
            11360,
            3779517,
            "/steam/76561198095153423",
            "{\"v\":1,\"twr\":6,\"wlr\":4,\"ai\":29,\"ac\":3}",
            "PatrickLFC",
            "",
            354414,
            0,
            1,
            5,
            null,
            "76561198095153423",
            3,
            []
        ],
        [
            8177,
            643918,
            "/steam/76561198063102836",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":195,\"ac\":3}",
            "LukasL",
            "JACKD",
            2834,
            0,
            1,
            0,
            null,
            "76561198063102836",
            3,
            []
        ],
        [
            6376,
            5012193,
            "/steam/76561199136551579",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":203,\"ac\":3}",
            "Rohbrot",
            "",
            1003399,
            0,
            1,
            2,
            null,
            "76561199136551579",
            3,
            []
        ],
        [
            8480,
            3845997,
            "/steam/76561199100745177",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":68,\"ac\":3}",
            "Alvaroes___",
            "LatWs",
            433909,
            0,
            1,
            0,
            null,
            "76561199100745177",
            3,
            []
        ],
        [
            4771,
            3780073,
            "/steam/76561199096913313",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":192,\"ac\":3}",
            "poup",
            "RøyaL",
            355115,
            0,
            1,
            5,
            null,
            "76561199096913313",
            3,
            []
        ],
        [
            748,
            1580353,
            "/steam/76561198065413143",
            "{\"v\":1,\"twr\":2,\"wlr\":2,\"ai\":190,\"ac\":3}",
            "CaptainAaron",
            "",
            16550,
            0,
            1,
            0,
            null,
            "76561198065413143",
            3,
            []
        ],
        [
            2217,
            5673431,
            "/steam/76561199166455698",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":104,\"ac\":3}",
            "Titus Labienus",
            "",
            1301776,
            0,
            1,
            0,
            null,
            "76561199166455698",
            3,
            []
        ],
        [
            6341,
            3663083,
            "/steam/76561198152903302",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":156,\"ac\":3}",
            "timi",
            "",
            172222,
            0,
            1,
            0,
            null,
            "76561198152903302",
            3,
            []
        ],
        [
            1635,
            9808874,
            "/steam/76561199257611282",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":99,\"ac\":3}",
            "Chaôute",
            "",
            2105690,
            0,
            1,
            5,
            null,
            "76561199257611282",
            3,
            []
        ],
        [
            146,
            11470980,
            "/steam/76561199417819468",
            "{\"v\":1,\"twr\":1,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "èç®è¯ºå¨",
            "",
            2519926,
            0,
            1,
            2,
            null,
            "76561199417819468",
            3,
            []
        ],
        [
            4310,
            3771489,
            "/steam/76561198276934906",
            "{\"v\":1,\"twr\":2,\"wlr\":4,\"ai\":100,\"ac\":3}",
            "Risi",
            "",
            343846,
            0,
            1,
            0,
            null,
            "76561198276934906",
            3,
            []
        ],
        [
            1758,
            6123718,
            "/steam/76561199108858488",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":164,\"ac\":3}",
            "ð",
            "",
            1514842,
            0,
            1,
            2,
            null,
            "76561199108858488",
            3,
            []
        ],
        [
            781,
            11262944,
            "/steam/76561199391936323",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":204,\"ac\":3}",
            "retummy",
            "",
            2475433,
            0,
            1,
            0,
            null,
            "76561199391936323",
            3,
            []
        ],
        [
            1841,
            5220204,
            "/steam/76561199148612041",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "ä¸äº¿å°å¥³ç梦",
            "åè±å¢å",
            1095931,
            0,
            1,
            2,
            null,
            "76561199148612041",
            3,
            []
        ],
        [
            2588,
            8965739,
            "/steam/76561199229886753",
            "{\"v\":1,\"twr\":2,\"wlr\":3,\"ai\":203,\"ac\":3}",
            "Toxicguy",
            "LatWs",
            1950456,
            0,
            1,
            3,
            null,
            "76561199229886753",
            3,
            []
        ],
        [
            4622,
            5296397,
            "/steam/76561199152661276",
            "{\"v\":1,\"twr\":5,\"wlr\":2,\"ai\":109,\"ac\":3}",
            "Big-A",
            "ä¸DCä¸",
            1128801,
            0,
            1,
            2,
            null,
            "76561199152661276",
            3,
            []
        ],
        [
            14765,
            3641647,
            "/steam/76561197989843672",
            "{\"v\":1,\"twr\":3,\"wlr\":0,\"ai\":199,\"ac\":3}",
            "k",
            "PIRO",
            127394,
            0,
            1,
            0,
            null,
            "76561197989843672",
            3,
            []
        ],
        [
            9874,
            4575769,
            "/steam/76561198086426916",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":156,\"ac\":3}",
            "Kees Kachel",
            "NLD",
            814433,
            0,
            1,
            0,
            null,
            "76561198086426916",
            3,
            []
        ],
        [
            1643,
            4644584,
            "/steam/76561198324755751",
            "{\"v\":1,\"twr\":1,\"wlr\":0,\"ai\":202,\"ac\":3}",
            "Shuffle",
            "",
            841344,
            0,
            1,
            0,
            null,
            "76561198324755751",
            3,
            []
        ],
        [
            8142,
            5045777,
            "/steam/76561199136335190",
            "{\"v\":1,\"twr\":4,\"wlr\":3,\"ai\":11,\"ac\":3}",
            "Python",
            "èåçå½",
            1018094,
            0,
            1,
            2,
            null,
            "76561199136335190",
            3,
            []
        ],
        [
            4501,
            3672477,
            "/steam/76561198312044218",
            "{\"v\":1,\"twr\":2,\"wlr\":0,\"ai\":57,\"ac\":1}",
            "lzscky",
            "ZSsai",
            189919,
            0,
            1,
            2,
            null,
            "76561198312044218",
            3,
            []
        ],
        [
            431,
            10385111,
            "/xboxlive/C824200A45734736407DCFC09EBE857CED4F767F",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":196,\"ac\":3}",
            "banabanabana810",
            "",
            2430884,
            0,
            1,
            3,
            null,
            "2535414234924405",
            9,
            []
        ],
        [
            6281,
            5169939,
            "/steam/76561198118573200",
            "{\"v\":1,\"twr\":6,\"wlr\":4,\"ai\":8,\"ac\":0}",
            "sokodaro",
            "ããããã",
            1072275,
            0,
            1,
            2,
            null,
            "76561198118573200",
            3,
            []
        ],
        [
            1897,
            10161416,
            "/steam/76561199277855498",
            "{\"v\":1,\"twr\":0,\"wlr\":0,\"ai\":205,\"ac\":3}",
            "katamarazu",
            "JACKD",
            2190673,
            0,
            1,
            0,
            null,
            "76561199277855498",
            3,
            []
        ]
    ],
    [
        [
            2105690,
            1,
            380,
            157,
            2,
            0,
            1,
            1,
            3591,
            -1,
            -1,
            1,
            2164,
            "{}",
            "{}",
            1666786939
        ],
        [
            355115,
            1,
            374,
            153,
            10,
            3,
            7,
            2,
            3591,
            -1,
            -1,
            1,
            2161,
            "{}",
            "{}",
            1665963392
        ],
        [
            3230,
            1,
            764,
            364,
            -1,
            4,
            19,
            3,
            3591,
            -1,
            -1,
            1,
            2160,
            "{}",
            "{}",
            1666302876
        ],
        [
            56388,
            1,
            1862,
            906,
            -1,
            4,
            32,
            4,
            3591,
            -1,
            -1,
            1,
            2152,
            "{}",
            "{}",
            1665667402
        ],
        [
            1530601,
            1,
            139,
            55,
            14,
            0,
            3,
            5,
            3591,
            -1,
            -1,
            1,
            2110,
            "{}",
            "{}",
            1666077609
        ],
        [
            1937530,
            1,
            119,
            22,
            3,
            0,
            5,
            6,
            3591,
            -1,
            -1,
            1,
            2102,
            "{}",
            "{}",
            1665405918
        ],
        [
            2423509,
            1,
            152,
            56,
            6,
            0,
            3,
            7,
            3591,
            -1,
            -1,
            1,
            2099,
            "{}",
            "{}",
            1664669870
        ],
        [
            495837,
            1,
            691,
            472,
            -1,
            1,
            1,
            8,
            3591,
            -1,
            -1,
            1,
            2071,
            "{}",
            "{}",
            1666558179
        ],
        [
            1003399,
            1,
            973,
            527,
            -1,
            0,
            10,
            9,
            3591,
            -1,
            -1,
            1,
            2068,
            "{}",
            "{}",
            1666714309
        ],
        [
            57835,
            1,
            1747,
            520,
            3,
            4,
            8,
            10,
            3591,
            -1,
            -1,
            1,
            2063,
            "{}",
            "{}",
            1666800112
        ],
        [
            3927,
            1,
            1135,
            647,
            -1,
            1,
            34,
            11,
            3591,
            -1,
            -1,
            1,
            2055,
            "{}",
            "{}",
            1666786939
        ],
        [
            11679,
            1,
            1384,
            1026,
            1,
            4,
            51,
            12,
            3591,
            -1,
            -1,
            1,
            2055,
            "{}",
            "{}",
            1666740324
        ],
        [
            26200,
            1,
            1101,
            654,
            2,
            1,
            12,
            13,
            3591,
            -1,
            -1,
            1,
            2035,
            "{}",
            "{}",
            1666666426
        ],
        [
            123818,
            1,
            1397,
            1182,
            16,
            2,
            12,
            14,
            3591,
            -1,
            -1,
            1,
            2033,
            "{}",
            "{}",
            1666065776
        ],
        [
            3367,
            1,
            1147,
            820,
            3,
            1,
            23,
            15,
            3591,
            -1,
            -1,
            1,
            2019,
            "{}",
            "{}",
            1666639802
        ],
        [
            1683561,
            1,
            105,
            39,
            5,
            0,
            1,
            16,
            3591,
            -1,
            -1,
            1,
            2007,
            "{}",
            "{}",
            1665947663
        ],
        [
            2190673,
            1,
            309,
            174,
            2,
            0,
            3,
            17,
            3591,
            -1,
            -1,
            1,
            1997,
            "{}",
            "{}",
            1666770578
        ],
        [
            1018094,
            1,
            1621,
            1213,
            6,
            5,
            36,
            18,
            3591,
            -1,
            -1,
            1,
            1987,
            "{}",
            "{}",
            1665575917
        ],
        [
            142798,
            1,
            810,
            636,
            7,
            4,
            11,
            19,
            3591,
            -1,
            -1,
            1,
            1984,
            "{}",
            "{}",
            1665423433
        ],
        [
            1509258,
            1,
            179,
            90,
            1,
            0,
            1,
            20,
            3591,
            -1,
            -1,
            1,
            1970,
            "{}",
            "{}",
            1666528225
        ],
        [
            361,
            1,
            1396,
            876,
            1,
            9,
            36,
            21,
            3591,
            -1,
            -1,
            1,
            1960,
            "{}",
            "{}",
            1666715887
        ],
        [
            2228224,
            1,
            221,
            118,
            -2,
            0,
            5,
            22,
            3591,
            -1,
            -1,
            1,
            1960,
            "{}",
            "{}",
            1664628391
        ],
        [
            49491,
            1,
            1177,
            940,
            1,
            1,
            25,
            23,
            3591,
            -1,
            -1,
            1,
            1955,
            "{}",
            "{}",
            1665847963
        ],
        [
            1038930,
            1,
            494,
            395,
            -1,
            4,
            8,
            24,
            3591,
            -1,
            -1,
            1,
            1940,
            "{}",
            "{}",
            1666400175
        ],
        [
            343846,
            1,
            428,
            306,
            3,
            0,
            20,
            25,
            3591,
            -1,
            -1,
            1,
            1938,
            "{}",
            "{}",
            1666728347
        ],
        [
            10662,
            1,
            2097,
            1566,
            1,
            15,
            46,
            26,
            3591,
            -1,
            -1,
            1,
            1932,
            "{}",
            "{}",
            1666268689
        ],
        [
            1514842,
            1,
            432,
            349,
            10,
            0,
            7,
            27,
            3591,
            -1,
            -1,
            1,
            1929,
            "{}",
            "{}",
            1666452109
        ],
        [
            2834,
            1,
            1118,
            509,
            -2,
            5,
            4,
            28,
            3591,
            -1,
            -1,
            1,
            1918,
            "{}",
            "{}",
            1666376172
        ],
        [
            65813,
            1,
            120,
            69,
            -1,
            0,
            0,
            29,
            3591,
            -1,
            -1,
            1,
            1911,
            "{}",
            "{}",
            1665754028
        ],
        [
            2022000,
            1,
            152,
            87,
            5,
            0,
            0,
            30,
            3591,
            -1,
            -1,
            1,
            1906,
            "{}",
            "{}",
            1665720677
        ],
        [
            2448653,
            1,
            469,
            414,
            2,
            0,
            11,
            31,
            3591,
            -1,
            -1,
            1,
            1905,
            "{}",
            "{}",
            1665243667
        ],
        [
            10133,
            1,
            1904,
            1458,
            -1,
            21,
            57,
            32,
            3591,
            -1,
            -1,
            1,
            1903,
            "{}",
            "{}",
            1666715887
        ],
        [
            46614,
            1,
            544,
            414,
            -1,
            1,
            12,
            33,
            3591,
            -1,
            -1,
            1,
            1899,
            "{}",
            "{}",
            1666279977
        ],
        [
            58604,
            1,
            863,
            664,
            4,
            8,
            53,
            34,
            3591,
            -1,
            -1,
            1,
            1898,
            "{}",
            "{}",
            1666779714
        ],
        [
            23945,
            1,
            623,
            492,
            6,
            3,
            30,
            35,
            3591,
            -1,
            -1,
            1,
            1896,
            "{}",
            "{}",
            1666354830
        ],
        [
            4370,
            1,
            243,
            161,
            4,
            3,
            5,
            36,
            3591,
            -1,
            -1,
            1,
            1894,
            "{}",
            "{}",
            1664581128
        ],
        [
            81570,
            1,
            1000,
            827,
            -2,
            3,
            9,
            37,
            3591,
            -1,
            -1,
            1,
            1893,
            "{}",
            "{}",
            1666723620
        ],
        [
            5711,
            1,
            726,
            512,
            3,
            2,
            14,
            38,
            3591,
            -1,
            -1,
            1,
            1890,
            "{}",
            "{}",
            1666800142
        ],
        [
            433909,
            1,
            1332,
            1085,
            1,
            1,
            30,
            39,
            3591,
            -1,
            -1,
            1,
            1890,
            "{}",
            "{}",
            1666742110
        ],
        [
            1673139,
            1,
            221,
            169,
            5,
            0,
            6,
            40,
            3591,
            -1,
            -1,
            1,
            1889,
            "{}",
            "{}",
            1666153124
        ],
        [
            2251308,
            1,
            103,
            69,
            1,
            0,
            1,
            41,
            3591,
            -1,
            -1,
            1,
            1888,
            "{}",
            "{}",
            1664592980
        ],
        [
            1357788,
            1,
            200,
            138,
            1,
            0,
            1,
            42,
            3591,
            -1,
            -1,
            1,
            1886,
            "{}",
            "{}",
            1664465304
        ],
        [
            51071,
            1,
            113,
            61,
            1,
            0,
            3,
            43,
            3591,
            -1,
            -1,
            1,
            1883,
            "{}",
            "{}",
            1666746032
        ],
        [
            2216897,
            1,
            152,
            58,
            -2,
            0,
            1,
            44,
            3591,
            -1,
            -1,
            1,
            1880,
            "{}",
            "{}",
            1665216029
        ],
        [
            694407,
            1,
            112,
            61,
            2,
            3,
            2,
            45,
            3591,
            -1,
            -1,
            1,
            1869,
            "{}",
            "{}",
            1665186386
        ],
        [
            671194,
            1,
            172,
            110,
            -1,
            3,
            4,
            46,
            3591,
            -1,
            -1,
            1,
            1868,
            "{}",
            "{}",
            1666757826
        ],
        [
            2413757,
            1,
            59,
            19,
            6,
            0,
            0,
            47,
            3591,
            -1,
            -1,
            1,
            1868,
            "{}",
            "{}",
            1665237853
        ],
        [
            2461472,
            1,
            96,
            52,
            -2,
            0,
            1,
            48,
            3591,
            -1,
            -1,
            1,
            1866,
            "{}",
            "{}",
            1666200316
        ],
        [
            1615196,
            1,
            509,
            323,
            2,
            0,
            3,
            49,
            3591,
            -1,
            -1,
            1,
            1866,
            "{}",
            "{}",
            1666746080
        ],
        [
            436420,
            1,
            650,
            546,
            -3,
            4,
            15,
            50,
            3591,
            -1,
            -1,
            1,
            1865,
            "{}",
            "{}",
            1666544492
        ],
        [
            435622,
            1,
            350,
            228,
            2,
            2,
            5,
            51,
            3591,
            -1,
            -1,
            1,
            1864,
            "{}",
            "{}",
            1666810140
        ],
        [
            1705556,
            1,
            163,
            101,
            4,
            0,
            0,
            52,
            3591,
            -1,
            -1,
            1,
            1864,
            "{}",
            "{}",
            1665583173
        ],
        [
            651501,
            1,
            378,
            334,
            1,
            0,
            0,
            53,
            3591,
            -1,
            -1,
            1,
            1863,
            "{}",
            "{}",
            1666541709
        ],
        [
            1120622,
            1,
            306,
            251,
            -1,
            0,
            0,
            54,
            3591,
            -1,
            -1,
            1,
            1857,
            "{}",
            "{}",
            1666801225
        ],
        [
            2515636,
            1,
            43,
            6,
            -1,
            0,
            1,
            55,
            3591,
            -1,
            -1,
            1,
            1855,
            "{}",
            "{}",
            1666767867
        ],
        [
            2480225,
            1,
            96,
            53,
            3,
            0,
            0,
            56,
            3591,
            -1,
            -1,
            1,
            1854,
            "{}",
            "{}",
            1666509965
        ],
        [
            1013142,
            1,
            939,
            887,
            5,
            2,
            15,
            57,
            3591,
            -1,
            -1,
            1,
            1854,
            "{}",
            "{}",
            1666783854
        ],
        [
            899797,
            1,
            126,
            66,
            4,
            0,
            3,
            58,
            3591,
            -1,
            -1,
            1,
            1852,
            "{}",
            "{}",
            1665500827
        ],
        [
            189919,
            1,
            273,
            224,
            4,
            0,
            12,
            59,
            3591,
            -1,
            -1,
            1,
            1851,
            "{}",
            "{}",
            1665644121
        ],
        [
            1095931,
            1,
            352,
            299,
            4,
            0,
            9,
            60,
            3591,
            -1,
            -1,
            1,
            1851,
            "{}",
            "{}",
            1666710934
        ],
        [
            2497216,
            1,
            32,
            1,
            15,
            0,
            0,
            61,
            3591,
            -1,
            -1,
            1,
            1848,
            "{}",
            "{}",
            1666483858
        ],
        [
            2467989,
            1,
            50,
            16,
            3,
            0,
            1,
            62,
            3591,
            -1,
            -1,
            1,
            1836,
            "{}",
            "{}",
            1666725947
        ],
        [
            2067691,
            1,
            342,
            252,
            4,
            0,
            4,
            63,
            3591,
            -1,
            -1,
            1,
            1835,
            "{}",
            "{}",
            1666662419
        ],
        [
            2440890,
            1,
            47,
            7,
            7,
            0,
            0,
            64,
            3591,
            -1,
            -1,
            1,
            1834,
            "{}",
            "{}",
            1666279977
        ],
        [
            387798,
            1,
            733,
            592,
            2,
            6,
            23,
            65,
            3591,
            -1,
            -1,
            1,
            1833,
            "{}",
            "{}",
            1666482684
        ],
        [
            59290,
            1,
            1083,
            999,
            1,
            2,
            8,
            66,
            3591,
            -1,
            -1,
            1,
            1830,
            "{}",
            "{}",
            1666174162
        ],
        [
            2475965,
            1,
            45,
            5,
            -1,
            0,
            0,
            67,
            3591,
            -1,
            -1,
            1,
            1830,
            "{}",
            "{}",
            1666172389
        ],
        [
            1120486,
            1,
            97,
            50,
            -2,
            0,
            0,
            68,
            3591,
            -1,
            -1,
            1,
            1830,
            "{}",
            "{}",
            1666712671
        ],
        [
            62967,
            1,
            225,
            171,
            -4,
            1,
            3,
            69,
            3591,
            -1,
            -1,
            1,
            1826,
            "{}",
            "{}",
            1666537770
        ],
        [
            48372,
            1,
            604,
            579,
            -2,
            2,
            59,
            70,
            3591,
            -1,
            -1,
            1,
            1821,
            "{}",
            "{}",
            1666107188
        ],
        [
            2075385,
            1,
            47,
            14,
            5,
            0,
            0,
            71,
            3591,
            -1,
            -1,
            1,
            1820,
            "{}",
            "{}",
            1665853715
        ],
        [
            1742674,
            1,
            850,
            809,
            7,
            0,
            10,
            72,
            3591,
            -1,
            -1,
            1,
            1820,
            "{}",
            "{}",
            1666762475
        ],
        [
            2021908,
            1,
            174,
            132,
            -4,
            0,
            1,
            73,
            3591,
            -1,
            -1,
            1,
            1818,
            "{}",
            "{}",
            1665800792
        ],
        [
            894164,
            1,
            394,
            348,
            -3,
            3,
            40,
            74,
            3591,
            -1,
            -1,
            1,
            1816,
            "{}",
            "{}",
            1666449204
        ],
        [
            458165,
            1,
            604,
            523,
            -2,
            1,
            12,
            75,
            3591,
            -1,
            -1,
            1,
            1816,
            "{}",
            "{}",
            1665156849
        ],
        [
            1263094,
            1,
            161,
            116,
            2,
            2,
            3,
            76,
            3591,
            -1,
            -1,
            1,
            1814,
            "{}",
            "{}",
            1666718985
        ],
        [
            83259,
            1,
            636,
            537,
            -3,
            3,
            22,
            77,
            3591,
            -1,
            -1,
            1,
            1810,
            "{}",
            "{}",
            1665183663
        ],
        [
            1141161,
            1,
            291,
            226,
            -1,
            0,
            4,
            78,
            3591,
            -1,
            -1,
            1,
            1810,
            "{}",
            "{}",
            1665761173
        ],
        [
            935950,
            1,
            1568,
            1521,
            5,
            0,
            11,
            79,
            3591,
            -1,
            -1,
            1,
            1806,
            "{}",
            "{}",
            1666806368
        ],
        [
            1301776,
            1,
            380,
            324,
            3,
            0,
            0,
            80,
            3591,
            -1,
            -1,
            1,
            1805,
            "{}",
            "{}",
            1666272154
        ],
        [
            2092456,
            1,
            50,
            14,
            4,
            0,
            0,
            81,
            3591,
            -1,
            -1,
            1,
            1804,
            "{}",
            "{}",
            1666023128
        ],
        [
            19555,
            1,
            77,
            27,
            -2,
            2,
            0,
            82,
            3591,
            -1,
            -1,
            1,
            1804,
            "{}",
            "{}",
            1664795662
        ],
        [
            531217,
            1,
            350,
            259,
            6,
            0,
            11,
            83,
            3591,
            -1,
            -1,
            1,
            1802,
            "{}",
            "{}",
            1666566369
        ],
        [
            2476918,
            1,
            91,
            46,
            7,
            0,
            1,
            84,
            3591,
            -1,
            -1,
            1,
            1800,
            "{}",
            "{}",
            1666591971
        ],
        [
            181866,
            1,
            563,
            512,
            3,
            4,
            9,
            85,
            3591,
            -1,
            -1,
            1,
            1800,
            "{}",
            "{}",
            1665326851
        ],
        [
            18244,
            1,
            363,
            307,
            1,
            0,
            1,
            86,
            3591,
            -1,
            -1,
            1,
            1797,
            "{}",
            "{}",
            1666709954
        ],
        [
            474091,
            1,
            163,
            109,
            5,
            0,
            5,
            87,
            3591,
            -1,
            -1,
            1,
            1796,
            "{}",
            "{}",
            1665919629
        ],
        [
            1966476,
            1,
            94,
            58,
            1,
            0,
            2,
            88,
            3591,
            -1,
            -1,
            1,
            1795,
            "{}",
            "{}",
            1666093532
        ],
        [
            2114502,
            1,
            213,
            173,
            3,
            0,
            0,
            89,
            3591,
            -1,
            -1,
            1,
            1791,
            "{}",
            "{}",
            1666798702
        ],
        [
            66711,
            1,
            43,
            7,
            1,
            0,
            1,
            90,
            3591,
            -1,
            -1,
            1,
            1788,
            "{}",
            "{}",
            1666467761
        ],
        [
            1332458,
            1,
            3079,
            2818,
            -1,
            0,
            49,
            91,
            3591,
            -1,
            -1,
            1,
            1784,
            "{}",
            "{}",
            1666626276
        ],
        [
            2241843,
            1,
            281,
            249,
            6,
            0,
            0,
            92,
            3591,
            -1,
            -1,
            1,
            1783,
            "{}",
            "{}",
            1665497590
        ],
        [
            16550,
            1,
            175,
            132,
            -2,
            0,
            4,
            93,
            3591,
            -1,
            -1,
            1,
            1781,
            "{}",
            "{}",
            1666810140
        ],
        [
            1128801,
            1,
            416,
            353,
            -3,
            2,
            6,
            94,
            3591,
            -1,
            -1,
            1,
            1777,
            "{}",
            "{}",
            1666497422
        ],
        [
            76730,
            1,
            1267,
            1070,
            -5,
            1,
            4,
            95,
            3591,
            -1,
            -1,
            1,
            1774,
            "{}",
            "{}",
            1666748663
        ],
        [
            54810,
            1,
            67,
            47,
            -2,
            0,
            0,
            96,
            3591,
            -1,
            -1,
            1,
            1771,
            "{}",
            "{}",
            1665941236
        ],
        [
            566967,
            1,
            157,
            112,
            6,
            0,
            2,
            97,
            3591,
            -1,
            -1,
            1,
            1768,
            "{}",
            "{}",
            1666618353
        ],
        [
            13767,
            1,
            1182,
            973,
            -1,
            18,
            21,
            98,
            3591,
            -1,
            -1,
            1,
            1767,
            "{}",
            "{}",
            1666672962
        ],
        [
            77824,
            1,
            1186,
            1181,
            2,
            3,
            19,
            99,
            3591,
            -1,
            -1,
            1,
            1762,
            "{}",
            "{}",
            1666708027
        ],
        [
            1373951,
            1,
            748,
            714,
            -2,
            0,
            10,
            100,
            3591,
            -1,
            -1,
            1,
            1762,
            "{}",
            "{}",
            1666733107
        ],
        [
            864407,
            1,
            353,
            316,
            4,
            0,
            5,
            101,
            3591,
            -1,
            -1,
            1,
            1760,
            "{}",
            "{}",
            1665491782
        ],
        [
            975522,
            1,
            123,
            83,
            -1,
            1,
            2,
            102,
            3591,
            -1,
            -1,
            1,
            1756,
            "{}",
            "{}",
            1664733438
        ],
        [
            54254,
            1,
            1258,
            1221,
            -1,
            3,
            32,
            103,
            3591,
            -1,
            -1,
            1,
            1750,
            "{}",
            "{}",
            1666561783
        ],
        [
            2490348,
            1,
            202,
            132,
            2,
            0,
            2,
            104,
            3591,
            -1,
            -1,
            1,
            1750,
            "{}",
            "{}",
            1666793531
        ],
        [
            839530,
            1,
            853,
            811,
            1,
            4,
            50,
            105,
            3591,
            -1,
            -1,
            1,
            1748,
            "{}",
            "{}",
            1666212237
        ],
        [
            1385010,
            1,
            97,
            53,
            1,
            0,
            3,
            106,
            3591,
            -1,
            -1,
            1,
            1746,
            "{}",
            "{}",
            1666763395
        ],
        [
            14744,
            1,
            218,
            188,
            5,
            0,
            4,
            107,
            3591,
            -1,
            -1,
            1,
            1744,
            "{}",
            "{}",
            1665235139
        ],
        [
            862686,
            1,
            433,
            376,
            1,
            0,
            6,
            108,
            3591,
            -1,
            -1,
            1,
            1740,
            "{}",
            "{}",
            1666806100
        ],
        [
            78654,
            1,
            1902,
            1730,
            -1,
            7,
            23,
            109,
            3591,
            -1,
            -1,
            1,
            1738,
            "{}",
            "{}",
            1666581318
        ],
        [
            1950456,
            1,
            274,
            240,
            3,
            0,
            5,
            110,
            3591,
            -1,
            -1,
            1,
            1733,
            "{}",
            "{}",
            1666240812
        ],
        [
            2183208,
            1,
            88,
            60,
            1,
            0,
            2,
            111,
            3591,
            -1,
            -1,
            1,
            1732,
            "{}",
            "{}",
            1665701323
        ],
        [
            693928,
            1,
            155,
            110,
            6,
            0,
            0,
            112,
            3591,
            -1,
            -1,
            1,
            1730,
            "{}",
            "{}",
            1666169266
        ],
        [
            2458969,
            1,
            38,
            14,
            1,
            0,
            0,
            113,
            3591,
            -1,
            -1,
            1,
            1728,
            "{}",
            "{}",
            1666711220
        ],
        [
            22453,
            1,
            127,
            87,
            2,
            3,
            7,
            114,
            3591,
            -1,
            -1,
            1,
            1726,
            "{}",
            "{}",
            1666100581
        ],
        [
            413278,
            1,
            493,
            441,
            -4,
            1,
            18,
            115,
            3591,
            -1,
            -1,
            1,
            1725,
            "{}",
            "{}",
            1665592889
        ],
        [
            942893,
            1,
            248,
            211,
            -1,
            0,
            1,
            116,
            3591,
            -1,
            -1,
            1,
            1724,
            "{}",
            "{}",
            1664814570
        ],
        [
            1467983,
            1,
            66,
            32,
            -1,
            0,
            0,
            117,
            3591,
            -1,
            -1,
            1,
            1724,
            "{}",
            "{}",
            1666558002
        ],
        [
            111247,
            1,
            3728,
            3691,
            1,
            10,
            44,
            118,
            3591,
            -1,
            -1,
            1,
            1721,
            "{}",
            "{}",
            1666612626
        ],
        [
            705796,
            1,
            917,
            906,
            1,
            4,
            7,
            119,
            3591,
            -1,
            -1,
            1,
            1719,
            "{}",
            "{}",
            1665178614
        ],
        [
            56536,
            1,
            468,
            425,
            3,
            5,
            34,
            120,
            3591,
            -1,
            -1,
            1,
            1715,
            "{}",
            "{}",
            1666322681
        ],
        [
            26102,
            1,
            578,
            536,
            3,
            0,
            2,
            121,
            3591,
            -1,
            -1,
            1,
            1715,
            "{}",
            "{}",
            1666810729
        ],
        [
            31968,
            1,
            1483,
            1405,
            1,
            6,
            50,
            122,
            3591,
            -1,
            -1,
            1,
            1712,
            "{}",
            "{}",
            1666810995
        ],
        [
            2115912,
            1,
            560,
            534,
            6,
            0,
            1,
            123,
            3591,
            -1,
            -1,
            1,
            1712,
            "{}",
            "{}",
            1666789049
        ],
        [
            38648,
            1,
            1297,
            1197,
            -3,
            8,
            46,
            124,
            3591,
            -1,
            -1,
            1,
            1707,
            "{}",
            "{}",
            1666796302
        ],
        [
            37576,
            1,
            485,
            440,
            1,
            4,
            16,
            125,
            3591,
            -1,
            -1,
            1,
            1706,
            "{}",
            "{}",
            1666578012
        ],
        [
            11698,
            1,
            662,
            630,
            -1,
            0,
            5,
            126,
            3591,
            -1,
            -1,
            1,
            1704,
            "{}",
            "{}",
            1666362896
        ],
        [
            741570,
            1,
            2017,
            1972,
            2,
            12,
            20,
            127,
            3591,
            -1,
            -1,
            1,
            1702,
            "{}",
            "{}",
            1666777974
        ],
        [
            1310059,
            1,
            569,
            516,
            -3,
            1,
            8,
            128,
            3591,
            -1,
            -1,
            1,
            1702,
            "{}",
            "{}",
            1666404600
        ],
        [
            521176,
            1,
            821,
            783,
            2,
            2,
            25,
            129,
            3591,
            -1,
            -1,
            1,
            1701,
            "{}",
            "{}",
            1666515318
        ],
        [
            1411385,
            1,
            335,
            301,
            6,
            0,
            17,
            130,
            3591,
            -1,
            -1,
            1,
            1701,
            "{}",
            "{}",
            1666545571
        ],
        [
            7334,
            1,
            164,
            122,
            3,
            1,
            6,
            131,
            3591,
            -1,
            -1,
            1,
            1700,
            "{}",
            "{}",
            1666725552
        ],
        [
            2225900,
            1,
            30,
            1,
            30,
            0,
            0,
            132,
            3591,
            -1,
            -1,
            1,
            1700,
            "{}",
            "{}",
            1666685871
        ],
        [
            92116,
            1,
            2098,
            1741,
            -3,
            4,
            80,
            133,
            3591,
            -1,
            -1,
            1,
            1698,
            "{}",
            "{}",
            1666534600
        ],
        [
            1939437,
            1,
            162,
            140,
            3,
            0,
            1,
            134,
            3591,
            -1,
            -1,
            1,
            1698,
            "{}",
            "{}",
            1665672127
        ],
        [
            1859811,
            1,
            419,
            387,
            4,
            0,
            56,
            135,
            3591,
            -1,
            -1,
            1,
            1698,
            "{}",
            "{}",
            1666634063
        ],
        [
            2123270,
            1,
            49,
            16,
            4,
            0,
            2,
            136,
            3591,
            -1,
            -1,
            1,
            1697,
            "{}",
            "{}",
            1666795335
        ],
        [
            1332795,
            1,
            3153,
            3037,
            2,
            0,
            16,
            137,
            3591,
            -1,
            -1,
            1,
            1697,
            "{}",
            "{}",
            1666791545
        ],
        [
            7045,
            1,
            1530,
            1492,
            4,
            3,
            26,
            138,
            3591,
            -1,
            -1,
            1,
            1695,
            "{}",
            "{}",
            1666070533
        ],
        [
            2187154,
            1,
            329,
            280,
            1,
            0,
            2,
            139,
            3591,
            -1,
            -1,
            1,
            1695,
            "{}",
            "{}",
            1666806653
        ],
        [
            814433,
            1,
            2534,
            2429,
            4,
            4,
            15,
            140,
            3591,
            -1,
            -1,
            1,
            1693,
            "{}",
            "{}",
            1666534815
        ],
        [
            2112491,
            1,
            58,
            23,
            5,
            0,
            2,
            141,
            3591,
            -1,
            -1,
            1,
            1693,
            "{}",
            "{}",
            1664910480
        ],
        [
            2318946,
            1,
            46,
            23,
            2,
            0,
            0,
            142,
            3591,
            -1,
            -1,
            1,
            1691,
            "{}",
            "{}",
            1665684147
        ],
        [
            816624,
            1,
            11,
            6,
            3,
            0,
            0,
            143,
            3591,
            -1,
            -1,
            1,
            1690,
            "{}",
            "{}",
            1665059427
        ],
        [
            967815,
            1,
            185,
            138,
            4,
            3,
            1,
            144,
            3591,
            -1,
            -1,
            1,
            1688,
            "{}",
            "{}",
            1665168456
        ],
        [
            30209,
            1,
            990,
            962,
            4,
            11,
            44,
            145,
            3591,
            -1,
            -1,
            1,
            1688,
            "{}",
            "{}",
            1666780041
        ],
        [
            1614645,
            1,
            289,
            266,
            -1,
            0,
            8,
            146,
            3591,
            -1,
            -1,
            1,
            1687,
            "{}",
            "{}",
            1665484915
        ],
        [
            252601,
            1,
            225,
            194,
            -1,
            1,
            11,
            147,
            3591,
            -1,
            -1,
            1,
            1686,
            "{}",
            "{}",
            1666249913
        ],
        [
            4665,
            1,
            177,
            139,
            -1,
            1,
            2,
            148,
            3591,
            -1,
            -1,
            1,
            1685,
            "{}",
            "{}",
            1666368143
        ],
        [
            95624,
            1,
            443,
            398,
            1,
            2,
            10,
            149,
            3591,
            -1,
            -1,
            1,
            1684,
            "{}",
            "{}",
            1666673049
        ],
        [
            632665,
            1,
            240,
            211,
            -2,
            0,
            7,
            150,
            3591,
            -1,
            -1,
            1,
            1682,
            "{}",
            "{}",
            1666278831
        ],
        [
            127394,
            1,
            2105,
            2109,
            2,
            7,
            62,
            151,
            3591,
            -1,
            -1,
            1,
            1681,
            "{}",
            "{}",
            1666053008
        ],
        [
            119545,
            1,
            515,
            457,
            1,
            2,
            11,
            152,
            3591,
            -1,
            -1,
            1,
            1681,
            "{}",
            "{}",
            1666727372
        ],
        [
            1310515,
            1,
            236,
            206,
            2,
            0,
            4,
            153,
            3591,
            -1,
            -1,
            1,
            1679,
            "{}",
            "{}",
            1665678476
        ],
        [
            37450,
            1,
            1235,
            1242,
            1,
            15,
            53,
            154,
            3591,
            -1,
            -1,
            1,
            1675,
            "{}",
            "{}",
            1666552162
        ],
        [
            1595029,
            1,
            768,
            745,
            1,
            0,
            14,
            155,
            3591,
            -1,
            -1,
            1,
            1675,
            "{}",
            "{}",
            1664397639
        ],
        [
            1242720,
            1,
            313,
            278,
            2,
            1,
            5,
            156,
            3591,
            -1,
            -1,
            1,
            1675,
            "{}",
            "{}",
            1665982138
        ],
        [
            1489522,
            1,
            482,
            433,
            -1,
            0,
            2,
            157,
            3591,
            -1,
            -1,
            1,
            1674,
            "{}",
            "{}",
            1664434500
        ],
        [
            13411,
            1,
            706,
            577,
            1,
            4,
            28,
            158,
            3591,
            -1,
            -1,
            1,
            1674,
            "{}",
            "{}",
            1666762997
        ],
        [
            386776,
            1,
            1339,
            1262,
            1,
            1,
            14,
            159,
            3591,
            -1,
            -1,
            1,
            1673,
            "{}",
            "{}",
            1666802613
        ],
        [
            2171894,
            1,
            73,
            46,
            3,
            0,
            1,
            160,
            3591,
            -1,
            -1,
            1,
            1670,
            "{}",
            "{}",
            1665435063
        ],
        [
            18028,
            1,
            125,
            97,
            1,
            0,
            4,
            161,
            3591,
            -1,
            -1,
            1,
            1670,
            "{}",
            "{}",
            1666647010
        ],
        [
            238589,
            1,
            100,
            79,
            1,
            0,
            0,
            162,
            3591,
            -1,
            -1,
            1,
            1669,
            "{}",
            "{}",
            1666513270
        ],
        [
            1034294,
            1,
            928,
            846,
            3,
            1,
            8,
            163,
            3591,
            -1,
            -1,
            1,
            1667,
            "{}",
            "{}",
            1665235295
        ],
        [
            8314,
            1,
            450,
            396,
            2,
            7,
            8,
            164,
            3591,
            -1,
            -1,
            1,
            1666,
            "{}",
            "{}",
            1666086881
        ],
        [
            725198,
            1,
            567,
            529,
            -1,
            4,
            5,
            165,
            3591,
            -1,
            -1,
            1,
            1666,
            "{}",
            "{}",
            1666806653
        ],
        [
            172222,
            1,
            1454,
            1403,
            -1,
            14,
            78,
            166,
            3591,
            -1,
            -1,
            1,
            1665,
            "{}",
            "{}",
            1666190662
        ],
        [
            354414,
            1,
            116,
            73,
            -1,
            1,
            0,
            167,
            3591,
            -1,
            -1,
            1,
            1663,
            "{}",
            "{}",
            1666326247
        ],
        [
            2421862,
            1,
            451,
            412,
            2,
            0,
            21,
            168,
            3591,
            -1,
            -1,
            1,
            1663,
            "{}",
            "{}",
            1666645779
        ],
        [
            141529,
            1,
            81,
            49,
            3,
            1,
            8,
            169,
            3591,
            -1,
            -1,
            1,
            1663,
            "{}",
            "{}",
            1666767668
        ],
        [
            841344,
            1,
            320,
            288,
            1,
            1,
            1,
            170,
            3591,
            -1,
            -1,
            1,
            1662,
            "{}",
            "{}",
            1666744691
        ],
        [
            2275255,
            1,
            26,
            8,
            -1,
            0,
            0,
            171,
            3591,
            -1,
            -1,
            1,
            1662,
            "{}",
            "{}",
            1666374026
        ],
        [
            1356890,
            1,
            139,
            118,
            -2,
            0,
            1,
            172,
            3591,
            -1,
            -1,
            1,
            1661,
            "{}",
            "{}",
            1666144782
        ],
        [
            25055,
            1,
            465,
            432,
            5,
            6,
            28,
            173,
            3591,
            -1,
            -1,
            1,
            1658,
            "{}",
            "{}",
            1666254595
        ],
        [
            849429,
            1,
            1004,
            943,
            -3,
            4,
            35,
            174,
            3591,
            -1,
            -1,
            1,
            1657,
            "{}",
            "{}",
            1666521310
        ],
        [
            54071,
            1,
            141,
            114,
            1,
            0,
            3,
            175,
            3591,
            -1,
            -1,
            1,
            1657,
            "{}",
            "{}",
            1666259769
        ],
        [
            105193,
            1,
            70,
            50,
            -1,
            0,
            1,
            176,
            3591,
            -1,
            -1,
            1,
            1657,
            "{}",
            "{}",
            1665968740
        ],
        [
            36443,
            1,
            1086,
            1024,
            1,
            3,
            7,
            177,
            3591,
            -1,
            -1,
            1,
            1656,
            "{}",
            "{}",
            1666805901
        ],
        [
            2519926,
            1,
            42,
            14,
            -1,
            0,
            0,
            178,
            3591,
            -1,
            -1,
            1,
            1654,
            "{}",
            "{}",
            1666804421
        ],
        [
            1072275,
            1,
            42,
            28,
            -3,
            0,
            0,
            179,
            3591,
            -1,
            -1,
            1,
            1652,
            "{}",
            "{}",
            1666303268
        ],
        [
            104679,
            1,
            554,
            521,
            2,
            2,
            8,
            180,
            3591,
            -1,
            -1,
            1,
            1652,
            "{}",
            "{}",
            1665885205
        ],
        [
            2404288,
            1,
            220,
            195,
            2,
            0,
            2,
            181,
            3591,
            -1,
            -1,
            1,
            1648,
            "{}",
            "{}",
            1664995834
        ],
        [
            121498,
            1,
            62,
            41,
            -1,
            0,
            1,
            182,
            3591,
            -1,
            -1,
            1,
            1648,
            "{}",
            "{}",
            1666806171
        ],
        [
            1080915,
            1,
            153,
            125,
            1,
            0,
            0,
            183,
            3591,
            -1,
            -1,
            1,
            1648,
            "{}",
            "{}",
            1665165051
        ],
        [
            608823,
            1,
            600,
            582,
            -1,
            0,
            18,
            184,
            3591,
            -1,
            -1,
            1,
            1647,
            "{}",
            "{}",
            1666796868
        ],
        [
            688899,
            1,
            488,
            449,
            1,
            0,
            2,
            185,
            3591,
            -1,
            -1,
            1,
            1646,
            "{}",
            "{}",
            1666804941
        ],
        [
            692689,
            1,
            414,
            381,
            -3,
            15,
            13,
            186,
            3591,
            -1,
            -1,
            1,
            1641,
            "{}",
            "{}",
            1666648966
        ],
        [
            41231,
            1,
            311,
            272,
            1,
            0,
            9,
            187,
            3591,
            -1,
            -1,
            1,
            1641,
            "{}",
            "{}",
            1665907671
        ],
        [
            2430884,
            1,
            96,
            60,
            2,
            0,
            6,
            188,
            3591,
            -1,
            -1,
            1,
            1638,
            "{}",
            "{}",
            1666628304
        ],
        [
            81535,
            1,
            341,
            314,
            -3,
            0,
            3,
            189,
            3591,
            -1,
            -1,
            1,
            1637,
            "{}",
            "{}",
            1666795964
        ],
        [
            31844,
            1,
            1239,
            1214,
            3,
            1,
            13,
            190,
            3591,
            -1,
            -1,
            1,
            1637,
            "{}",
            "{}",
            1666809397
        ],
        [
            2475433,
            1,
            46,
            24,
            4,
            0,
            1,
            191,
            3591,
            -1,
            -1,
            1,
            1634,
            "{}",
            "{}",
            1665911643
        ],
        [
            684172,
            1,
            60,
            40,
            3,
            0,
            1,
            192,
            3591,
            -1,
            -1,
            1,
            1633,
            "{}",
            "{}",
            1665419631
        ],
        [
            2113300,
            1,
            479,
            461,
            -1,
            0,
            8,
            193,
            3591,
            -1,
            -1,
            1,
            1633,
            "{}",
            "{}",
            1666808985
        ],
        [
            21734,
            1,
            368,
            360,
            1,
            0,
            6,
            194,
            3591,
            -1,
            -1,
            1,
            1632,
            "{}",
            "{}",
            1666807514
        ],
        [
            1355487,
            1,
            66,
            35,
            13,
            0,
            1,
            195,
            3591,
            -1,
            -1,
            1,
            1631,
            "{}",
            "{}",
            1666349901
        ]
    ]
]

[GET] /game/Leaderboard/getPartyStat

AUTHENTICATION

AoE2:DE

Request

GET /game/Leaderboard/getPartyStat?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz&statsids=[1,2] HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
statsidsarray[int][2,3]

Response

[
    0, // result status code
    [
        [
            4037175,
            "",
            "",
            1,
            [
                4994658
            ]
        ],
        [
            33833,
            "",
            "",
            1,
            [
                233334 // self profile_id
            ]
        ]
    ],
    [
        [
            3180,
            4994658,
            "/steam/76561198841236701", // steam_id
            "{\"icon\":\"PR7-086\"}",
            "Atjov_", // in-game name
            "",
            4037175,
            151,
            1,
            0,
            null,
            "76561198841236701", // steam_id clean
            3,
            []
        ],
        [
            9813,
            233334,
            "/steam/76561197922222223", // self steam_id
            "{\"icon\":\"PR2-004\"}",
            "XXX", // self in-game name
            "",
            33833,
            1,
            1,
            0,
            null,
            "76561197922222223", // self clean steam_id
            3,
            []
        ]
    ],
    [
        [
            33833,
            0,
            0,
            1,
            -1,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            986,
            1574923518
        ],
        [
            33833,
            3,
            1,
            0,
            1,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            1050,
            1666400512
        ],
        [
            4037175,
            0,
            18,
            10,
            6,
            0,
            0,
            57043,
            178521,
            20733,
            67093,
            1,
            1181,
            1664054342
        ],
        [
            4037175,
            8,
            1,
            0,
            1,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            1051,
            1631381819
        ],
        [
            4037175,
            3,
            82,
            81,
            -2,
            0,
            3,
            32119,
            39032,
            13021,
            15934,
            1,
            794,
            1666400512
        ],
        [
            4037175,
            4,
            7,
            11,
            2,
            0,
            1,
            -1,
            62642,
            -1,
            25180,
            0,
            850,
            1662682573
        ],
        [
            4037175,
            13,
            16,
            20,
            -1,
            0,
            1,
            2397,
            2666,
            956,
            1044,
            1,
            783,
            1665438962
        ],
        [
            4037175,
            14,
            3,
            7,
            -4,
            0,
            1,
            -1,
            2840,
            -1,
            986,
            0,
            835,
            1640210227
        ]
    ]
]

AoE4

Request

GET /game/Leaderboard/getPartyStat?callNum=233&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=2942957&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&statsids=%5B4275156%5D HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
statsidsarray[int][2,3]

Response

[
    0, // result status code
    [
        [
            4275156,
            "",
            "",
            1,
            [
                233334
            ]
        ]
    ],
    [
        [
            31,
            233334,
            "/steam/765611933367299", // self full steam_id
            "",
            "DSADAS", // self steam_name
            "",
            4275156,
            735,
            4,
            0,
            null,
            "765611933367299", self steam_id64
            3,
            []
        ]
    ],
    [
        [
            4275156,
            -1,
            2,
            0,
            2,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            1000,
            1666826657
        ]
    ]
]

[GET] /game/Leaderboard/getPersonalStat (Missing Request, Parameters, Response)

AUTHENTICATION

Request, Parameters, Response

AoE2:DE

Request

REQUEST_TEMPLATE

PARAMETERS_TEMPLATE

Response

RESPONSE_TEMPLATE

[GET/POST] /game/Leaderboard/getRecentMatchHistory

AUTHENTICATION

AoE3:DE POST REQUEST!

AoE2:DE

Request

GET /game/Leaderboard/getRecentMatchHistory?callNum=123&connect_id=ccc&lastCallTime=111&profile_ids=[1,1]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
profile_idsarray[int][2132331,31323213]

Response (Basic)

[
    0, // result status code
    [
        [
            125793154, // match_id
            1627373,
            "my map",
            8,
            0,
            // zlib compressed settings 
            "eNpFUl1vgzAM/C/9BXxG2iNV0oluTsQUNLHHsipa2AqaNEH49XMSp+XpFN+dzzaHznQNfgXYOWtWRLxh0NDbvvwdPeTTpiyssS7YJWoqaZc6vrUMOtLoeT16xIdV2UZ4qLhBDXiY49vFA6mBvWXV7yX7fL2ezi/APyS8n3U/ze56W757nT1F7wHz9EGLGUugvFJjttDHZI8+PbvGHKWyYx71JmXL5T47ylaonypopB1RE7LVynbhDbTfweDhhvNskgvi3r0Kpec8eo04Zx/ru8B6yFpi1o1yb7DPOe0UveYt7lTgLsb1aAIulBVOdsTZkRO8RaWsoUwTepvojXXgzUqeDnjaeYt3EqfAty2TtBewwMCELA77FzRb6bOA7YnfM7jzhzSHwywF7dwpPu80M2Y3z5E7eR31hzLdQu5DukUNPN0Kqkd9TP9RLm2at3PKtnTLKdVLxZea+tbqNkW9Nuk/rYJ/2KnZ1FdGXga9JvKCxM3xbu7wD8aB4/c=",
            // zlib compressed player data 
            "eNrN1F1rgzAUBuD9lly7kRw10cJuuk5wrB/a2ZWNXYQamVi1qBuUsf8+DS0ubBl45a4Sc4Lh4c0JAeP5Ax2qMkn3wi+S8iqN0YRQYCYzDVQ3vEnLwp+1awZqBM+7KTZQwnfnQvtV8Z3opibt5kV2L97F/lQpsjlvdq8Px4Pcctn9J83FSlRexXMxX8t9aR0KHh/lMd2hb7VczkXDZ7zhaIL8zDPDyJsGkWcFj3E33kbbeBrJtXAaZLK2iDZyvNlsDtuwCM91b7X2r9Gn8RNrYYKZ6SpY6LFEhyXjW5/IQCthNnNtUINlPRa0WDa6dhkMTdZ2XQuAqlqn15paLR4/2/j3bO+0WgBCwCGK1u6xlg4L41/k5eCmJQzj9jIrWNpjbW2y/wCr6dqFPlnboZQpVre3Uq3VHf8WD+5ZChjaR0rt2W9aptVa4ycb//kev1x8AchgSzY=",
            "FFA Land Nomad (all random)", // name
            1635439384, // started
            1635446922, // finished
            0,
            [
                [
                    125793154,
                    1627373, // profile_id
                    0, // won
                    0,
                    36,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    4010739,
                    0,
                    1,
                    1,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    1757952,
                    0,
                    2,
                    17,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    5994226,
                    0,
                    3,
                    10,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    2211281,
                    0,
                    4,
                    21,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    1700175,
                    1,
                    5,
                    11,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    258667,
                    0,
                    6,
                    19,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ],
                [
                    125793154,
                    6202757,
                    0,
                    7,
                    14,
                    1,
                    "{}",
                    "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
                    1635439384
                ]
            ],
            [],
            [],
            [
                "INVALID",
                "INVALID",
                "INVALID",
                0,
                0,
                54684,
                56950784
            ]
        ],
    ...
    ]
]

Response (Match Settings)

// which boolean are inverted???
[
    'F',
    '62:3', // difficulty
    '0:0', // starting age
    '63:n', // full tech tree
    '93:30',
    '1:n', // allow cheats
    '88:y',
    '2:1',
    '61:0',
    '60:0',
    '90:n', // empire wars mode (inverted!)
    '5:0', // ending age
    '53:ZbSZcn1M/0msawKzRjbraw==',
    '6:0', // game mode
    '52:72',
    '65:n',
    '86:0',
    '96:',
    '1',
    '87:y',
    '7:75',
    '8:0',
    '57:2', // public or private lobby, 0 is private 2 is public
    '66:n', // lock speed
    '67:y',  // lock teams (inverted!)
    '9:4', // map size
    '10:0',
    '11:9', // location
    '94:0',
    '85:',
    '1',
    '84:',
    '1',
    '68:1',
    '69:5',
    '70:5',
    '71:1',
    '72:10',
    '13:50',
    '14:1',
    '15:70',
    '16:125',
    '17:1',
    '18:8',
    '19:1',
    '73:10000',
    '20:0',
    '21:1',
    '22:60',
    '23:2',
    '24:60',
    '74:125',
    '25:20',
    '26:1',
    '27:62',
    '28:3',
    '75:8',
    '29:150', // population
    '37:0',
    '76:y', // record game
    '92:n', // regicide mode (inverted!)
    '38:0', // resources
    '77:n', // shared exploration (inverted!)
    '56:1',
    '42:3', // speed
    '91:n', // sudden death mode (inverted!)
    '78:n', // team positions
    '79:y', // team together
    '58:5', // treaty length
    '80:n', // turbo mode (inverted!)
    '81:',
    '1',
    '82:9', // victory
    '83:0', // reveal map
    '59:2'
]
//    "39:default0.aoe2scenario" // custom scenario
//    "39:35319" // coop campaign

Response (Player Data)

12,
[
   {
      "profileInfo.id":369536,
      "stationID":1,
      "teamID":0,
      "factionID":0,
      "raceID":9,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":1,
      "status":0,
      // double base64 encoded player info
      "metaData":"IkF3RUFBQUF3QVFBQUFERVRBQUFBVTJObGJtRnlhVzlRYkdGNVpYSkpibVJsZUFFQUFBQXhCQUFBQUZSbFlXMEJBQUFBTWc9PSI="
   },
   {
      "profileInfo.id":262049,
      "stationID":2,
      "teamID":1,
      "factionID":0,
      "raceID":21,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":1,
      "status":0,
      "metaData":"IkF3RUFBQUF3QVFBQUFEQVRBQUFBVTJObGJtRnlhVzlRYkdGNVpYSkpibVJsZUFFQUFBQXdCQUFBQUZSbFlXMEJBQUFBTXc9PSI="
   },
   {
      "profileInfo.id":270315,
      "stationID":3,
      "teamID":0,
      "factionID":0,
      "raceID":16,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":1,
      "status":0,
      "metaData":"IkF3RUFBQUF3QVFBQUFEVVRBQUFBVTJObGJtRnlhVzlRYkdGNVpYSkpibVJsZUFFQUFBQTFCQUFBQUZSbFlXMEJBQUFBTWc9PSI="
   },
   {
      "profileInfo.id":3101322,
      "stationID":4,
      "teamID":1,
      "factionID":0,
      "raceID":30,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":1,
      "status":0,
      "metaData":"IkF3RUFBQUF3QVFBQUFESVRBQUFBVTJObGJtRnlhVzlRYkdGNVpYSkpibVJsZUFFQUFBQXlCQUFBQUZSbFlXMEJBQUFBTXc9PSI="
   },
   {
      "profileInfo.id":280742,
      "stationID":6,
      "teamID":0,
      "factionID":0,
      "raceID":2,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":1,
      "status":0,
      "metaData":"IkF3RUFBQUF3QVFBQUFETVRBQUFBVTJObGJtRnlhVzlRYkdGNVpYSkpibVJsZUFFQUFBQXpCQUFBQUZSbFlXMEJBQUFBTWc9PSI="
   },
   {
      "profileInfo.id":1264695,
      "stationID":5,
      "teamID":1,
      "factionID":0,
      "raceID":24,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":1,
      "status":0,
      "metaData":"IkF3RUFBQUF3QVFBQUFEUVRBQUFBVTJObGJtRnlhVzlRYkdGNVpYSkpibVJsZUFFQUFBQTBCQUFBQUZSbFlXMEJBQUFBTXc9PSI="
   }
]

AoE3:DE

Request

POST /game/Leaderboard/getRecentMatchHistory?callNum=18&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=6989&profile_ids=%5B9655781%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 137

callNum=18&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=6989&profile_ids=[9655781]&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idsarray[int][2132331,31323213]
sessionIDstr

Response (Basic)

[
   0,
   // Recent Matches
   [
      [...],
      [...],
          [
      15230147,
      9146295,
      "set_landmaps",
      8,
      0,
      "eNpdkMEKwjAQRP2WnD0oeJDealEPIkjtD6zN0gbTbMmmaBH/3U1pafGWeRMmM/mo5nEv0YE3dIYGVbJZC8qRA3nUC5QRtbOMpyvpUeVYGXIqUUxdqBE4ABtQ4tyA+UVeixflFd43Cz16Vsl+jLm3iOJvJxnAB+OqtFo8dXR6Qru/e1KVOl8ijz2jl1pLr0yKBJ4zTsbKzjhAWXC6gZZjpbyzWHjQMsdRS7YfJw1YEvrCTKMju1CoZ3WwVD5h+Ibv6gd7KW/B",
      "eNq9001rwzAMBuD9Fp/dYvkjsXMug0ILo9tt7CBShZk2SUm8QRn9711CR2dYIJf59oKE/WBLIPnrFzt1beWPtG6qdun3rHCgM+kMZ33A4NtmvWIFcBYI61ussPwpCM46LGmI+RCbw4Y+6XgrNIcthvL95XwaOxbDMb6mJ+oeO6xp+zz2+X5HuD+Pebjzox9jTQFXGJAVjF34n84chIycaoZTisRQ46x1Ko+g5g6VU1Cd2glOSZ1FTjfDmf7jzfeAushp70415VSJncrYXOnYCWIGFFI/aKalEfGAwq+VF1NQkxiqwVow8cqDnLHz8K8z+vZwBa+fov4=",
      "2v2v2v2",
      1645630662,
      1645632973,
      0,
      [
        [
          15230147,
          9146295,
          0,
          1,
          7,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          9147102,
          0,
          1,
          20,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          5988937,
          0,
          2,
          4,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          5193246,
          0,
          2,
          7,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          9156299,
          1,
          3,
          3,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          3587349,
          1,
          3,
          1,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          9642507,
          0,
          0,
          5,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ],
        [
          15230147,
          4188152,
          0,
          1,
          17,
          0,
          "{\"rankedMatch\":0}",
          "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{}}",
          1645630662
        ]
      ],
      [],
      [],
      [
        "INVALID",
        "INVALID",
        "INVALID",
        0,
        1140697078,
        -1150490902,
        0
      ]
    ],
      ...
      [],
      
   ]
]

Response (Match Settings)

{
    "mbScenarioGame":0,
    "mbRestoredGame":0,
    "mbCoopGame":0,
    "mGameMode":0,
    "mRegion":"southeastasia",
    "mPassword":"",
    "mMaxPlayers":8,
    "mGameSpeed":1,
    "mGameStartingAge":0,
    "mGameEndingAge":4,
    "mGameStartingResources":0,
    "mbGameAllowCheats":0,
    "mGameFilename":"landmaps",
    "mRuleTradeMonopoly":0,
    "mRuleTreatyTime":0,
    "mRuleKoth":0,
    "mRuleBlockade":0
}

Response (Player Data)

12,
[
   {
      "profileInfo.id":9146295,
      "stationID":1,
      "teamID":1,
      "factionID":0,
      "raceID":17,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":9147102,
      "stationID":2,
      "teamID":1,
      "factionID":0,
      "raceID":20,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":5509445,
      "stationID":5,
      "teamID":2,
      "factionID":0,
      "raceID":7,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":9654828,
      "stationID":6,
      "teamID":2,
      "factionID":0,
      "raceID":2,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":7556510,
      "stationID":7,
      "teamID":3,
      "factionID":0,
      "raceID":11,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":3,
      "factionID":0,
      "raceID":1,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":3591798,
      "stationID":10,
      "teamID":0,
      "factionID":0,
      "raceID":17,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":3,
      "factionID":0,
      "raceID":2,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":2,
      "metaData":""
   }
]

AoE4

Request

GET /game/Leaderboard/getRecentMatchHistory?callNum=198&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=2584339&profile_ids=%5B233334%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idsarray[int][2132331,31323213]
sessionIDstr

Response (Basic)

[
   0,
   // Recent Matches
   [
      [...],
      [...],
      [
         // Current match unique id?
         22951120,
         // Relic id
         7791626,
         "generated_map",
         16,
         0,
         // Gzip / zLib compress data contains map details, mods (need to look more)
         "eNqtUdFugjAU3bfc15GMCjgw8aFM48wWdc63xSwdFEYs0EDVMeK/77Yg/sD60N5zTnvvPb0t5EzuGslhQiw4Z8ULbzB0A5cEAUEqzhIj1YpVqr7eWksdfwB9m4dg4UEpTadT2FtQFTHeIiPbtT0y8iwQZXSAiW3BMUMlIL7tuj6myZmKvk05gB49JSlMRv4Yy4lSGQRJirmfXdzCe9zov2CKvfY1N+FiiX3Bg17nnpcrlvOuMcEaXmmzeyMsePH+iwYD3xuTK/PKmvKokB07zo0NsxKpR8ch9vD09osdsdW/NcjrU2VMt5B/xkwx3cFleBvxYpgUE6I8z3/U5lDf8JbLK87LuJtRq8MNizTfXoww49L4QSSTZXHqfMpkxVUXZvXsK+1GVnMqRMaKiO84y3Xuy90f0bel5w==",
         
         // Gzip / zLib compress data contains Player details of the current match
         "eNrtVVGPojAQvt/is3eBImj3bV0FIYqKAsLlHijFiBQ0WmHxcv/9WnBXdy/mcskldyT7QGj7TWe+mU6/iqD99Xtrf9itYxLp2Xr3JcatBwV2lB4Q2q0jDWi8y/RB6wG0WzQKUj5kwDoIXwA2OwRhxIcigEDp8nmWjKM8Ihc0SyYBDTfLcl+ZfRaZrziNZtFBPQRpNFlUdvHRigJcVmMe+HSshmlEg0FAg9ZDKyoNugLkZAGV+gtdmTwVMXLgHmU+QZmVhxlZ+K6aRBxbVFiBNFX2V8Z1vd5Teq6cICAusaaWWO3nISBC4MKTvt09j59YHMkUvJXB1uTM1uA5WFl7BDrxNBZqHIi5r/Y3HqCzcMQx+axv9109fV2v5mvOw4WJpTlFWOqKK4rw3X6Nccw4duFGEbDmnmseLA1KKH3OPdeahynMwtQ513adYjJ45N+RxVuj1CG+5iRLFicUzBy7ssDyKOo4MvFdi/hDFm9kDpGET0iDG25/tXnlYqDEKVms8pLLmuWf+KvNzfqOXmr7ynPhymqYGXkY64qeqP25fe8bwtnCuOSv7m2N+QTw5LnPezxKWG31+AVbVhyhiJ90xRzosjlIgHlm/zr2Fkkm9dmZeAIssEZylE3iaXasztxzyQmr5jbQHOrbZHjNZR5Pt/NyupzL5jZkf7uqHx6RouqnkVDNQ01lPcVrTijrAZnlHI/LXj4uoTRbCjVHqb9htRFs4GzZ2Se/s3NGxh6xGHrM8V6OzwLU4+KGr0XCjOVzzw8wWD0wsbkfVy2j976ymjvWnA2y1SPSyAalJuG+LMfc8vpffaklWpG+l5Ij72t/xWpHKL7BnFDD7I4wTlXP1r4ZNxo5zont4b2NVvVZJEiQc6waLJ6VI5col1o+tn60fxWXbheKClDeiIt0FRfxrrhIHRmA/1xcFh/i8iEuH+Lyz8SF3/4bXanE4CIs4J6wCH9TU8Q3mvKnHKUGcOw0gKPcAI5KAzh2G8Cx1wCOsAEcRaEJJMUmkGzCUyM24a0Rm/DYiP/mtfn26Sf2tbeL",
         // Match name incase of custom game or AUTOMATCH if quick match
         "AUTOMATCH", 
         // Match Started Timestamp
         1642755573,
         // Match Started Timestamp
         1642756029,
         0,
         // List of players in this game
         [
            [
               22951120, // Current match uid?
               6946820, // relic id
               1,
               0, // team id
               129267, // civ id
               224,
               
               "{\"abil\":3,\"addonkill\":0,\"blost\":0,\"bprod\":1,\"cabil\":0,\"cflags\":0,\"cpearn\":0,\"dmgdone\":0,\"edeaths\":0,\"ekills\":0,\"elitekill\":0,\"erein\":0,\"gammaspnt\":0,\"gt\":437,\"inactperiod\":94,\"lowintperiod\":0,\"objdmh\":0,\"pcap\":0,\"plost\":0,\"popmax\":0,\"powearn\":0,\"powmax\":0,\"powspnt\":0,\"precap\":0,\"reqearn\":0,\"reqmax\":0,\"reqspnt\":0,\"sqkill\":0,\"sqlost\":0,\"sqprod\":4,\"structdmg\":0,\"svetrank\":0,\"svetxp\":0,\"totalcmds\":302,\"unitprod\":4,\"upg\":0,\"vabnd\":0,\"vcap\":0,\"vkill\":0,\"vlost\":0,\"vp0\":0,\"vp1\":0,\"vprod\":0,\"vvetrank\":0,\"vvetxp\":0,\"wpnpu\":0}",
               winReason
               "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{\"optionsVersion\":\"5\",\"statsVersion\":\"2004\",\"winReason\":\"Elimination\"}}",
               1642755573
            ],
            [
               22951120,
               7791626,
               0,
               1,
               134522,
               24,
               "{\"abil\":0,\"addonkill\":0,\"blost\":0,\"bprod\":2,\"cabil\":0,\"cflags\":0,\"cpearn\":0,\"dmgdone\":0,\"edeaths\":0,\"ekills\":0,\"elitekill\":0,\"erein\":0,\"gammaspnt\":0,\"gt\":437,\"inactperiod\":348,\"lowintperiod\":240,\"objdmh\":0,\"pcap\":0,\"plost\":0,\"popmax\":0,\"powearn\":0,\"powmax\":0,\"powspnt\":0,\"precap\":0,\"reqearn\":0,\"reqmax\":0,\"reqspnt\":0,\"sqkill\":0,\"sqlost\":0,\"sqprod\":0,\"structdmg\":0,\"svetrank\":0,\"svetxp\":0,\"totalcmds\":66,\"unitprod\":0,\"upg\":0,\"vabnd\":0,\"vcap\":0,\"vkill\":0,\"vlost\":0,\"vp0\":0,\"vp1\":0,\"vprod\":0,\"vvetrank\":0,\"vvetxp\":0,\"wpnpu\":0}",
               "{\"itemUpdates\":[],\"challengeUpdates\":[],\"clientUpdates\":{\"optionsVersion\":\"5\",\"statsVersion\":\"2004\",\"winReason\":\"Elimination\"}}",
               1642755573
            ]
         ],
         [
            [
               6946820,
               22951120,
               1667103,
               451704,
               0,
               1,
               "",
               2
            ],
            [
               6946820,
               22951120,
               257568664,
               453137,
               0,
               1,
               "{\"att\":{\"is_new\":{\"val\":\"0\"}}}",
               5
            ],
            [
               7791626,
               22951120,
               114708487,
               451806,
               0,
               1,
               "",
               2
            ],
            [
               7791626,
               22951120,
               249761767,
               453135,
               0,
               1,
               "{\"att\":{\"is_new\":{\"val\":\"0\"}}}",
               5
            ]
         ],
         [

         ],
         [
            "INVALID",
            "INVALID",
            "INVALID",
            0,
            725689794,
            10257,
            0
         ]
      ],
      ...
      [],
      
   ]
]

Response (Match Settings)

{
    "mapType": 1,
    "winKey": 149419911,
    "dif": 1,
    "starts": 1,
    "winOpts": ["AQAA", "AQAAAA=="], // game setup see below
    "rnd": 3441690494,
    "lock": 0,
    "uid": 110946337,
    "matchKey": "",
    "matchCfg": 286,
    "slotCfg": "fgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAA==",
    "matchPBGId": "/////w==",
    "mapName": "",
    "layers": [],
    "mapGenSz": 129303,
    "mapGenLayout": 163361, // map (here: dry arabia)
    "mapGenBio": 167578, // map biome
    "mapGenStarts": 1, // map team starting locations (0 = random locations)
    "mapGenRnd": 0, // map seed 8 characters (0123456789abcdef). '12a' = 256*1 + 16*2 + 1*10 = 298
    "mapGenOvrCfg": {"m_data": ""},
    "mapGenScenType": 1,
    "allowExtPks": 1,
    "allowRepPks": 1,
    "modOpts": {"modPacks": {}, "modDeps": []},
    "pfInv": "",
    "pfNet": "",
    "isDbg": 0,
    "useAllianceTeams": 1
}

NOTE: Only public games are found by findAdvertisements

// Sandbox
winOpts: [ 'AA==' ],

xA
starting res: standard=A, high=Q

// Standard
winOpts: [ 'AAAA', 'AAMBAg==' ],

AAAA
nothing

xQxx
landmarks

xxEx
sacred

xxxB
wonder

AAAAAA==

xQxxxx
display player scores: no=A, yes=Q

xxAxxx
starting res: standard=A, high=E, very high=I, maximum=M

xxxAxx
starting age: age I=A, age II=B, age III=C, age IV=D

xxxxxA
map state: concealed=A, revealed=g, explored=Q,

Response (Player Data)

12,
[
   {
      "profileInfo.id":209525,
      "stationID":1,
      "teamID":0,
      "factionID":0,
      "raceID":131384,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":0,
      "metaData":"eyJtX2luR2FtZSI6MCwibV9pbnZlbnRvcnlSZWFkeSI6MCwibV9wbGF5ZXJSZWFkeSI6MCwibV9yYW5kb21TdGFydFBvc2l0aW9uIjoxLCJtX3N0YXJ0aW5nUG9zaXRpb24iOi0xLCJtX21vZFBhY2tPcHRpb25zIjp7Im1vZFBhY2tzIjp7fSwibW9kRGVwcyI6W119LCJtX21vZFBhY2tGbGFncyI6MCwibV9tb2RQYWNrRG93bmxvYWRQcm9ncmVzcyI6MC4wMDAwMDAsIm1fbmVlZGVkTW9kc0NvdW50IjowLCJtX25lZWRlZE1vZHNEb3dubG9hZGVkIjowLCJtX21vZFBhY2tJbkVycm9yIjp7Im1faW5kZXhJbkVycm9yIjotMSwibV9tb2RQYWNrSW5FcnJvciI6IkFBQUFBQUFBQUFBQUFBQUFBQUFBQUE9PSJ9LCJtX2FpUGVyc29uYWxpdHkiOiIiLCJtX2FpTG9hZG91dCI6NDI5NDk2NzI5NSwibV9jb3NtZXRpY09wdGlvbnMiOnsibV9wYWludFNjaGVtZUlEIjp7Im1faWQiOjQyOTQ5NjcyOTUsIm1fdHlwZSI6MH0sIm1fcGFpbnRQcmltYXJ5IjoiLy8vLy93PT0iLCJtX3BhaW50U2Vjb25kYXJ5IjoiLy8vLy93PT0iLCJtX3BhaW50VHJpbSI6Ii8vLy8vdz09IiwibV9wYWludFRlcnRpYXJ5IjoiLy8vLy93PT0iLCJtX2JhZGdlUHJpbWFyeSI6Ii8vLy8vdz09In0sIm1fdGVhbUFsbGlhbmNlIjoiRVNjQUFBPT0iLCJtX2FybXlBYmlsaXRpZXMiOltdLCJtX2FybXlVcGdyYWRlcyI6W10sIm1fYXJteVVuaXRzIjpbXSwibV9kb05vdFJhbmRvbWl6ZSI6MH0A"
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":1,
      "factionID":0,
      "raceID":106553,
      "rankLevel":1,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":2,
      "metaData":"eyJtX2luR2FtZSI6MCwibV9pbnZlbnRvcnlSZWFkeSI6MCwibV9wbGF5ZXJSZWFkeSI6MCwibV9yYW5kb21TdGFydFBvc2l0aW9uIjoxLCJtX3N0YXJ0aW5nUG9zaXRpb24iOi0xLCJtX21vZFBhY2tPcHRpb25zIjp7Im1vZFBhY2tzIjp7fSwibW9kRGVwcyI6W119LCJtX21vZFBhY2tGbGFncyI6MCwibV9tb2RQYWNrRG93bmxvYWRQcm9ncmVzcyI6MC4wMDAwMDAsIm1fbmVlZGVkTW9kc0NvdW50IjowLCJtX25lZWRlZE1vZHNEb3dubG9hZGVkIjowLCJtX21vZFBhY2tJbkVycm9yIjp7Im1faW5kZXhJbkVycm9yIjotMSwibV9tb2RQYWNrSW5FcnJvciI6IkFBQUFBQUFBQUFBQUFBQUFBQUFBQUE9PSJ9LCJtX2FpUGVyc29uYWxpdHkiOiIiLCJtX2FpTG9hZG91dCI6NDI5NDk2NzI5NSwibV9jb3NtZXRpY09wdGlvbnMiOnsibV9wYWludFNjaGVtZUlEIjp7Im1faWQiOjQyOTQ5NjcyOTUsIm1fdHlwZSI6MH0sIm1fcGFpbnRQcmltYXJ5IjoiLy8vLy93PT0iLCJtX3BhaW50U2Vjb25kYXJ5IjoiLy8vLy93PT0iLCJtX3BhaW50VHJpbSI6Ii8vLy8vdz09IiwibV9wYWludFRlcnRpYXJ5IjoiLy8vLy93PT0iLCJtX2JhZGdlUHJpbWFyeSI6Ii8vLy8vdz09In0sIm1fdGVhbUFsbGlhbmNlIjoiRVNjQUFBPT0iLCJtX2FybXlBYmlsaXRpZXMiOltdLCJtX2FybXlVcGdyYWRlcyI6W10sIm1fYXJteVVuaXRzIjpbXSwibV9kb05vdFJhbmRvbWl6ZSI6MH0A"
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":2,
      "factionID":0,
      "raceID":131384,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":3,
      "factionID":0,
      "raceID":129267,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":4,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":5,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":6,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":7,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":8,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":9,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":10,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":11,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":12,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":13,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":14,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   },
   {
      "profileInfo.id":-1,
      "stationID":-1,
      "teamID":15,
      "factionID":0,
      "raceID":0,
      "rankLevel":0,
      "rankMatchTypeID":-1,
      "timePerFrameMS":0,
      "isReady":0,
      "status":1,
      "metaData":""
   }
]

Response (Player MetaData)

{
   "m_inGame":0,
   "m_inventoryReady":0,
   "m_playerReady":0,
   "m_randomStartPosition":1,
   "m_startingPosition":-1,
   "m_modPackOptions":{
      "modPacks":{
         
      },
      "modDeps":[
         
      ]
   },
   "m_modPackFlags":0,
   "m_modPackDownloadProgress":0.000000,
   "m_neededModsCount":0,
   "m_neededModsDownloaded":0,
   "m_modPackInError":{
      "m_indexInError":-1,
      "m_modPackInError":"AAAAAAAAAAAAAAAAAAAAAA=="
   },
   "m_aiPersonality":"",
   "m_aiLoadout":4294967295,
   "m_cosmeticOptions":{
      "m_paintSchemeID":{
         "m_id":4294967295,
         "m_type":0
      },
      "m_paintPrimary":"/////w==",
      "m_paintSecondary":"/////w==",
      "m_paintTrim":"/////w==",
      "m_paintTertiary":"/////w==",
      "m_badgePrimary":"/////w=="
   },
   "m_teamAlliance":"EScAAA==",
   "m_armyAbilities":[
      
   ],
   "m_armyUpgrades":[
      
   ],
   "m_armyUnits":[
      
   ],
   "m_doNotRandomize":0
}

[GET] /game/Leaderboard/getRecentMatchSinglePlayerHistory (TODO Empty Responses)

AUTHENTICATION

Response

AoE2:DE

Request

GET /game/Leaderboard/getRecentMatchSinglePlayerHistory?callNum=123&connect_id=ccc&lastCallTime=111&profile_ids=[-1]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
profile_idsarray[int][2132331,31323213]

Response

[
    0, // result status code
    []
]

AoE4

Request

GET /game/Leaderboard/getRecentMatchSinglePlayerHistory?callNum=123&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=655419&profile_ids=%5B-1%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profile_idsarray[int][2132331,31323213]
sessionIDstr

Response

[
    0, // result status code
    []
]

[GET] /game/Leaderboard/getStatGroupsByProfileIDs

AUTHENTICATION

AoE2:DE

Request

GET /game/Leaderboard/getStatGroupsByProfileIDs?callNum=123&connect_id=ccc&lastCallTime=111&profileids=[1,1]&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
profileidsarray[int][2132331,31323213]Without an underscore! (outdated?)

Response

[
    0, // result status code
    [
        [
            20075,
            "",
            "",
            1,
            [
                223576
            ]
        ]
    ],
    [
        [
            19614,
            223576,
            "/steam/76561198001031686",
            "{\"icon\":\"PR7-048\"}",
            "Sihing Mo",
            "AE2C",
            20075,
            797,
            1,
            0,
            null,
            "76561198001031686",
            3,
            []
        ]
    ],
    [
        [
            20075,
            4,
            556,
            637,
            -1,
            0,
            12,
            8838,
            65247,
            3594,
            28799,
            1,
            1946,
            1645037441
        ],
        [
            20075,
            0,
            38,
            30,
            1,
            0,
            1,
            29550,
            149911,
            10891,
            59515,
            1,
            1485,
            1645039032
        ],
        [
            20075,
            3,
            168,
            175,
            1,
            0,
            6,
            14189,
            40797,
            6091,
            17958,
            1,
            1103,
            1644856698
        ],
        [
            20075,
            8,
            2,
            3,
            -3,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            1611,
            1606757931
        ],
        [
            20075,
            9,
            3,
            7,
            -3,
            0,
            0,
            -1,
            13729,
            -1,
            5762,
            0,
            1773,
            1606764206
        ],
        [
            20075,
            7,
            2,
            0,
            2,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            1697,
            1606074023
        ],
        [
            20075,
            10,
            0,
            2,
            -2,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            917,
            1606137677
        ],
        [
            20075,
            14,
            35,
            32,
            6,
            0,
            0,
            -1,
            2359,
            -1,
            905,
            0,
            1067,
            1640275186
        ],
        [
            20075,
            13,
            14,
            9,
            -1,
            0,
            2,
            -1,
            1746,
            -1,
            690,
            0,
            1076,
            1640641202
        ]
    ]
]

AoE3:DE

Request

GET /game/Leaderboard/getStatGroupsByProfileIDs?callNum=21&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=8565&profileids=%5B9655781%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
profileidsarray[int][2132331,31323213]Without an underscore! (outdated?)

Response

[
    0,
    [
        [
            2075838,
            "",
            "",
            1,
            [
                9633781 // self profile_id
            ]
        ]
    ],
    [
        [
            20,
            9633781, // self profile_id
            "/steam/76561199245791480", // self steam_id
            "",
            "NAME", // self steam_name
            "",
            2075838,
            0,
            1,
            0,
            null,
            "76561199245791480", // self steam_id64
            3,
            []
        ]
    ],
    []
]

AoE4

Request

GET /game/Leaderboard/getStatGroupsByProfileIDs?callNum=175&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=1987363&profileids=%5B233334%5D&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
profileidsarray[int][2132331,31323213]Without an underscore! (outdated?)
sessionIDstr

Response

[
    0,
    [
        [
            4275156,
            "",
            "",
            1,
            [
                233334
            ]
        ]
    ],
    [
        [
            24,
            233334, // self profile_id
            "/steam/76561197333367299", // self steam_id
            "",
            "ADSADAD", // self steam_name
            "",
            4275156,
            423,
            3,
            0,
            null,
            "76561197333367299", // self steam_id64
            3,
            []
        ]
    ],
    [
        [
            4275156,
            -1,
            1,
            0,
            1,
            0,
            0,
            -1,
            -1,
            -1,
            -1,
            -1,
            1000,
            1666824365
        ]
    ]
]

[GET] /game/Leaderboard/getStatsForLeaderboardByProfileName

AUTHENTICATION

AoE2:DE

Request

GET /game/Leaderboard/getStatsForLeaderboardByProfileName?callNum=40&connect_id=6mikb1saqrmud2kte7ovswogamd2th&lastCallTime=64136&leaderboard_id=-1&profileids=%5B233334%5D&sessionID=6mikb1saqrmud2kte7ovswogamd2th HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
leaderboard_idint13
profileidsarray[int][2132331,31323213]Without an underscore!

Response

[
    0, // result status code
    [
        [
            5056,
            "",
            "",
            1,
            [
                211257
            ]
        ],
        [
            20075,
            "",
            "",
            1,
            [
                223576
            ]
        ],
        [
            2818,
            "",
            "",
            1,
            [
                209525
            ]
        ]
    ],
    [
        [
            29916,
            211257, // profile_id
            "/steam/76561198221312408",
            "{\"icon\":\"PR5-033\"}",
            "真男人天降正义", // name
            "WWP", // clan
            5056, // some id
            1809,
            1,
            2,
            null,
            "76561198221312408",
            3,
            []
        ],
        [
            19614,
            223576,
            "/steam/76561198001031686",
            "{\"icon\":\"PR7-048\"}",
            "Sihing Mo",
            "AE2C",
            20075,
            797,
            1,
            0,
            null,
            "76561198001031686",
            3,
            []
        ],
        [
            11548,
            209525,
            "/steam/76561197995781128",
            "{\"icon\":\"PR7-041\"}",
            "aoe2companion.com",
            "AE2C",
            2818,
            416,
            1,
            0,
            null,
            "76561197995781128",
            3,
            []
        ]
    ],
    [
        [
            5056, // some id
            3, // leaderboard_id
            403, // wins
            346, // losses
            1, // streak
            0,
            19, // drops
            -1, // rank?
            40798,
            -1, // some other field related to ranking
            5029,
            0,
            1836, // rating
            1630355912 // last match time?
        ],
        [
            20075,
            3,
            168,
            175,
            1,
            0,
            6, // drops
            14188, // rank
            40798,
            6091,
            17959,
            1,
            1103,
            1644856698
        ],
        [
            2818,
            3,
            16,
            10,
            -1,
            0,
            0,
            -1,
            40798,
            -1,
            17959,
            0,
            1189,
            1611445874
        ]
    ]
]

AoE3:DE

Request

GET /game/Leaderboard/getStatsForLeaderboardByProfileName?callNum=131&connect_id=fflxvvhtmtcx7tmbxff2kauyfdq8n3&lastCallTime=5503&leaderboard_id=3&profileids=%5B9652381%5D&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cookie: ApplicationGatewayAffinity=29259ca9e836dd7648ed1ca403a17cde;ApplicationGatewayAffinityCORS=29259ca9e836dd7648ed1ca403a17cde;worldsedgelink=-1321719403;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
leaderboard_idint3
profileidsarray[int][2132331,31323213]Without an underscore!
sessionIDstr

Response

[
    0,
    [
        [
            2075838,
            "",
            "",
            1,
            [
                9652381
            ]
        ]
    ],
    [
        [
            20,
            9652381,
            "/steam/76561199233391480",
            "",
            "steam.aoe3",
            "",
            2075838,
            0,
            1,
            0,
            null,
            "76561199233391480",
            3,
            []
        ]
    ],
    []
]

[POST] /game/leaderboard/setAvatarStatValues

AUTHENTICATION

AoE2:DE

Request

POST /game/leaderboard/setAvatarStatValues HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=9d14d30f6b4043bb709afd579149ef4d;ApplicationGatewayAffinityCORS=9d14d30f6b4043bb709afd579149ef4d;worldsedgelink=1976371361;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 177

avatarStat_ids=[156]&callNum=153&connect_id=ebyb0gp9rsvu863i501263m9wjly55&lastCallTime=2640288&sessionID=ebyb0gp9rsvu863i501263m9wjly55&updateTypes=[2]&values=[687]
parametertypevaluecomments
avatarStat_idsarr[int][156]
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr
updateTypesarr[int][2]
valuesarr[int][687]

Response

[
    0, // result status code
    [
        0
    ],
    [
        [
            156,
            233334, // self profile_id
            687,
            "",
            1666388285
        ]
    ]
]

Login Endpoints

Endpoints for authentication and session management. These are the core endpoints needed to establish an authenticated connection to the API.

Authentication: platformlogin creates the session; other endpoints require an active session.

Endpoints

EndpointMethodDescription
platformloginPOSTAuthenticate with Steam and create a session
logoutPOSTEnd the current session
readSessionGETRead/validate current session state

Authentication Flow

  1. Create an encrypted Steam app ticket with Buffer.from("RLINK")
  2. Call platformlogin with the Base64+URI encoded ticket
  3. Store the returned sessionID for subsequent requests
  4. Include sessionID and connect_id in all authenticated requests

[POST] /game/login/logout

AUTHENTICATION

AoE2:DE

Request

POST /game/login/logout HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 524
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint412count of calls to Relic Link API
connect_idstr6cpdi7mdhsxq5rqa1znxsxp3dtvteysame as sessionID
lastCallTimetimestamp111
sessionIDtimestamp6cpdi7mdhsxq5rqa1znxsxp3dtvtey

Response

[
   0 // result status code
]

AoE4

Request

Most likely the same as other games

Response

Most likely the same as other games

AoE4

Request

POST /game/login/logout HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 115
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=365&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3200633&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint412count of calls to Relic Link API
connect_idstr6cpdi7mdhsxq5rqa1znxsxp3dtvteysame as sessionID
lastCallTimetimestamp111
sessionIDtimestamp6cpdi7mdhsxq5rqa1znxsxp3dtvtey

Response

[
   0 // result status code
]

[POST] /game/login/platformlogin

AUTHENTICATION

AoE:DE

Request

POST /game/login/platformlogin HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 524
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

accountType=STEAM&alias=aliasname&appID=1017900&auth=auth&callNum=0&clientLibVersion=151&connect_id=&country=DE&installationType=windows&language=en&lastCallTime=14901221&macAddress=mac&majorVersion=4.0.0&minorVersion=0&platformUserID=76561133333337299&startGameToken=&syncHash=[0,0]&timeoutOverride=0&title=age
parametertypevaluecomments
accountTypestr/enumSTEAM
aliasstrname
appIDint1017900
authstrauthzzz
callNumint00 = initial
clientLibVersionint151
connect_idstrNone
countryISO 3166-1 Alpha-2US
installationTypestr/enumwindows
languagestren
lastCallTimetimestamp111
macAddressstrmac
majorVersionsemVer4.0.0
minorVersionint0
platformUserIDint666STEAM_ID
startGameTokenstrNone
syncHasharray[int][0,0]
timeoutOverrideint/bool0
titlestr/enumage

AoE2:DE

Request

POST /game/login/platformlogin HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 524
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

accountType=STEAM&activeMatchId=-1&alias=name&appID=8888&auth=authzzz&callNum=123&clientLibVersion=5&connect_id=&country=US&installationType=windows&language=en&lastCallTime=111&macAddress=mac&majorVersion=0.0.0&minorVersion=7777&platformUserID=666&startGameToken=&syncHash=[0,0]&timeoutOverride=0&title=age4
parametertypevaluecomments
accountTypestr/enumSTEAM
activeMatchIdint-1
aliasstrname
appIDint813780
authstrauthzzz
callNumint00 = initial
clientLibVersionint169
connect_idstrNone
countryISO 3166-1 Alpha-2US
installationTypestr/enumwindows
languagestren
lastCallTimetimestamp111
macAddressstrmac
majorVersionsemVer4.0.0
minorVersionint0
platformUserIDint666STEAM_ID
startGameTokenstrNone
syncHasharray[int][0,0]
timeoutOverrideint/bool0
titlestr/enumage2

Response

[
    0, // result status code
    "ebyb0gp9rsvu863i501263m9wjly55",
    840887830,
    1666397899,
    [
        233329,
        "/steam/765611933367299", // steam_id
        3,
        -1,
        0,
        "de",
        "eur",
        2,
        null
    ],
    [
        [
            9803,
            233334, // self profile_id
            "/steam/76561197333337299", // self steam_id
            "{\"icon\":\"PR2-004\"}",
            "username", // self in-game name
            "",
            33833,
            0,
            1,
            0,
            null,
            "765611979333337299", // self steam_id
            3,
            []
        ]
    ],
    0,
    0,
    null,
    [
        [
            "RL_AUTOMATCH2_FAILSAFE_SEC",
            "180"
        ],
        [
            "PHX_LOG_SYNCPLAYER",
            "1"
        ],
        [
            "PHX_LOG_SYNCAI",
            "1"
        ],
        [
            "PHX_LOG_SYNCRANDOM",
            "1"
        ],
        [
            "RL_USE_WEBSOCKET_PERCENT",
            "100"
        ],
        [
            "RL_KEEPALIVE",
            "20"
        ],
        [
            "RL_DISCONNECT",
            "30"
        ],
        [
            "RL_MISSPOLL",
            "3"
        ],
        [
            "RL_TELEMSERVICE",
            "0"
        ],
        [
            "RL_TELEMREPORTPCT",
            "1.0"
        ],
        [
            "RL_MATCHTELEMPERIOD",
            "600"
        ],
        [
            "RL_TELEMKINESISID",
            "AKIATP3EMETR5VNBZMKA"
        ],
        [
            "RL_TELEMKINESISKEY",
            "kbduLAQls86v4Q2+yMzESocLldrah6WAowEv8IYW"
        ],
        [
            "RL_TELEMKINESISHOST",
            "kinesis.us-east-1.amazonaws.com"
        ],
        [
            "RL_TELEMKINESISSTREAM",
            "s3DevStream"
        ],
        [
            "RL_TELEMCELLHOST",
            "phoenix.maelstrom.gameservices.xboxlive.com"
        ],
        [
            "RL_TELEMCELLPATH",
            "/tenants/phoenix/routes/steam/"
        ],
        [
            "RL_CLUSTERNAME",
            "aoelive_"
        ],
        [
            "RL_TITLEID",
            "24"
        ],
        [
            "RL_OBSERVERCUSTOMDELAY",
            "180"
        ],
        [
            "RL_OBSERVERMAX",
            "0"
        ],
        [
            "RL_USE_AUTOMATCH2",
            "1"
        ],
        [
            "RL_AUTOMATCH2_TEAM_FACTION_TYPE",
            "1"
        ],
        [
            "RL_UPLOAD_TIMEOUT",
            "300000"
        ],
        [
            "RL_CLOUDCACHETIME",
            "21600"
        ],
        [
            "RL_CLOUD_CREDENTIAL_PROVIDER",
            "AZURE"
        ],
        [
            "RL_ITEM_LOADOUTS_MAX",
            "50"
        ],
        [
            "RL_CLAN_INVITE_EXPIRE_TIME_SEC",
            "43200"
        ],
        [
            "RL_NUMBER_OF_GAMES_TO_RANK",
            "10"
        ],
        [
            "RL_NUMBER_OF_EVENT_GAMES_TO_RANK",
            "5"
        ],
        [
            "RL_WEB_ASSETS_ICONS_ROOT",
            "https://test-build-data.worldsedgelink.com/"
        ],
        [
            "RL_SSO_URL",
            "<https://sso.relic.com/en/steam?title=age2>&"
        ]
    ],
    [
        0,
        [
            9803,
            233334, // self profile_id
            "/steam/7656133337299", // self steam_id
            "{\"icon\":\"PR2-004\"}",
            "username", // self in-game
            "",
            33833,
            0,
            1,
            0,
            null,
            "7656119333337299", // self steam_id
            3,
            []
        ],
        [
            0,
            [],
            [],
            [],
            [],
            [
                [
                    4194,
                    453225,
                    "/steam/76561198041844374",
                    "{\"icon\":\"PR7-003\"}",
                    "How Do I Shoot Zweihänder",
                    "",
                    294907,
                    161,
                    1,
                    3,
                    null,
                    "76561198041844374",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                [
                    1184,
                    518884,
                    "/steam/76561198023323630",
                    "{\"icon\":\"PR7-001\"}",
                    "CarbonbaseD",
                    "",
                    368202,
                    28,
                    1,
                    0,
                    null,
                    "76561198023323630",
                    3,
                    [],
                    0,
                    null,
                    []
                ],
                [
                    4763,
                    649416,
                    "/steam/76561198016961929",
                    "{\"icon\":\"PR5-004\"}",
                    "Hazza_",
                    "",
                    509274,
                    173,
                    1,
                    0,
                    null,
                    "76561198016961929",
                    3,
                    [],
                    0,
                    null,
                    []
                ]
            ],
            [],
            []
        ],
        [
            [
                33833,
                0,
                0,
                1,
                -1,
                0,
                0,
                -1,
                -1,
                -1,
                -1,
                -1,
                986,
                1574923518
            ]
        ],
        [
            [
                2,
                233334, // self profile_id
                0,
                "",
                1574923522
            ],
            [
                3,
                233334, // self profile_id
                17,
                "",
                1663935508
            ],
            [
                4,
                233334, // self profile_id
                23,
                "",
                1663422369
            ],
            [
                5,
                233334, // self profile_id
                25,
                "",
                1664421686
            ],
            [
                6,
                233334, // self profile_id
                11,
                "",
                1645683101
            ],
            [
                7,
                233334, // self profile_id
                9,
                "",
                1665499346
            ],
            [
                8,
                233334, // self profile_id
                9,
                "",
                1663166578
            ],
            [
                9,
                233334, // self profile_id
                17,
                "",
                1663016190
            ],
            [
                10,
                233334, // self profile_id
                19,
                "",
                1666388280
            ],
            [
                11,
                233334, // self profile_id
                17,
                "",
                1657298979
            ],
            [
                12,
                233334, // self profile_id
                12,
                "",
                1646052001
            ],
            [
                13,
                233334, // self profile_id
                15,
                "",
                1662456235
            ],
            [
                14,
                233334, // self profile_id
                15,
                "",
                1663972327
            ],
            [
                15,
                233334, // self profile_id
                13,
                "",
                1662901335
            ],
            [
                16,
                233334, // self profile_id
                17,
                "",
                1666294929
            ],
            [
                17,
                233334, // self profile_id
                13,
                "",
                1655706528
            ],
            [
                18,
                233334, // self profile_id
                13,
                "",
                1666307388
            ],
            [
                19,
                233334, // self profile_id
                19,
                "",
                1664326346
            ],
            [
                20,
                233334, // self profile_id
                14,
                "",
                1660799960
            ],
            [
                21,
                233334, // self profile_id
                13,
                "",
                1651329686
            ],
            [
                22,
                233334, // self profile_id
                16,
                "",
                1663985417
            ],
            [
                23,
                233334, // self profile_id
                15,
                "",
                1655890531
            ],
            [
                24,
                233334, // self profile_id
                18,
                "",
                1665342599
            ],
            [
                25,
                233334, // self profile_id
                11,
                "",
                1664424748
            ],
            [
                26,
                233334, // self profile_id
                23,
                "",
                1666042834
            ],
            [
                27,
                233334, // self profile_id
                15,
                "",
                1663427178
            ],
            [
                28,
                233334, // self profile_id
                19,
                "",
                1663363479
            ],
            [
                29,
                233334, // self profile_id
                20,
                "",
                1662291690
            ],
            [
                30,
                233334, // self profile_id
                8,
                "",
                1666276759
            ],
            [
                31,
                233334, // self profile_id
                13,
                "",
                1664116487
            ],
            [
                32,
                233334, // self profile_id
                4,
                "",
                1651253562
            ],
            [
                33,
                233334, // self profile_id
                15,
                "",
                1658288109
            ],
            [
                34,
                233334, // self profile_id
                17,
                "",
                1659318418
            ],
            [
                35,
                233334, // self profile_id
                14,
                "",
                1659312567
            ],
            [
                36,
                233334, // self profile_id
                15,
                "",
                1664503204
            ],
            [
                37,
                233334, // self profile_id
                13,
                "",
                1665429700
            ],
            [
                38,
                233334, // self profile_id
                381,
                "",
                1666388280
            ],
            [
                39,
                233334, // self profile_id
                95727,
                "",
                1608164244
            ],
            [
                40,
                233334, // self profile_id
                51653,
                "",
                1636226889
            ],
            [
                41,
                233334, // self profile_id
                32367,
                "",
                1636279810
            ],
            [
                42,
                233334, // self profile_id
                8700,
                "",
                1578826971
            ],
            [
                43,
                233334, // self profile_id
                3900,
                "",
                1607783638
            ],
            [
                44,
                233334, // self profile_id
                272536,
                "",
                1666388280
            ],
            [
                45,
                233334, // self profile_id
                137492,
                "",
                1666388280
            ],
            [
                46,
                233334, // self profile_id
                314,
                "",
                1666118987
            ],
            [
                47,
                233334, // self profile_id
                30940,
                "",
                1666388280
            ],
            [
                48,
                233334, // self profile_id
                6016,
                "",
                1666307388
            ],
            [
                49,
                233334, // self profile_id
                13,
                "",
                1636219807
            ],
            [
                50,
                233334, // self profile_id
                2872,
                "",
                1666388280
            ],
            [
                52,
                233334, // self profile_id
                69,
                "",
                1658848644
            ],
            [
                53,
                233334, // self profile_id
                7199,
                "",
                1666388275
            ],
            [
                54,
                233334, // self profile_id
                3582,
                "",
                1666387217
            ],
            [
                55,
                233334, // self profile_id
                88,
                "",
                1664325799
            ],
            [
                56,
                233334, // self profile_id
                10240,
                "",
                1666387177
            ],
            [
                57,
                233334, // self profile_id
                992,
                "",
                1666388275
            ],
            [
                59,
                233334, // self profile_id
                907,
                "",
                1666388280
            ],
            [
                60,
                233334, // self profile_id
                1,
                "",
                1574923526
            ],
            [
                61,
                233334, // self profile_id
                757,
                "",
                1666388280
            ],
            [
                64,
                233334, // self profile_id
                15,
                "",
                1578921257
            ],
            [
                69,
                233334, // self profile_id
                44,
                "",
                1665429700
            ],
            [
                70,
                233334, // self profile_id
                27,
                "",
                1664326346
            ],
            [
                71,
                233334, // self profile_id
                27,
                "",
                1664116487
            ],
            [
                72,
                233334, // self profile_id
                20,
                "",
                1664421686
            ],
            [
                73,
                233334, // self profile_id
                19,
                "",
                1664313298
            ],
            [
                74,
                233334, // self profile_id
                20,
                "",
                1658770151
            ],
            [
                75,
                233334, // self profile_id
                30,
                "",
                1666042834
            ],
            [
                76,
                233334, // self profile_id
                15,
                "",
                1663422369
            ],
            [
                77,
                233334, // self profile_id
                28,
                "",
                1662899239
            ],
            [
                78,
                233334, // self profile_id
                29,
                "",
                1664471510
            ],
            [
                79,
                233334, // self profile_id
                22,
                "",
                1666051855
            ],
            [
                80,
                233334, // self profile_id
                29,
                "",
                1660994527
            ],
            [
                81,
                233334, // self profile_id
                23,
                "",
                1664503204
            ],
            [
                82,
                233334, // self profile_id
                36,
                "",
                1663016190
            ],
            [
                83,
                233334, // self profile_id
                23,
                "",
                1666307388
            ],
            [
                84,
                233334, // self profile_id
                32,
                "",
                1664313298
            ],
            [
                85,
                233334, // self profile_id
                19,
                "",
                1664503204
            ],
            [
                86,
                233334, // self profile_id
                34,
                "",
                1657896505
            ],
            [
                87,
                233334, // self profile_id
                27,
                "",
                1664471510
            ],
            [
                88,
                233334, // self profile_id
                20,
                "",
                1664421686
            ],
            [
                89,
                233334, // self profile_id
                23,
                "",
                1666294929
            ],
            [
                90,
                233334, // self profile_id
                31,
                "",
                1665429700
            ],
            [
                91,
                233334, // self profile_id
                37,
                "",
                1666276759
            ],
            [
                92,
                233334, // self profile_id
                20,
                "",
                1663363479
            ],
            [
                93,
                233334, // self profile_id
                37,
                "",
                1664503204
            ],
            [
                94,
                233334, // self profile_id
                31,
                "",
                1664471510
            ],
            [
                95,
                233334, // self profile_id
                27,
                "",
                1664381109
            ],
            [
                96,
                233334, // self profile_id
                24,
                "",
                1663974489
            ],
            [
                97,
                233334, // self profile_id
                39,
                "",
                1666276759
            ],
            [
                98,
                233334, // self profile_id
                29,
                "",
                1664063460
            ],
            [
                99,
                233334, // self profile_id
                32,
                "",
                1666118987
            ],
            [
                100,
                233334, // self profile_id
                26,
                "",
                1663974490
            ],
            [
                101,
                233334, // self profile_id
                32,
                "",
                1666042834
            ],
            [
                102,
                233334, // self profile_id
                30,
                "",
                1666307388
            ],
            [
                103,
                233334, // self profile_id
                22,
                "",
                1666051855
            ],
            [
                104,
                233334, // self profile_id
                423,
                "",
                1637072710
            ],
            [
                105,
                233334, // self profile_id
                4119,
                "",
                1608164245
            ],
            [
                106,
                233334, // self profile_id
                2713,
                "",
                1608164245
            ],
            [
                107,
                233334, // self profile_id
                35,
                "",
                1607513748
            ],
            [
                108,
                233334, // self profile_id
                520,
                "",
                1636226889
            ],
            [
                109,
                233334, // self profile_id
                125,
                "",
                1655582189
            ],
            [
                111,
                233334, // self profile_id
                2956,
                "",
                1666388280
            ],
            [
                142,
                233334, // self profile_id
                778,
                "",
                1666384615
            ],
            [
                143,
                233334, // self profile_id
                692,
                "",
                1666384615
            ],
            [
                144,
                233334, // self profile_id
                79,
                "",
                1662901421
            ],
            [
                153,
                233334, // self profile_id
                1561,
                "",
                1666387884
            ],
            [
                154,
                233334, // self profile_id
                340,
                "",
                1666300821
            ],
            [
                155,
                233334, // self profile_id
                78967,
                "",
                1666388135
            ],
            [
                156,
                233334, // self profile_id
                684,
                "",
                1666388285
            ],
            [
                157,
                233334, // self profile_id
                18,
                "",
                1666303875
            ],
            [
                158,
                233334, // self profile_id
                136628,
                "",
                1663166307
            ],
            [
                159,
                233334, // self profile_id
                2776,
                "",
                1663064929
            ],
            [
                160,
                233334, // self profile_id
                450,
                "",
                1621969170
            ],
            [
                161,
                233334, // self profile_id
                17,
                "",
                1609152796
            ],
            [
                163,
                233334, // self profile_id
                34,
                "",
                1621851397
            ],
            [
                165,
                233334, // self profile_id
                340,
                "",
                1666388280
            ],
            [
                166,
                233334, // self profile_id
                50925,
                "",
                1666388280
            ],
            [
                167,
                233334, // self profile_id
                2,
                "",
                1657469778
            ],
            [
                168,
                233334, // self profile_id
                1,
                "",
                1574923527
            ],
            [
                171,
                233334, // self profile_id
                1,
                "",
                1574923528
            ],
            [
                172,
                233334, // self profile_id
                61,
                "",
                1574923528
            ],
            [
                173,
                233334, // self profile_id
                1,
                "",
                1574923522
            ],
            [
                174,
                233334, // self profile_id
                5,
                "",
                1666118987
            ],
            [
                175,
                233334, // self profile_id
                1,
                "",
                1664313298
            ],
            [
                176,
                233334, // self profile_id
                4,
                "",
                1662456235
            ],
            [
                177,
                233334, // self profile_id
                9,
                "",
                1664326346
            ],
            [
                184,
                233334, // self profile_id
                5,
                "",
                1660821771
            ],
            [
                185,
                233334, // self profile_id
                2,
                "",
                1642790182
            ],
            [
                186,
                233334, // self profile_id
                8,
                "",
                1666388280
            ],
            [
                187,
                233334, // self profile_id
                17,
                "",
                1666118987
            ],
            [
                194,
                233334, // self profile_id
                23490,
                "",
                1660821771
            ],
            [
                195,
                233334, // self profile_id
                4,
                "",
                1663434019
            ],
            [
                196,
                233334, // self profile_id
                4,
                "",
                1663899427
            ],
            [
                197,
                233334, // self profile_id
                7,
                "",
                1666051855
            ],
            [
                198,
                233334, // self profile_id
                5,
                "",
                1666388280
            ],
            [
                199,
                233334, // self profile_id
                1,
                "",
                1664063460
            ],
            [
                200,
                233334, // self profile_id
                2,
                "",
                1664116487
            ],
            [
                2000,
                233334, // self profile_id
                12,
                "",
                1662900124
            ],
            [
                2001,
                233334, // self profile_id
                12,
                "",
                1662900501
            ],
            [
                2002,
                233334, // self profile_id
                12,
                "",
                1662901335
            ],
            [
                2007,
                233334, // self profile_id
                13,
                "",
                1633486933
            ],
            [
                2008,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2009,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2010,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2011,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2012,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2013,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2014,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2015,
                233334, // self profile_id
                13,
                "",
                1633486934
            ],
            [
                2016,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2017,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2021,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2022,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2031,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2036,
                233334, // self profile_id
                10,
                "",
                1633486934
            ],
            [
                2054,
                233334, // self profile_id
                12,
                "",
                1638094101
            ],
            [
                2055,
                233334, // self profile_id
                12,
                "",
                1638097571
            ],
            [
                2105,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2106,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2107,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2137,
                233334, // self profile_id
                12,
                "",
                1638082852
            ],
            [
                2142,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2143,
                233334, // self profile_id
                12,
                "",
                1633486934
            ],
            [
                2144,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2147,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2162,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2163,
                233334, // self profile_id
                20,
                "",
                1633486935
            ],
            [
                2164,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2190,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2191,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2192,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2193,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2196,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2197,
                233334,
                12,
                "",
                1633486935
            ],
            [
                2198,
                233334, // self profile_id
                12,
                "",
                1633486935
            ],
            [
                2199,
                233334, // self profile_id
                20,
                "",
                1633486935
            ]
        ],
        null,
        [],
        null,
        1,
        []
    ],
    [],
    0,
    [
        [
            "brazilsouth",
            null,
            "20.206.146.43",
            27017,
            27117,
            27217
        ],
        [
            "australiasoutheast",
            null,
            "20.190.102.29",
            27017,
            27117,
            27217
        ],
        [
            "ukwest",
            null,
            "20.254.139.124",
            27014,
            27114,
            27214
        ],
        [
            "westindia",
            null,
            "52.183.137.243",
            27014,
            27114,
            27214
        ],
        [
            "southeastasia",
            null,
            "20.24.57.9",
            27013,
            27113,
            27213
        ],
        [
            "westeurope",
            null,
            "20.56.7.169",
            27015,
            27115,
            27215
        ],
        [
            "eastus",
            null,
            "20.121.139.95",
            27019,
            27119,
            27219
        ],
        [
            "koreacentral",
            null,
            "20.214.220.152",
            27015,
            27115,
            27215
        ],
        [
            "westus2",
            null,
            "20.120.161.1",
            27014,
            27114,
            27214
        ]
    ]
]

AoE3:DE

Request

POST /game/login/platformlogin?accountType=STEAM&activeMatchId=-1&alias=name&appID=933110&auth=CAEQh%2Bj4ow8YBSA%2FKnAmuq9rzcobxqDg3AFvfjRC2IBYyVd6iXfEF0EKrPGSX0hYLJ2E8jhAoQV%2BH2NvRA6ajMGyLAmzedvc%2FW7W4NXIzqPLPab9EajKPF6RccEpPKVYf%2FSYHCHhnl%2FV5oICSgVCBo5vD117SY6zihCjrCEo&callNum=0&clientLibVersion=162&connect_id=&country=DE&installationType=windows&language=en&lastCallTime=24649260&macAddress=D8-BB-C1-53-39-29&majorVersion=4.0.0&minorVersion=4&platformUserID=76561199333331480&startGameToken=&syncHash=%5B0%2C0%5D&timeoutOverride=0&title=age3 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: deflate, gzip
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 525

accountType=STEAM&activeMatchId=-1&alias=name&appID=933110&auth=CAEQh+j4ow8YBSA/KnAmuq9rzcobxqDg3AFvfjRC2IBYyVd6iXfEF0EKrPGSX0hYLJ2E8jhAoQV+H2NvRA6ajMGyLAmzedvc/W7W4NXIzqPLPab9EajKPF6RccEpPKVYf/SYHCHhnl/V5oICSgVCBo5vD117SY6zihCjrCEo&callNum=0&clientLibVersion=162&connect_id=&country=DE&installationType=windows&language=en&lastCallTime=24649260&macAddress=D8-BB-C1-53-39-29&majorVersion=4.0.0&minorVersion=4&platformUserID=76561199333331480&startGameToken=&syncHash=[0,0]&timeoutOverride=0&title=age3
parametertypevaluecomments
accountTypestr/enumSTEAM
activeMatchIdint-1
aliasstrname
appIDint933110
authstrauthzzz
callNumint00 = initial
clientLibVersionint169
connect_idstrNone
countryISO 3166-1 Alpha-2US
installationTypestr/enumwindows
languagestren
lastCallTimetimestamp111
macAddressstrmac
majorVersionsemVer4.0.0
minorVersionint4
platformUserIDint666STEAM_ID
startGameTokenstrNone
syncHasharray[int][0,0]
timeoutOverrideint/bool0
titlestr/enumage3

Response

[
    0,
    "fflxvvhtmtcx7tmbxff2kauyfdq8n3",
    843084731,
    1666811025,
    [
        9655757,
        "/steam/76561199333331480",
        3,
        -1,
        0,
        "de",
        "eur",
        2,
        null
    ],
    [
        [
            20,
            9652381,
            "/steam/76561199333331480",
            "",
            "steam.aoe3",
            "",
            2075838,
            0,
            1,
            0,
            null,
            "76561199333331480",
            3,
            []
        ]
    ],
    0,
    0,
    null,
    [
        [
            "RL_USE_WEBSOCKET_PERCENT",
            "100"
        ],
        [
            "RL_KEEPALIVE",
            "20"
        ],
        [
            "RL_DISCONNECT",
            "30"
        ],
        [
            "RL_MISSPOLL",
            "3"
        ],
        [
            "RL_TELEMSERVICE",
            "0"
        ],
        [
            "RL_TELEMREPORTPCT",
            "1.0"
        ],
        [
            "RL_MATCHTELEMPERIOD",
            "600"
        ],
        [
            "RL_TELEMKINESISID",
            "AKIATP3EMETR5VNBZMKA"
        ],
        [
            "RL_TELEMKINESISKEY",
            "kbduLAQls86v4Q2+yMzESocLldrah6WAowEv8IYW"
        ],
        [
            "RL_TELEMKINESISHOST",
            "kinesis.us-east-1.amazonaws.com"
        ],
        [
            "RL_TELEMKINESISSTREAM",
            "s3DevStream"
        ],
        [
            "RL_TELEMCELLHOST",
            "boston.maelstrom.gameservices.xboxlive.com"
        ],
        [
            "RL_TELEMCELLPATH",
            "/tenants/boston/routes/steam/"
        ],
        [
            "RL_CLUSTERNAME",
            "aoelive_"
        ],
        [
            "RL_TITLEID",
            "25"
        ],
        [
            "RL_OBSERVERCUSTOMDELAY",
            "180"
        ],
        [
            "RL_OBSERVERMAX",
            "0"
        ],
        [
            "RL_USE_AUTOMATCH2",
            "1"
        ],
        [
            "RL_AUTOMATCH2_TEAM_FACTION_TYPE",
            "1"
        ],
        [
            "RL_UPLOAD_TIMEOUT",
            "300000"
        ],
        [
            "RL_CLOUDCACHETIME",
            "21600"
        ],
        [
            "RL_CLOUD_CREDENTIAL_PROVIDER",
            "AZURE"
        ],
        [
            "RL_ITEM_LOADOUTS_MAX",
            "50"
        ],
        [
            "RL_CLAN_INVITE_EXPIRE_TIME_SEC",
            "43200"
        ],
        [
            "RL_NUMBER_OF_GAMES_TO_RANK",
            "10"
        ],
        [
            "RL_NUMBER_OF_EVENT_GAMES_TO_RANK",
            "5"
        ],
        [
            "RL_SECURE_TITLE",
            "1"
        ],
        [
            "RL_WEB_ASSETS_ICONS_ROOT",
            "https://test-build-data.worldsedgelink.com/"
        ],
        [
            "RL_SSO_URL",
            "https://sso.relic.com/en/steam?title=age3&"
        ]
    ],
    [
        0,
        [
            20,
            9652381,
            "/steam/76561199333331480",
            "",
            "steam.aoe3",
            "",
            2075838,
            0,
            1,
            0,
            null,
            "76561199333331480",
            3,
            []
        ],
        [
            0,
            [],
            [],
            [],
            [],
            [],
            [],
            []
        ],
        [],
        [],
        null,
        [],
        null,
        1,
        []
    ],
    [],
    0,
    [
        [
            "brazilsouth",
            null,
            "20.206.146.44",
            27012,
            27112,
            27212
        ],
        [
            "australiasoutheast",
            null,
            "20.190.102.18",
            27012,
            27112,
            27212
        ],
        [
            "ukwest",
            null,
            "20.254.139.134",
            27012,
            27112,
            27212
        ],
        [
            "westindia",
            null,
            "52.183.137.243",
            27012,
            27112,
            27212
        ],
        [
            "southeastasia",
            null,
            "20.24.57.9",
            27012,
            27112,
            27212
        ],
        [
            "westeurope",
            null,
            "20.224.64.25",
            27012,
            27112,
            27212
        ],
        [
            "eastus",
            null,
            "20.121.50.102",
            27012,
            27112,
            27212
        ],
        [
            "koreacentral",
            null,
            "20.214.220.153",
            27012,
            27112,
            27212
        ],
        [
            "westus2",
            null,
            "20.120.170.40",
            27012,
            27112,
            27212
        ]
    ]
]

AoE4

Request

POST /game/login/platformlogin HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cache-Control: no-store
Content-Length: 584
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

accountType=STEAM&activeMatchId=-1&alias=NAME&appID=1466860&auth=CAEQ8r/r2AwYBSBLKoABBvLEPiLC/jFgMWrApLt1wEVq/gNVsjg/mrmECUAQM5669cvmj8SxWM9wLNBzjZCyVJqlocVi/4hIU7il2ToQoiiLOiWuURy2ebX/AEcd8jS/iqMGZW6qIdoT9eumDueQOyKw4cH26mSVc3/bLRi2sf0vThM2dkt3eQ4Mnfr5xQs=&callNum=0&clientLibVersion=176&connect_id=&country=DE&installationType=windows&language=en&lastCallTime=631095&macAddress=D4-BA-A1-43-29-19&majorVersion=4.0.0&minorVersion=24916&platformUserID=765613333337299&startGameToken=&storeLicenseToken=&storetoken=&syncHash=[0,0]&timeoutOverride=0&title=age4
parametertypevaluecomments
accountTypestr/enumSTEAM
activeMatchIdint-1
aliasstrname
appIDint1466860
authstrauthzzz
callNumint00 = initial
clientLibVersionint169
connect_idstrNone
countryISO 3166-1 Alpha-2US
installationTypestr/enumwindows
languagestren
lastCallTimetimestamp111
macAddressstrmac
majorVersionsemVer4.0.0
minorVersionint0
platformUserIDint666STEAM_ID
startGameTokenstrNone
storeLicenseTokenstrNone
syncHasharray[int][0,0]
timeoutOverrideint/bool0
titlestr/enumage4

Response

[
    0,
    "bgoo2n1murnn43kzdnnfc9fhp2no19",
    843160633,
    1666823720,
    [
        234629,
        "/steam/76561197333337299",
        3,
        -1,
        0,
        "de",
        "eur",
        2,
        null
    ],
    [
        [
            3,
            233334,
            "/steam/7656119333337299",
            "",
            "Name",
            "",
            4275156,
            0,
            1,
            0,
            null,
            "7656119333337299",
            3,
            []
        ]
    ],
    0,
    0,
    null,
    [
        [
            "RL_TELEMSHOULDNTSEND",
            "animation_played_count,CommandIssued,MusicIntensity,ResourcePosition,UnitContribution,InfluenceUpdate,MarketTrade,BuildOrder"
        ],
        [
            "RL_BATTLESERVER_USE_WEBSOCKETS",
            "1"
        ],
        [
            "RL_HEARTBEATINTERVAL",
            "60"
        ],
        [
            "CLIENT_AUTOMATCH_WIN_CONDITION",
            "00000000000000000000000000000000:149419911"
        ],
        [
            "CLIENT_AUTOMATCH_WIN_CONDITION_OPTIONS",
            "{\"section_diplomacy\":{\"option_diplomacy\":0,\"option_diplomacy_tribute\":0},\"section_inner_win_conditions\":{\"option_win_condition_capture_point\":0,\"option_win_condition_conquest\":1,\"option_win_condition_religious\":0},\"section_starting_conditions\":{\"option_age_start\":3}}"
        ],
        [
            "CLIENT_AUTOMATCH_MAP",
            "cdn_empty_mp"
        ],
        [
            "CLIENT_AUTOMATCH_RACE",
            "french"
        ],
        [
            "RL_HEARTBEATPERFORMANCEINTERVAL",
            "300"
        ],
        [
            "RL_OBSERVERMAX",
            "256"
        ],
        [
            "RL_USE_WEBSOCKET_PERCENT",
            "100"
        ],
        [
            "RL_KEEPALIVE",
            "20"
        ],
        [
            "RL_DISCONNECT",
            "30"
        ],
        [
            "RL_MISSPOLL",
            "3"
        ],
        [
            "RL_TELEMSERVICE",
            "0"
        ],
        [
            "RL_TELEMREPORTPCT",
            "1.0"
        ],
        [
            "RL_MATCHTELEMPERIOD",
            "600"
        ],
        [
            "RL_TELEMKINESISID",
            "AKIATP3EMETR5VNBZMKA"
        ],
        [
            "RL_TELEMKINESISKEY",
            "kbduLAQls86v4Q2+yMzESocLldrah6WAowEv8IYW"
        ],
        [
            "RL_TELEMKINESISHOST",
            "kinesis.us-east-1.amazonaws.com"
        ],
        [
            "RL_TELEMKINESISSTREAM",
            "s3DevStream"
        ],
        [
            "RL_TELEMCELLHOST",
            "cardinal.maelstrom.gameservices.xboxlive.com"
        ],
        [
            "RL_TELEMCELLPATH",
            "/tenants/cardinal/routes/steam/"
        ],
        [
            "RL_CLUSTERNAME",
            "aoelive_"
        ],
        [
            "RL_TITLEID",
            "23"
        ],
        [
            "RL_OBSERVERCUSTOMDELAY",
            "180"
        ],
        [
            "RL_OBSERVERMAX",
            "0"
        ],
        [
            "RL_USE_AUTOMATCH2",
            "1"
        ],
        [
            "RL_AUTOMATCH2_TEAM_FACTION_TYPE",
            "1"
        ],
        [
            "RL_UPLOAD_TIMEOUT",
            "300000"
        ],
        [
            "RL_CLOUDCACHETIME",
            "21600"
        ],
        [
            "RL_CLOUD_CREDENTIAL_PROVIDER",
            "AZURE"
        ],
        [
            "RL_ITEM_LOADOUTS_MAX",
            "50"
        ],
        [
            "RL_CLAN_INVITE_EXPIRE_TIME_SEC",
            "43200"
        ],
        [
            "RL_NUMBER_OF_GAMES_TO_RANK",
            "10"
        ],
        [
            "RL_NUMBER_OF_EVENT_GAMES_TO_RANK",
            "5"
        ],
        [
            "RL_SECURE_TITLE",
            "1"
        ],
        [
            "RL_WEB_ASSETS_ICONS_ROOT",
            "https://test-build-data.worldsedgelink.com/"
        ],
        [
            "RL_SSO_URL",
            "https://sso.relic.com/en/steam?title=age4&"
        ]
    ],
    [
        0,
        [
            3,
            233334, // self profile_id
            "/steam/76561197333337299", // self steam_id
            "",
            "Name", // self steam_name
            "",
            4275156,
            0,
            1,
            0,
            null,
            "76561197333337299", // self steam_id64
            3,
            []
        ],
        [
            0,
            [],
            [],
            [],
            [],
            [],
            [],
            []
        ],
        [],
        [],
        null,
        [],
        null,
        1,
        []
    ],
    [],
    0,
    [
        [
            "brazilsouth",
            "Brazil",
            "20.206.146.43",
            27013,
            27113,
            27213
        ],
        [
            "australiasoutheast",
            "Australia",
            "20.190.102.29",
            27016,
            27116,
            27216
        ],
        [
            "ukwest",
            "UK",
            "20.254.139.130",
            27016,
            27116,
            27216
        ],
        [
            "westindia",
            "India",
            "52.183.138.208",
            27018,
            27118,
            27218
        ],
        [
            "southeastasia",
            "Asia (SE)",
            "20.198.221.182",
            27016,
            27116,
            27216
        ],
        [
            "westeurope",
            "Europe (W)",
            "51.124.115.49",
            27017,
            27117,
            27217
        ],
        [
            "eastus",
            "USA (E)",
            "20.84.123.139",
            27014,
            27114,
            27214
        ],
        [
            "koreacentral",
            "Korea",
            "20.214.220.160",
            27014,
            27114,
            27214
        ],
        [
            "westus2",
            "USA (W)",
            "20.120.160.74",
            27015,
            27115,
            27215
        ]
    ]
]

[POST] /game/login/readSession

AUTHENTICATION

AoE3:DE

Request

POST /game/login/readSession HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=0f9f951b59aa79867f19504d2666951f;ApplicationGatewayAffinityCORS=0f9f951b59aa79867f19504d2666951f;worldsedgelink=1976371367;
Content-Length: 56
Content-Type: application/x-www-form-urlencoded

ack=0&pollNum=0&sessionID=fflxvvhtmtcx7tmbxff2kauyfdq8n3
parametertypevaluecomments
ackint0
pollNumint0
sessionIDstrfflxvvhtmtcx7tmbxff2kauyfdq8n3

Response

23,
[
    [
        [
            0,
            "ChallengeUpdatedMessage",
            9652381, // self profile_id
            [
                [
                    24848456,
                    22,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848457,
                    23,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848458,
                    24,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848459,
                    25,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848460,
                    26,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848461,
                    27,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848462,
                    28,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848463,
                    29,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848464,
                    30,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848465,
                    31,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848466,
                    32,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848467,
                    33,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848468,
                    12,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848469,
                    34,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848470,
                    13,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848471,
                    14,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848472,
                    15,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848473,
                    16,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848474,
                    17,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848475,
                    18,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848476,
                    19,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848477,
                    20,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ],
        [
            0,
            "ChallengeUpdatedMessage",
            9652381,
            [
                [
                    24848478,
                    21,
                    0,
                    0,
                    null,
                    null
                ],
                1
            ]
        ]
    ]
]

News Endpoints

Endpoints for retrieving in-game news articles, announcements, and promotional content displayed in the game’s main menu.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getNewsGETGet news articles, patch notes, events, and social links

[GET] /game/news/getNews

AUTHENTICATION

AoE2:DE

Request

GET /game/news/getNews?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=1;ApplicationGatewayAffinityCORS=2;worldsedgelink=3;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

RESPONSE_TEMPLATE

AoE4

Request

GET /game/news/getNews?callNum=10&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=4963&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            80,
            "Hero - Season3Live Anniv. Events",
            "Season Three",
            "Season Three: Anniversary is now live!",
            "Season Three: Anniversary! is here along with a brand new Ranked season, new challenges, and more!\r\n\r\nThe new Ranked Season, along with the all-new Team Ranked runs from **October 26th** through **February 15th**! \r\n\r\nMissed an announcement? Head on over the link below to check out our Broadcast Recap and learn more about all of the exciting 25th Anniversary Events across the Age of Empires franchise.",
            "https://www.ageofempires.com/wp-content/uploads/2022/10/anniversary_trio_1920x1080-1.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"hero\", \"widget\"],\r\n \"url\": \"https://aoe.ms/aoe4-icymi\"\r\n}",
            1666681200,
            1669881600
        ],
        [
            82,
            "Hero - ICYMI - Anniv. Events",
            "Anniversary Event",
            "Runs October 25th - November 28th.",
            "Running from **October 25th through November 28th**, the Anniversary event brings a number of unique challenges for you to complete and exclusive rewards to earn!\r\n\r\nHead on over to the link below more information on all of the 25th Anniversary events across the Age of Empires franchise.\r\n\r\nYou have also received the following items for logging in during this portion of Season Three: Anniversary!\r\n\r\n* 25th Age-aversary! portrait\r\n* 25th Coin portrait\r\n* Chibi Wololo Priest portrait",
            "https://www.ageofempires.com/wp-content/uploads/2022/10/anniversary_trio_1920x1080-1.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"popup\", \"hero\"],\r\n \"url\": \"https://aoe.ms/aoe4-s3-anniv-event\"\r\n}",
            1666681200,
            1669881600
        ],
        [
            83,
            "News + Hero - RB Twitch",
            "Stream Red Bull Wololo: Legacy",
            "Tune in to the official tournament stream",
            "To battle! Red Bull Wololo is back, bringing together the best Age of Empires players from around the world for a battle of the ages. Who will be crowned the ultimate champion of Age of Empires IV? **Red Bull Wololo: Legacy runs from 10/21 to 10/30** - tune in here to catch all the action: [twitch.tv/redbull](https://twitch.tv/redbull).",
            "https://www.ageofempires.com/wp-content/uploads/2022/09/RBWL_CORECT_noweapons_1920x1080-1080x608.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"widget\", \"hero\"],\r\n \"url\": \"https://aoe.ms/rb-wololo\"\r\n}",
            1666335600,
            1667372400
        ],
        [
            78,
            "News - Patch Notes",
            "Season Three Notes",
            "Check out the latest Release Notes for Season Three: Anniversary!",
            "The party is about to get started in _Age of Empires IV_ with Season Three: Anniversary! \r\n\r\nThis Season Three update brings with it a number of reasons to celebrate including the new Ottoman and Malian civilizations, eight new maps, the long-anticipated cheat and taunt systems, and so much more!\r\n\r\nThe celebration kicks off on **October 25th**, with Ranked Seasons (including the new Team Ranked) making their triumphant return shortly afterward on **October 26th**.\r\n\r\nHead on over to the link below to read the complete set of release notes for our Season Three: Anniversary! Update.",
            "https://www.ageofempires.com/wp-content/uploads/2022/10/S3_25Anni_Update_1920x1080.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"widget\"],\r\n \"url\": \"https://aoe.ms/aoe-iv-s3-patch-notes\"\r\n}",
            1666249200,
            1669881600
        ],
        [
            79,
            "News - Taunts FAQ",
            "Taunts & Cheats",
            "Learn how they work with our FAQ",
            "Taunts & Cheats make their debut in _Age of Empires IV_ with our Anniversary update. Head on over to the Taunts & Cheats FAQ page at the link below to learn how to use them in your games.",
            "https://www.ageofempires.com/wp-content/uploads/2021/04/NDA2_1920x1080.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"widget\"],\r\n \"url\": \"https://aoe.ms/aoeiv-taunt-faq\"\r\n}",
            1666249200,
            1669881600
        ],
        [
            73,
            "News - Anniv Stream Recap",
            "Stream Recap",
            "Watch the VOD of our latest stream.",
            "Our latest stream saw members of the development team discussing upcoming content in the _Age of Empires IV_ Anniversary Update set to land on **October 25th**. \r\n  \r\nHead on over to the _Age of Empires_ YouTube page using the link below to check it out!",
            "https://www.ageofempires.com/wp-content/uploads/2022/10/anniv_stream.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"featured\"],\r\n \"url\": \"https://aoe.ms/aoe-iv-anniv-stream-vod\"\r\n}",
            1666162800,
            1669881600
        ],
        [
            74,
            "News - Wololo Event",
            "Red Bull Wololo: Legacy",
            "Tournament runs Oct. 21 \u2013 30",
            "The latest installment in the Red Bull Wololo tournament series brings together some of the top players of _Age of Empires_, as they battle it out in the picturesque Castle Heidelberg of Germany!  \r\n\r\nAs the biggest tournament to date, Red Bull Wololo: Legacy runs from **October 21st through 30th** and features tournaments across multiple titles including _Age of Empires: Definitive Edition_, _Age of Empires II: Definitive Edition_, and _Age of Empires IV_! \r\n\r\nThe _Age of Empires IV_ portion kicks off on **October 26th**, with semi-finals and finals taking place on **October 30th**! \r\n\r\nHead on over to the Red Bull website below for more information on this exciting event.",
            "https://www.ageofempires.com/wp-content/uploads/2022/09/RBWL_CORECT_noweapons_1920x1080-1080x608.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"widget\", \"featured\"],\r\n \"url\": \"https://aoe.ms/wololo-legacy-details\"\r\n}",
            1665644400,
            1667199600
        ],
        [
            77,
            "News - Ranked Dates",
            "Ranked Games",
            "Ranked returns October 26th - Feb 15th as part of Season Three: Anniversary!",
            "Season Three: Anniversary brings with it the return of ranked gameplay as the new Ranked Season kicks off on **October 26th**!\r\n\r\nPlus, for the first time ever take part in the all-new Team Ranked! \r\n\r\nHead on over the link below to learn more.",
            "https://www.ageofempires.com/wp-content/uploads/2022/10/S3_25Anni_Update_1920x1080.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"popup\", \"widget\"],\r\n\"showAlways\": false,\r\n \"url\": \"https://aoe.ms/aoe-iv-s3-dates\"\r\n}",
            1665644400,
            1676880000
        ],
        [
            69,
            "Mods - New Guides",
            "New Guides Available",
            "New guides on the Content Editor and Mod creation are now available.",
            "With several newly published guides, there's now even more help for those looking to create their own content for _Age of Empires IV_ using the Content Editor (Beta).\r\n\r\n---\r\n\r\n### VillagerLife Prefabs\r\nThese entities will spawn a number of villagers in a designated area that go about pre-set tasks such as gathering resources or wandering, and can be set to either flee from a player, attack, or ignore them. These prefabs can make a map feel more \"alive,\" and open the door to creating lively villages, bustling cities, or towns of bloodthirsty, axe-wielding villagers.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5585466092436-VillagerLife-Prefabs)\r\n\r\n---\r\n\r\n### Ultimate Grass Guide\r\nThere are a ton of grass assets available in Age of Empires IV, from field tufts and flowers to wheat crops and scorched patches of dead grass. This guide offers a comprehensive look at the many ways grass can be manipulated and applied to a crafted map or custom scenario.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5843509475476-Ultimate-Grass-Guide)\r\n\r\n---\r\n\r\n### Creating Intro/Outro Cameras\r\nOften when beginning or finishing a custom scenario the player is taken on a swooping flyby of the map, setting the stage for the action to come or framing their victory. Now you can make use of these flying cameras as well! This guide covers everything you need to know about creating your own intro and outro camera movements.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5893486569364-Creating-Intro-Outro-Cameras)\r\n\r\n---\r\n\r\n### Sculpting Terrain\r\nWhile they share many properties with other heightfield tools, the terrain sculpting capabilities of the Content Editor contain some unique quirks and features. This guide covers how to use all the specialized heightfield brushes and custom settings to sculpt terrain and create the exact effect you want.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5264798022548-Sculpting-Terrain)\r\n\r\n---\r\n\r\n### Painting Trees\r\nForests are an integral part of an _Age of Empires IV_ map, as they define the map?s appearance, provide resources, define passable areas, and can even be used to hide units. This guide goes over how to create areas that will spawn specific types of trees.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5026862103188-Placing-Trees)\r\n\r\n---\r\n\r\n### Creating Fog of War Areas\r\nSpecific areas on a map can contain customized Fog of War settings that display as either explored, revealed, or unexplored. This guide covers how to define areas of a map where the Fog of War will behave in a specified way.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5722455564052-Creating-Fog-of-War-Areas)\r\n\r\n---\r\n\r\n### Player Settings\r\nThere are a number of player controls available for crafted maps and custom scenarios that allow mod creators to control aspects of player slots, team allegiances, faction colours, and AI settings. This guide covers what these player settings are and what effect they have.\r\n\r\n[View Guide](https://support.ageofempires.com/hc/en-us/articles/5502424402324-Adjusting-Player-Settings)",
            "https://www.ageofempires.com/wp-content/uploads/2021/04/NDA2_1920x1080.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"ugc\"],\r\n \"url\": \"https://support.ageofempires.com/hc/en-us/sections/360012376652-Age-of-Empires-IV-Mod-Workshop\"\r\n}",
            1664434800,
            1672473600
        ],
        [
            70,
            "Mods - Community Spotlight",
            "Community Mod Spotlight",
            "Check out just a few of the amazing mods created by members of the Age of Empires IV community!",
            "Since the release of the _Age of Empires IV_ Content Editor (Beta) we\u2019ve seen a ton of cool content created by members of the _Age of Empires IV_ community! \r\n\r\nIn the four short months since we launched the [Content Editor (Beta)](https://www.ageofempires.com/news/customize-your-battle-with-the-age-of-empires-iv-content-editor-beta/) back in April, players just like you have been hard at work creating a ton of awesome new maps, tuning packs, and game modes for everyone to enjoy.\r\n\r\nIn fact, there\u2019s so much cool content out there that we thought it was worth sharing them in a Community Mod Spotlight. \r\n\r\n---\r\n\r\n### Castle Blood Automatic\r\n_Created by kzoacn_\r\n![Castle Blood Automatic](https://xforgeassets002.xboxlive.com/pf-title-aa0bae460e9fd6e4-ed603/b2b2f6a6-f538-4754-b81e-195efd30b754/thumbnail.jpeg?width=768&height=432)\r\nThe classic game mode from Age of Empires II has been re-created in Age of Empires IV! Castle Blood Automatic provides all players with a castle that continuously spawns units, creating a free-for-all bloodbath in the center of the map. This mod changes the fundamentals of play and is a great example of a mod bundle containing three parts: a game mode, tuning pack, and crafted map.\r\n\r\n[View Mod](https://www.ageofempires.com/mods/details/55628/)\r\n\r\n---\r\n\r\n### Trojan Sheep\r\n_Created by Kotri_\r\n![Trojan Sheep](https://xforgeassets001.xboxlive.com/pf-title-aa0bae460e9fd6e4-ed603/1c5900f7-0487-479b-9bd5-79f7b438134f/thumbnail.jpeg?width=768&height=432)\r\nAn incredibly unique Tuning Pack adds a new unit to the game; a non-hostile sheep that can explode to cause damage to all units within range. In addition to being absolutely hilarious, this adds an interesting dynamic to play as players must constantly be on the lookout for these stealthy neutral sheep, as their units will not automatically attack them.\r\n\r\n[View Mod](https://www.ageofempires.com/mods/details/55540/)\r\n\r\n---\r\n\r\n### Cauldron\r\n_Created by 'Twister_\r\n![Cauldron](https://xforgeassets001.xboxlive.com/pf-title-aa0bae460e9fd6e4-ed603/33350abb-c2d3-461d-868f-d503f6e7758c/thumbnail.jpeg?width=768&height=432)\r\nA rocky, mountainous map with a small lake in the center teeming with fish. Cauldron provides players an isolated corner to build in while fighting over control of the central lake and it's abundant fishy bounty.\r\n\r\n[View Mod](https://www.ageofempires.com/mods/details/94208/)\r\n\r\n---\r\n\r\n### Four Lakes\r\n_Created by Bidderlyn & Fano_\r\n![Four Lakes](https://xforgeassets001.xboxlive.com/pf-title-aa0bae460e9fd6e4-ed603/13b2daa0-dd34-4398-85e5-56ae360b3661/thumbnail.jpeg?width=768&height=432)\r\nA remake of a classic Age of Empires II map, Four Lakes features a flat plain with lake in each corner. These lakes each hold a bounty of fish, encouraging players to control of as much coastline as they can to get a food advantage over their opponents.\r\n\r\n[View Mod](https://www.ageofempires.com/mods/details/72914/)\r\n\r\n---\r\n\r\n### Basin \r\n_Created by IamAvely_\r\n![Basin](https://xforgeassets001.xboxlive.com/pf-title-aa0bae460e9fd6e4-ed603/21863386-a4df-4a0d-9a32-7946dd12e75c/thumbnail.jpeg?width=768&height=432)\r\nA hilly map covered in forests, the land gives way to a flat plain in the centre. Encouraging \"king of the hill\" style gameplay, Basin provides each player with a sacred site near their start location as they vie for control of the single sacred site in the middle.\r\n\r\n[View Mod](https://www.ageofempires.com/mods/details/94798/)\r\n\r\n---\r\n\r\nOf course, these are just a select few of the thousands of mods already available for _Age of Empires IV_, with more and more being released each and every day! \r\n\r\nWant to see your own content shared here in the future? Learn more about the _Age of Empires_ Content Editor (Beta) at the link below and get creating today!",
            "https://www.ageofempires.com/wp-content/uploads/2022/04/UGC_Banner_v2_1920x1080-3.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"ugc\"],\r\n \"url\": \"https://www.ageofempires.com/news/customize-your-battle-with-the-age-of-empires-iv-content-editor-beta/\"\r\n}",
            1664434800,
            1672473600
        ],
        [
            72,
            "Hero - Anniv. Celebration",
            "AoE Anniversary celebration!",
            "Join us on October 25th for our anniversary broadcast",
            "We\u2019re thrilled to announce that on **October 25th**, we\u2019ll be celebrating 25 years of _Age of Empires_ in a big way. \n\nJoin us live from a special location as we share our Anniversary Broadcast featuring announcements, interviews with the team and some surprises. \n\nOf course, we want to maintain an air of mystery so we won\u2019t tell you exactly what we have garrisoned in our Town Center but we promise, there\u2019ll be something for everyone! **Tune in October 25th, 10am PT** to take part.",
            "https://www.ageofempires.com/wp-content/uploads/2022/09/AgeIV-AnniversaryEd-1920x1080-1.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"hero\", \"widget\"],\r\n \"showAlways\": false,\r\n \"url\": \"https://aoe.ms/25-years-of-aoe\"\r\n}",
            1664348400,
            1668067200
        ],
        [
            37,
            "Mods - Royal Rumble",
            "Royal Rumble",
            "Check out Royal Rumble, a new mod from the Age IV dev team.",
            "Alongside the Beta launch of the _Age of Empires_ Content Editor, the development team has released a new mod for you to try - Royal Rumble! \r\n\r\nAchieve victory by eliminating enemy Kings while defending your own in this classic game mode inspired by Regicide in Age of Empires II.",
            "https://www.ageofempires.com/wp-content/uploads/2022/04/UGC_Banner_v2_1920x1080-3.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"ugc\"]\r\n}",
            1649278800,
            1672473600
        ],
        [
            38,
            "Mods - Content Editor",
            "Content Editor",
            "The Age IV Content Editor is your one-stop shop for custom play.",
            "Want to create your own highly specialized map? Want to play with a French Knight that\u2019s overpowered to the nth degree?\n\nWith the launch of Season One, the Beta release of the _Age of Empires IV_ Content Editor will allow you to play around with several customization options. \n\nClick on the link below to find out more!",
            "https://www.ageofempires.com/wp-content/uploads/2022/04/UGC_Banner_v2_1920x1080-3.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"ugc\"],\r\n \"url\": \"https://aoe.ms/content-editor-beta\"\r\n}",
            1649242800,
            1672473600
        ],
        [
            39,
            "Mods - Welcome to Mods!",
            "Welcome to Mods!",
            "Learn more about creating and using mods!",
            "We're excited to have brought the Age of Empires IV Content Editor (Beta) online as part of Season One! This free content creation tool provides new and advanced creators with the ability to sculpt their own maps, craft unique mission scenarios, forge data driven tuning packs and envision new modes of play for Age IV.\r\n\r\nThe Age IV Content Editing tool will initially be launched in a BETA format. This will enable the Age IV team to fix bugs, refine existing features and develop new ones. Your feedback is incredibly important to us, and will be critical in our efforts to further enhance the editor for all players.\r\n\r\nClick on the link below to find out more about the Content Editor and the tutorial docs created by the team to further help guide creators through the process of understanding the various features and functionality the tooling provides.",
            "https://www.ageofempires.com/wp-content/uploads/2022/04/UGC_Banner_v2_1920x1080-3.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"ugc\"],\r\n \"url\": \"https://aoe.ms/mod-workshop\"\r\n}",
            1649228400,
            1672473600
        ],
        [
            16,
            "News - New to Age",
            "New to Age?",
            "Here is where you can start!",
            "Welcome to _Age of Empires IV_! There's a lot for you to play and dive into. Don't know where to start? Click below for some advice from our own _Age of Empires IV_ experts!",
            "https://www.ageofempires.com/wp-content/uploads/2021/10/Community_Tab_NewtoAge4.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"featured\"],\r\n \"url\": \"https://aoe.ms/newtoage4\"\r\n}",
            1635231605,
            2234847600
        ],
        [
            17,
            "News - Video Playlist",
            "Watch more AOE",
            "Check out our Age IV videos on YouTube.",
            "Looking for more _Age of Empires IV_ content? \n  \nThe _Age of Empires IV_ playlist over on our YouTube page has you covered with Game Trailers, Behind the Scenes, Developer Showcases, and more!",
            "https://www.ageofempires.com/wp-content/uploads/2021/10/Community_Tab_Thumbs_CuratedPlaylist.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"featured\"],\r\n \"url\": \"https://aoe.ms/aoe4-yt-playlist\"\r\n}",
            1635231604,
            2234847600
        ],
        [
            18,
            "News - Code of Conduct",
            "Code of Conduct",
            "Read the Code of Conduct for Age of Empires",
            "With the release of the _Age of Empires IV_ Season One update, we welcome all our players and creators who are enjoying the new content, including mods! \r\n\r\nFind out more about what makes us such a diverse community and our commitment to making _Age of Empires_ a welcome and safe place to engage.",
            "https://www.ageofempires.com/wp-content/uploads/2021/04/NDA2_1920x1080.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"featured\", \"ugc\"],\r\n \"url\": \"https://aoe.ms/codeofconduct\"\r\n}",
            1635231603,
            2234847600
        ],
        [
            13,
            "News - More News Static",
            "MORE NEWS",
            "Read up on more news here.",
            "For more news, information, and updates go to ageofempires.com!",
            "https://static.ageofempires.com/aoe/wp-content/uploads/2021/04/Placeholder_1920x1080.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"featured\"],\r\n \"url\": \"https://www.ageofempires.com/news?game=aoeiv\"\r\n}",
            1633676400,
            2234995200
        ],
        [
            2,
            "Social - Discord",
            "Discord",
            "Join the chat on Discord.",
            null,
            "https://static.ageofempires.com/aoe/wp-content/uploads/2021/06/social_discord.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"social\"],\r\n \"url\": \"https://discord.gg/ageofempires\"\r\n}",
            1622660400,
            2209017600
        ],
        [
            3,
            "Social - Facebook",
            "Facebook",
            "Check out our Facebook page.",
            null,
            "https://static.ageofempires.com/aoe/wp-content/uploads/2021/06/social_facebook.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"social\"],\r\n \"url\": \"https://www.facebook.com/ageofempires/\"\r\n}",
            1622660400,
            2209017600
        ],
        [
            1,
            "Social - Forums",
            "Forums",
            "Join the discussion on the official Forums.",
            null,
            "https://www.ageofempires.com/wp-content/uploads/2021/04/BugForums2_1920x1080.png",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"social\"],\r\n \"url\": \"https://forums.ageofempires.com/c/age-of-empires-iv/184\"\r\n}",
            1622574000,
            2209017600
        ],
        [
            4,
            "Social - Twitter",
            "Twitter",
            "Catch the latest updates on Twitter.",
            null,
            "https://static.ageofempires.com/aoe/wp-content/uploads/2021/06/social_twitter.jpg",
            "",
            "{\r\n \"version\": 1,\r\n \"categories\": [\"social\"],\r\n \"url\": \"https://twitter.com/AgeOfEmpires\"\r\n}",
            -62135524800,
            2209017600
        ]
    ],
    [
        [
            "Season 3 - Event 1a - Anniversary",
            1666716600,
            1669708740,
            1669708740,
            22,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Login Reward 1 - Anniversary",
            1666716600,
            1669708740,
            1669708740,
            24,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Login Reward 2 - Anniversary - chibi wololo",
            1666716600,
            1669708740,
            1669708740,
            25,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Login Reward 3 - Coin",
            1666716600,
            1669708740,
            1669708740,
            26,
            0,
            null,
            ""
        ],
        [
            "Season 3 - Takeover Image - Anniversary",
            1666718100,
            1669708740,
            1669708740,
            28,
            0,
            null,
            "{\"frontEndImagePath\":\"\\\\Images\\\\backgrounds\\\\events\\\\s03_25anniversary.png\"}"
        ],
        [
            "Season 3 - Solo Ranked Season",
            1666804500,
            1676534340,
            1893484800,
            31,
            6,
            "Season 3",
            "{\"leaderboard\":{\"leaderboards\":[{\"copyFromBase\":1,\"scoringType\":2}],\"decay\":{\"reqRating\":1400,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_3.png\",\"icon2\":\"ffab3c\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1200},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_2.png\",\"icon2\":\"ffab3c\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1200},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_1.png\",\"icon2\":\"ffab3c\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1200},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_3.png\",\"icon2\":\"699dfd\",\"level\":15,\"tier\":5,\"minRating\":1350,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1199},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_2.png\",\"icon2\":\"699dfd\",\"level\":14,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1199},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_1.png\",\"icon2\":\"699dfd\",\"level\":13,\"tier\":5,\"minRating\":1200,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1199},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_3.png\",\"icon2\":\"65a1c4\",\"level\":12,\"tier\":4,\"minRating\":1150,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1198},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_2.png\",\"icon2\":\"65a1c4\",\"level\":11,\"tier\":4,\"minRating\":1100,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1198},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_1.png\",\"icon2\":\"65a1c4\",\"level\":10,\"tier\":4,\"minRating\":1000,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1198},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_3.png\",\"icon2\":\"ffd469\",\"level\":9,\"tier\":3,\"minRating\":900,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1197},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_2.png\",\"icon2\":\"ffd469\",\"level\":8,\"tier\":3,\"minRating\":800,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1197},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_1.png\",\"icon2\":\"ffd469\",\"level\":7,\"tier\":3,\"minRating\":700,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1197},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_3.png\",\"icon2\":\"a7aebb\",\"level\":6,\"tier\":2,\"minRating\":650,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1196},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_2.png\",\"icon2\":\"a7aebb\",\"level\":5,\"tier\":2,\"minRating\":600,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1196},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_1.png\",\"icon2\":\"a7aebb\",\"level\":4,\"tier\":2,\"minRating\":500,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1196},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_3.png\",\"icon2\":\"9d6242\",\"level\":3,\"tier\":1,\"minRating\":450,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1195},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_2.png\",\"icon2\":\"9d6242\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1195},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_1.png\",\"icon2\":\"9d6242\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1195}]},\"pointUpdate\":{\"winPtsDefault\":0,\"losePtsDefault\":0,\"maxWinPts\":45,\"minWinPts\":2,\"maxLosePts\":45,\"minLosePts\":4,\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.05\",\"adjustmentOnLoseDefault\":\"0.05\",\"winDifferenceToApply\":100,\"loseDifferenceToApply\":100}}}"
        ],
        [
            "Season 3 - Team Ranked Season",
            1666804500,
            1676534340,
            1893484800,
            32,
            6,
            "Season 3",
            "{\"leaderboard\":{\"leaderboards\":[{\"name\":\"Season 3 Team\",\"scoringType\":2,\"visibleToPublic\":true,\"mapEntries\":[{\"matchType\":2,\"race\":-1,\"statGroupType\":1},{\"matchType\":3,\"race\":-1,\"statGroupType\":1},{\"matchType\":4,\"race\":-1,\"statGroupType\":1}]}],\"decay\":{\"reqRating\":1400,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_conquerer_3.png\",\"icon2\":\"ffab3c\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1206},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_conquerer_2.png\",\"icon2\":\"ffab3c\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1206},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_conquerer_1.png\",\"icon2\":\"ffab3c\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1206},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_diamond_3.png\",\"icon2\":\"699dfd\",\"level\":15,\"tier\":5,\"minRating\":1350,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1205},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_diamond_2.png\",\"icon2\":\"699dfd\",\"level\":14,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1205},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_diamond_1.png\",\"icon2\":\"699dfd\",\"level\":13,\"tier\":5,\"minRating\":1200,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1205},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_platinum_3.png\",\"icon2\":\"65a1c4\",\"level\":12,\"tier\":4,\"minRating\":1150,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1204},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_platinum_2.png\",\"icon2\":\"65a1c4\",\"level\":11,\"tier\":4,\"minRating\":1100,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1204},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_platinum_1.png\",\"icon2\":\"65a1c4\",\"level\":10,\"tier\":4,\"minRating\":1000,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1204},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_gold_3.png\",\"icon2\":\"ffd469\",\"level\":9,\"tier\":3,\"minRating\":900,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1203},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_gold_2.png\",\"icon2\":\"ffd469\",\"level\":8,\"tier\":3,\"minRating\":800,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1203},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_gold_1.png\",\"icon2\":\"ffd469\",\"level\":7,\"tier\":3,\"minRating\":700,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1203},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_silver_3.png\",\"icon2\":\"a7aebb\",\"level\":6,\"tier\":2,\"minRating\":650,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1202},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_silver_2.png\",\"icon2\":\"a7aebb\",\"level\":5,\"tier\":2,\"minRating\":600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1202},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_silver_1.png\",\"icon2\":\"a7aebb\",\"level\":4,\"tier\":2,\"minRating\":500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1202},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_bronze_3.png\",\"icon2\":\"9d6242\",\"level\":3,\"tier\":1,\"minRating\":450,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1201},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_bronze_2.png\",\"icon2\":\"9d6242\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1201},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\team_bronze_1.png\",\"icon2\":\"9d6242\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1201}]},\"pointUpdate\":{\"winPtsDefault\":0,\"losePtsDefault\":0,\"maxWinPts\":45,\"minWinPts\":2,\"maxLosePts\":45,\"minLosePts\":4,\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.05\",\"adjustmentOnLoseDefault\":\"0.05\",\"winDifferenceToApply\":100,\"loseDifferenceToApply\":100}}}"
        ],
        [
            "Season 1 - Ranked Season - Festival of Ages",
            1649869200,
            1656608400,
            1893484800,
            3,
            6,
            "Season 1",
            "{\"leaderboard\":{\"leaderboards\":[{\"copyFromBase\":1,\"scoringType\":2}],\"decay\":{\"reqRating\":1015,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1059},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1059},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1059},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":15,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1060},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":14,\"tier\":5,\"minRating\":1230,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1060},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":13,\"tier\":5,\"minRating\":1130,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1060},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":12,\"tier\":4,\"minRating\":1090,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1062},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":11,\"tier\":4,\"minRating\":1050,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1062},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":10,\"tier\":4,\"minRating\":1015,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1062},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":9,\"tier\":3,\"minRating\":980,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1061},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":8,\"tier\":3,\"minRating\":930,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1061},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":7,\"tier\":3,\"minRating\":880,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1061},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":6,\"tier\":2,\"minRating\":840,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1063},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":5,\"tier\":2,\"minRating\":800,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1063},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":4,\"tier\":2,\"minRating\":770,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1063},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":3,\"tier\":1,\"minRating\":600,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1058},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1058},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1058}]},\"pointUpdate\":{\"winPtsDefault\":3,\"losePtsDefault\":0,\"maxWinPts\":65,\"minWinPts\":10,\"maxLosePts\":45,\"minLosePts\":5,\"maxWinChance\":\"0.8\",\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.09\",\"adjustmentOnLoseDefault\":\"0.06\",\"winDifferenceToApply\":250,\"loseDifferenceToApply\":250}}}"
        ],
        [
            "Season 2 - Ranked Season - Map Monsters",
            1657818000,
            1666681200,
            1893484800,
            15,
            6,
            "Season 2",
            "{\"leaderboard\":{\"leaderboards\":[{\"copyFromBase\":1,\"scoringType\":2}],\"decay\":{\"reqRating\":1400,\"minDays\":15,\"amountPerDay\":5,\"maxAmount\":200},\"rankLevels\":{\"customRanks\":[{\"name\":\"Conqueror III\",\"locID\":\"11202624\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":18,\"tier\":6,\"minRating\":1600,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1131},{\"name\":\"Conqueror II\",\"locID\":\"11202625\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":17,\"tier\":6,\"minRating\":1500,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1131},{\"name\":\"Conqueror I\",\"locID\":\"11202626\",\"icon\":\"\\\\Images\\\\multiplayer\\\\conquerer_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":16,\"tier\":6,\"minRating\":1400,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1131},{\"name\":\"Diamond III\",\"locID\":\"11202621\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":15,\"tier\":5,\"minRating\":1350,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1132},{\"name\":\"Diamond II\",\"locID\":\"11202622\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":14,\"tier\":5,\"minRating\":1300,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1132},{\"name\":\"Diamond I\",\"locID\":\"11202623\",\"icon\":\"\\\\Images\\\\multiplayer\\\\diamond_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":13,\"tier\":5,\"minRating\":1200,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1132},{\"name\":\"Platinum III\",\"locID\":\"11202618\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":12,\"tier\":4,\"minRating\":1150,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1134},{\"name\":\"Platinum II\",\"locID\":\"11202619\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":11,\"tier\":4,\"minRating\":1100,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1134},{\"name\":\"Platinum I\",\"locID\":\"11202620\",\"icon\":\"\\\\Images\\\\multiplayer\\\\platinum_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":10,\"tier\":4,\"minRating\":1000,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1134},{\"name\":\"Gold III\",\"locID\":\"11202615\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":9,\"tier\":3,\"minRating\":900,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1133},{\"name\":\"Gold II\",\"locID\":\"11202616\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":8,\"tier\":3,\"minRating\":800,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1133},{\"name\":\"Gold I\",\"locID\":\"11202617\",\"icon\":\"\\\\Images\\\\multiplayer\\\\gold_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":7,\"tier\":3,\"minRating\":700,\"maxRanking\":100,\"rankingType\":1,\"itemBundleID\":1133},{\"name\":\"Silver III\",\"locID\":\"11202612\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":6,\"tier\":2,\"minRating\":650,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1135},{\"name\":\"Silver II\",\"locID\":\"11202613\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":5,\"tier\":2,\"minRating\":600,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1135},{\"name\":\"Silver I\",\"locID\":\"11202614\",\"icon\":\"\\\\Images\\\\multiplayer\\\\silver_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow_blue.png\",\"level\":4,\"tier\":2,\"minRating\":500,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1135},{\"name\":\"Bronze III\",\"locID\":\"11202608\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_3.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":3,\"tier\":1,\"minRating\":450,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1130},{\"name\":\"Bronze II\",\"locID\":\"11202609\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_2.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":2,\"tier\":1,\"minRating\":400,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1130},{\"name\":\"Bronze I\",\"locID\":\"11202610\",\"icon\":\"\\\\Images\\\\multiplayer\\\\bronze_1.png\",\"icon2\":\"\\\\Images\\\\multiplayer\\\\rank_glow.png\",\"level\":1,\"tier\":1,\"minRating\":0,\"maxRanking\":100,\"maxBonusPts\":100,\"rankingType\":1,\"itemBundleID\":1130}]},\"pointUpdate\":{\"winPtsDefault\":0,\"losePtsDefault\":0,\"maxWinPts\":45,\"minWinPts\":2,\"maxLosePts\":45,\"minLosePts\":4,\"maxWinChance\":\"0.8\",\"bonusPtsPerDay\":5,\"maxPtsAllowBonus\":2400,\"maxWinPtsWithBonus\":10,\"maxBonusPtsDefault\":5,\"placementMatch\":5,\"adjustmentOnWinPlacementAbs\":\"0.175\",\"adjustmentOnLosePlacementAbs\":\"0.1\",\"adjustmentOnWinPlacementRel\":\"0.02\",\"adjustmentOnLosePlacementRel\":\"0.02\",\"adjustmentOnWinDefault\":\"0.05\",\"adjustmentOnLoseDefault\":\"0.05\",\"winDifferenceToApply\":100,\"loseDifferenceToApply\":100}}}"
        ]
    ]
]

Party Endpoints

Endpoints for match management, including reporting match results, managing peer connections, uploading replays, and handling singleplayer sessions.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
peerAddPOSTRegister a peer connection for match participants
peerUpdatePOSTUpdate peer connection status
reportMatchPOSTSubmit match results with player stats and replay upload URL
createOrReportSingleplayerPOSTCreate or report results for a singleplayer session
finalizeReplayUploadPOSTConfirm replay file upload completion
sendMatchChatPOSTSend chat messages during a match

[POST] /game/party/createOrReportSinglePlayer

AUTHENTICATION

AoE4

Request

POST /game/party/createOrReportSinglePlayer HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 2535
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Expect: 100-continue

appbincrc=24916&callNum=58&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&countersZip="H4sIAAAAAAAACouOBQApu0wNAgAAAA=="&createMatchKey=1&datacrc=-638535971&isComplete=0&itemUpdates=[]&lastCallTime=210521&mapname=ang_chp1_hastings&matchKey=&matchTypeID=17&moddllcrc=0&moddllfile=INVALID&modname=INVALID&modversion=INVALID&options=eNqtUstO4zAUnW+52wnCTZ2nxCKdVqWCoR2oYBCqKjdxEkPiWElKKVX/fa6dtLNhiReW7/E593HsA5RMLfeKQ0gs2Al5w/cQDn0H15BSCxKRQmhb0LSsbhsIB4Y1V/r8AlF0dQUrC2qZQEgHtm17lBDfgqKK30zKrcAbhD1CPMezA5s6gc5bsjbOTTGAPvqVZkj1XSxWVK2JIM2iKLqmuI1+4hZ9S6yb7msuRtMZNgiXeu16XN2xEg0BJrN1nKvBOmdNK2TWgBmMFeKTJ7/PNI2yPa+1Iyujn3L58ImG2AENXBzaOaG3bF9t269uRqL6Cn74b3sH3GunySmav9fGpwOU64S1THdzPGtjLrunRb9ZUVS7yUe7eGuM3sT3XJ3iskq6Rz3o44LFGn85AKvj2RjTjm+d6uZy/ppNnrxc+s/CS8jTH2MYUh55jRzXnu6u64mcpH+p+zraPNaB3PRmY86FTn5hU5dQ36e+S1z8EQ4ZBjjesaMsTS9quzE1USeaMVcGbHSJC/RB9q4fVyhS6Uy+d1SV3vH2rNpk3fdreFQUgsmYLzkru1njnDNj6vHHP5f2390=&race_ids=[]&results=[]&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&slotInfo=eNrtVltvo0YU7m/xc7aCwSRLpH0wdgZj2Thg7lUfGMDiMmAaMDau+t97BpzEmzRdrdqXSH5AzJwznDmX7/tsHt389ueoetptUxqr5Xb3axqN7pEwvhXGN6O6CZp0V6qz0T1/M2rioGBL7ma0DcJnB+yegjBmS4T4u/GY7ct8GbcxPXvLfBU0YWJ2VX/sC4uVFvFj/ISfgiJebfpzaW3EQdT1a3bxvu6XRdwEs6AJRvejuFs0LqJ7A+HG36i3q+khJbZUkdKnpDTasKQb38F5/Oo7EAWLvrt4tW96e+c5Yk4Qb0YK7iIstyGiXOBIezXbHZdTuEfQOM9dgE0sLUU6Ba5RETRO1yk3+BHf+lhOPNQ8hnPmE09qVt2pxYud7YnrcjXYtsSRckvBWcD5tedE4Nsd3sQ5WYKRRHO7/w5qTcJCWxhT9VbNjZXmSMslJ/3hc7aroWS/xrTSkH6w+QfpcaPWasnyNfiwG2oP0bGN4Nul+QD3G3syZfbxYTWbwCNL7tCHJLBlGpZaSwpcQ40i5JWq6dlnHVvPMdrI1dN1pndrUxe1LIS31dfkIelEHBt6pL3twTZUMMzFMD2UUDjT13GeXw53cKss59amJ8CbH/ptiKFiwT2yNOzlBHrPWfNFRRzcsdmp6dd22X1toxMnnXM8eA7dR1ijkMveV350zugCh4MZqr1/KYRD717ztfx+5h/GSaEfpW/LEIdPwjJ/E2txzt2gnsPLRDlWgLOMYVXNsaxb8JgvsWC+vKg7UJ/CsDfM/XkuzGe7chkWOPfdVbqmTTTgBXfEpTYpKMdm7fADvnxFWhPB2JxxXcUF6+VD7wtcDewatQoMPZIaMqem7xypB3n60xeu7DxXmxJFygJk57YVzV4wKsi151Ia5oATReLDlOFqIU0m376N/rp5rx+M4Rfa8eVCPPgPxYMTb+++Fw/038QD/f/iMf0c4vFv5PYVu/Bcu46wlAFIGTFKkg4kgPWKIJwTweb+kaRIg1p5Gik0MwW5r5mBsO/tM2GRtvMdnm4sEI2y7nvMQKbNVFGb5Ug7wXvIj4tdmbJatptLkn5Eru+ICgBmdRk/OmeFBW1Y3b2/k4RHk0svBcZW7A7q+TCOxwiIbJ3FgZmKb2Odc+cAI43uHGsQj72HgHzpQrYY4a2H11juooktnAbOsYI76SWBe59tH3xhkcCM3ouBI1bR/FIIjNYsJO6Z1IFb0Rf8IXoCe+bbiwR61BLnKFrIrqFnkCcT88kgDAo+6QWIPGqoj+253r3D/oywHxJXZdjttvrkpwmPfuLfwpXwV8J/asLrV8LfC1fCXwl/JfxnJvzvv/wNG4ZmsA==&teamIDs=[]&versionFlags=0&xpGained=[]
parametertypevaluecomments
appbincrcint24916
callNumint123
connect_idstrccc
countersZip?zip
createMatchKeyint1
datacrcint-4514551
isCompleteint0
itemUpdatesarr[][]
lastCallTimetimestamp111
mapnamestrang_chp1_hastings
matchKey?
matchTypeIDint17
moddllcrcint0
moddllfile?INVALID
modname?INVALID
modversion?INVALID
optionsstr
race_idsarray[int][1,2,3]
resultsarr[][]
sessionIDstrzzz
slotInfostr
teamIDsarray[int][0,1]
versionFlagsint0
xpGainedarray[int][]

Response

[
    0, // result status code
    86651938,
    "54d65072140dcc75321b5da5ea4c80cd",
    [
        6,
        233334, // self profile_id
        "/steam/76561197333337299", // self steam_id
        "",
        "TTLv2", // self steam_name
        "",
        4275156,
        0,
        1,
        0,
        null,
        "76561197333337299", // self steam_id64
        3,
        []
    ],
    [],
    [],
    [],
    null,
    0,
    0,
    [],
    [
        [
            449911690,
            0,
            451960,
            233334, // self profile_id
            1,
            0,
            "",
            1666823722,
            5,
            -1,
            3,
            -1
        ]
    ],
    null,
    [
        -1,
        "",
        "",
        "",
        0,
        ""
    ],
    [
        -1,
        "",
        "",
        "",
        0,
        ""
    ],
    [],
    [],
    [],
    [],
    [],
    [],
    []
]

[POST] /game/party/finalizeReplayUpload

AUTHENTICATION

AoE2:DE

Request

POST /game/party/finalizeReplayUpload HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=9d14d30f6b4043bb709afd579149ef4d;ApplicationGatewayAffinityCORS=9d14d30f6b4043bb709afd579149ef4d;worldsedgelink=1976371361;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 404

callNum=148&connect_id=ebyb0gp9rsvu863i501263m9wjly55&errorString=&finalizeResult=1&isSinglePlayer=0&lastCallTime=2613735&match_id=186444398&sessionID=ebyb0gp9rsvu863i501263m9wjly55&size=340242&url=https://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/436432/aoelive_/age2/replay/windows/4.0.0/0/M_186444398_8b31ed6602350cce7ee1736393cab532712c579e545fdd41995117491b1ae319.gz
parametertypevaluecomments
callNumint123
connect_idstrccc
errorStringstr
finalizeResultint1
isSinglePlayerint0
lastCallTimetimestamp111
match_idint555
sessionIDstrzzz
sizeint3124size in bytes
urlstrhttps://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/436432/aoelive_/age2/replay/windows/4.0.0/0/M_186444398_8b31ed6602350cce7ee1736393cab532712c579e545fdd41995117491b1ae319.gz

Response

[
   0 // result status code
]

AoE4

Request

POST /game/party/finalizeReplayUpload HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 404
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=114&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&errorString=&finalizeResult=1&isSinglePlayer=1&lastCallTime=650769&match_id=86651938&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&size=94758&url=https://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/436432/aoelive_/age4/replay/windows/4.0.0/24916/S_86651938_dc7e849e1c1c345607b4f1ee23788d246e9ce15955787ac520a40ea0c9ec0d77.gz
parametertypevaluecomments
callNumint123
connect_idstrccc
errorStringstr
finalizeResultint1
isSinglePlayerint1
lastCallTimetimestamp111
match_idint555
sessionIDstrzzz
sizeint3124size in bytes
urlstrhttps://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/436432/aoelive_/age4/replay/windows/4.0.0/24916/S_86651938_dc7e849e1c1c345607b4f1ee23788d246e9ce15955787ac520a40ea0c9ec0d77.gz

Response

[
   0 // result status code
]

[POST] /game/party/peerAdd

AUTHENTICATION

AoE2:DE

Request

POST /game/party/peerAdd HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 220
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&match_id=555&profile_ids=[1,1]&race_ids=[1,2,3]&sessionID=zzz&statGroup_ids=[4,5,6]&teamIDs=[0]
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
match_idint555
profile_idsarray[int][44129481,28941984]
race_idsarray[int][2,3]
sessionIDstrzzz
statGroup_idsarray[int][1321,12314]
teamIDsarray[int][0,1]

Response

[
   0 // result status code
]

AoE4

Request

POST /game/party/peerAdd HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 225
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=272&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=3025005&match_id=50865084&profile_ids=[233334]&race_ids=[2039321]&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&statGroup_ids=[4275156]&teamIDs=[0]
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
match_idint555
profile_idsarray[int][44129481,28941984]
race_idsarray[int][2,3]
sessionIDstrzzz
statGroup_idsarray[int][1321,12314]
teamIDsarray[int][0,1]

Response

[
   0 // result status code
]

[POST] /game/party/peerUpdate (Missing Response)

AUTHENTICATION

Response

AoE2:DE

Request

POST /game/party/peerUpdate HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 247
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&isNonParticipants=[0,0]&lastCallTime=111&match_id=555&profile_ids=[1,1]&race_ids=[1,2,3]&sessionID=zzz&teamIDs=[0,1]
parametertypevaluecomments
callNumint123
connect_id
isNonParticipantsarray[int][0,0]
lastCallTimetimestamp
match_idint555
profile_idsarray[int][1,1]
race_idsarray[int][1,2,3]
sessionIDstrzzz
teamIDsarray[0,1]

Response

RESPONSE_TEMPLATE

[POST] /game/party/reportMatch

AUTHENTICATION

AoE2:DE

Request

POST /game/party/reportMatch HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 1265
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
Expect: 100-continue

callNum=123&checkSums=[0,0]&connect_id=ccc&countersZip=zip&itemUpdates=upd&lastCallTime=111&match_id=555&profile_ids=[1,1]&race_ids=[1,2,3]&results=[0,1]&sessionID=zzz&simplayerIDs=[1,7]&teamIDs=[0,1]&xpGained=[2,20]
parametertypevaluecomments
callNumint123
checkSumsarray[int][0,0]
connect_idstrccc
countersZip?zip
itemUpdates?upd
lastCallTimetimestamp111
match_idint555
profile_idsarray[int][1,1]
race_idsarray[int][1,2,3]
resultsarray[int][0,1]
sessionIDstrzzz
simplayerIDsarray[int][1,7]
teamIDsarray[int][0,1]
xpGainedarray[int][2,20]

Response

[
    0, // result status code
    [],
    [
        186444398,
        "https://rl0aoelivemk2blob.blob.core.windows.net/cloudfiles/436432/aoelive_/age2/replay/windows/4.0.0/0/M_186444398_8b31ed6602350cce7ee1736393cab532712c579e545fdd41995117491b1ae319.gz",
        "rl0aoelivemk2blob.blob.core.windows.net",
        "/cloudfiles/436432/aoelive_/age2/replay/windows/4.0.0/0/M_186444398_8b31ed6602350cce7ee1736393cab532712c579e545fdd41995117491b1ae319.gz",
        0,
        "sig=WND8xzRAWkcTItdgU06jbannF1BSfIH%2BaXnF1kx65CA%3D&se=2022-10-22T01%3A06%3A51Z&sv=2019-02-02&sp=cw&sr=b"
    ],
    [
        -1,
        "",
        "",
        "",
        0,
        ""
    ],
    null,
    [],
    [],
    [],
    [],
    [],
    [],
    0,
    null,
    [],
    [],
    []
]

[POST] /game/party/sendMatchChat

AUTHENTICATION

AoE2DE

Request

POST /game/party/sendMatchChat HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 229
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

broadcast=0&callNum=150&connect_id=ebyb0gp9rsvu863i501263m9wjly55&lastCallTime=2616898&match_id=186444398&message=0*gg&messageTypeID=0&sessionID=ebyb0gp9rsvu863i501263m9wjly55
parametertypevaluecomments
broadcastint1aoe4: 1, aoe2de: 0 ?
callNumint123
connect_idstrccc
lastCallTimetimestamp111
match_idint555
messagestrdummymsg
messageTypeIDint2
sessionIDstrzzz

Response

[
   0 // result status code
]

AoE4

Request

POST /game/party/sendMatchChat HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 229
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

broadcast=1&callNum=123&connect_id=ccc&from_profile_id=111&lastCallTime=111&match_id=555&message=dummymsg&messageTypeID=2&sessionID=zzz&to_profile_id=222
parametertypevaluecomments
broadcastint1aoe4: 1, aoe2de: 0 ?
callNumint123
connect_idstrccc
from_profile_idint111only AoE4
lastCallTimetimestamp111
match_idint555
messagestrdummymsg
messageTypeIDint2
sessionIDstrzzz
to_profile_idid222only AoE4

Response

[
   0 // result status code
]

Player Report Endpoints

Endpoints for reporting players for misconduct, including cheating, harassment, and other violations of the code of conduct.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
reportUserPOSTSubmit a player report with reason, comment, and metadata

[POST] /game/playerreport/reportuser

AUTHENTICATION

AoE2:DE

Request

POST /game/playerreport/reportUser HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 278

callNum=79&comment=misclick&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&lastCallTime=2262938&metadata={"location":4,"clanTag":"KAOS","clanName":"KAOS"}&reportReason=7&reportType=&reportee_profile_id=209072&sessionID=mfukppp90s845hti7ktv7wc7e50hkv
parametertypevaluecomments
callNumint40
commentstr“misclick”
connect_idstr=sessionID
lastCallTimeint
metadatajson“{“location”:4,“clanTag”:“KAOS”,“clanName”:“KAOS”}“
reportReasonint77=all reasons
reportType?
reportee_profile_idint
sessionIDstr=connect_id

Response

[
    0, // result status code; success
    830398 // probably string value in binary to write to window (e.g. "We take reports very seriously")
]

Relationship Endpoints

Endpoints for managing social relationships between players, including friends lists, blocked users, and online presence status.

Authentication: All endpoints in this section require Steam authentication.

Endpoints

EndpointMethodDescription
getRelationshipsGETGet player’s friends, blocked users, and recent players
getPresenceDataGETGet online status and presence data for related players
setPresencePOSTSet player’s online presence status
setPresencePropertyPOSTUpdate a specific presence property
ignorePOSTAdd a player to the blocked/ignored list
clearRelationshipPOSTRemove a relationship (unfriend, unblock)

[POST] /game/relationship/clearRelationship

AUTHENTICATION

AoE2:DE

Request

POST /game/relationship/clearRelationship HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 153

callNum=62&connect_id=fnlyrvpogu8eefn5g97slfa6s4quyh&lastCallTime=1312682&relationType=1&sessionID=fnlyrvpogu8eefn5g97slfa6s4quyh&targetProfileID=4994658
parametertypevaluecomments
callNumint40
connect_idstr=sessionID
lastCallTimeint
relationTypeint11=Unban, 2=Unmute
sessionIDstr=connect_id
targetProfileIDint

Response

[
   0 // result status code
]

[GET] /game/relationship/getPresenceData

AUTHENTICATION

AoE2:DE

Request

GET /game/relationship/getPresenceData?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [],
    "UThEX8G6hJPubrzFQHPQPua1vkrbAQ74iq+hi5BC7qQXQtCvlJfgtgcK2vITDBl/ysBOnxv04QPBKGk1O9XKcNdl/FsURU7lOUfvitX8I4iIBSvOjvclZvy6IKVv8DlStV+5pB93lCY5jQ54OA85nLW9LUg1GmzgPMVMysmRBw907L6fiH4bkE1Hk6qMjGiAAJ/odkPpukUx4Uou50noykEIiellHjZQXs5nc4mCmAzw/0QP5zJgCcG5A6bsmfQo8swLBKEdKsxHBUANQ8QpwWyWrBhBZlc/Dl/fGbPPiLbcVN1OzQdGwU0b9//a1jE2Qyq/dPkUOofWu6w80RepuQ=="
]

AoE4

Request

GET /game/relationship/getPresenceData?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0,
    [
        [
            0,
            "offline",
            "Offline",
            "0"
        ],
        [
            1,
            "online",
            "Online",
            "1"
        ],
        [
            2,
            "lobby_online",
            "Online",
            "2"
        ],
        [
            3,
            "appear_offline",
            "Offline",
            "3"
        ],
        [
            1409813,
            "campaign",
            "Campaign",
            "1409813"
        ],
        [
            1409814,
            "custom_game_browser",
            "Browsing Custom",
            "1409814"
        ],
        [
            1409815,
            "in_game",
            "In Game",
            "1409815"
        ],
        [
            1409816,
            "in_group",
            "In Group",
            "1409816"
        ],
        [
            1409817,
            "in_lobby",
            "In Lobby",
            "1409817"
        ],
        [
            1409818,
            "observer_game_browser",
            "Browsing Observer",
            "1409818"
        ],
        [
            1409821,
            "quick_play_searching",
            "Quick Play Searching",
            "1409821"
        ]
    ],
    "t/BN8WlzWUepFrTvDm2s4PVNEqMSF+HIjytIFa5WBCLwFaUAhpE0UD9qOwHb9/53/VDj+ZgrldButKoKxlFkENeNeszYq69VIseZn69/CheovvpN0Z9pTioDVSQLjvDiJ3Ho1eiiiO2h/VqHV7P3HFEZ2LUKx7qFyHnwPqUrjIXvPNs7iMrChLTl/6srNp4tsAuipHBj6Qetow/ZgisJvIBQKEyoubxOHVLEs8xPojGr2r4+gJyCFYR2+R3R+LxXgS+sj5+6cxGy5H9YJc3zG7wWMymDlOhjzzC+siBKsaFfuLGaJW2mJ47IDC+8JKO6rTzuvXtzKwd2nVBEk838CQ=="
]

[GET] /game/relationship/getRelationships

AUTHENTICATION

AoE2:DE

Request

GET /game/relationship/getRelationships?callNum=123&connect_id=ccc&lastCallTime=111&sessionID=zzz HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [],
    [],
    [],
    [],
    [
        [
            4194,
            453225,
            "/steam/76561198041844374",
            "{\"icon\":\"PR7-003\"}",
            "How Do I Shoot Zweihänder",
            "",
            294907,
            161,
            1,
            3,
            null,
            "76561198041844374",
            3,
            [],
            0,
            null,
            []
        ],
        [
            1184,
            518884,
            "/steam/76561198023323630",
            "{\"icon\":\"PR7-001\"}",
            "CarbonbaseD",
            "",
            368202,
            28,
            1,
            0,
            null,
            "76561198023323630",
            3,
            [],
            0,
            null,
            []
        ],
        [
            4763,
            649416,
            "/steam/76561198016961929",
            "{\"icon\":\"PR5-004\"}",
            "Hazza_",
            "",
            509274,
            173,
            1,
            0,
            null,
            "76561198016961929",
            3,
            [],
            0,
            null,
            []
        ]
    ],
    [],
    []
]

AoE4

Request

GET /game/relationship/getRelationships?callNum=226&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=2939341&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19 HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
sessionIDstr

Response

[
    0, // result status code
    [],
    [],
    [],
    [],
    [],
    [],
    []
]

[POST] /game/relationship/ignore

AUTHENTICATION

AoE2:DE

Request

POST /game/relationship/ignore HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=794ba560e22a634f229c95c54bb135c8;ApplicationGatewayAffinityCORS=794ba560e22a634f229c95c54bb135c8;worldsedgelink=1976371366;
Cache-Control: no-store
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache
Content-Length: 150

blocklevel=2&callNum=82&connect_id=mfukppp90s845hti7ktv7wc7e50hkv&lastCallTime=2264462&sessionID=mfukppp90s845hti7ktv7wc7e50hkv&targetProfileID=209072
parametertypevaluecomments
blocklevelint21=lobby ban, 2=mute
callNumint40
connect_idstr=sessionID
lastCallTimeint
sessionIDstr=connect_id
targetProfileIDint

Response

[
    0, // result status code
    [
        21873,
        209072,
        "/steam/76561198024758674",
        "{\"icon\":\"PR5-012\"}",
        "[TF] Backyback",
        "KAOS",
        2187,
        1105,
        1,
        3,
        null,
        "76561198024758674",
        3,
        []
    ],
    []
]

[POST] /game/relationship/setPresence

AUTHENTICATION

AoE2:DE

Request

POST /game/relationship/setPresence HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 126
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&presence_id=3&sessionID=zzz
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
presence_idint3
sessionIDstr

Response

[
   0 // result status code
]

AoE4

Request

POST /game/relationship/setPresence HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 126
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=43&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=21995&presence_id=3&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
presence_idint3
sessionIDstr

Response

[
   0 // result status code
]

[POST] /game/relationship/setPresenceProperty

AUTHENTICATION

AoE2:DE

Request

POST /game/relationship/setPresenceProperty HTTP/1.1
Cookie: ApplicationGatewayAffinity=0;ApplicationGatewayAffinityCORS=1;worldsedgelink=2;
Host: aoe-api.worldsedgelink.com
Accept-Encoding: identity
Accept: */*
Content-Length: 144
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Cache-Control: no-store

callNum=123&connect_id=ccc&lastCallTime=111&presencePropertyDef_id=-1&sessionID=zzz&value=
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
presencePropertyDef_idint3
sessionIDstr
valueint?

Response

[
   0 // result status code
]

AoE4

Request

POST /game/relationship/setPresenceProperty HTTP/1.1
Host: aoe-api.worldsedgelink.com
Accept: */*
Accept-Encoding: identity
Cookie: ApplicationGatewayAffinity=a2bd9c803374aa3cdd1337b02986746f;ApplicationGatewayAffinityCORS=a2bd9c803374aa3cdd1337b02986746f;worldsedgelink=-1321719400;
Cache-Control: no-store
Content-Length: 153
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Pragma: no-cache

callNum=56&connect_id=bgoo2n1murnn43kzdnnfc9fhp2no19&lastCallTime=209404&presencePropertyDef_id=1409823&sessionID=bgoo2n1murnn43kzdnnfc9fhp2no19&value=-2
parametertypevaluecomments
callNumint123
connect_id
lastCallTimetimestamp
presencePropertyDef_idint3
sessionIDstr
valueint-2

Response

[
   0 // result status code
]

Age of Empires Official API

Documentation for the official Age of Empires API at ageofempires.com.

API Root

  • Production: https://api.ageofempires.com
  • Development: https://api-dev.ageofempires.com (for /Poll only)

Endpoints

Main APIs

  • API v1 - Version 1 endpoints (bugs, mods)
  • API v2 - Version 2 endpoints (leaderboards)
  • API v4 - Version 4 endpoints (mods)

Game-Specific APIs

Other Endpoints

Special

Mod Pictures

Example Request

Server Status

Example Request

CountryList

Example Request

errorMessaging

Example Request

wordpressAjax

Example Request

Recorded games

https://aoe.ms/replay/?gameId=<game_id>&profileId=<profile_id>

Example request

parametertypevaluecomments
gameIdint64156900198
profileIdint642858362

Where <profile_id> is the perspective of the recorded game. Basically from which client it was uploaded. Matters for view lock.

API-Endpoints as JSON

/textmoderation

Request

POST /textmoderation HTTP/1.1
Host: api.ageofempires.com
Accept-Encoding: identity
Accept:: application/json
Authorization: Steam1.0 CAEQ/ZzT4AsYBSBXKoABmNR5nKEvxOZpR3jXLBTeWT+SQfBPWnM786lvM3NsQNLaQvIGgur5Ub9nLriapKcxJpikWBq+svb22WVYeAhISj0ZwgVodLjNFeZmIA3aQFWywiPaKC53vC3bXYTg7nSIVc92Fet34xPSkIqf7asqoFbbw4Y80arguEAnOn4AvUI=
Content-Type: application/json
Content-Length: 124

{
   "conversationId":"0",
   "includeResponse":true,
   "language":"en-US",
   "textContent":"Test's Game",
   "textType":"SanitisationInput"
}

Response

AoE2:DE

{
   "filterResult":"Allow",
   "familyFriendlyResult":"Allow",
   "mediumResult":"Allow",
   "matureResult":"Allow",
   "maturePlusResult":"Allow",
   "moderatedText":"Test\u0027s Game"
}

Age of Empires API

API endpoints at api.ageofempires.com.

Versions

  • v1 - Bugs, Mods
  • v2 - Leaderboards
  • v4 - Mods (newer)

Game-Specific

Age of Empires: Definitive Edition API

Public API endpoints for Age of Empires: Definitive Edition match history and statistics on ageofempires.com.

Endpoints

EndpointMethodDescription
getCampaignGETGet campaign statistics
getMPFullGETGet full multiplayer statistics
getMPMatchListGETGet multiplayer match list
getSPFullGETGet full singleplayer statistics
getSPMatchListGETGet singleplayer match list

getCampaign

/GetCampaign

campaignStats

getMPFull

/GetMPFull

MPFull

getMPMatchList

/getmpmatchlist

MPMatchList

getSPFull

/GetSPFull

SPFull

getSPMatchList

/getspmatchlist

SPMatchList

Age of Empires II: Definitive Edition API

Public API endpoints for Age of Empires II: Definitive Edition match history, statistics, and replays on ageofempires.com.

Endpoints

EndpointMethodDescription
getAge2MatchReplayGETGet match replay download URL
getCampaignGETGet campaign statistics
getMPFullGETGet full multiplayer statistics
getMPMatchListGETGet multiplayer match list
getSPFullGETGet full singleplayer statistics
getSPMatchListGETGet singleplayer match list

getAge2MatchReplay

/getAge2MatchReplay

getCampaign

/GetCampaign

Age2campaignStats

getMPFull

/GetMPFull

Age2MPFull

getMPMatchList

/GetMPMatchList

Age2MPMatchList

getSPFull

/GetSPFull

Age2SPFull

getSPMatchList

/GetSPMatchList

Age2SPMatchList

Age of Empires III: Definitive Edition API

Public API endpoints for Age of Empires III: Definitive Edition leaderboards on ageofempires.com.

Endpoints

EndpointMethodDescription
leaderboardGETGet leaderboard rankings
eventLeaderboardGETGet event-specific leaderboard rankings

eventLeaderboard

/EventLeaderboard

statsEventLeaderboard

leaderboard

/Leaderboard

statsLeaderboardIII

Age of Empires IV API

Public API endpoints for Age of Empires IV leaderboards, events, and match details on ageofempires.com.

Endpoints

EndpointMethodDescription
leaderboardGETGet leaderboard rankings
eventLeaderboardGETGet event-specific leaderboard rankings
eventListGETGet list of available events
getMatchDetailGETGet detailed match information

eventLeaderboard

/EventLeaderboard

statsEventLeaderboardPUP

eventList

/EventList

statsEventListPUP

getMatchDetail

/getmatchdetail

getMatchDetail

leaderboard

/Leaderboard

statsLeaderboardIV

API v1 (Deprecated)

Legacy API version. No documented endpoints.

Note: Consider using the game-specific APIs (agede, ageii, ageiii, ageiv) instead.

/api/v1/bugs

Endpoints

bugGetDetail

bugGetAsset

bugGetList

bugCreate

bugUpdate

/api/v1/mods

Endpoints

modsAnonDetail

modsCreate

modsDelete

[POST] /api/v1/Mods/Detail/

AUTHENTICATION

Request

POST /api/v1/Mods/Detail/ HTTP/1.1
Host: api.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 <TOKEN>
Content-Type: application/json
Content-Length: 24

{"game":2,"modid":14788}
parametertypevaluecomments
gameint2
modidint14788

Response

AoE2:DE

{
   "modId":14788,
   "gameTitleId":2,
   "gameTitleName":"Age of Empires II DE",
   "modName":"[GreatestTech] Gunpowder Tracer FX",
   "description":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
   "modDescription":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
   "changeList":"",
   "verifiedVersion":null,
   "modTypeId":12,
   "clientId":null,
   "modType":"Graphics",
   "modTags":[
      "12",
      "24",
      "25"
   ],
   "modTagIds":null,
   "modTagNames":[
      "Graphics",
      "Official",
      "Event"
   ],
   "metaData":{
      "modId":14788,
      "gameTitleId":null,
      "gameTitleName":null,
      "modName":"[GreatestTech] Gunpowder Tracer FX",
      "description":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
      "modDescription":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
      "changeList":null,
      "verifiedVersion":null,
      "modTypeId":null,
      "clientId":null,
      "modType":"Graphics",
      "modTags":[
         "12",
         "24",
         "25"
      ],
      "modTagIds":null,
      "modTagNames":[
         "Graphics",
         "Official",
         "Event"
      ],
      "metaData":null,
      "modStatusId":null,
      "modStatus":"Published",
      "modStatusMessage":null,
      "modVisibility":"Unlisted",
      "creatorId":null,
      "creatorName":"AoE Official",
      "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW.yovsDdui0TKE6WR.4_G12uLRBxuIvCnWAqCxdnHpyhcb0trk6v4voWKTlVqnrmoBvD0REWNWMHYDaEaY6h4q23at4q0mjQwBHt.ikWVbw0-&format=png",
      "isOwner":false,
      "isLoggedOn":true,
      "allowDiscussion":false,
      "discourseUrl":null,
      "createDate":"2020-04-29T15:26:20.85",
      "lastUpdate":"2020-04-29T15:26:20.85",
      "updateAvailable":false,
      "modFileSize":915274.0,
      "modDiskSize":929333.0,
      "popular":0,
      "downloads":80761,
      "installs":62181,
      "likes":119,
      "userLiked":false,
      "ratings":null,
      "currentRating":0.0,
      "userDownloaded":false,
      "userInstalled":false,
      "userFlagged":false,
      "userRating":null,
      "userReview":null,
      "positiveRatings":0,
      "totalRatings":0,
      "thumbnail":null,
      "fileUrl":null,
      "imageUrls":null
   },
   "modStatusId":2,
   "modStatus":"Published",
   "modStatusMessage":"",
   "modVisibility":null,
   "creatorId":null,
   "creatorName":null,
   "creatorAvatarUrl":null,
   "isOwner":null,
   "isLoggedOn":false,
   "allowDiscussion":false,
   "discourseUrl":null,
   "createDate":null,
   "lastUpdate":null,
   "updateAvailable":null,
   "modFileSize":null,
   "modDiskSize":null,
   "popular":0,
   "downloads":null,
   "installs":null,
   "likes":null,
   "userLiked":null,
   "ratings":null,
   "currentRating":0.0,
   "userDownloaded":null,
   "userInstalled":null,
   "userFlagged":null,
   "userRating":null,
   "userReview":null,
   "positiveRatings":0,
   "totalRatings":0,
   "thumbnail":null,
   "fileUrl":null,
   "imageUrls":[
      {
         "imageId":"e2f3e683-19ba-4f1b-b9c3-49aea7150139",
         "displayIndex":0,
         "imageName":"https://xforgeassets002.xboxlive.com/pf-title-aa0bae460e9fd6e4-5f5b4/e2f3e683-19ba-4f1b-b9c3-49aea7150139/modImage_0.jpg?width=1280&height=720",
         "imageThumbnail":"https://xforgeassets002.xboxlive.com/pf-title-aa0bae460e9fd6e4-5f5b4/e2f3e683-19ba-4f1b-b9c3-49aea7150139/modImage_0.jpg?width=400&height=225",
         "imageFileSize":null
      }
   ]
}

modsDownload

modsEdit

modsFind

modsFindAsUser

modsFlag

modsFlagged

modsInstall

/mods/installed

Called from in-game

Request

POST /api/v1/Mods/Installed/ HTTP/1.1
Host: api.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 CAEQgefsrQ0YBSBXKoABTr60dMOBqKL457aUXDLOJzfmhWJuWjNKFg5q4CeCDNwk3gZSssRePbxmWjgL1pdMc9InbhpGPg/VNPH+vNwPV/1dh8AB4Gae8Q3/tFsfC/2ro7sE0H9ugthDgB4uN7lXNSNQQ2RlHOJcLm5wvyd60PwLaYa5+0iIN7QZLK6+n68=
Content-Type: application/json
Content-Length: 18

{
   "game":2,
   "q":"*"
}

Response

AoE2:DE

{
   "searchParams":{
      "q":"*",
      "creator":null,
      "filter":0,
      "sort":null,
      "order":null,
      "start":0,
      "count":0,
      "game":2,
      "modid":0
   },
   "modList":[
      {
         "popular":0,
         "modId":96731,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"[DressToImpress] Main Menu",
         "description":"<p>Main Menu background for Dress to Impress event.</p>",
         "modDescription":"<p>Main Menu background for Dress to Impress event.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "25",
            "21",
            "24"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Event",
            "Menu Background",
            "Official"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Unlisted",
         "creatorId":null,
         "creatorName":"AoE Official",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW.yovsDdui0TKE6WR.4_G12uLRBxuIvCnWAqCxdnHpyhcb0trk6v4voWKTlVqnrmoBvD0REWNWMHYDaEaY6h4q23at4q0mjQwBHt.ikWVbw0-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2022-08-18T16:34:16.557",
         "lastUpdate":"2022-08-18T16:34:16.557",
         "updateAvailable":false,
         "modFileSize":10131111.0,
         "modDiskSize":null,
         "downloads":472641,
         "installs":null,
         "likes":0,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe-mods/2/96731/92d4cb34.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":96738,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"[PenguinParty] Main Menu",
         "description":"<p>Main menu background for Penguin Party event.</p>",
         "modDescription":"<p>Main menu background for Penguin Party event.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "25",
            "21",
            "24"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Event",
            "Menu Background",
            "Official"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Unlisted",
         "creatorId":null,
         "creatorName":"AoE Official",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW.yovsDdui0TKE6WR.4_G12uLRBxuIvCnWAqCxdnHpyhcb0trk6v4voWKTlVqnrmoBvD0REWNWMHYDaEaY6h4q23at4q0mjQwBHt.ikWVbw0-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2022-08-18T16:49:41.12",
         "lastUpdate":"2022-08-18T16:49:41.12",
         "updateAvailable":false,
         "modFileSize":10048287.0,
         "modDiskSize":null,
         "downloads":468499,
         "installs":null,
         "likes":0,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe-mods/2/96738/9ddbd2b0.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2359,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Interactive Build Order Guide",
         "description":"<p>A series of interactive tutorials for learning and practicing build orders. Includes 20 scenarios, each with step-by-step instructions in both text and audio, and a scoring system that will mark you at several benchmarks leading to a final grade (A+ to F). Credits and thanks to ZeroEmpires for voicing these scenarios.<br /><br /><strong>Installation &amp; Troubleshooting:</strong><br />- Go to the mod section ingame and search for this mod (If you have already installed the mod and it isn't working, uninstall it. You could also open the mod directory at this point to check that the mod is completely removed.)<br />- Install the mod <u>and wait until the mod has finished downloading.</u><br />- Restart the game. Note that whilst the sound files have always required a restart, this is now required for the scenario text as well. This also goes for every time the game unchecks all your mods after an update...<br /><br /><strong>How to Play:</strong><br />- Single Player: Skirmish<br />- Game Mode: Custom Scenario &amp;C################### NOT change the player colour!<br /><br /><strong>How to Play on a New Map:</strong><br />- Single Player: Editor &amp; Choose Scenario<br />- On the Map tab: Tick Random Map<br />- Choose the corresponding map: Build Order Arabia/Arena/Island<br />- [Change Map Size to Tiny]<br />- Click Generate<br />- Map Menu: Test<br /><br /><strong>Build Orders Included:</strong><br />BASIC<br />- 22 pop Scouts<br />- 23 pop Archers<br />- 28+2 Knights<br />- 27+2 Boom<br />ARABIA<br />- 21 pop Scouts<br />- 21 pop Scouts - Skirms<br />- 21 pop Scouts - Archers<br />- 22 pop Archers<br />- 22 pop Men-at-Arms*<br />- 28 pop Drush - Archers<br />- 32+2 Drush - FC<br />CHINESE<br />- 23 pop Scouts*<br />- 24 pop Archers*<br />WATER<br />- 26 pop Full Water*<br />- 26 pop Hybrid*<br />ARENA<br />- 25+2 3TC Boom*<br />- 27+2 4TC Boom*<br />- 27+2 Scouts + Monks*<br />- 26+2 Castle Drop*<br />- Turks Fast Imp*<br /><br />*Be aware that the audio for these builds is currently incomplete. Until I can get these voiced, I suggest checking the written versions of the builds below. Example videos will also have to wait till audio is added.<br /><br />Please check <https://buildorderreference.com> for written versions, benchmark timings, FAQ and troubleshooting.</p> ",
         "modDescription":"<p>A series of interactive tutorials for learning and practicing build orders. Includes 20 scenarios, each with step-by-step instructions in both text and audio, and a scoring system that will mark you at several benchmarks leading to a final grade (A+ to F). Credits and thanks to ZeroEmpires for voicing these scenarios.<br /><br /><strong>Installation &amp; Troubleshooting:</strong><br />- Go to the mod section ingame and search for this mod (If you have already installed the mod and it isn't working, uninstall it. You could also open the mod directory at this point to check that the mod is completely removed.)<br />- Install the mod <u>and wait until the mod has finished downloading.</u><br />- Restart the game. Note that whilst the sound files have always required a restart, this is now required for the scenario text as well. This also goes for every time the game unchecks all your mods after an update...<br /><br /><strong>How to Play:</strong><br />- Single Player: Skirmish<br />- Game Mode: Custom Scenario &amp;C################### NOT change the player colour!<br /><br /><strong>How to Play on a New Map:</strong><br />- Single Player: Editor &amp; Choose Scenario<br />- On the Map tab: Tick Random Map<br />- Choose the corresponding map: Build Order Arabia/Arena/Island<br />- [Change Map Size to Tiny]<br />- Click Generate<br />- Map Menu: Test<br /><br /><strong>Build Orders Included:</strong><br />BASIC<br />- 22 pop Scouts<br />- 23 pop Archers<br />- 28+2 Knights<br />- 27+2 Boom<br />ARABIA<br />- 21 pop Scouts<br />- 21 pop Scouts - Skirms<br />- 21 pop Scouts - Archers<br />- 22 pop Archers<br />- 22 pop Men-at-Arms*<br />- 28 pop Drush - Archers<br />- 32+2 Drush - FC<br />CHINESE<br />- 23 pop Scouts*<br />- 24 pop Archers*<br />WATER<br />- 26 pop Full Water*<br />- 26 pop Hybrid*<br />ARENA<br />- 25+2 3TC Boom*<br />- 27+2 4TC Boom*<br />- 27+2 Scouts + Monks*<br />- 26+2 Castle Drop*<br />- Turks Fast Imp*<br /><br />*Be aware that the audio for these builds is currently incomplete. Until I can get these voiced, I suggest checking the written versions of the builds below. Example videos will also have to wait till audio is added.<br /><br />Please check <https://buildorderreference.com> for written versions, benchmark timings, FAQ and troubleshooting.</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "16",
            "18"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Scenarios",
            "Speech"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Cicero7800",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID4hKQeLSM6t5EnoYLpobrjpsQMRuwkDkvQPZ67SsL1FSBaoDI6zGVjrXVF6hUiSE3s-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-18T02:35:16.683",
         "lastUpdate":"2021-12-12T18:43:14.073",
         "updateAvailable":false,
         "modFileSize":44222994.0,
         "modDiskSize":null,
         "downloads":167452,
         "installs":null,
         "likes":19518,
         "userLiked":true,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1576636532_Interactive_Build_Order_Guide.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":3762,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Anne_HK - Better Resource Panel and Idle Villager Icon",
         "description":"<h3>Better Resource Panel and Idle Villager Icon åªåè³æºçé¢åéç½®ææ°æé</h3>\r\n<p>Amended as follows ä¿®æ¹å¦ä¸:</p>\r\n<ul>\r\n<li>Increase the font size and change the font color (resource worker) in the resource panel. ä¿®æ¹äºè³æºå表ä¸åè³æºææ°æ¸éçåé«å¤§å°åé¡è²</li>\r\n<li>Replace the idle villager icon with more eye-catching red icon. æ¿æäºåæéç½®ææ°çå示 ï¼æ¹åæ¶ç¼ç紅è²å示</li>\r\n</ul>\r\n<p>Many thanks for çé»ç©ä¸ç´'s suggestions<br />ç¹å¥é³´è¬: çé»ç©ä¸ç´ çæè¦æä¾</p>\r\n<p>Please feel free to contact me , if you have any questions about this mod.<br />å¦å°æ¤æ¨¡çµæä»»ä½çåï¼è«è¯çµ¡æ</p>\r\n<p>Contact:&nbsp;<br />Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p>\r\n<p>Keyword: anne_hk, anne, resource panel, bigger font size, idle villager button, bell, red, è³æºè¡¨, 大åé«, 紅è²é´å¹, éç½®ææ°</p> ",
         "modDescription":"<h3>Better Resource Panel and Idle Villager Icon åªåè³æºçé¢åéç½®ææ°æé</h3>\r\n<p>Amended as follows ä¿®æ¹å¦ä¸:</p>\r\n<ul>\r\n<li>Increase the font size and change the font color (resource worker) in the resource panel. ä¿®æ¹äºè³æºå表ä¸åè³æºææ°æ¸éçåé«å¤§å°åé¡è²</li>\r\n<li>Replace the idle villager icon with more eye-catching red icon. æ¿æäºåæéç½®ææ°çå示 ï¼æ¹åæ¶ç¼ç紅è²å示</li>\r\n</ul>\r\n<p>Many thanks for çé»ç©ä¸ç´'s suggestions<br />ç¹å¥é³´è¬: çé»ç©ä¸ç´ çæè¦æä¾</p>\r\n<p>Please feel free to contact me , if you have any questions about this mod.<br />å¦å°æ¤æ¨¡çµæä»»ä½çåï¼è«è¯çµ¡æ</p>\r\n<p>Contact:&nbsp;<br />Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p>\r\n<p>Keyword: anne_hk, anne, resource panel, bigger font size, idle villager button, bell, red, è³æºè¡¨, 大åé«, 紅è²é´å¹, éç½®ææ°</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "23",
            "22"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Text",
            "User Interface"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Anne HK",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQ5JaNPd2XmuKm12U6ewLA.g5OKwvxfjyMrYLY2c4QJf&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-03-07T12:42:58.353",
         "lastUpdate":"2022-04-28T01:30:57.807",
         "updateAvailable":false,
         "modFileSize":57474.0,
         "modDiskSize":null,
         "downloads":82391,
         "installs":null,
         "likes":4681,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1602965284_aoe_mod_better_resource_panel_thubmail_v1-01.png",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2553,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"No more plants",
         "description":"Removes all of those small plants that only affect the game visually.",
         "modDescription":"Removes all of those small plants that only affect the game visually.",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Scenario"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Sogomn",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-24T17:10:18.1",
         "lastUpdate":"2019-12-24T17:10:18.1",
         "updateAvailable":false,
         "modFileSize":11696.0,
         "modDiskSize":null,
         "downloads":73264,
         "installs":null,
         "likes":3629,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1577207430__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":22014,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Anne_HK - Identical Pine Trees with Grid Shadow",
         "description":"<p>UHD Supported. **Reminder**: You need to unsubscribe other trees or felled trees mods, and then restart the game.</p> <p>Including (1) Grid shadow Base, (2) No tree stumps, (3) Felled Trees Retouch (Improve the readability),&nbsp;&nbsp;</p> <p>å…æ¬: (1) 網格é°å½±åºé¨, (2) 廿ç å®ç樹幹, (3) 調æ´äºè¢«ç ç樹çç´°ç¯ (調é«å¯é±è®æ§)**æé: ä½ éè¦åæ¶è¨é±å…¶ä»å°æ¨¹ææ¯è¢«ç çæ¨¹çæ¨¡çµ</p> <p>Contact: Discord - anne_hk#1505<br />Anne_HK mod series: Better Resource Panel, Old Main Menu, Building Foundation Label</p>",
         "modDescription":"<p>UHD Supported. **Reminder**: You need to unsubscribe other trees or felled trees mods, and then restart the game.</p> <p>Including (1) Grid shadow Base, (2) No tree stumps, (3) Felled Trees Retouch (Improve the readability),&nbsp;&nbsp;</p> <p>å…æ¬: (1) 網格é°å½±åºé¨, (2) 廿ç å®ç樹幹, (3) 調æ´äºè¢«ç ç樹çç´°ç¯ (調é«å¯é±è®æ§)**æé: ä½ éè¦åæ¶è¨é±å…¶ä»å°æ¨¹ææ¯è¢«ç çæ¨¹çæ¨¡çµ</p> <p>Contact: Discord - anne_hk#1505<br />Anne_HK mod series: Better Resource Panel, Old Main Menu, Building Foundation Label</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Graphics",
         "modTags":[
            "12"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Anne HK",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQ5JaNPd2XmuKm12U6ewLA.g5OKwvxfjyMrYLY2c4QJf&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2021-04-05T05:48:09.22",
         "lastUpdate":"2021-08-11T01:46:07.12",
         "updateAvailable":false,
         "modFileSize":818186.0,
         "modDiskSize":null,
         "downloads":60150,
         "installs":null,
         "likes":3660,
         "userLiked":true,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1621682393_mod_thumbnail.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":789,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"No Snow",
         "description":"<p>Replaces snow terrains with equivalent versions without snow</p> ",
         "modDescription":"<p>Replaces snow terrains with equivalent versions without snow</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "20",
            "24"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Terrain",
            "Official"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"AoE Official",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW.yovsDdui0TKE6WR.4_G12uLRBxuIvCnWAqCxdnHpyhcb0trk6v4voWKTlVqnrmoBvD0REWNWMHYDaEaY6h4q23at4q0mjQwBHt.ikWVbw0-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-13T15:35:04.933",
         "lastUpdate":"2022-03-02T21:49:23.98",
         "updateAvailable":false,
         "modFileSize":15512977.0,
         "modDiskSize":null,
         "downloads":59062,
         "installs":null,
         "likes":4764,
         "userLiked":true,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1573659318__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1310,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Three Kingdoms Cao Caos Ambition",
         "description":"<p>\"I would rather betray all the people under the heavens than for all the people to betray me.\" - Cao Cao <br /><br />Dong Zhuo's death at Lu Bu's hand has thrown China into chaos. Six warlords fight for dominance. Which one will prevail? <br /><br />Part 1 of the 3-part Three Kingdoms campaign series. <br /><br /><strong>Features:</strong></p> <ul> <li>For the first time in Age of Empires: choose from one of seven factions!</li> <li>Choose to play as Cao Cao, Lu Bu, Yuan Shao, Yuan Shu, Liu Biao, Kong Rong, or the rebellious Yellow Turbans</li> <li>Each warlord has unique bonuses, units, and personal objectives</li> <li>Navigate the unique friendships and rivalries of the Han court</li> <li>Battle over a massive Giant-sized map of China to defeat your rivals</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>\"I would rather betray all the people under the heavens than for all the people to betray me.\" - Cao Cao <br /><br />Dong Zhuo's death at Lu Bu's hand has thrown China into chaos. Six warlords fight for dominance. Which one will prevail? <br /><br />Part 1 of the 3-part Three Kingdoms campaign series. <br /><br /><strong>Features:</strong></p> <ul> <li>For the first time in Age of Empires: choose from one of seven factions!</li> <li>Choose to play as Cao Cao, Lu Bu, Yuan Shao, Yuan Shu, Liu Biao, Kong Rong, or the rebellious Yellow Turbans</li> <li>Each warlord has unique bonuses, units, and personal objectives</li> <li>Navigate the unique friendships and rivalries of the Han court</li> <li>Battle over a massive Giant-sized map of China to defeat your rivals</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T16:17:43.07",
         "lastUpdate":"2021-12-12T21:15:26.927",
         "updateAvailable":false,
         "modFileSize":5643150.0,
         "modDiskSize":null,
         "downloads":50367,
         "installs":null,
         "likes":4870,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574266677__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1238,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Green Arabia",
         "description":"<p>A custom version of Arabia that uses advanced techniques to create a balanced and fun experience for all players. The map will always generate grassy plains with the traditional food sources - e.g. no elephants or cows that contain more food. For more information about changes and compatibility, check the official Age of Empires mod page.</p> <p>This version of Arabia has been specially optimised to work on all previous versions and iterations of the game, that means you can enjoy this map on the:</p> <ul> <li>Original Game</li> <li>HD Edition (2013 Version)</li> <li>UserPatch 1.5</li> <li>UserPatch 1.5 + WololoKingdoms</li> <li>Definitive Edition</li> </ul>",
         "modDescription":"<p>A custom version of Arabia that uses advanced techniques to create a balanced and fun experience for all players. The map will always generate grassy plains with the traditional food sources - e.g. no elephants or cows that contain more food. For more information about changes and compatibility, check the official Age of Empires mod page.</p> <p>This version of Arabia has been specially optimised to work on all previous versions and iterations of the game, that means you can enjoy this map on the:</p> <ul> <li>Original Game</li> <li>HD Edition (2013 Version)</li> <li>UserPatch 1.5</li> <li>UserPatch 1.5 + WololoKingdoms</li> <li>Definitive Edition</li> </ul>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Chrazini x",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-19T12:44:16.23",
         "lastUpdate":"2019-11-19T14:19:34.97",
         "updateAvailable":false,
         "modFileSize":17578286.0,
         "modDiskSize":null,
         "downloads":40044,
         "installs":null,
         "likes":3295,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574167472__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":4142,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Short Walls",
         "description":"<p>Shortens walls to tiny pieces to help you spot units behind much easier.&nbsp;</p> <p>Check out <a href=\"https://ageofnotes.com/tutorials/5-advanced-tips-to-become-better-at-age-of-empires-2-definitive\">5 advanced tips</a> related to this mod and other mod mentions.</p>",
         "modDescription":"<p>Shortens walls to tiny pieces to help you spot units behind much easier.&nbsp;</p> <p>Check out <a href=\"https://ageofnotes.com/tutorials/5-advanced-tips-to-become-better-at-age-of-empires-2-definitive\">5 advanced tips</a> related to this mod and other mod mentions.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Graphics",
         "modTags":[
            "12"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"GregRising",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-04-03T20:25:14.75",
         "lastUpdate":"2020-04-28T17:32:39.21",
         "updateAvailable":false,
         "modFileSize":2214472.0,
         "modDiskSize":null,
         "downloads":35906,
         "installs":null,
         "likes":1779,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1588093672__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1962,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Komnenos - The Byzantine Restoration",
         "description":"<p>Can a dying empire be saved? <br /><br />The Roman Empire is collapsing, plagued by internal power struggles, rebellions, and foreign invasions. As Alexios Komnenos, seize the throne from a failed emperor, fight the Turks and Normans to expand your realm, and fend off pretenders and rebels with their own aspirations for your crown. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique hybrid Fixed Force/Build and Destroy gameplay</li> <li>Re-capture lost Byzantine lands from Turkish horsemen, Norman knights, and Pecheneg nomads</li> <li>Carefully manage your legitimacy to ward off rebellions and forestall scandals</li> <li>Receive missions from a cast of courtiers to re-build the empire</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>Can a dying empire be saved? <br /><br />The Roman Empire is collapsing, plagued by internal power struggles, rebellions, and foreign invasions. As Alexios Komnenos, seize the throne from a failed emperor, fight the Turks and Normans to expand your realm, and fend off pretenders and rebels with their own aspirations for your crown. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique hybrid Fixed Force/Build and Destroy gameplay</li> <li>Re-capture lost Byzantine lands from Turkish horsemen, Norman knights, and Pecheneg nomads</li> <li>Carefully manage your legitimacy to ward off rebellions and forestall scandals</li> <li>Receive missions from a cast of courtiers to re-build the empire</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-06T00:44:27.69",
         "lastUpdate":"2022-01-09T20:09:13.69",
         "updateAvailable":false,
         "modFileSize":7242841.0,
         "modDiskSize":null,
         "downloads":33518,
         "installs":null,
         "likes":2631,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1575593080__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":37614,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Anne_HK - Bigger and Eye-catching Relic",
         "description":"<p>Bigger and Eye-catching Relic / æ¶ç¼çæ¾å¤§çéºè·¡<br />Contact: Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p> ",
         "modDescription":"<p>Bigger and Eye-catching Relic / æ¶ç¼çæ¾å¤§çéºè·¡<br />Contact: Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "12"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Anne HK",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQ5JaNPd2XmuKm12U6ewLA.g5OKwvxfjyMrYLY2c4QJf&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2021-07-17T12:22:50.203",
         "lastUpdate":"2022-05-28T19:39:47.067",
         "updateAvailable":false,
         "modFileSize":133342.0,
         "modDiskSize":null,
         "downloads":25489,
         "installs":null,
         "likes":254,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1653766788_37614_relic_mod.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1314,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Finehair - The Conquest of Norway",
         "description":"<p>A woman's challenge unites a kingdom. <br /><br />Harald was petty king of a small fjord in southeastern Norway. When his marriage proposal to the princess Gyda was scornfully rejected, he vowed to conquer all of Norway to prove his worth... <br /><br /><strong>Features:</strong></p> <ul> <li>Unique and improved raiding gameplay</li> <li>Pillage Norwegian fjords, battle sea kings, and raid the Scottish coast to unite Norway</li> <li>Build Harald's legend by battling Saami tribesmen, finding a land of ice and fire, and recruiting the Varangians of Rus'</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>A woman's challenge unites a kingdom. <br /><br />Harald was petty king of a small fjord in southeastern Norway. When his marriage proposal to the princess Gyda was scornfully rejected, he vowed to conquer all of Norway to prove his worth... <br /><br /><strong>Features:</strong></p> <ul> <li>Unique and improved raiding gameplay</li> <li>Pillage Norwegian fjords, battle sea kings, and raid the Scottish coast to unite Norway</li> <li>Build Harald's legend by battling Saami tribesmen, finding a land of ice and fire, and recruiting the Varangians of Rus'</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "18",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Speech",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T16:21:26.76",
         "lastUpdate":"2021-12-12T21:15:12.343",
         "updateAvailable":false,
         "modFileSize":61781463.0,
         "modDiskSize":null,
         "downloads":28054,
         "installs":null,
         "likes":2100,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574266900__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":823,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Zetnus Improved Grid Mod No Snow Version",
         "description":"<p>The no snow version of my grid mod.</p>\r\n<p>Restart your game after enabling this mod for it to take effect. Make sure you turn off the ingame grid.</p>\r\n<p>Not compatible with most other terrain mods because the grid is added directly on to the terrain textures.</p>",
         "modDescription":"<p>The no snow version of my grid mod.</p>\r\n<p>Restart your game after enabling this mod for it to take effect. Make sure you turn off the ingame grid.</p>\r\n<p>Not compatible with most other terrain mods because the grid is added directly on to the terrain textures.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Artificial Intelligence",
         "modTags":[
            "20"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Terrain"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Zetnus",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MOI8GbNsz1OAZ_uG4HG_Is.jqUtX0V0n0WaYin643Pu62lPcIOiYpQbzYi8El04r2yG4Fk23Mzb02vajx3DpeBY1z8eLLCFzXXBhxf3Z7j5w-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-14T22:50:11.787",
         "lastUpdate":"2020-05-16T10:41:30.08",
         "updateAvailable":false,
         "modFileSize":31237719.0,
         "modDiskSize":null,
         "downloads":24460,
         "installs":null,
         "likes":2023,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1573771826__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1305,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Valhallas Edge",
         "description":"<p>To the Edge of Valhalla! <br /><br />Survive the frozen north and discover a new land in Valhalla's Edge, updated with new features and extended gameplay for the Definitive Edition. <br /><br /><strong>Features:</strong></p> <ul> <li>Updated based on community feedback</li> <li>Unique exploration, colonization, and survival gameplay</li> <li>Battle Skraeling natives, wildlife, and Irish monks to colonize the North Atlantic and America</li> <li>Unlock heroes of the Greenland sagas, such as Erik the Red and Thorfinn Karlsefni</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>To the Edge of Valhalla! <br /><br />Survive the frozen north and discover a new land in Valhalla's Edge, updated with new features and extended gameplay for the Definitive Edition. <br /><br /><strong>Features:</strong></p> <ul> <li>Updated based on community feedback</li> <li>Unique exploration, colonization, and survival gameplay</li> <li>Battle Skraeling natives, wildlife, and Irish monks to colonize the North Atlantic and America</li> <li>Unlock heroes of the Greenland sagas, such as Erik the Red and Thorfinn Karlsefni</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T15:46:05.083",
         "lastUpdate":"2021-12-14T06:20:43.567",
         "updateAvailable":false,
         "modFileSize":6413169.0,
         "modDiskSize":null,
         "downloads":24700,
         "installs":null,
         "likes":1759,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574264778__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1309,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Seljuk - Rise of an Empire",
         "description":"<p>Witness the birth of the Turkish Empire! <br /><br />From humble nomadic beginnings, Seljuk and his descendents conquered Persia and brought the Roman Emperors to their knees! Play as the Turkish heroes Seljuk, Tughril, Alp Arslan, and Malik-Shah as you retrace their conquests and fulfill their grandest ambitions. <br /><br /><strong>Features:</strong></p> <ul> <li>Lead the Turks from nomadic origins to ruling great cities and building Wonders</li> <li>Unique nomadic gameplay: move and re-settle the tribes as you encroach on settled lands</li> <li>Personal ambitions: fulfill the ambitions of the sultans or out-do their historical conquests</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featuredin Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>Witness the birth of the Turkish Empire! <br /><br />From humble nomadic beginnings, Seljuk and his descendents conquered Persia and brought the Roman Emperors to their knees! Play as the Turkish heroes Seljuk, Tughril, Alp Arslan, and Malik-Shah as you retrace their conquests and fulfill their grandest ambitions. <br /><br /><strong>Features:</strong></p> <ul> <li>Lead the Turks from nomadic origins to ruling great cities and building Wonders</li> <li>Unique nomadic gameplay: move and re-settle the tribes as you encroach on settled lands</li> <li>Personal ambitions: fulfill the ambitions of the sultans or out-do their historical conquests</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featuredin Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T16:16:05.81",
         "lastUpdate":"2021-12-14T06:13:40.487",
         "updateAvailable":false,
         "modFileSize":7708655.0,
         "modDiskSize":null,
         "downloads":21291,
         "installs":null,
         "likes":1510,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574266579__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":829,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Zetnus HyperRandom",
         "description":"<p>The goal of HyperRandom is to provide a large amount of variation, while still making it reasonably fair, by providing the same variation for each player.</p> <p>HyperRandom will generate maps that seem similar to standard maps, but does so totally at random.&nbsp; There is no pack of maps that are chosen from; rather many different parameters are varied.</p> <p>I provide several presets:</p> <p>ZN@HyperRandom has most of the random features enabled.&nbsp;</p> <p>ZN@HyperRandomLand is only land maps</p> <p>ZN@HyperRandomLight disables a lot of randomization in an effort to provide an experience that might be more suitable for competitive gameplay, and more aligned with the standard maps.&nbsp; Resources and units are always standard and map layouts try to be balanced.</p> <p>ZN@HyperRandomX256 comes with the ability to research techs multiple times.</p> <p>&nbsp;</p> <p>This map script should run on all versions of the game and supports all lobby settings and game modes, including Empire Wars and Battle Royale.</p> <p>&nbsp;</p> <p>Links:</p> <p>Age of Empires Website (Definitive Edition)</p> <p><a href=\"https://steamcommunity.com/sharedfiles/filedetails/?id=1940139270\">Steam Workshop</a> (HD Edition 2013)</p> <p><a href=\"https://aok.heavengames.com/blacksmith/showfile.php?fileid=13407\">Age of Kings Heaven Blacksmith</a> (manual download)</p> <p><a href=\"https://aoe2map.net/map/9dac6f3e-a2a4-47a9-aefc-64ee6b015a14\">AoE2Map</a> (manual download)</p> <p><a href=\"http://aok.heavengames.com/cgi-bin/forums/display.cgi?action=ct&amp;f=28,44641,,365\">Project thread</a> (detailed description)</p> ",
         "modDescription":"<p>The goal of HyperRandom is to provide a large amount of variation, while still making it reasonably fair, by providing the same variation for each player.</p> <p>HyperRandom will generate maps that seem similar to standard maps, but does so totally at random.&nbsp; There is no pack of maps that are chosen from; rather many different parameters are varied.</p> <p>I provide several presets:</p> <p>ZN@HyperRandom has most of the random features enabled.&nbsp;</p> <p>ZN@HyperRandomLand is only land maps</p> <p>ZN@HyperRandomLight disables a lot of randomization in an effort to provide an experience that might be more suitable for competitive gameplay, and more aligned with the standard maps.&nbsp; Resources and units are always standard and map layouts try to be balanced.</p> <p>ZN@HyperRandomX256 comes with the ability to research techs multiple times.</p> <p>&nbsp;</p> <p>This map script should run on all versions of the game and supports all lobby settings and game modes, including Empire Wars and Battle Royale.</p> <p>&nbsp;</p> <p>Links:</p> <p>Age of Empires Website (Definitive Edition)</p> <p><a href=\"https://steamcommunity.com/sharedfiles/filedetails/?id=1940139270\">Steam Workshop</a> (HD Edition 2013)</p> <p><a href=\"https://aok.heavengames.com/blacksmith/showfile.php?fileid=13407\">Age of Kings Heaven Blacksmith</a> (manual download)</p> <p><a href=\"https://aoe2map.net/map/9dac6f3e-a2a4-47a9-aefc-64ee6b015a14\">AoE2Map</a> (manual download)</p> <p><a href=\"http://aok.heavengames.com/cgi-bin/forums/display.cgi?action=ct&amp;f=28,44641,,365\">Project thread</a> (detailed description)</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Zetnus",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MOI8GbNsz1OAZ_uG4HG_Is.jqUtX0V0n0WaYin643Pu62lPcIOiYpQbzYi8El04r2yG4Fk23Mzb02vajx3DpeBY1z8eLLCFzXXBhxf3Z7j5w-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-14T23:42:35.23",
         "lastUpdate":"2022-02-16T22:19:51.367",
         "updateAvailable":false,
         "modFileSize":3345536.0,
         "modDiskSize":null,
         "downloads":19323,
         "installs":null,
         "likes":1310,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1645049700__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1311,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"A Journey to the West",
         "description":"<p>\"You've got an immortal, shapeshifting monkey king and you want to 'talk to them'?\" - the incredulous Monkey <br /><br />Join Monkey, Pigsy, Sandy, and a reluctant, pacifist monk on a journey to the edges of the known world in this re-telling of the classic Chinese legend. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique puzzle-based gameplay that will challenge your thinking and timing</li> <li>Vibrant characters and humor, including the immortal, shapeshifting monkey king, Sun Wukong</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>\"You've got an immortal, shapeshifting monkey king and you want to 'talk to them'?\" - the incredulous Monkey <br /><br />Join Monkey, Pigsy, Sandy, and a reluctant, pacifist monk on a journey to the edges of the known world in this re-telling of the classic Chinese legend. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique puzzle-based gameplay that will challenge your thinking and timing</li> <li>Vibrant characters and humor, including the immortal, shapeshifting monkey king, Sun Wukong</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T16:19:21.817",
         "lastUpdate":"2021-12-16T02:00:36.867",
         "updateAvailable":false,
         "modFileSize":6989312.0,
         "modDiskSize":null,
         "downloads":20045,
         "installs":null,
         "likes":1243,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574266774__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":20846,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Anne_HK - Building Foundation Label (with Player Color)",
         "description":"<p>UHD graphic pack Supported. Building Foundation Label (with Player Color) / 建ç¯å°åºæ¨ç±¤ (éç©å®¶é¡è²)</p>\r\n<p>Building Including House, Mill, Lumber camp, Mining camp, Dock, Blacksmith, Market, Monastery, University, Town Centre, Wonder, Barrack, Archery range, Stable, Siege workshop, Outpost, Tower, Castle, Kreport, Donjon</p>\r\n<p>建ç¯å…æ¬: æ¿å±ã磨åã伿¨å ´ãæ¡ç¤¦çå°ã碼é ã兵工廠ãå¸éãä¿®éé¢ãå¸é¢ãåé®ä¸å¿ãä¸çå¥è§ãè»çãå°ç®å ´ã馬å»ãæ»åå¨è£½é æãå¨ç«ãç®å¡ãåå ¡ãççã忍</p>\r\n<p>Contact meè¯çµ¡ - Discord: anne_hk#1505</p> ",
         "modDescription":"<p>UHD graphic pack Supported. Building Foundation Label (with Player Color) / 建ç¯å°åºæ¨ç±¤ (éç©å®¶é¡è²)</p>\r\n<p>Building Including House, Mill, Lumber camp, Mining camp, Dock, Blacksmith, Market, Monastery, University, Town Centre, Wonder, Barrack, Archery range, Stable, Siege workshop, Outpost, Tower, Castle, Kreport, Donjon</p>\r\n<p>建ç¯å…æ¬: æ¿å±ã磨åã伿¨å ´ãæ¡ç¤¦çå°ã碼é ã兵工廠ãå¸éãä¿®éé¢ãå¸é¢ãåé®ä¸å¿ãä¸çå¥è§ãè»çãå°ç®å ´ã馬å»ãæ»åå¨è£½é æãå¨ç«ãç®å¡ãåå ¡ãççã忍</p>\r\n<p>Contact meè¯çµ¡ - Discord: anne_hk#1505</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Graphics",
         "modTags":[
            "12"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Anne HK",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQ5JaNPd2XmuKm12U6ewLA.g5OKwvxfjyMrYLY2c4QJf&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2021-02-06T12:31:32.523",
         "lastUpdate":"2021-07-31T11:38:21.133",
         "updateAvailable":false,
         "modFileSize":13095000.0,
         "modDiskSize":null,
         "downloads":14618,
         "installs":null,
         "likes":441,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1627731502_thumbnail_v2.png",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1312,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Francis Drake on the Spanish Main",
         "description":"<p>Land ho! <br /><br />Raid the Spanish Main as the renowned English explorer and pirate Francis Drake. Capture galleons, raid Caribbean islands, and fill your ship's hold with Spanish gold! <br /><br /><strong>Features:</strong></p> <ul> <li>Explore and raid the Caribbean Sea and the American coast with a rag-tag crew of English soldiers, French pirates, and escaped slaves</li> <li>Use your unique pirate ship to board and capture enemy galleons</li> <li>Recruit allies and discover the secrets of the Mayan jungles</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios inAge of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>Land ho! <br /><br />Raid the Spanish Main as the renowned English explorer and pirate Francis Drake. Capture galleons, raid Caribbean islands, and fill your ship's hold with Spanish gold! <br /><br /><strong>Features:</strong></p> <ul> <li>Explore and raid the Caribbean Sea and the American coast with a rag-tag crew of English soldiers, French pirates, and escaped slaves</li> <li>Use your unique pirate ship to board and capture enemy galleons</li> <li>Recruit allies and discover the secrets of the Mayan jungles</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios inAge of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "18",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Speech",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T16:20:09.9",
         "lastUpdate":"2021-12-16T02:00:25.107",
         "updateAvailable":false,
         "modFileSize":3805327.0,
         "modDiskSize":null,
         "downloads":15581,
         "installs":null,
         "likes":928,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574266824__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":17305,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"[KoBHV] Mouse Cursor Set",
         "description":"No more missclicks! This mod replaces all of the AoE2 mouse cursors. The new mouse cursor set has many advantages: - better visibility, even with fast mouse movement - reasonable hit boxes - modern look - better targeting of resources, especially trees You will find the [KoBHV] Knock Out Area Attack Cursor separately and no longer as part of this set. You like the Mod? Try out other [KoBHV]-mods! If you have any questions or suggestions do not hesitate to contact me. Discord: Addy#1350",
         "modDescription":"No more missclicks! This mod replaces all of the AoE2 mouse cursors. The new mouse cursor set has many advantages: - better visibility, even with fast mouse movement - reasonable hit boxes - modern look - better targeting of resources, especially trees You will find the [KoBHV] Knock Out Area Attack Cursor separately and no longer as part of this set. You like the Mod? Try out other [KoBHV]-mods! If you have any questions or suggestions do not hesitate to contact me. Discord: Addy#1350",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"User Interface",
         "modTags":[
            "22"
         ],
         "modTagIds":null,
         "modTagNames":[
            "User Interface"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Addy607623",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-09-06T15:19:51.32",
         "lastUpdate":"2021-03-25T12:34:20.653",
         "updateAvailable":false,
         "modFileSize":305660.0,
         "modDiskSize":null,
         "downloads":13470,
         "installs":null,
         "likes":824,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1616675661__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1308,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Blood for the Serpent God",
         "description":"<p>The gods demand sacrifice! <br /><br />As the Maya Hero Twins, capture enemy warriors to satisfy the ravenous hunger of the gods in the early days of the Mayan civilization. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique capture and sacrifice gameplay: wound enemy warriors and offer them as sacrifices</li> <li>Race against the Mayan calendar to avoid the wrath of the gods</li> <li>A diverse Yucatan landscape including underground rivers, alligator-infested swamps, and sprawling cities</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>The gods demand sacrifice! <br /><br />As the Maya Hero Twins, capture enemy warriors to satisfy the ravenous hunger of the gods in the early days of the Mayan civilization. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique capture and sacrifice gameplay: wound enemy warriors and offer them as sacrifices</li> <li>Race against the Mayan calendar to avoid the wrath of the gods</li> <li>A diverse Yucatan landscape including underground rivers, alligator-infested swamps, and sprawling cities</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Edition and scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-20T16:06:19.41",
         "lastUpdate":"2021-12-14T06:13:59.877",
         "updateAvailable":false,
         "modFileSize":3930244.0,
         "modDiskSize":null,
         "downloads":14040,
         "installs":null,
         "likes":807,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574265993__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2229,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Michi for DE",
         "description":"<p>A brand new Michi map script that I wrote specifically for DE. Includes several biomes with new terrains and animals.</p> <p>Michi refers to a a style of map where forest completely separates the players, preventing early rushes.</p> <p>Supports FFA as well as any team compositions (including uneven teams) - just make sure to check the \"team together\" box in the lobby!</p> <p>&nbsp;</p> ",
         "modDescription":"<p>A brand new Michi map script that I wrote specifically for DE. Includes several biomes with new terrains and animals.</p> <p>Michi refers to a a style of map where forest completely separates the players, preventing early rushes.</p> <p>Supports FFA as well as any team compositions (including uneven teams) - just make sure to check the \"team together\" box in the lobby!</p> <p>&nbsp;</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Zetnus",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KI4AAOijCgOA3.jozKovAH98pXtkJUk6Lp7ZJcRyK5y8swP3aU4enAh0Y2BgtWaCZh&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-12T00:23:22.223",
         "lastUpdate":"2022-07-03T14:06:20.953",
         "updateAvailable":false,
         "modFileSize":2700844.0,
         "modDiskSize":null,
         "downloads":10719,
         "installs":null,
         "likes":910,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1656857182_2229__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2397,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Original Sounds",
         "description":"<p>This is the official \"Original Sounds\" mod.</p> <p>This will replace all building and unit sounds, as well as UI sounds (notifications, buttons etc.) with the ones used in the original game. Some extra sounds not found in the original will also be muted or approximated.</p> <p>If you want only the building/unit in-game SFX, or only the UI SFX, you can try these mods instead:</p> <ul> <li><a href=\"../2398/\">Original Sounds (Units only)</a></li> <li><a href=\"../2399/\">Original Sounds (UI only)</a></li> </ul> <p>It is also optionally possible to restore the original \"button mouseover\" sound when hovering over some buttons. Install this mod: <a href=\"../2422/\">Original Mouseover Sound</a>.</p> <p>This pack may be updated by FE as further fixes are made to the audio modding system in future updates.</p> <p><strong>Known issues:</strong></p> <ul> <li>Burning building fire sounds are not replaced, because it is currently not possible to have looped sounds in mods. Loop is not preservedat the moment and the sound would play just once.</li> <li>Some unit effects (in particular battle sounds) may not be properly capped to cancel-out older instances of themselves. This may result in some odd overlaps however should not stack up volume. Fire Galley sound is also not replaced with original due to this. This issue is being looked into for future updates.</li> <li>When you select one unit/building, and then very quickly select another, the previous unit's sound cuts off. This will be fixed once the above capping issue is fixed.</li> </ul> <p>If you want to learn how to mod audio files on your own, and possibly alter this package to suit your needs, check this guide on Steam: <a href=\"https://steamcommunity.com/sharedfiles/filedetails/?id=1915891079\">https://steamcommunity.com/sharedfiles/filedetails/?id=1915891079</a></p>",
         "modDescription":"<p>This is the official \"Original Sounds\" mod.</p> <p>This will replace all building and unit sounds, as well as UI sounds (notifications, buttons etc.) with the ones used in the original game. Some extra sounds not found in the original will also be muted or approximated.</p> <p>If you want only the building/unit in-game SFX, or only the UI SFX, you can try these mods instead:</p> <ul> <li><a href=\"../2398/\">Original Sounds (Units only)</a></li> <li><a href=\"../2399/\">Original Sounds (UI only)</a></li> </ul> <p>It is also optionally possible to restore the original \"button mouseover\" sound when hovering over some buttons. Install this mod: <a href=\"../2422/\">Original Mouseover Sound</a>.</p> <p>This pack may be updated by FE as further fixes are made to the audio modding system in future updates.</p> <p><strong>Known issues:</strong></p> <ul> <li>Burning building fire sounds are not replaced, because it is currently not possible to have looped sounds in mods. Loop is not preservedat the moment and the sound would play just once.</li> <li>Some unit effects (in particular battle sounds) may not be properly capped to cancel-out older instances of themselves. This may result in some odd overlaps however should not stack up volume. Fire Galley sound is also not replaced with original due to this. This issue is being looked into for future updates.</li> <li>When you select one unit/building, and then very quickly select another, the previous unit's sound cuts off. This will be fixed once the above capping issue is fixed.</li> </ul> <p>If you want to learn how to mod audio files on your own, and possibly alter this package to suit your needs, check this guide on Steam: <a href=\"https://steamcommunity.com/sharedfiles/filedetails/?id=1915891079\">https://steamcommunity.com/sharedfiles/filedetails/?id=1915891079</a></p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Sounds",
         "modTags":[
            "17"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Sounds"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"StepS7578",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqVymuEzyJNthwmEgSWEbtCqnySgqbRuiemi.zHFbbmVlcN1zVanFW2a2Iv0v2rFQGHBSe6Xe2_b0YTa_1I6uPlGOTpOxz2ze34MdKtkpmzKs-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-19T15:30:22.973",
         "lastUpdate":"2020-11-26T19:32:20.103",
         "updateAvailable":false,
         "modFileSize":3940864.0,
         "modDiskSize":null,
         "downloads":9559,
         "installs":null,
         "likes":982,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1576769437__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2701,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"City of Peace",
         "description":"<p>A young woman has been murdered in Madinat al-Salaam (the City of Peace). As Harun ar-Rashid's vizier, Jafar ibn Yahya, find her murderer in an immersive journey to the Islamic Golden Age on the verge of turmoil. Now updated for the Defintive Edition. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique detective / murder mystery gameplay</li> <li>Control your investigation by choosing how to interact with witnesses and suspects</li> <li>Assess the evidence and name the killer... but choose wisely or the guilty will walk free</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Editionand scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "modDescription":"<p>A young woman has been murdered in Madinat al-Salaam (the City of Peace). As Harun ar-Rashid's vizier, Jafar ibn Yahya, find her murderer in an immersive journey to the Islamic Golden Age on the verge of turmoil. Now updated for the Defintive Edition. <br /><br /><strong>Features:</strong></p> <ul> <li>Unique detective / murder mystery gameplay</li> <li>Control your investigation by choosing how to interact with witnesses and suspects</li> <li>Assess the evidence and name the killer... but choose wisely or the guilty will walk free</li> </ul> <p><br /><strong>About the Author</strong> <br /><em><strong>Filthydelphia (xbox: PhillySouljah)</strong> is the award-winning designer of historical custom campaigns and official content for the Age of Empires franchise. Formerly part of the Forgotten Empires campaign team, his works include the Portuguese, Burmese, Bulgarian, Italian, Indian, and Sicilian campaigns featured in Age of Empires II: Definitive Edition as well as several campaigns in Age of Empires: Definitive Editionand scenarios in Age of Empires III: Definitive Edition. Outside of Age of Empires, he is a captain in the United States Marine Corps Reserve and has an M.B.A. from the University of Chicago Booth School of Business.</em></p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "10",
            "16",
            "17",
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Campaign",
            "Scenarios",
            "Sounds",
            "Other"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"PhillySouljah",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID6glbH50uN.JPMlLZOxsUm0BGG3xnYsud0HMrFIi2O3Vyb8b9g0W9aAmEqaRqaUmcM-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-01-01T18:35:15.163",
         "lastUpdate":"2021-12-14T06:15:17.993",
         "updateAvailable":false,
         "modFileSize":7886488.0,
         "modDiskSize":null,
         "downloads":10108,
         "installs":null,
         "likes":607,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1577903751__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":910,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"100 Tournament Maps with one nearby sheep",
         "description":"Maps from ECL, NAC, KotD2 (Arabia), Hidden Cup, SYNC (including Nomad),... For Dry River and Sunburn: _rp=random position; _cp=color position (color 1,3,5,7 for team A; 2,4,6,8 for team B).",
         "modDescription":"Maps from ECL, NAC, KotD2 (Arabia), Hidden Cup, SYNC (including Nomad),... For Dry River and Sunburn: _rp=random position; _cp=color position (color 1,3,5,7 for team A; 2,4,6,8 for team B).",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15",
            "16"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps",
            "Scenarios"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"the vlighter",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-15T15:03:08.053",
         "lastUpdate":"2020-03-22T06:59:33.053",
         "updateAvailable":false,
         "modFileSize":270351.0,
         "modDiskSize":null,
         "downloads":8374,
         "installs":null,
         "likes":549,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1573830212__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1174,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Otto Osteras Menu Art",
         "description":"<p>Replace the original menu art with a render made by <a href=\"https://www.artstation.com/artwork/x5E6E\">Otto Ostera&nbsp;</a></p>",
         "modDescription":"<p>Replace the original menu art with a render made by <a href=\"https://www.artstation.com/artwork/x5E6E\">Otto Ostera&nbsp;</a></p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"User Interface",
         "modTags":[
            "12",
            "21"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics",
            "Menu Background"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"NkoDragas",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW9ylgipzPKXDCFSOk0FnrfTT4sJwR1MtO1_KOM3GrKJ3mn_0YTnb36hpju37vLPWAwRrYhke8mBFh7YUxnllVy7Mb32WShxlLWauGJSOOWIs-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-18T16:45:14.687",
         "lastUpdate":"2019-12-09T21:54:51.573",
         "updateAvailable":false,
         "modFileSize":5650041.0,
         "modDiskSize":null,
         "downloads":7624,
         "installs":null,
         "likes":1112,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1574095528__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":15162,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"0xDB Map Color Clarity UI 2.0b",
         "description":"<p>Could you never tell the difference between player gray and stone resources in vanilla? Ever felt like Orange had an advantage being camouflaged on dirt or had trouble seeing rocks on grass or sheep and boar on it? Then this mod is for you.</p>\r\n<p>All map colors and the player colors have been carefully rebalanced against each other to improve readability of units and resources on the minimap.</p>\r\n<p>Version 2.0b: Tweaked the food hue and brightness.</p>\r\n<p>Version 2.0 further improves the readability of woodlines and tweaked gray, stone, food and gold.</p>\r\n<p>Version 1.0 is still available as separate mod.</p>",
         "modDescription":"<p>Could you never tell the difference between player gray and stone resources in vanilla? Ever felt like Orange had an advantage being camouflaged on dirt or had trouble seeing rocks on grass or sheep and boar on it? Then this mod is for you.</p>\r\n<p>All map colors and the player colors have been carefully rebalanced against each other to improve readability of units and resources on the minimap.</p>\r\n<p>Version 2.0b: Tweaked the food hue and brightness.</p>\r\n<p>Version 2.0 further improves the readability of woodlines and tweaked gray, stone, food and gold.</p>\r\n<p>Version 1.0 is still available as separate mod.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"User Interface",
         "modTags":[
            "12",
            "22"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics",
            "User Interface"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"OxDBAOE2",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7Aiafbf1ZdIx96EwMDQWMDLl1Uu6rRXCenhj0iRdit2o6dj1&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-05-06T19:21:54.493",
         "lastUpdate":"2021-02-17T17:04:40.203",
         "updateAvailable":false,
         "modFileSize":2773.0,
         "modDiskSize":null,
         "downloads":6848,
         "installs":null,
         "likes":323,
         "userLiked":true,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1613581480_thumb20b.png",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2861,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Zetnus Random Map Script Pack",
         "description":"<p>This mod will contain all of my classic random map scripts, once I get around to remastering them for DE. It will also contain my new maps, with a few exceptions such as HyperRandom and Michi DE that have their own uploads.</p>\r<p>Currently includes the following maps:</p>\r<ul>\r<li>Antarctica</li>\r<li>Barrier Reef</li>\r<li>Black Forest Random River</li>\r<li>Black Forest Rivers</li>\r<li>Battle Royale Cornucopia</li>\r<li>Battle Royale Forest Nothing</li>\r<li>Canberra</li>\r<li>Coastal Beaches</li>\r<li>Danakil</li>\r<li>Deadwood</li>\r<li>Deforest Nothing</li>\r<li>Desert Oases</li>\r<li>Docklands</li>\r<li>Eye</li>\r<li>Extraterrestrial</li>\r<li>Forest Nothing Teams</li>\r<li>Frontier</li>\r<li>Geothermal Valley</li>\r<li>Glacial Springs</li>\r<li>Hidden Lake</li>\r<li>King of the Hole</li>\r<li>Kraken</li>\r<li>Lake Nomad</li>\r<li>MegaRandom Nomad</li>\r<li>MegaRandom x256</li>\r<li>Mount Gambier</li>\r<li>Namib</li>\r<li>Mesas</li>\r<li>Meteor</li>\r<li>Nile Delta Improved</li>\r<li>Pag</li>\r<li>Pamirs</li>\r<li>Pangea</li>\r<li>Penguin Nothing</li>\r<li>Perfect Forest</li>\r<li>Random River</li>\r<li>Rice Terraces</li>\r<li>Ring Nomad</li>\r<li>Ring Nothing 1</li>\r<li>Ring Nothing 2</li>\r<li>Ring Nothing 3</li>\r<li>Rivulet</li>\r<li>Sacred Glades</li>\r<li>Snow Arabia</li>\r<li>Starfish</li>\r<li>Trade Winds</li>\r<li>Triple Pond Inspection</li>\r<li>Umm al Samim</li>\r<li>Uplift Nomad</li>\r<li>Urban Brawl</li>\r<li>Water Wars</li>\r<li>Wheel</li>\r</ul>\r<p>LR - version with super high resources</p>\r<p>SP - singplayer-only version</p>\r<p>MP - multiplayer-only version</p>\r<p>BR - battle-royale map</p> ",
         "modDescription":"<p>This mod will contain all of my classic random map scripts, once I get around to remastering them for DE. It will also contain my new maps, with a few exceptions such as HyperRandom and Michi DE that have their own uploads.</p>\r<p>Currently includes the following maps:</p>\r<ul>\r<li>Antarctica</li>\r<li>Barrier Reef</li>\r<li>Black Forest Random River</li>\r<li>Black Forest Rivers</li>\r<li>Battle Royale Cornucopia</li>\r<li>Battle Royale Forest Nothing</li>\r<li>Canberra</li>\r<li>Coastal Beaches</li>\r<li>Danakil</li>\r<li>Deadwood</li>\r<li>Deforest Nothing</li>\r<li>Desert Oases</li>\r<li>Docklands</li>\r<li>Eye</li>\r<li>Extraterrestrial</li>\r<li>Forest Nothing Teams</li>\r<li>Frontier</li>\r<li>Geothermal Valley</li>\r<li>Glacial Springs</li>\r<li>Hidden Lake</li>\r<li>King of the Hole</li>\r<li>Kraken</li>\r<li>Lake Nomad</li>\r<li>MegaRandom Nomad</li>\r<li>MegaRandom x256</li>\r<li>Mount Gambier</li>\r<li>Namib</li>\r<li>Mesas</li>\r<li>Meteor</li>\r<li>Nile Delta Improved</li>\r<li>Pag</li>\r<li>Pamirs</li>\r<li>Pangea</li>\r<li>Penguin Nothing</li>\r<li>Perfect Forest</li>\r<li>Random River</li>\r<li>Rice Terraces</li>\r<li>Ring Nomad</li>\r<li>Ring Nothing 1</li>\r<li>Ring Nothing 2</li>\r<li>Ring Nothing 3</li>\r<li>Rivulet</li>\r<li>Sacred Glades</li>\r<li>Snow Arabia</li>\r<li>Starfish</li>\r<li>Trade Winds</li>\r<li>Triple Pond Inspection</li>\r<li>Umm al Samim</li>\r<li>Uplift Nomad</li>\r<li>Urban Brawl</li>\r<li>Water Wars</li>\r<li>Wheel</li>\r</ul>\r<p>LR - version with super high resources</p>\r<p>SP - singplayer-only version</p>\r<p>MP - multiplayer-only version</p>\r<p>BR - battle-royale map</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Zetnus",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KI4AAOijCgOA3.jozKovAH98pXtkJUk6Lp7ZJcRyK5y8swP3aU4enAh0Y2BgtWaCZh&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-01-10T19:31:05.623",
         "lastUpdate":"2022-07-03T14:10:10.76",
         "updateAvailable":false,
         "modFileSize":13003418.0,
         "modDiskSize":null,
         "downloads":5616,
         "installs":null,
         "likes":334,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1656857412_2861__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":58889,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Anne_HK - New Fish Border",
         "description":"<p>Not Compatible with UHD graphic. Designed by Jack_Monkey and Modified with SLX Studio.&nbsp;&nbsp;</p>\r\n<p>Contact:&nbsp;<br />Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p>\r\n<p>Keyword: anne_hk, anne, fish, fish border, é, éæ¡</p> ",
         "modDescription":"<p>Not Compatible with UHD graphic. Designed by Jack_Monkey and Modified with SLX Studio.&nbsp;&nbsp;</p>\r\n<p>Contact:&nbsp;<br />Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p>\r\n<p>Keyword: anne_hk, anne, fish, fish border, é, éæ¡</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "12"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Anne HK",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQ5JaNPd2XmuKm12U6ewLA.g5OKwvxfjyMrYLY2c4QJf&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2022-04-30T12:40:46.75",
         "lastUpdate":"2022-04-30T12:51:19.65",
         "updateAvailable":false,
         "modFileSize":1636427.0,
         "modDiskSize":null,
         "downloads":5459,
         "installs":null,
         "likes":0,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1651322448_fish_border_thumbnail.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":20025,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"[KoBHV] Dark Age Town Center",
         "description":"The latest KoBHV mod allows a better view under the Dark Age Town Center. Without the canopy, it is easier to control the villagers and place the herd animals to ensure the highest efficiency in collecting meat. Now supports the Enhanced Graphics Pack. You like this Mod? Check out other KoBHV-Mods. If you have any questions or suggestions do not hesitate to contact me. Discord: Addy#1350",
         "modDescription":"The latest KoBHV mod allows a better view under the Dark Age Town Center. Without the canopy, it is easier to control the villagers and place the herd animals to ensure the highest efficiency in collecting meat. Now supports the Enhanced Graphics Pack. You like this Mod? Check out other KoBHV-Mods. If you have any questions or suggestions do not hesitate to contact me. Discord: Addy#1350",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Scenario"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Addy607623",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-12-30T12:40:23.153",
         "lastUpdate":"2021-03-25T12:33:33.733",
         "updateAvailable":false,
         "modFileSize":372507.0,
         "modDiskSize":null,
         "downloads":5283,
         "installs":null,
         "likes":238,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1616675614__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":22778,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Minimap TC Orbit",
         "description":"<p>Why does this exist: <https://www.aoezone.net/threads/yet-another-potentially-controversial-mod-that-prevents-you-from-running-into-your-opponents-tc.175549/></p>",
         "modDescription":"<p>Why does this exist: <https://www.aoezone.net/threads/yet-another-potentially-controversial-mod-that-prevents-you-from-running-into-your-opponents-tc.175549/></p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "22"
         ],
         "modTagIds":null,
         "modTagNames":[
            "User Interface"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"HeavenlyChorus",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqvrrdLouHECQPSLdgq3oFD7nvxVI.yJ0kTHzKW9LnOC8VfKR3rNK2r5pqGDRD4iwGEdoRm6xHhh.PWqnbQG4tlLyvv1c7dK75C5gSsPv84CM-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2021-05-22T07:01:42.083",
         "lastUpdate":"2022-08-15T20:00:24.787",
         "updateAvailable":false,
         "modFileSize":3820726.0,
         "modDiskSize":null,
         "downloads":2974,
         "installs":null,
         "likes":65,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1621666903__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1514,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Archers Hellfire 2017",
         "description":"<p>Everyone spawns ranged units throughout the game. Get kills to upgrade your spawn units All units will gain +1 attack every 20 seconds while in the middle. Objective: Kill enemy main player towers to defeat them Player main tower dies = That player loses! Everyone will receive 2 Elite longboats every 7 minutes as reinforcements Everyone will receive 1 Saboteur + 1 Genghis Khan every 9 mins as reinforcements Everyone will also receive 1 Hellfire monk every 11 minutes. This monk can be used to cast a variety of different spells. Everyone has a razing counter attached to their main tower Razings also provide various rewards as well as kills There is a kill counter at the top of the map (Counts every 1 kill)</p>",
         "modDescription":"<p>Everyone spawns ranged units throughout the game. Get kills to upgrade your spawn units All units will gain +1 attack every 20 seconds while in the middle. Objective: Kill enemy main player towers to defeat them Player main tower dies = That player loses! Everyone will receive 2 Elite longboats every 7 minutes as reinforcements Everyone will receive 1 Saboteur + 1 Genghis Khan every 9 mins as reinforcements Everyone will also receive 1 Hellfire monk every 11 minutes. This monk can be used to cast a variety of different spells. Everyone has a razing counter attached to their main tower Razings also provide various rewards as well as kills There is a kill counter at the top of the map (Counts every 1 kill)</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "16"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Scenarios"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"TertiaryFall24",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID4hKQeLSM6t5EnoYLpobrjpsQMRuwkDkvQPZ67SsL1FSBaoDI6zGVjrXVF6hUiSE3s-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-11-23T17:24:22.513",
         "lastUpdate":"2021-09-02T12:21:37.077",
         "updateAvailable":false,
         "modFileSize":188738.0,
         "modDiskSize":null,
         "downloads":2196,
         "installs":null,
         "likes":185,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1630585297__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":48640,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Wandering Warriors Cup - Map Pack",
         "description":"The official map pack for Wandering Warriors Cup. The map pack contains the following maps: - Boundary Brawl - Compass - Golden Hill - Graupel - Houseboat - Inundation - Mired - Nomad For any issues, please reach out to Chrazini on Discord. ",
         "modDescription":"The official map pack for Wandering Warriors Cup. The map pack contains the following maps: - Boundary Brawl - Compass - Golden Hill - Graupel - Houseboat - Inundation - Mired - Nomad For any issues, please reach out to Chrazini on Discord. ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Chrazini1191",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID4hKQeLSM6t5EnoYLpobrjpsQMRuwkDkvQPZ67SsL1FSBaoDI6zGVjrXVF6hUiSE3s-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2021-12-27T22:58:13.907",
         "lastUpdate":"2022-01-06T09:55:14.24",
         "updateAvailable":false,
         "modFileSize":282698.0,
         "modDiskSize":null,
         "downloads":2102,
         "installs":null,
         "likes":99,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1641462915__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":72589,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"T90 Titans League - Map Pack",
         "description":"Official map pack for T90 Titans League.\rThis map pack contains the following maps:\r\r - Arabia\r - Arena\r - Atacama\r - Cross\r - Fortified Clearing\r - Gold Rush\r - Golden Swamp\r - Houseboat\r - Jungle Swamp\r - Ravines\r - Serengeti\r - Yucatan (obsolete)\r\rMaps may deviate from other versions seen elsehwere. Reach out to Chrazini for feedback or concerns.",
         "modDescription":"Official map pack for T90 Titans League.\rThis map pack contains the following maps:\r\r - Arabia\r - Arena\r - Atacama\r - Cross\r - Fortified Clearing\r - Gold Rush\r - Golden Swamp\r - Houseboat\r - Jungle Swamp\r - Ravines\r - Serengeti\r - Yucatan (obsolete)\r\rMaps may deviate from other versions seen elsehwere. Reach out to Chrazini for feedback or concerns.",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Chrazini1191",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID4hKQeLSM6t5EnoYLpobrjpsQMRuwkDkvQPZ67SsL1FSBaoDI6zGVjrXVF6hUiSE3s-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2022-06-03T09:41:41.447",
         "lastUpdate":"2022-07-31T17:11:21.957",
         "updateAvailable":false,
         "modFileSize":241254.0,
         "modDiskSize":null,
         "downloads":779,
         "installs":null,
         "likes":0,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1654249303_72589__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":1847,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"KotD2 Random Map Pack",
         "description":"Changelog from orignal Arabia: ⢠All cliffs have been removed. ⢠Ponds will no longer generate. ⢠All players spawn with one goat already captured close to their starting town center. ⢠Deer has been replaced by zebras and always spawn in patches of three. ⢠Relics are more evenly spread out across the map. ⢠A group of four wild camels will spawn somewhere in the desert. ⢠Several changes to the overall aesthetics.",
         "modDescription":"Changelog from orignal Arabia: ⢠All cliffs have been removed. ⢠Ponds will no longer generate. ⢠All players spawn with one goat already captured close to their starting town center. ⢠Deer has been replaced by zebras and always spawn in patches of three. ⢠Relics are more evenly spread out across the map. ⢠A group of four wild camels will spawn somewhere in the desert. ⢠Several changes to the overall aesthetics.",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"ChampionRev",
         "creatorAvatarUrl":"https://static.ageofempires.com/aoe/default_avatar.jpg",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-02T13:44:06.267",
         "lastUpdate":"2019-12-02T13:44:06.267",
         "updateAvailable":false,
         "modFileSize":233346.0,
         "modDiskSize":null,
         "downloads":926,
         "installs":null,
         "likes":60,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1575294259__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":2422,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Original Mouseover Sound",
         "description":"<p>This small mod will re-introduce the original \"on-hover\" sound when mousing over some buttons (red buttons, campaigns, tabs, top-right panel). It can be used in addition to the \"<a href=\"../2397\">Original Sounds</a>\" mod.</p>",
         "modDescription":"<p>This small mod will re-introduce the original \"on-hover\" sound when mousing over some buttons (red buttons, campaigns, tabs, top-right panel). It can be used in addition to the \"<a href=\"../2397\">Original Sounds</a>\" mod.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Sounds",
         "modTags":[
            "26"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Sounds"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"StepS7578",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqVymuEzyJNthwmEgSWEbtCqnySgqbRuiemi.zHFbbmVlcN1zVanFW2a2Iv0v2rFQGHBSe6Xe2_b0YTa_1I6uPlGOTpOxz2ze34MdKtkpmzKs-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2019-12-20T20:07:10.88",
         "lastUpdate":"2019-12-29T14:34:45.84",
         "updateAvailable":false,
         "modFileSize":2078.0,
         "modDiskSize":null,
         "downloads":349,
         "installs":null,
         "likes":30,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1576872443__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":58893,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Anne_HK - Flat Cube Resources",
         "description":"<p>No Compatiable with UHD. Replace berry, stone, gold resources with flat cubes. Reduce color contrast and make it easier to click.</p>\r\n<p>Keyword: anne_hk, anne, æ¹æ ¼, ææ¹æ ¼, ææ¨¹, é礦, é礦</p>\r\n<p>Contact:&nbsp;<br />Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p>\r\n<p>*This Mod is Inspired by Age of Cubes (the6hu8b)</p> ",
         "modDescription":"<p>No Compatiable with UHD. Replace berry, stone, gold resources with flat cubes. Reduce color contrast and make it easier to click.</p>\r\n<p>Keyword: anne_hk, anne, æ¹æ ¼, ææ¹æ ¼, ææ¨¹, é礦, é礦</p>\r\n<p>Contact:&nbsp;<br />Discord - anne_hk#1505<br />Instagram - aoe_anne_hk</p>\r\n<p>*This Mod is Inspired by Age of Cubes (the6hu8b)</p> ",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Scenario",
         "modTags":[
            "12"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Graphics"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Anne HK",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQ5JaNPd2XmuKm12U6ewLA.g5OKwvxfjyMrYLY2c4QJf&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2022-04-30T13:34:31.077",
         "lastUpdate":"2022-04-30T13:34:31.077",
         "updateAvailable":false,
         "modFileSize":1648441.0,
         "modDiskSize":null,
         "downloads":351,
         "installs":null,
         "likes":0,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1651325672_flat_cube_resource_thumbnail.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":14474,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"Dire Straits",
         "description":"<p><strong>Dire Straits</strong> is an open land map with some water (mostly shallows). The resources on land are pretty normal and symmetrical for all players, but the truly randomized map generation should provide a wide variety of experiences that encourage scouting and adapting. It&rsquo;s designed to be fair, but not completely predictable.</p> <p>It requires the following settings:</p> <ul> <li>1v1 on Tiny (2-Player)</li> <li>2v2 on Medium (4-Player)</li> <li>3v3 on Normal (6-Player)</li> <li>4v4 on Large (8-Player)</li> </ul> <p>Key features include:</p> <ul> <li>Varied maps and player positions. Exploration is key, as players aren't always placed in a circle.</li> <li>Only one fast fish and some shore fish per lake. Fishing doesn't overpower all other strategies.</li> <li>Primarily land-based gameplay. Warships can be used tactically instead of just for fire galley rushes.</li> <li>150 wood trees. Fewer trees keeps the land more open for offensive options.</li> </ul> <p>A more detailed description (with more images) is available <a href=\"https://docs.google.com/document/d/10eizXhDIVal__5wGivfV9P2PXUoz-dasE12h0dc9Aq0\">here</a>.</p> <p>Dire Straits is built using a different process than a typical AoE2 map in order to generate unpredictable geography while validating each map with a computer program to keep things fair for both teams. For more information about how to create maps like this, including the source code for all the programs used, see <a href=\"https://docs.google.com/document/d/1E_Si9iXmzUqFuptkW-8F6XdmoxDXNUG36XIhnh86krU\">this guide</a>.</p>",
         "modDescription":"<p><strong>Dire Straits</strong> is an open land map with some water (mostly shallows). The resources on land are pretty normal and symmetrical for all players, but the truly randomized map generation should provide a wide variety of experiences that encourage scouting and adapting. It&rsquo;s designed to be fair, but not completely predictable.</p> <p>It requires the following settings:</p> <ul> <li>1v1 on Tiny (2-Player)</li> <li>2v2 on Medium (4-Player)</li> <li>3v3 on Normal (6-Player)</li> <li>4v4 on Large (8-Player)</li> </ul> <p>Key features include:</p> <ul> <li>Varied maps and player positions. Exploration is key, as players aren't always placed in a circle.</li> <li>Only one fast fish and some shore fish per lake. Fishing doesn't overpower all other strategies.</li> <li>Primarily land-based gameplay. Warships can be used tactically instead of just for fire galley rushes.</li> <li>150 wood trees. Fewer trees keeps the land more open for offensive options.</li> </ul> <p>A more detailed description (with more images) is available <a href=\"https://docs.google.com/document/d/10eizXhDIVal__5wGivfV9P2PXUoz-dasE12h0dc9Aq0\">here</a>.</p> <p>Dire Straits is built using a different process than a typical AoE2 map in order to generate unpredictable geography while validating each map with a computer program to keep things fair for both teams. For more information about how to create maps like this, including the source code for all the programs used, see <a href=\"https://docs.google.com/document/d/1E_Si9iXmzUqFuptkW-8F6XdmoxDXNUG36XIhnh86krU\">this guide</a>.</p>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"Random Maps",
         "modTags":[
            "15"
         ],
         "modTagIds":null,
         "modTagNames":[
            "Random Maps"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"Biz5985",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=_ypRc.tDkw6ssGJei7uFnjPBFhPKOw9luaoEyDH5ID4hKQeLSM6t5EnoYLpobrjpeeH2b0Wao6jMukrOuhrYmkH5IYssgPZK91B3ByIwHqo-&background=0xababab&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2020-04-18T01:28:57.163",
         "lastUpdate":"2020-04-18T02:48:43.71",
         "updateAvailable":false,
         "modFileSize":79046.0,
         "modDiskSize":null,
         "downloads":101,
         "installs":null,
         "likes":9,
         "userLiked":false,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1587174824_ds_2v2a.jpg",
         "fileUrl":null,
         "imageUrls":null
      },
      {
         "popular":0,
         "modId":22393,
         "gameTitleId":null,
         "gameTitleName":null,
         "modName":"HeavenlyChorus Color Palette v1",
         "description":"<ul> <li>Tweaked colors of my own taste</li> <li>Adjusted unit icon colors for all 8 players (the color of cloth on units' icons)</li> <li>Adjusted minimap stone color to rgb(63,63,63), a lighter grey, to use along with <strong>0xDB Map Color Clarity UI 2.0b</strong> (a minimap color mod, highly recommended to use)</li> </ul>",
         "modDescription":"<ul> <li>Tweaked colors of my own taste</li> <li>Adjusted unit icon colors for all 8 players (the color of cloth on units' icons)</li> <li>Adjusted minimap stone color to rgb(63,63,63), a lighter grey, to use along with <strong>0xDB Map Color Clarity UI 2.0b</strong> (a minimap color mod, highly recommended to use)</li> </ul>",
         "changeList":null,
         "verifiedVersion":null,
         "modTypeId":null,
         "clientId":null,
         "modType":"User Interface",
         "modTags":[
            "22"
         ],
         "modTagIds":null,
         "modTagNames":[
            "User Interface"
         ],
         "metaData":null,
         "modStatusId":null,
         "modStatus":"Published",
         "modStatusMessage":null,
         "modVisibility":"Public",
         "creatorId":null,
         "creatorName":"HeavenlyChorus",
         "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqvrrdLouHECQPSLdgq3oFD7nvxVI.yJ0kTHzKW9LnOC8VfKR3rNK2r5pqGDRD4iwGEdoRm6xHhh.PWqnbQG4tlLyvv1c7dK75C5gSsPv84CM-&format=png",
         "isOwner":false,
         "isLoggedOn":true,
         "allowDiscussion":false,
         "discourseUrl":null,
         "createDate":"2021-04-24T21:30:58.36",
         "lastUpdate":"2021-04-25T00:17:59.06",
         "updateAvailable":false,
         "modFileSize":2045109.0,
         "modDiskSize":null,
         "downloads":143,
         "installs":null,
         "likes":6,
         "userLiked":true,
         "ratings":null,
         "currentRating":0.0,
         "userDownloaded":true,
         "userInstalled":true,
         "userFlagged":false,
         "userRating":null,
         "userReview":null,
         "positiveRatings":0,
         "totalRatings":0,
         "thumbnail":"https://cdn.ageofempires.com/aoe/mods/thumb_1619299859__preview-icon.jpg",
         "fileUrl":null,
         "imageUrls":null
      }
   ],
   "totalCount":40,
   "isLoggedOn":true
}

modsLike

modsModerate

modsMine

modsTags

modsTypes

modsUninstall

API v2 (Deprecated)

Legacy API version. No documented endpoints.

Note: Consider using the game-specific APIs (agede, ageii, ageiii, ageiv) instead.

/api/v2/ageii

Endpoints

/api/v2/ageii/getmpmatchdetail

getAge2MatchDetail

To use this endpoint, you need to pass two queries.

curl -X POST “https://api.ageofempires.com/api/v2/AgeII/GetMPMatchDetail” -H “Accept: application/json” -H “Content-Type: application/json” -d “{"profileId":3008981,"gameId":398953338}”

{“matchSummary”:{“gameId”:“398953338”,“matchId”:null,“profileId”:0,“userName”:null,“avatarUrl”:null,“dateTime”:“2025-06-10 22:06:12.0”,“matchLength”:30.6,“playerCount”:0,“victoryResultID”:0,“mapType”:“My Map”,“civilizationID”:0,“civilization”:null,“winLoss”:null},“playerList”:[{“userId”:“3008981”,“profileId”:0,“userName”:“AMI”,“avatarUrl”:“https://avatars.steamstatic.com/7db4b32530a62a673fe3b8f8e85f2764b92cd206_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:0,“civName”:“Byzantines”,“winLoss”:“Loss”,“matchReplayAvailable”:true},{“userId”:“14429281”,“profileId”:0,“userName”:“AZAR300”,“avatarUrl”:“https://avatars.steamstatic.com/164f832327a54b967a608afb36700be648cd2ebb_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:1,“civName”:“Dravidians”,“winLoss”:“Loss”,“matchReplayAvailable”:true},{“userId”:“837558”,“profileId”:0,“userName”:“bengtarne”,“avatarUrl”:“https://avatars.steamstatic.com/0e76a2d7a4291d680c23b8ae1a4153d51053c608_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:2,“civName”:“Goths”,“winLoss”:“Win”,“matchReplayAvailable”:false},{“userId”:“1885761”,“profileId”:0,“userName”:“Eraser88”,“avatarUrl”:“https://avatars.steamstatic.com/4125a4a696a296f0345bd18820e94456af82194a_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:3,“civName”:“Goths”,“winLoss”:“Loss”,“matchReplayAvailable”:false},{“userId”:“3018191”,“profileId”:0,“userName”:“Shimmy Xx”,“avatarUrl”:“https://avatars.steamstatic.com/d9f6d5c2039adbef6c6dc8b2d7d839c6676eaf00_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:4,“civName”:“Dravidians”,“winLoss”:“Win”,“matchReplayAvailable”:false},{“userId”:“4939817”,“profileId”:0,“userName”:“[B] Carlian”,“avatarUrl”:“https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:5,“civName”:“Teutons”,“winLoss”:“Loss”,“matchReplayAvailable”:false},{“userId”:“12151613”,“profileId”:0,“userName”:“Labrador Chocolate”,“avatarUrl”:“https://avatars.steamstatic.com/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:6,“civName”:“Byzantines”,“winLoss”:“Win”,“matchReplayAvailable”:true},{“userId”:“307486”,“profileId”:0,“userName”:“Colonel Otto”,“avatarUrl”:“https://avatars.steamstatic.com/6e266dd967c5470c6433dcd76d062e4bf6e8146a_full.jpg”,“elo”:null,“playerStanding”:0.0,“isHuman”:true,“team”:7,“civName”:“Teutons”,“winLoss”:“Win”,“matchReplayAvailable”:false}],“statusCode”:0,“errorMessage”:null

/api/v2/ageii/leaderboard

statsLeaderboardII

API v4 (Deprecated)

Legacy API version. No documented endpoints.

Note: Consider using the game-specific APIs (agede, ageii, ageiii, ageiv) instead.

/api/v4/mods

Endpoints

modsDelete

modsDetail

/api/v4/mods/download

modsDownload

[POST] /api/v4/Mods/Find/

AUTHENTICATION

Request

AoE4

POST /api/v4/Mods/Find/ HTTP/1.1
Host: api.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 CAEQ8r/r2AwYBSBLKoABBvLEPiLC/jFgMWrApLt1wEVq/gNVsjg/mrmECUAQM5669cvmj8SxWM9wLNBzjZCyVJqlocVi/4hIU7il2ToQoiiLOiWuURy2ebX/AEcd8jS/iqMGZW6qIdoT9eumDueQOyKw4cH26mSVc3/bLRi2sf0vThM2dkt3eQ4Mnfr5xQs=
Content-Length: 95
Content-Type: application/json

{
    "q": "",
    "filter": 0,
    "sort": "lastUpdate",
    "order": "desc",
    "start": 0,
    "count": 200,
    "game": 4,
    "modid": 0
}
parametertypevaluecomments
qstr
filterint0
sortstrlastUpdate
orderstrdesc
startint0
countint200
gameint4
modidint0

Response

AoE2:DE

RESPONSE TEMPLATE

AoE4

{
    "searchParams": {
        "q": null,
        "creator": null,
        "filter": 0,
        "sort": "lastUpdate",
        "order": "DESC",
        "start": 1,
        "count": 200,
        "game": 4,
        "modid": 0
    },
    "modList": [
        {
            "modId": 112877,
            "gameTitleId": 4,
            "gameTitleName": null,
            "modName": "Mobius Tuning Pack 2",
            "description": "Updated for Malians and Ottomans. \r\n \r\n- Traders contribute 0.2 to population, reduced from 1. \r\n- Increases resource limits from 100,000 to 100,000,000.",
            "modDescription": "Updated for Malians and Ottomans. \r\n \r\n- Traders contribute 0.2 to population, reduced from 1. \r\n- Increases resource limits from 100,000 to 100,000,000.",
            "changeList": null,
            "verifiedVersion": null,
            "modTypeId": 6,
            "clientId": "",
            "modType": "Extension",
            "modTags": null,
            "modTagIds": [
                4
            ],
            "modTagNames": [
                "Tuning Pack"
            ],
            "metaData": null,
            "modStatusId": 2,
            "modStatus": "Published",
            "modStatusMessage": null,
            "modVisibility": "Public",
            "creatorId": 2270778,
            "creatorName": "Mobius6469",
            "creatorAvatarUrl": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KI4AAOijCgOA3.jozKovAH9wJVHMk5TchyPp7y7q0530QiLZPdTsSqNSrT34qiEmcl&format=png",
            "isOwner": false,
            "isLoggedOn": false,
            "allowDiscussion": false,
            "discourseUrl": null,
            "createDate": "2022-10-26T21:09:34.173",
            "lastUpdate": "2022-10-26T21:09:34.173",
            "updateAvailable": false,
            "modFileSize": 1635361.0,
            "modDiskSize": null,
            "popular": 3,
            "downloads": 3,
            "installs": null,
            "likes": 0,
            "userLiked": false,
            "ratings": {
                "leastFavorableReview": null,
                "mostFavorableReview": null,
                "rating": {
                    "average": 0.0,
                    "count1Star": null,
                    "count2Star": null,
                    "count3Star": null,
                    "count4Star": null,
                    "count5Star": null,
                    "totalCount": 0
                },
                "reviewsCount": 0
            },
            "currentRating": 0.0,
            "userDownloaded": false,
            "userInstalled": false,
            "userFlagged": false,
            "userRating": null,
            "userReview": null,
            "positiveRatings": 0,
            "totalRatings": 0,
            "thumbnail": "https://cdn.ageofempires.com/aoe-mods/4/112877/64ff210a.jpeg",
            "fileUrl": null,
            "imageUrls": null
        },
        {
            ...
        }
    ],
    "totalCount": 3109,
    "isLoggedOn": false
}

modsFlagged

/mods/GetFlaggedDetail

modsFlaggedDetail

[POST] /api/v4/Mods/Installed/

AUTHENTICATION

Request

AoE4

POST /api/v4/Mods/Installed/ HTTP/1.1
Host: api.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 CAEQ8r/r2AwYBSBLKoABBvLEPiLC/jFgMWrApLt1wEVq/gNVsjg/mrmECUAQM5669cvmj8SxWM9wLNBzjZCyVJqlocVi/4hIU7il2ToQoiiLOiWuURy2ebX/AEcd8jS/iqMGZW6qIdoT9eumDueQOyKw4cH26mSVc3/bLRi2sf0vThM2dkt3eQ4Mnfr5xQs=
Content-Length: 79
Content-Type: application/json

{
    "q": "",
    "filter": 0,
    "sort": "",
    "order": "",
    "start": 0,
    "count": 0,
    "game": 4,
    "modid": 0
}
parametertypevaluecomments
q?
filterint0
sort?
order?
startint0
countint0
gameint4
modidint0

Response

AoE2:DE

RESPONSE TEMPLATE

AoE4

{
    "searchParams": {
        "q": null,
        "creator": null,
        "filter": 0,
        "sort": "lastUpdate",
        "order": "DESC",
        "start": 1,
        "count": 200,
        "game": 4,
        "modid": 0
    },
    "modList": [
        {
            "modId": 112877,
            "gameTitleId": 4,
            "gameTitleName": null,
            "modName": "Mobius Tuning Pack 2",
            "description": "Updated for Malians and Ottomans. \r\n \r\n- Traders contribute 0.2 to population, reduced from 1. \r\n- Increases resource limits from 100,000 to 100,000,000.",
            "modDescription": "Updated for Malians and Ottomans. \r\n \r\n- Traders contribute 0.2 to population, reduced from 1. \r\n- Increases resource limits from 100,000 to 100,000,000.",
            "changeList": null,
            "verifiedVersion": null,
            "modTypeId": 6,
            "clientId": "",
            "modType": "Extension",
            "modTags": null,
            "modTagIds": [
                4
            ],
            "modTagNames": [
                "Tuning Pack"
            ],
            "metaData": null,
            "modStatusId": 2,
            "modStatus": "Published",
            "modStatusMessage": null,
            "modVisibility": "Public",
            "creatorId": 2270778,
            "creatorName": "Mobius6469",
            "creatorAvatarUrl": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KI4AAOijCgOA3.jozKovAH9wJVHMk5TchyPp7y7q0530QiLZPdTsSqNSrT34qiEmcl&format=png",
            "isOwner": false,
            "isLoggedOn": false,
            "allowDiscussion": false,
            "discourseUrl": null,
            "createDate": "2022-10-26T21:09:34.173",
            "lastUpdate": "2022-10-26T21:09:34.173",
            "updateAvailable": false,
            "modFileSize": 1635361.0,
            "modDiskSize": null,
            "popular": 3,
            "downloads": 3,
            "installs": null,
            "likes": 0,
            "userLiked": false,
            "ratings": {
                "leastFavorableReview": null,
                "mostFavorableReview": null,
                "rating": {
                    "average": 0.0,
                    "count1Star": null,
                    "count2Star": null,
                    "count3Star": null,
                    "count4Star": null,
                    "count5Star": null,
                    "totalCount": 0
                },
                "reviewsCount": 0
            },
            "currentRating": 0.0,
            "userDownloaded": false,
            "userInstalled": false,
            "userFlagged": false,
            "userRating": null,
            "userReview": null,
            "positiveRatings": 0,
            "totalRatings": 0,
            "thumbnail": "https://cdn.ageofempires.com/aoe-mods/4/112877/64ff210a.jpeg",
            "fileUrl": null,
            "imageUrls": null
        },
        {
            ...
        }
        
    ],
    "totalCount": 3109,
    "isLoggedOn": false
}

/mods/Like

modsLike

/mods/Moderate

modsModerate

[POST] /api/v4/Mods/My/

AUTHENTICATION

Request

AoE4

POST /api/v4/Mods/My/ HTTP/1.1
Host: api.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 CAEQ8r/r2AwYBSBLKoABBvLEPiLC/jFgMWrApLt1wEVq/gNVsjg/mrmECUAQM5669cvmj8SxWM9wLNBzjZCyVJqlocVi/4hIU7il2ToQoiiLOiWuURy2ebX/AEcd8jS/iqMGZW6qIdoT9eumDueQOyKw4cH26mSVc3/bLRi2sf0vThM2dkt3eQ4Mnfr5xQs=
Content-Length: 83
Content-Type: application/json

{
    "q": "",
    "filter": 0,
    "sort": "",
    "order": "",
    "start": 1,
    "count": 20000,
    "game": 4,
    "modid": 0
}
parametertypevaluecomments
q?
filterint0
sort?
order?
startint1
countint20000
gameint4
modidint0

Response

AoE2:DE

{
   "modId":14788,
   "gameTitleId":2,
   "gameTitleName":"Age of Empires II DE",
   "modName":"[GreatestTech] Gunpowder Tracer FX",
   "description":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
   "modDescription":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
   "changeList":"",
   "verifiedVersion":null,
   "modTypeId":12,
   "clientId":null,
   "modType":"Graphics",
   "modTags":[
      "12",
      "24",
      "25"
   ],
   "modTagIds":null,
   "modTagNames":[
      "Graphics",
      "Official",
      "Event"
   ],
   "metaData":{
      "modId":14788,
      "gameTitleId":null,
      "gameTitleName":null,
      "modName":"[GreatestTech] Gunpowder Tracer FX",
      "description":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
      "modDescription":"<p>Gunpowder projectile shots will have thin smoke trails.</p>",
      "changeList":null,
      "verifiedVersion":null,
      "modTypeId":null,
      "clientId":null,
      "modType":"Graphics",
      "modTags":[
         "12",
         "24",
         "25"
      ],
      "modTagIds":null,
      "modTagNames":[
         "Graphics",
         "Official",
         "Event"
      ],
      "metaData":null,
      "modStatusId":null,
      "modStatus":"Published",
      "modStatusMessage":null,
      "modVisibility":"Unlisted",
      "creatorId":null,
      "creatorName":"AoE Official",
      "creatorAvatarUrl":"https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW.yovsDdui0TKE6WR.4_G12uLRBxuIvCnWAqCxdnHpyhcb0trk6v4voWKTlVqnrmoBvD0REWNWMHYDaEaY6h4q23at4q0mjQwBHt.ikWVbw0-&format=png",
      "isOwner":false,
      "isLoggedOn":true,
      "allowDiscussion":false,
      "discourseUrl":null,
      "createDate":"2020-04-29T15:26:20.85",
      "lastUpdate":"2020-04-29T15:26:20.85",
      "updateAvailable":false,
      "modFileSize":915274.0,
      "modDiskSize":929333.0,
      "popular":0,
      "downloads":80761,
      "installs":62181,
      "likes":119,
      "userLiked":false,
      "ratings":null,
      "currentRating":0.0,
      "userDownloaded":false,
      "userInstalled":false,
      "userFlagged":false,
      "userRating":null,
      "userReview":null,
      "positiveRatings":0,
      "totalRatings":0,
      "thumbnail":null,
      "fileUrl":null,
      "imageUrls":null
   },
   "modStatusId":2,
   "modStatus":"Published",
   "modStatusMessage":"",
   "modVisibility":null,
   "creatorId":null,
   "creatorName":null,
   "creatorAvatarUrl":null,
   "isOwner":null,
   "isLoggedOn":false,
   "allowDiscussion":false,
   "discourseUrl":null,
   "createDate":null,
   "lastUpdate":null,
   "updateAvailable":null,
   "modFileSize":null,
   "modDiskSize":null,
   "popular":0,
   "downloads":null,
   "installs":null,
   "likes":null,
   "userLiked":null,
   "ratings":null,
   "currentRating":0.0,
   "userDownloaded":null,
   "userInstalled":null,
   "userFlagged":null,
   "userRating":null,
   "userReview":null,
   "positiveRatings":0,
   "totalRatings":0,
   "thumbnail":null,
   "fileUrl":null,
   "imageUrls":[
      {
         "imageId":"e2f3e683-19ba-4f1b-b9c3-49aea7150139",
         "displayIndex":0,
         "imageName":"https://xforgeassets002.xboxlive.com/pf-title-aa0bae460e9fd6e4-5f5b4/e2f3e683-19ba-4f1b-b9c3-49aea7150139/modImage_0.jpg?width=1280&height=720",
         "imageThumbnail":"https://xforgeassets002.xboxlive.com/pf-title-aa0bae460e9fd6e4-5f5b4/e2f3e683-19ba-4f1b-b9c3-49aea7150139/modImage_0.jpg?width=400&height=225",
         "imageFileSize":null
      }
   ]
}

AoE4

{
    "searchParams": {
        "q": null,
        "creator": null,
        "filter": 0,
        "sort": "lastUpdate",
        "order": "DESC",
        "start": 1,
        "count": 200,
        "game": 4,
        "modid": 0
    },
    "modList": [
        {
            "modId": 112877,
            "gameTitleId": 4,
            "gameTitleName": null,
            "modName": "Mobius Tuning Pack 2",
            "description": "Updated for Malians and Ottomans. \r\n \r\n- Traders contribute 0.2 to population, reduced from 1. \r\n- Increases resource limits from 100,000 to 100,000,000.",
            "modDescription": "Updated for Malians and Ottomans. \r\n \r\n- Traders contribute 0.2 to population, reduced from 1. \r\n- Increases resource limits from 100,000 to 100,000,000.",
            "changeList": null,
            "verifiedVersion": null,
            "modTypeId": 6,
            "clientId": "",
            "modType": "Extension",
            "modTags": null,
            "modTagIds": [
                4
            ],
            "modTagNames": [
                "Tuning Pack"
            ],
            "metaData": null,
            "modStatusId": 2,
            "modStatus": "Published",
            "modStatusMessage": null,
            "modVisibility": "Public",
            "creatorId": 2270778,
            "creatorName": "Mobius6469",
            "creatorAvatarUrl": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KI4AAOijCgOA3.jozKovAH9wJVHMk5TchyPp7y7q0530QiLZPdTsSqNSrT34qiEmcl&format=png",
            "isOwner": false,
            "isLoggedOn": false,
            "allowDiscussion": false,
            "discourseUrl": null,
            "createDate": "2022-10-26T21:09:34.173",
            "lastUpdate": "2022-10-26T21:09:34.173",
            "updateAvailable": false,
            "modFileSize": 1635361.0,
            "modDiskSize": null,
            "popular": 3,
            "downloads": 3,
            "installs": null,
            "likes": 0,
            "userLiked": false,
            "ratings": {
                "leastFavorableReview": null,
                "mostFavorableReview": null,
                "rating": {
                    "average": 0.0,
                    "count1Star": null,
                    "count2Star": null,
                    "count3Star": null,
                    "count4Star": null,
                    "count5Star": null,
                    "totalCount": 0
                },
                "reviewsCount": 0
            },
            "currentRating": 0.0,
            "userDownloaded": false,
            "userInstalled": false,
            "userFlagged": false,
            "userRating": null,
            "userReview": null,
            "positiveRatings": 0,
            "totalRatings": 0,
            "thumbnail": "https://cdn.ageofempires.com/aoe-mods/4/112877/64ff210a.jpeg",
            "fileUrl": null,
            "imageUrls": null
        },
        {
            "modId": 97570,
            "gameTitleId": 4,
            "gameTitleName": null,
            "modName": "PheniX Rise and Curry",
            "description": "PheniX Rise and Curry \r\nGold and Stone rises again :) \r\nWolfs are more mad 400 PoP \r\nMore Wood Better Fields",
            "modDescription": "PheniX Rise and Curry \r\nGold and Stone rises again :) \r\nWolfs are more mad 400 PoP \r\nMore Wood Better Fields",
            "changeList": null,
            "verifiedVersion": null,
            "modTypeId": 6,
            "clientId": "",
            "modType": "Extension",
            "modTags": null,
            "modTagIds": [
                4
            ],
            "modTagNames": [
                "Tuning Pack"
            ],
            "metaData": null,
            "modStatusId": 2,
            "modStatus": "Published",
            "modStatusMessage": null,
            "modVisibility": "Public",
            "creatorId": 9910532,
            "creatorName": "Freddy",
            "creatorAvatarUrl": "https://avatars.akamai.steamstatic.com/7eb86a98d34da786dc134603a248c7169791a9fa.jpg",
            "isOwner": false,
            "isLoggedOn": false,
            "allowDiscussion": false,
            "discourseUrl": null,
            "createDate": "2022-08-27T20:31:05.057",
            "lastUpdate": "2022-10-26T21:00:25.847",
            "updateAvailable": false,
            "modFileSize": 3360497.0,
            "modDiskSize": null,
            "popular": 14,
            "downloads": 18,
            "installs": null,
            "likes": 0,
            "userLiked": false,
            "ratings": {
                "leastFavorableReview": null,
                "mostFavorableReview": null,
                "rating": {
                    "average": 3.0,
                    "count1Star": null,
                    "count2Star": null,
                    "count3Star": null,
                    "count4Star": null,
                    "count5Star": null,
                    "totalCount": 1
                },
                "reviewsCount": 0
            },
            "currentRating": 3.0,
            "userDownloaded": false,
            "userInstalled": false,
            "userFlagged": false,
            "userRating": null,
            "userReview": null,
            "positiveRatings": 0,
            "totalRatings": 1,
            "thumbnail": "https://cdn.ageofempires.com/aoe-mods/4/97570/e1ba0efd.jpeg",
            "fileUrl": null,
            "imageUrls": null
        },
        {
        ...
        }
    ],
    "totalCount": 3109,
    "isLoggedOn": false
}

/mods/Publish

modsPublish

/mods/PublishFile

modsPublishFile

/mods/Rate

modsRate

/mods/Related

modsRelated

modsFlag

modsReportMod

/mods/Reviews

modsReviews

/mods/Subscribe

modsInstall modsSubscribe

/mods/Tags

modsTags

/mods/Types

modsTypes

/mods/UnSubscribe

modsUninstall

/Poll/

AUTHENTICATION

Check response

Request

GET /Poll/ HTTP/1.1
Host: api-dev.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 CAEQ/ZzT4AsYBSBXKoABmNR5nKEvxOZpR3jXLBTeWT+SQfBPWnM786lvM3NsQNLaQvIGgur5Ub9nLriapKcxJpikWBq+svb22WVYeAhISj0ZwgVodLjNFeZmIA3aQFWywiPaKC53vC3bXYTg7nSIVc92Fet34xPSkIqf7asqoFbbw4Y80arguEAnOn4AvUI=
Content-Type: application/json

Response

AoE2:DE

zero byte, in header?

HTTP/1.1 200 OK
Request-Context: appId=cid-v1:36ba477e-8ada-4c7e-8b2e-0c728ad786b4
X-Powered-By: ASP.NET
X-Cache: CONFIG_NOCACHE
X-Azure-Ref: 0bxxTYwAAAACCWkQah/R7TLdHU8TX8AaJQlJVMzBFREdFMDcwOAA5MWIxZmEyNy1mMDZhLTRiZDctOWFiZC1jODMyZTdkOTAzMmQ=
Date: Fri, 21 Oct 2022 22:25:50 GMT
Content-Length: 0

/Poll/list

AUTHENTICATION

Check response

Request

GET /Poll/list HTTP/1.1
Host: api-dev.ageofempires.com
Accept-Encoding: identity
Accept: application/json
Authorization: Steam1.0 CAEQ/ZzT4AsYBSBXKoABmNR5nKEvxOZpR3jXLBTeWT+SQfBPWnM786lvM3NsQNLaQvIGgur5Ub9nLriapKcxJpikWBq+svb22WVYeAhISj0ZwgVodLjNFeZmIA3aQFWywiPaKC53vC3bXYTg7nSIVc92Fet34xPSkIqf7asqoFbbw4Y80arguEAnOn4AvUI=
Content-Type: application/json

Response

AoE2:DE

Zero byte, only header?

HTTP/1.1 200 OK
Content-Length: 2
Content-Type: application/json; charset=utf-8
Request-Context: appId=cid-v1:36ba477e-8ada-4c7e-8b2e-0c728ad786b4
X-Powered-By: ASP.NET
X-Cache: CONFIG_NOCACHE
X-Azure-Ref: 0bhxTYwAAAAB50a7E0ku8S7gNSk8WxUA8QlJVMzBFREdFMDcwOAA5MWIxZmEyNy1mMDZhLTRiZDctOWFiZC1jODMyZTdkOTAzMmQ=
Date: Fri, 21 Oct 2022 22:25:50 GMT

Web API

Web-related endpoints for ageofempires.com.

Endpoints

/webapi/CountryList

Example request

Request

GET /webapi/CountryList HTTP/2
Host: api.ageofempires.com
User-Agent: <UA>
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
Accept-Language: en-GB,en;q=0.5
Accept-Encoding: gzip, deflate, br
DNT: 1
Connection: keep-alive
Cookie: MSCC=cid=l8flb3okwccch8klb744k8e2-c1=2-c2=2-c3=2
Upgrade-Insecure-Requests: 1
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: cross-site
Pragma: no-cache
Cache-Control: no-cache
TE: trailers

Response

{
  "Afghanistan": "AF",
  "Åland Islands": "AX",
  "Albania": "AL",
  "Algeria": "DZ",
  "American Samoa": "AS",
  "Andorra": "AD",
  "Angola": "AO",
  "Anguilla": "AI",
  "Antarctica": "AQ",
  "Antigua and Barbuda": "AG",
  "Argentina": "AR",
  "Armenia": "AM",
  "Aruba": "AW",
  "Australia": "AU",
  "Austria": "AT",
  "Azerbaijan": "AZ",
  "Bahamas": "BS",
  "Bahrain": "BH",
  "Bangladesh": "BD",
  "Barbados": "BB",
  "Belarus": "BY",
  "Belgium": "BE",
  "Belize": "BZ",
  "Benin": "BJ",
  "Bermuda": "BM",
  "Bhutan": "BT",
  "Bolivia": "BO",
  "Bonaire": "BQ",
  "Bosnia and Herzegovina": "BA",
  "Botswana": "BW",
  "Bouvet Island": "BV",
  "Brazil": "BR",
  "British Indian Ocean Territory": "IO",
  "British Virgin Islands": "VG",
  "Brunei": "BN",
  "Bulgaria": "BG",
  "Burkina Faso": "BF",
  "Burundi": "BI",
  "Cabo Verde": "CV",
  "Cambodia": "KH",
  "Cameroon": "CM",
  "Canada": "CA",
  "Cayman Islands": "KY",
  "Central African Republic": "CF",
  "Chad": "TD",
  "Chile": "CL",
  "China": "CN",
  "Christmas Island": "CX",
  "Cocos (Keeling) Islands": "CC",
  "Colombia": "CO",
  "Comoros": "KM",
  "Congo": "CG",
  "Congo (DRC)": "CD",
  "Cook Islands": "CK",
  "Costa Rica": "CR",
  "Côte d’Ivoire": "CI",
  "Croatia": "HR",
  "Cuba": "CU",
  "Curaçao": "CW",
  "Cyprus": "CY",
  "Czechia": "CZ",
  "Denmark": "DK",
  "Djibouti": "DJ",
  "Dominica": "DM",
  "Dominican Republic": "DO",
  "Ecuador": "EC",
  "Egypt": "EG",
  "El Salvador": "SV",
  "Equatorial Guinea": "GQ",
  "Eritrea": "ER",
  "Estonia": "EE",
  "Eswatini": "SZ",
  "Ethiopia": "ET",
  "Falkland Islands": "FK",
  "Faroe Islands": "FO",
  "Fiji": "FJ",
  "Finland": "FI",
  "France": "FR",
  "French Guiana": "GF",
  "French Polynesia": "PF",
  "French Southern Territories": "TF",
  "Gabon": "GA",
  "Gambia": "GM",
  "Georgia": "GE",
  "Germany": "DE",
  "Ghana": "GH",
  "Gibraltar": "GI",
  "Greece": "GR",
  "Greenland": "GL",
  "Grenada": "GD",
  "Guadeloupe": "GP",
  "Guam": "GU",
  "Guatemala": "GT",
  "Guernsey": "GG",
  "Guinea": "GN",
  "Guinea-Bissau": "GW",
  "Guyana": "GY",
  "Haiti": "HT",
  "Heard Island and McDonald Islands": "HM",
  "Honduras": "HN",
  "Hong Kong SAR": "HK",
  "Hungary": "HU",
  "Iceland": "IS",
  "India": "IN",
  "Indonesia": "ID",
  "Iran": "IR",
  "Iraq": "IQ",
  "Ireland": "IE",
  "Isle of Man": "IM",
  "Israel": "IL",
  "Italy": "IT",
  "Jamaica": "JM",
  "Jan Mayen": "XJ",
  "Japan": "JP",
  "Jersey": "JE",
  "Jordan": "JO",
  "Kazakhstan": "KZ",
  "Kenya": "KE",
  "Kiribati": "KI",
  "Korea": "KR",
  "Kosovo": "XK",
  "Kuwait": "KW",
  "Kyrgyzstan": "KG",
  "Laos": "LA",
  "Latvia": "LV",
  "Lebanon": "LB",
  "Lesotho": "LS",
  "Liberia": "LR",
  "Libya": "LY",
  "Liechtenstein": "LI",
  "Lithuania": "LT",
  "Luxembourg": "LU",
  "Macao SAR": "MO",
  "Madagascar": "MG",
  "Malawi": "MW",
  "Malaysia": "MY",
  "Maldives": "MV",
  "Mali": "ML",
  "Malta": "MT",
  "Marshall Islands": "MH",
  "Martinique": "MQ",
  "Mauritania": "MR",
  "Mauritius": "MU",
  "Mayotte": "YT",
  "Mexico": "MX",
  "Micronesia": "FM",
  "Moldova": "MD",
  "Monaco": "MC",
  "Mongolia": "MN",
  "Montenegro": "ME",
  "Montserrat": "MS",
  "Morocco": "MA",
  "Mozambique": "MZ",
  "Myanmar": "MM",
  "Namibia": "NA",
  "Nauru": "NR",
  "Nepal": "NP",
  "Netherlands": "NL",
  "New Caledonia": "NC",
  "New Zealand": "NZ",
  "Nicaragua": "NI",
  "Niger": "NE",
  "Nigeria": "NG",
  "Niue": "NU",
  "Norfolk Island": "NF",
  "North Korea": "KP",
  "North Macedonia": "MK",
  "Northern Mariana Islands": "MP",
  "Norway": "NO",
  "Oman": "OM",
  "Pakistan": "PK",
  "Palau": "PW",
  "Palestinian Authority": "PS",
  "Panama": "PA",
  "Papua New Guinea": "PG",
  "Paraguay": "PY",
  "Peru": "PE",
  "Philippines": "PH",
  "Pitcairn Islands": "PN",
  "Poland": "PL",
  "Portugal": "PT",
  "Puerto Rico": "PR",
  "Qatar": "QA",
  "Réunion": "RE",
  "Romania": "RO",
  "Russia": "RU",
  "Rwanda": "RW",
  "Saba": "XS",
  "Saint Barthélemy": "BL",
  "Saint Kitts and Nevis": "KN",
  "Saint Lucia": "LC",
  "Saint Martin": "MF",
  "Saint Pierre and Miquelon": "PM",
  "Saint Vincent and the Grenadines": "VC",
  "Samoa": "WS",
  "San Marino": "SM",
  "São Tomé and Príncipe": "ST",
  "Saudi Arabia": "SA",
  "Senegal": "SN",
  "Serbia": "RS",
  "Seychelles": "SC",
  "Sierra Leone": "SL",
  "Singapore": "SG",
  "Sint Eustatius": "XE",
  "Sint Maarten": "SX",
  "Slovakia": "SK",
  "Slovenia": "SI",
  "Solomon Islands": "SB",
  "Somalia": "SO",
  "South Africa": "ZA",
  "South Georgia and South Sandwich Islands": "GS",
  "South Sudan": "SS",
  "Spain": "ES",
  "Sri Lanka": "LK",
  "St Helena, Ascension, Tristan da Cunha": "SH",
  "Sudan": "SD",
  "Suriname": "SR",
  "Svalbard": "SJ",
  "Sweden": "SE",
  "Switzerland": "CH",
  "Syria": "SY",
  "Taiwan": "TW",
  "Tajikistan": "TJ",
  "Tanzania": "TZ",
  "Thailand": "TH",
  "Timor-Leste": "TL",
  "Togo": "TG",
  "Tokelau": "TK",
  "Tonga": "TO",
  "Trinidad and Tobago": "TT",
  "Tunisia": "TN",
  "Turkey": "TR",
  "Turkmenistan": "TM",
  "Turks and Caicos Islands": "TC",
  "Tuvalu": "TV",
  "U.S. Outlying Islands": "UM",
  "U.S. Virgin Islands": "VI",
  "Uganda": "UG",
  "Ukraine": "UA",
  "United Arab Emirates": "AE",
  "United Kingdom": "GB",
  "United States": "US",
  "Uruguay": "UY",
  "Uzbekistan": "UZ",
  "Vanuatu": "VU",
  "Vatican City": "VA",
  "Venezuela": "VE",
  "Vietnam": "VN",
  "Wallis and Futuna": "WF",
  "Yemen": "YE",
  "Zambia": "ZM",
  "Zimbabwe": "ZW"
}

/webapi/games

Example request

Request

GET /webapi/Games HTTP/2
Host: api.ageofempires.com
User-Agent: <UA>
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
Accept-Language: en-GB,en;q=0.5
Accept-Encoding: gzip, deflate, br
DNT: 1
Connection: keep-alive
Cookie: MSCC=cid=l8flb3okwccch8klb744k8e2-c1=2-c2=2-c3=2
Upgrade-Insecure-Requests: 1
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: cross-site
Pragma: no-cache
Cache-Control: no-cache
TE: trailers

Response

[
   {
      "gameTitleId":1,
      "gameTitleName":"Age of Empires DE",
      "gameVersion":"1.1.1"
   },
   {
      "gameTitleId":2,
      "gameTitleName":"Age of Empires II DE",
      "gameVersion":"1"
   },
   {
      "gameTitleId":3,
      "gameTitleName":"Age of Empires III DE",
      "gameVersion":"1"
   },
   {
      "gameTitleId":4,
      "gameTitleName":"Age of Empires IV",
      "gameVersion":"1"
   },
   {
      "gameTitleId":5,
      "gameTitleName":"Age of Mythology",
      "gameVersion":"1"
   }
]

/webapi/Languages (Missing parameters)

Parameters

Example request

Request

GET /webapi/Languages?gameId=age1 HTTP/2
Host: api.ageofempires.com
User-Agent: <UA>
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
Accept-Language: en-GB,en;q=0.5
Accept-Encoding: gzip, deflate, br
DNT: 1
Connection: keep-alive
Cookie: MSCC=cid=l8flb3okwccch8klb744k8e2-c1=2-c2=2-c3=2
Upgrade-Insecure-Requests: 1
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: cross-site
Pragma: no-cache
Cache-Control: no-cache
TE: trailers

Response

[
  {
    "language": "English US",
    "utf8Language": "English"
  },
  {
    "language": "Spanish MX",
    "utf8Language": "Español Mexicano"
  },
  {
    "language": "Spanish ES",
    "utf8Language": "Español"
  },
  {
    "language": "Portuguese BR",
    "utf8Language": "Português Brasil"
  },
  {
    "language": "French",
    "utf8Language": "Français"
  },
  {
    "language": "German",
    "utf8Language": "Deutsch"
  },
  {
    "language": "Italian",
    "utf8Language": "Italiano"
  },
  {
    "language": "Hindi",
    "utf8Language": "हिंदी"
  },
  {
    "language": "Japanese",
    "utf8Language": "日本語"
  },
  {
    "language": "Korean",
    "utf8Language": "한국어"
  },
  {
    "language": "Russian",
    "utf8Language": "Русский"
  },
  {
    "language": "Vietnamese ",
    "utf8Language": "Tiếng Việt"
  },
  {
    "language": "Chinese Simplified",
    "utf8Language": "简体中文"
  },
  {
    "language": "Chinese Traditional",
    "utf8Language": "繁體中文"
  }
]

/webapi/twitter

Example request

Request

GET /webapi/Twitter HTTP/2
Host: api.ageofempires.com
User-Agent: <UA>
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
Accept-Language: en-GB,en;q=0.5
Accept-Encoding: gzip, deflate, br
DNT: 1
Connection: keep-alive
Cookie: MSCC=cid=l8flb3okwccch8klb744k8e2-c1=2-c2=2-c3=2
Upgrade-Insecure-Requests: 1
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: cross-site
Pragma: no-cache
Cache-Control: no-cache
TE: trailers

Response

{
  "lastUpdated": "2022-10-22T09:16:18.0866449-07:00",
  "isCached": true,
  "posts": [
    {
      "imageUrl": "https://cdn.ageofempires.com/aoe/ogthumb.jpg",
      "postDateTime": "2022-10-22T16:06:48",
      "postContent": "RT @redbullgaming: WOLOLOOOOOOOOOO! there's no telling who you'll find going for checkmate ™<br /><br />join in the action on https://t.co/XwRvWUbTMZ…",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583852381170962434",
      "author": "redbullgaming",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1530996570002432003/5wXO_8SA_400x400.jpg",
      "authorUrl": "https://twitter.com/redbullgaming",
      "postDate": "10/22/2022"
    },
    {
      "imageUrl": "https://pbs.twimg.com/media/Ffq6dqpX0AIYdhQ.jpg",
      "postDateTime": "2022-10-22T13:27:21",
      "postContent": "RT @RLYKNGHT: Not such a bad view from the office today https://t.co/NiwsqtcxCQ",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583812252523560961",
      "author": "RLYKNGHT",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1576477743532765189/lYvnXk5L_400x400.jpg",
      "authorUrl": "https://twitter.com/RLYKNGHT",
      "postDate": "10/22/2022"
    },
    {
      "imageUrl": "https://cdn.ageofempires.com/aoe/ogthumb.jpg",
      "postDateTime": "2022-10-22T13:27:18",
      "postContent": "RT @RLYKNGHT: I was in charge of setting up all the Age of Empires 2 civs on the drafting map, and I tried to get them positioned as histor…",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583812242000093185",
      "author": "RLYKNGHT",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1576477743532765189/lYvnXk5L_400x400.jpg",
      "authorUrl": "https://twitter.com/RLYKNGHT",
      "postDate": "10/22/2022"
    },
    {
      "imageUrl": "https://pbs.twimg.com/media/FfrPy4HWAAAlr1K.jpg",
      "postDateTime": "2022-10-22T13:05:16",
      "postContent": "Wololo! Community friends found outside the castle @handimgurkengl1 #Aoe25",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583806697076035584",
      "author": "AgeOfEmpires",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1575124399509872641/p0ah9Djs_400x400.jpg",
      "authorUrl": "https://twitter.com/AgeOfEmpires",
      "postDate": "10/22/2022"
    },
    {
      "imageUrl": "https://cdn.ageofempires.com/aoe/ogthumb.jpg",
      "postDateTime": "2022-10-22T12:23:48",
      "postContent": "🤔",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583796261357961216",
      "author": "AgeOfEmpires",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1575124399509872641/p0ah9Djs_400x400.jpg",
      "authorUrl": "https://twitter.com/AgeOfEmpires",
      "postDate": "10/22/2022"
    },
    {
      "imageUrl": "https://cdn.ageofempires.com/aoe/ogthumb.jpg",
      "postDateTime": "2022-10-22T11:48:21",
      "postContent": "It's day 2 of the #AoEII Group Stage for the Red Bull Wololo: Legacy tournament! Who are you rooting for?<br /><br />Tune in on https://t.co/RXVciu4sBX",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583787337242140672",
      "author": "AgeOfEmpires",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1575124399509872641/p0ah9Djs_400x400.jpg",
      "authorUrl": "https://twitter.com/AgeOfEmpires",
      "postDate": "10/22/2022"
    },
    {
      "imageUrl": "https://cdn.ageofempires.com/aoe/ogthumb.jpg",
      "postDateTime": "2022-10-21T17:50:02",
      "postContent": "RT @redbullgaming: let’s pull back the curtain on the magic and go behind the scenes at red bull wololo legacy<br /><br />live now on:<br />https://t.co/X…",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583515972459065344",
      "author": "redbullgaming",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1530996570002432003/5wXO_8SA_400x400.jpg",
      "authorUrl": "https://twitter.com/redbullgaming",
      "postDate": "10/21/2022"
    },
    {
      "imageUrl": "https://pbs.twimg.com/media/FfnFcBQXgAAnrpt.jpg",
      "postDateTime": "2022-10-21T17:41:32",
      "postContent": "It's almost time for the #AoE25 broadcast! <br /><br />But what time is your time? 🤔 It's time for you to find out! <br /><br />Or time to use this handy graphic to ensure you don't miss the timing... ⏰ <br /><br />📜 https://t.co/kiut67h9oi",
      "postUrl": "https://twitter.com/AgeOfEmpires/status/1583513834005794816",
      "author": "AgeOfEmpires",
      "authorAvatarUrl": "https://pbs.twimg.com/profile_images/1575124399509872641/p0ah9Djs_400x400.jpg",
      "authorUrl": "https://twitter.com/AgeOfEmpires",
      "postDate": "10/21/2022"
    }
  ]
}

Age of Empires II: Definitive Edition

Game-specific documentation for AoE2:DE.

Contents

Steam Launch Options

Launch optionDescriptionWorks in non-debug builds
AIDEBUGGINGEnable AI system debuggingyes
AISCRIPTDEBUGGINGEnable AI script system debuggingyes
AISCRIPTPROFILINGEnable AI system profiling
ALLCPAll computer players?
ALLCP1
ALLGRASS
ALLOW_SOFTWARE_RENDERERAllow the use of a software render driver to run the game
ALLOWCPGAIACAPTURE
AUTOGROUPUNITS
AUTOSAVEAuto save time interval (seconds)
CREDIT
CUBEOUTLINE
DEBUG_BANPopulate provider with debug ban data.
DEBUG_SIMPLE_UI_OPTIONSAllow toggling debug simple ui elements.
DEBUGMAINTENANCEDebug maintenance Messages
DEBUGPATHGRAPHICAL
DEBUGSPEEDSEnable 4.0/8.0 speeds.yes
DEVELOPER
DISABLE_ADAPTER_CHECKDisable a check for black-listed graphics adapters (NOT drivers)
DISABLE_COMMAND_VERIFICATION
DISABLE_CONTROLLER_DISCONNECTED_DIALOGTurn off the controller disconnected dialog
DISABLE_GAMEPAD_RUMBLETurn off gamepad rumble regardless of other settings
DISABLE_RL_UPDATEUse original update mode (command timing not driven by relay).
DISABLEMAINTENANCEDisable maintenance Messages
DOLOGSTATUS
DONOTUSELOWLEVELPATHING
DONOTUSEMIDLEVELPATHING
DONOTUSEOLDPATHING
DRAWGROUPF
DRAWGROUPP
DRAWLOGDraw logging file
EDGEOUTLINE
EDITORBoot directly into the scenario editor.yes
ENABLE_ATLAS_LOGGINGEnable check for atlas page issue
ENABLE_ATLAS_PAGE_CHECK
ENABLE_BC7_ASSETSEnable support for BC7 assets
ENABLE_GAMEPADEnable gamepad support in Phoenix
ENABLE_GLOBAL_CONTROL
ENABLE_LOAD_DIAGNOSTIC_TELEMETRYEnable telemetry of sprite loading process.
ENABLE_SMX_ASSETSEnable support for SMX assets
ENABLE_TEARINGEnable advanced tearing support.
EXITAutomatically exit after specified game time
FAKE_BENCHMARK_SCOREOverride your benchmark score
FASTVIEW
FEATURE_LEVELForce a specific feature level (one of 11_0, 10_1, 10_0, 9_3, 9_2, 9_1)
FIXEDDELTASECONDS
FIXEDUPDATE
FIXELEVATION
FOLLOWCP
FORCE_2X_ASSETSForce enable high resolution sprites
FORCE_LAN_WINDOWForce the battle server console to appear
FORCE_LANGUAGEForce default language used when resetting defaults
FORCE_LIVE_SERVERSConnect to the retail servers rather than the test servers.
FORCE_ORIGINAL_MENUForce original main menu
FORCE_SCENARIO_VERSION
FORCE_SIMPLE_MENUForce light main menu
FORCE_SINGLE_UPDATE_PER_RENDERForces only one update per render in multiplayer games
FORCE_TEST_SERVERSConnect to the test servers rather than the retail servers.
FORCEWOLF
GAMStartup save game file
GROUNDOUTLINE
HIDE_CAMPAIGN_PANEL_UI
IGNORE_MP_VERSIONAllow builds with this command arg to match with each other regardless of build version or configuration
IGNORECRCFAILUREIgnore failures due to non-matching expected file crc’s
INTEL_DRIVER_PATCHDisables optimisation for UpdateSlice to prevent memory leak on certain intel drivers
LAUNCH_GAME_VARIANTAOE1 or AOE2. User privilege is still required. e.g. LAUNCH_GAME_VARIANT=AOE1, can be combined with other paramsyes
LIMITLimit population (25 - 200)
LOBBY
LOGACTION
LOGAI
LOGCOMM
LOGCOMMANDS
LOGCONVERT
LOGDEBUGSpecific unit to log debug,
LOGDIR
LOGESNET
LOGEXPLORE
LOGFPSLog Frames per Second
LOGGROUPSpecific group to log debug.
LOGLOCAL
LOGMOVE
LOGMOVECONSTANT
LOGNETCustom path for logging to network.
LOGOBJECTTIME
LOGOUTPUT
LOGPATH
LOGPLAYERPlayer ID to log
LOGSPRITEMEMORYLog loading and unloading of sprites.
LOGSTARTTime to begin logging
LOGSTATS
LOGSYSTEMSThe systems that will be loggedyes
LOGUAI
LOGUPDATECHANGES
LOGUPDATETIME
LOGWAYPOINT
LOGWAYPOINT2
MORE_MAP_SIZESDisplay additional map sizes when setting up a game or scenario.yes
NETWORK_DEBUGDebug network activity
NO_FPS_THROTTLEDisable frame rate throttle.
NO_PATCHINGDisable all recommended workarounds for driver issues
NOAICHEAT
NOAUTOFORMATION
NOCHATCHEATCODES
NOCOMMSPEED
NOFOOTPRINTSDisable snow footprints
NOLOGSTATUSOutput debug lgs for player index to logs
NOMODSDisables all modsyes
NOPATHCAP
NOPATHLIMIT
NORECORDINGDisable recording games.
NOTERRAINSOUND
NOVSYNCDisable Vertical Synchronization
NOWOLF
OLDLOSused for savegame compatibility with old LOS shape
ONEBUTTONForce One Button Mouse
OVERRIDE_MP_VERSIONOverride the app version sent up to MP services.
PERFORMANCE_EVENT_JOURNAL_FILEPATHFile path (relative) to the performance event journal. Ex: \Logs\Logs.csv. <TIMESTAMP> will be replaced with a timestamp at the start of each capture if it’s in the path.
PURGE_MOD_STATUS_FILEPurge the mod status file
QUICKBUILD
RANDOMGAMEStarting random game seed
RANDOMMAPStarting random map seed.
RECORDGAMEForce record game on
REFERENCE_RENDERERUse a reference driver (developer only).
RELOADGAMEDATAReload game data files between games.
REPORT_LIVE_OBJECTSCall ReportLiveObjects() on shutdown (debug build only).
ROLLOVER
RUN_REGRESSION_TESTSRun regression tests on game data from previous versions of the game.
RUNLOG
RUNNING_AUTOTESTIgnore any code that may halt the game since we are running an automation test that may not handle what a human can.
SAFEDRAWLOG
SCRIPTScript to run
SCRIPTREPORTScript report outputfile
SERVER_TIME_OFFSETOffsets server time by the given number of seconds.
SESSIONIDSession ID with which client script should join!
SHOWAIGROUPS
SHOWGROUPIDS
SHOWOBS1
SHOWOBS2
SHOWOBS3
SHOWUNITIDS
SIMULATE_MAINTENANCESimulate server maintenance
SKIP_EG_INSTALL_CHECKSkip the EG install check
SKIP_EG_MEM_CHECKSkip the EG memory check
SKIPINTROSkip the intro moviesyes
SKIPSYNCSAVE
SLOWVIEW
SPEED1Enable 4.0 speed.
SPEED2Enable 8.0 speed.
SQUAREOUTLINE
STEPMODE
SUBSCRIBE_TO_MODSForce subscription to comma-separated mod IDs on login.
SYNCSTOP
TEST_RL_ACCOUNTLog into Relic using the given test account name (instead of PC name).
TESTUISCREENRun game with testscreen
TWOBUTTONForce two button mouse
UIPUse InfluencePlacement
UNCAPPED_SIMULATION_SPEEDTest simulation speed uncapped
UNLOCK_ALL_CIVSIgnore civ rotation feature entirely.
USELOWLEVELPATHING
USEMIDLEVELPATHING
USEOLDPATHING
VERBOSELOGGINGLog at verbose depthyes
WINDOWAlways launch app in windowed mode
WRITE_MAP_INFOWrite out a text file containing map info
WW_ENABLE_BETA_SAVESEnable all saves on loading screen

Steam Web API

  1. External Documentation
  2. Community Data Documentation

Game news

Sample Request (AoE2:DE)

Player numbers

Sample Request (AoE2:DE)

gRPC API

Documentation for the gRPC API exposed by Age of Empires II: Definitive Edition (AoE2DE) during replay playback, as reverse-engineered by the LibreMatch project.

Overview

AoE2DE exposes a gRPC endpoint when watching replays. This allows external tools to receive game state updates in real-time without running the game simulation themselves. The API streams delta patches representing frame-by-frame state changes, along with game events and player commands. It is used by CaptureAge for spectating.

The protocol buffer definitions and format specification documented here are the result of reverse engineering the *.caderec format as part of the LibreMatch delta-play-replay project.

Protocol Buffers

The API is defined using three proto files:

  • CadeRemote Service (cade_api.proto) - The main gRPC service with RPCs for game info, pause control, fog of war, perspective switching, and frame streaming
  • Atlas Data (atlas_data.proto) - Sprite and asset information for rendering
  • File Metadata (file_metadata.proto) - Metadata for graphics files

Delta Play Replay (DLPR)

delta-play-replay is the LibreMatch project for creating a specification and tooling around a new open replay format (*.dlpr) for AoE2DE, based on the reverse-engineered *.caderec format:

CadeRemote Service

The CadeRemote gRPC service is exposed by AoE2DE during replay playback. It provides control over the replay viewer and streams game state deltas. This definition was reverse-engineered from the *.caderec format as part of the LibreMatch delta-play-replay project.

RPCs

RPCRequestResponse
InfoInfoRequestInfoResponse
PausePauseRequestPauseResponse
SetFogOfWarSetFogOfWarRequestSetFogOfWarResponse
SetPerspectiveSetPerspectiveRequestSetPerspectiveResponse
FramesFramesRequeststream FrameSequence

Info

Returns game version, API version, base directory, and enabled mod directories.

Pause

Controls the game pause state during replay playback.

SetFogOfWar

Toggles fog of war visibility.

SetPerspective

Changes the player perspective (which player’s point of view is shown).

Frames

The primary streaming RPC. Sends a continuous stream of FrameSequence messages containing delta patches, events, commands, and metrics. The request allows configuring update resolution per category and filtering particles/commands.

Proto File

syntax = "proto3";

package cade_api.rpc;

option cc_enable_arenas = true;
option optimize_for = SPEED;

service CadeRemote {
  rpc Info(InfoRequest) returns (InfoResponse);
  rpc Pause(PauseRequest) returns (PauseResponse);
  rpc SetFogOfWar(SetFogOfWarRequest)
    returns (SetFogOfWarResponse);
  rpc SetPerspective(SetPerspectiveRequest)
    returns (SetPerspectiveResponse);
  rpc Frames(FramesRequest) returns (stream FrameSequence);
}

Messages

InfoRequest / InfoResponse

message InfoRequest {}

message InfoResponse {
  uint32 gameVersion = 1;
  uint32 apiVersion = 2;
  string baseDirectory = 3;
  repeated string enabledModDirectories = 4;
}

PauseRequest / PauseResponse

message PauseRequest { bool paused = 1; }

message PauseResponse {
  bool success = 1;
  bool changed = 2;
}

SetFogOfWarRequest / SetFogOfWarResponse

message SetFogOfWarRequest { bool fogOfWar = 1; }

message SetFogOfWarResponse {
  bool success = 1;
  bool changed = 2;
}

SetPerspectiveRequest / SetPerspectiveResponse

message SetPerspectiveRequest { int32 playerId = 1; }

message SetPerspectiveResponse {
  bool success = 1;
  int32 playerId = 2;
}

FramesRequest

Configures the frame stream. Resolution entries control how often different categories of data are sent.

message FramesRequest {
  repeated ResolutionEntry desiredResolutions = 1;
  message ResolutionEntry {
    Category key = 1;
    enum Category {
      TIME_STEP = 0;
      LOW_PRIORITY = 1;
      SLEEPING_UNIT = 2;
      PARTICLES = 3;
      GAME_OPTIONS = 4;
      PARTICLES_SIMULATION_OUTPUT = 5;
    }

    int32 gameTimeResolution = 2;
  }

  bool disableCommands = 2;
  bool disableParticles = 3;
  repeated string particleDefinitionWhitelist = 4;
  bool disableParticleCulling = 5;
}

FrameSequence / Frame

Each FrameSequence contains one or more frames. Each Frame carries a delta patch (binary state diff), an optional reverse patch for backward navigation, game events, commands, and performance metrics.

message FrameSequence {
  repeated Frame frame = 1;
  uint32 sendingWorldTime = 2;
  uint32 numberOfFramesQueued = 3;
}

message Frame {
  uint32 time = 1;
  bytes patch = 2;
  repeated Event event = 3;
  bytes reversePatch = 4;
  uint32 timeStepsSkipped = 7;

  repeated MetricEntry metrics = 5;
  message MetricEntry {
    Region key = 1;
    enum Region {
      ALL = 0;
      ENTITIES = 1;
      SLEEPING_ENTITIES = 2;
      MAP_TILES = 3;
      UNIFIED_VISIBLE_MAP = 4;
      PARTICLES = 5;
      MASTER_ENTITIES = 6;
      RESEARCH_STATES = 7;
      VICTORY_POINTS = 8;
      APPLY_PATCH = 9;
      GAME_OPTIONS = 10;
    }

    uint32 timeMeasured = 2;
    uint32 count = 3;
  }

  repeated Command command = 6;
}

Event

Game events are delivered as a oneof union:

message Event {
  oneof event {
    EntityKilled entityKilled = 1;
    MarketTransaction marketTransaction = 2;
    Tribute tribute = 3;
    PlayerChat playerChat = 4;
    CombatNotificationSound combatNotificationSound = 5;
  }

  message EntityKilled {
    int32 id = 1;
    int32 killerId = 2;
  }

  message MarketTransaction {
    uint32 playerId = 1;
    uint32 attributeType = 2;
    float attributeBefore = 3;
    float goldBefore = 4;
    float attributeExchanged = 5;
    float goldRate = 6;
    float goldExchanged = 7;
  }

  message Tribute {
    uint32 senderId = 1;
    uint32 receiverId = 2;
    uint32 attributeType = 3;
    float senderValueBefore = 4;
    float senderValueChange = 5;
    float receiverValueBefore = 6;
    float receiverValueChange = 7;
  }

  message PlayerChat {
    int32 playerId = 1;
    int32 commPlayerId = 2;

    Channel channel = 3;
    enum Channel {
      Default = 0;
      AllChat = 1;
      TeamChat = 2;
      EnemyChat = 3;
    }

    string text = 4;
    int32 taunt = 5;
  }

  message CombatNotificationSound {
    int32 receiverId = 1;

    Type type = 2;
    enum Type {
      Normal = 0;
      Wolf = 1;
      Town = 2;
    }

    int32 attackedObjectId = 3;
  }
}

Command

Game commands represent player actions. Delivered as a oneof union with 50+ command types covering unit control, building, production, economy, diplomacy, and more.

message Command {
  oneof command {
    Interact interact = 1000;
    Stop stop = 1001;
    Work work = 1002;
    Move move = 1003;
    Create create = 1004;
    AddAttribute addAttribute = 1005;
    AiOrder aiOrder = 1010;
    Resign resign = 1011;
    AddWaypoint addWaypoint = 112;
    Pause pause = 1013;
    GroupWaypoint groupWaypoint = 1016;
    GroupAiOrder groupAiOrder = 1017;
    UnitAiState unitAiState = 1018;
    Guard guard = 1019;
    Follow follow = 1020;
    Patrol patrol = 1021;
    Scout scout = 1022;
    FormFormation formFormation = 1023;
    MultiplayerSave multiplayerSave = 1027;
    GroupMultiWaypoints groupMultiWaypoints = 1031;
    Chapter chapter = 1032;
    AttackMove attackMove = 1033;
    AttackMoveTarget attackMoveTarget = 1034;
    Retreat retreat = 1035;
    UnitTypeAiState unitTypeAiState = 1037;
    AutoScout autoScout = 1038;
    StopAll stopAll = 1039;
    MoreTechs moreTechs = 1040;
    TransformObject transformObject = 1041;
    Make make = 1100;
    Research research = 1101;
    Build build = 1102;
    Game game = 1103;
    Explore explore = 1104;
    BuildWall buildWall = 1105;
    CancelBuild cancelBuild = 1106;
    AttackGround attackGround = 1107;
    GiveAttribute2 giveAttribute2 = 1108;
    TradeAttribute tradeAttribute = 1109;
    Repair repair = 1110;
    Unload unload = 1111;
    Gate gate = 1114;
    Flare flare = 1115;
    UnitOrder unitOrder = 1117;
    Diplomacy diplomacy = 1118;
    Queue queue = 1119;
    SetGatherPoint setGatherPoint = 1120;
    SellCommodity sellCommodity = 1122;
    BuyCommodity buyCommodity = 1123;
    UnitTransform unitTransform = 1125;
    DropRelic dropRelic = 1126;
    TownBell townBell = 1127;
    GoBackToWork goBackToWork = 1128;
    MultiQueue multiQueue = 1129;
    SetGatherState setGatherState = 1130;
    DeleteObjects deleteObjects = 1131;
    ResetBuildings resetBuildings = 1132;
    MultiGate multiGate = 1133;
    GoBackToWork2 goBackToWork2 = 1134;
    ChangePlayerName changePlayerName = 1135;
    UnknownCommand unknownCommand = 2000;
  }

Shared Point Types

  message XyzUintPoint {
    uint32 x = 1;
    uint32 y = 2;
    uint32 z = 3;
  }

  message XyzFloatPoint {
    float x = 1;
    float y = 2;
    float z = 3;
  }

  message XyUintPoint {
    uint32 x = 1;
    uint32 y = 2;
  }

  message XyFloatPoint {
    float x = 1;
    float y = 2;
  }

Unit Action Commands

  message Interact {
    uint32 commPlayerId = 1;
    int32 targetId = 2;
    XyFloatPoint location = 4;
    bool extend = 5;
    bool instant = 6;
    bool humanOrder = 7;
    bool controlHeld = 8;
    repeated int32 unitIds = 9;
  }

  message Stop { repeated int32 unitIds = 2; }

  message Work {
    uint32 commPlayerId = 1;
    int32 targetId = 2;
    XyFloatPoint location = 4;
    bool extend = 5;
    bool instant = 6;
    bool humanOrder = 7;
    bool controlHeld = 8;
    repeated int32 unitIds = 9;
  }

  message Move {
    uint32 commPlayerId = 1;
    int32 targetId = 2;
    XyFloatPoint location = 4;
    bool extend = 5;
    bool instant = 6;
    bool humanOrder = 7;
    bool controlHeld = 8;
    repeated int32 unitIds = 9;
  }

  message Create {
    int32 objCategory = 1;
    uint32 playerId = 2;
    XyzFloatPoint location = 3;
  }

  message AddAttribute {
    uint32 playerId = 1;
    uint32 attrId = 2;
    float attrAmount = 3;
  }

AI Commands

  message AiOrder {
    uint32 playerId = 2;
    uint32 issuer = 3;
    int32 recipient = 4;
    int32 orderType = 5;
    uint32 orderPriority = 6;
    uint32 targetOwner = 8;
    XyzFloatPoint location = 9;
    float range = 10;
    bool immediate = 11;
    bool inFront = 12;
    repeated int32 unitIds = 13;
  }

  message GroupAiOrder {
    uint32 playerId = 1;
    uint32 issuer = 2;
    int32 orderType = 4;
    uint32 orderPriority = 5;
    int32 targetId = 6;
    uint32 targetOwner = 7;
    XyzFloatPoint location = 8;
    float range = 9;
    bool immediate = 10;
    bool inFront = 11;
    repeated int32 unitIds = 12;
  }

  message UnitAiState {
    uint32 state = 2;
    repeated int32 unitIds = 3;
  }

  message UnitTypeAiState {
    uint32 state = 2;
    int32 unitType = 3;
    int32 playerId = 4;
  }

Movement & Formation Commands

  message Resign {
    uint32 playerId = 1;
    uint32 commPlayerId = 2;
    bool dropped = 3;
  }

  message AddWaypoint {
    uint32 playerId = 1;
    int32 recipient = 2;
    repeated XyzUintPoint waypoints = 4;
  }

  message Pause { repeated int32 unitIds = 2; }

  message GroupWaypoint {
    uint32 commPlayerId = 1;
    XyUintPoint location = 3;
    repeated int32 unitIds = 4;
  }

  message Guard {
    int32 targetId = 2;
    repeated int32 unitIds = 3;
  }

  message Follow {
    int32 targetId = 2;
    repeated int32 unitIds = 3;
  }

  message Patrol {
    bool reset = 3;
    repeated XyFloatPoint wayPoints = 4;
    repeated int32 unitIds = 5;
  }

  message Scout {
    XyFloatPoint location = 2;
    repeated int32 unitIds = 3;
  }

  message FormFormation {
    uint32 playerId = 2;
    int32 formationType = 3;
    repeated int32 unitIds = 4;
  }

  message GroupMultiWaypoints {
    repeated int32 unitIds = 3;
    repeated XyUintPoint waypoints = 4;
  }

  message AttackMove {
    bool reset = 3;
    repeated XyFloatPoint waypoints = 4;
    repeated int32 unitIds = 5;
  }

  message AttackMoveTarget {
    int32 targetId = 2;
    repeated XyFloatPoint waypoints = 4;
    repeated int32 unitIds = 5;
  }

  message Retreat {
    uint32 commPlayerId = 1;
    int32 targetId = 2;
    XyFloatPoint location = 4;
    bool extend = 5;
    bool instant = 6;
    bool humanOrder = 7;
    bool controlHeld = 8;
    repeated int32 unitIds = 9;
  }

  message AutoScout { repeated int32 unitIds = 2; }

  message StopAll { uint32 playerID = 1; }

Building & Production Commands

  message Make {
    int32 unitId = 1;
    uint32 unitPlayerId = 2;
    int32 objId = 3;
    int32 uniqueId = 4;
  }

  message Research {
    int32 unitId = 1;
    uint32 unitPlayerId = 2;
    int32 techId = 4;
    int32 uniqueId = 5;
    bool extend = 6;
    repeated int32 buildingIds = 7;
  }

  message Build {
    uint32 unitPlayerId = 2;
    XyFloatPoint location = 3;
    int32 objId = 4;
    int32 uniqueId = 5;
    uint32 frame = 6;
    bool extend = 7;
    bool instant = 8;
    int32 spriteOverrideId = 9;
    repeated int32 unitIds = 10;
  }

  message BuildWall {
    uint32 unitPlayerId = 2;
    XyUintPoint location1 = 3;
    XyUintPoint location2 = 4;
    int32 objId = 5;
    int32 uniqueId = 6;
    bool extend = 7;
    bool instant = 8;
    repeated int32 unitIds = 9;
  }

  message CancelBuild {
    int32 unitId = 1;
    int32 unitPlayerId = 2;
  }

  message Queue {
    int32 buildingId = 1;
    int32 trainId = 2;
    int32 trainCount = 3;
  }

  message MultiQueue {
    uint32 playerId = 1;
    int32 selectedBuildingId = 2;
    int32 trainId = 4;
    int32 trainCount = 5;
    repeated int32 buildingIds = 6;
  }

Economy & Diplomacy Commands

  message GiveAttribute2 {
    uint32 playerId = 1;
    uint32 toPlayerId = 2;
    uint32 attrId = 3;
    float attrAmount = 4;
    float attrCost = 5;
  }

  message TradeAttribute {
    int32 attribute = 2;
    repeated int32 unitIds = 3;
  }

  message SellCommodity {
    uint32 playerId = 1;
    uint32 attrId = 2;
    uint32 lotCount = 3;
    int32 unitId = 4;
  }

  message BuyCommodity {
    uint32 playerId = 1;
    uint32 attrId = 2;
    uint32 lotCount = 3;
    int32 unitId = 4;
  }

  message Diplomacy {
    uint32 playerId1 = 1;
    uint32 playerId2 = 2;
    uint32 sequence = 3;
    uint32 status = 4;
    uint32 declare = 5;
    uint32 diplomacy = 6;
    uint32 intelligence = 7;
    uint32 trade = 8;
    uint32 demand = 9;
    int32 gold = 10;
    string message = 11;
  }

Misc Commands

  message Game {
    uint32 gameCommandId = 1;
    int32 var1 = 2;
    int32 var2 = 3;
    float var3 = 4;
    uint32 var4 = 5;
  }

  message Explore {
    uint32 unitPlayerId = 2;
    XyFloatPoint location = 3;
    repeated int32 unitIds = 4;
  }

  message Repair {
    int32 targetId = 2;
    bool extend = 3;
    bool instant = 4;
    repeated int32 unitIds = 5;
  }

  message Unload {
    XyFloatPoint location = 2;
    uint32 unloadFlag = 3;
    int32 unloadUnitType = 4;
    repeated int32 unitIds = 5;
  }

  message AttackGround {
    XyFloatPoint location = 2;
    bool extend = 3;
    bool instant = 4;
    bool humanOrder = 5;
    repeated int32 unitIds = 6;
  }

  message Gate { int32 unitId = 1; }

  message Flare {
    int32 unitId = 1;
    bytes flareFlags = 2;
    XyFloatPoint location = 3;
    uint32 playerId = 4;
    uint32 commPlayerId = 5;
  }

  message UnitOrder {
    int32 targetId = 2;
    uint32 action = 3;
    uint32 param = 4;
    XyFloatPoint location = 5;
    int32 unique_id = 6;
    bool extend = 7;
    bool instant = 8;
    bool humanOrder = 9;
    repeated int32 unitIds = 10;
  }

  message SetGatherPoint {
    int32 targetId = 2;
    int32 targetMasterId = 3;
    XyFloatPoint location = 4;
    repeated int32 unitIds = 5;
  }

  message SetGatherState {
    uint32 state = 2;
    repeated int32 unitIds = 3;
  }

  message UnitTransform {
    uint32 unitPlayerId = 2;
    int32 objId = 3;
    int32 uniqueId = 4;
    repeated int32 unitIds = 5;
  }

  message TransformObject {
    uint32 playerID = 1;
    int32 masterId = 2;
    int32 objId = 3;
  }

  message MoreTechs { uint32 playerID = 1; }

  message DropRelic { int32 unitId = 1; }

  message TownBell {
    int32 unitId = 1;
    uint32 activateFlag = 2;
  }

  message GoBackToWork { int32 unitId = 1; }

  message GoBackToWork2 { repeated int32 unitIds = 2; }

  message DeleteObjects {
    uint32 playerId = 2;
    repeated int32 unitIds = 3;
  }

  message ResetBuildings {
    uint32 state = 2;
    repeated int32 unitIds = 3;
  }

  message MultiGate {
    uint32 state = 1;
    repeated int32 unitIds = 3;
  }

  message MultiplayerSave {
    bool exitAfterSave = 1;
    uint32 commPlayer = 2;
  }

  message Chapter { uint32 commPlayerId = 1; }

  message ChangePlayerName {
    uint32 playerId = 1;
    string newName = 2;
  }

  message UnknownCommand { uint32 commandId = 1; }
}

Atlas Data

Sprite and asset information used for rendering game graphics.

Proto File

syntax = "proto3";

package renderer.atlas.collector.ser;

option optimize_for = SPEED;

message Options {
  uint32 exploredMask = 1;
  uint32 dopplegangerMask = 2;
  bool enhancedGraphics = 3;
  repeated string enabledMods = 4;
}

message ExtraAssetFrameInfo { bool used = 1; }

message AssetInfo {
  int32 id = 1;
  string fileName = 2;
  bool used = 3;
  bool broken = 4;
  repeated bytes headers = 5;
  SpriteInfo spriteInfo = 6;
  repeated ExtraAssetFrameInfo extraFrameInfo = 7;
}

message SpriteInfo {
  string name = 1;
  int32 facetNum = 2;
  int32 frameNum = 3;
}

message FrameInfo {
  uint32 frame = 1;
  uint32 time = 2;
  repeated Frames remove = 3;
  repeated Frames add = 4;
  repeated Frames once = 5;
}

message Frames {
  int32 assetId = 1;
  repeated int32 frames = 2;
}

message AtlasData {
  Options options = 1;
  repeated AssetInfo assets = 2;
  repeated FrameInfo frames = 3;
}

Messages

Options

Rendering options including explored/doppelganger masks, enhanced graphics toggle, and enabled mod list.

AssetInfo

Describes a sprite asset: its ID, file name, usage status, and per-frame information via SpriteInfo and ExtraAssetFrameInfo.

SpriteInfo

Sprite metadata with name, number of facets (rotation angles), and number of frames (animation steps).

FrameInfo

Per-frame changes to the atlas. Each frame can add, remove, or play-once specific sprite frames.

AtlasData

Top-level container combining rendering options, all asset definitions, and frame-by-frame atlas changes.

File Metadata

Metadata for SMX graphics files used by AoE2DE.

Proto File

syntax = "proto3";

package renderer.smx.metadata;

option optimize_for = SPEED;

message FileMetadata {
  string name = 1;
  int64 lastModified = 2;
  int32 version = 3;
  uint32 fileSize = 4;
  repeated uint32 frameOffsets = 5;
  bytes sldFrames = 6;
  uint32 globalAlpha = 7;
}

message DirectoryMetadata {
  string path = 1;
  repeated FileMetadata files = 2;
}

message MetadataStore {
  repeated DirectoryMetadata directories = 1;
  int32 version = 2;
}

Messages

FileMetadata

Metadata for a single graphics file: name, modification timestamp, version, file size, frame offsets for random access, SLD frame data, and global alpha value.

DirectoryMetadata

Groups file metadata entries under a directory path.

MetadataStore

Top-level container holding all directory metadata with a store-wide version number.

Delta Patch Format

AoE2DE streams game state changes through the gRPC Frames RPC as binary delta patches. This document specifies the patch format as reverse-engineered by the delta-play-replay project.

The state model definition used to interpret patches can be found in model.rs.

Overview

The format is stack-based and requires a pre-definition of the state object. Instructions either modify the patcher state (navigating the object tree) or the state object itself.

Each instruction starts with 1 byte (the action ID), followed by variable-length arguments. Argument sizes can only be resolved by maintaining the current patcher state, since field types determine how values are read.

Actions

Object methods:
 1 - Pop
 2 - Assign Field
 3 - Push Field
 4 - Push, Create and Assign Field
 5 - Reset Field

Map methods (sometimes used for lists):
 6 - Assign Key
 7 - Push Key
 8 - Push, Create and Assign Key
 9 - Reset Key

List methods (sometimes used for maps):
10 - Insert
11 - Push, Create and Insert
12 - Remove
13 - Swap
14 - Resize

1. Pop

Pop an object from the stack (go to the parent object).

Takes no arguments.

2. Assign Field

Set a field to a value.

NameTypeDescription
Fieldu8Which field to assign to
ValueDynamicValue to assign

3. Push Field

Push the object in the given field onto the stack (make it the current context).

NameTypeDescription
Fieldu8Field to push

4. Push, Create and Assign Field

Create a new object for the given field, assign it, and push it onto the stack.

NameTypeDescription
Fieldu8Field to assign the new model to
Model Typeu8Which model to create

5. Reset Field

Remove the object on the given field.

NameTypeDescription
Fieldu8Field to reset

6. Assign Key

Set a key in a map (or list) to a value.

NameTypeDescription
Fieldu8Field with map or list
Keyi32Key to assign to
ValueDynamicValue to assign

7. Push Key

Push the object at the given key onto the stack.

NameTypeDescription
Fieldu8Field with map or list
Keyi32Key with the object to push

8. Push, Create and Assign Key

Create a new object, assign it to the given key, and push it.

NameTypeDescription
Fieldu8Field with map or list
Model Typeu8Which model to create
Keyi32Key to assign to, and push

9. Reset Key

Remove the object at the given key.

NameTypeDescription
Fieldu8Field with map or list
Keyi32Key to the value to reset

10. Insert

Insert a value at the given index in a list.

NameTypeDescription
Fieldu8Field with list
Indexi32Index to insert to
ValueDynamicValue to insert

11. Push, Create and Insert

Create a new object, insert it at the given index, and push it.

NameTypeDescription
Fieldu8Field with list
Model Typeu8Which model to create
Indexi32Index to insert to, and push

12. Remove

Remove an object at the given index.

NameTypeDescription
Fieldu8Field with list or map
Indexi32Index to remove

13. Swap

Swap two entries in a list or map.

NameTypeDescription
Fieldu8Field with list or map
Index Ai32Index of value to replace B with
Index Bi32Index of value to replace A with

14. Resize

Resize a list to the given length. In some cases, child objects are expected to be created automatically.

NameTypeDescription
Fieldu8Field with list
New Lengthi32New length of list

DLPR Requirements

Requirements analysis for the delta-snapshot-based replay format (*.dlpr) developed by the delta-play-replay project.

Background

The existing CaptureAge (CA) replay system utilizes an internal format (*.carz) to play recorded games. This format supports backward compatibility with older recorded games, allowing them to be replayed without running the original AoE2DE simulation. However, the *.carz format is primarily designed for internal debugging purposes and in-memory use, and not for long-term storage.

The goal is to create a new, standardized replay format that accommodates the requirements for efficient storage, improved replay functionalities, and broader community support.

Current System Overview

Existing CaptureAge Replay Format

  • Format: *.carz (CaptureAge Replay Format)
  • Purpose: Internal debugging, live spectating
  • Limitations: Not optimized for long-term storage, primarily intended for in-memory use
  • Features:
    • Backward compatibility with older games
    • Instant navigation to any point in the replay
    • No need for an AoE2DE instance to replay games

Functional Requirements

  1. Backward Compatibility - Support existing replays recorded in previous versions of AoE2DE. Ensure compatibility with the internal *.carz format used by CaptureAge.

  2. Delta-Snapshot System - Implement a delta-snapshot-based approach to efficiently capture game state changes. Generate patches representing state differences at fixed intervals (snapshots) and on-demand (events).

  3. Conversion and Compatibility Tools - Develop a converter to transform existing recorded games into the new replay format. Update gRPC definitions to accommodate new replay functionalities.

  4. Long-Term Storage - Optimize the format for persistent storage, ensuring that replays are compact and easily shareable. Include metadata for versioning and compatibility checks.

  5. Improved Navigation and Spectator Features - Enable quick navigation to any point in the replay, both forwards and backwards. Integrate spectator tools to allow live game viewing without running the AoE2DE simulation.

  6. Support for Live Games - Explore server-side conversion for live games to facilitate real-time spectating without AoE2DE instances. Stream delta-patch files to spectators to reduce local processing requirements.

  7. Open Source and Community Support - Make the new replay format open source and freely available to the community.

  8. Security and Integrity - Implement encryption and integrity checks to protect replay files from tampering.

  9. Game Independence - Evaluate how far the existing delta-snapshot-based replay formats are game-independent. Consider making the format support other games in the Age of Empires franchise (AoE4, AoM:R, AoE3DE).

Non-Functional Requirements

  1. Performance - Minimize overhead when generating and storing replays. Ensure smooth and responsive playback.

  2. Scalability - Handle a wide range of game scenarios, from short matches to extensive tournaments. Support concurrent access by multiple tools.

  3. Extensibility - Allow for future extensions without breaking existing compatibility.

Comparison to Existing Format

Feature*.carz*.dlpr
Backward CompatibilityPartialFull
Long-Term StorageLimitedOptimized
Instant NavigationSupportedSupported
Performance?Optimized

Future Considerations

  • Community Involvement: Engage with the AoE2DE community to gather feedback and suggestions for the new replay format.
  • Integration with Other Platforms: Explore opportunities to integrate with platforms like Twitch or YouTube for enhanced content creation and sharing.
  • Further Optimizations: Continue researching ways to reduce the size of delta-snapshot files while maintaining rich functionality.