Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]: API V1 DSS electionEnd is changing instead of returning a correct time #130

Open
rong-xiaoli opened this issue Feb 6, 2025 · 9 comments
Labels
bug Something isn't working

Comments

@rong-xiaoli
Copy link

rong-xiaoli commented Feb 6, 2025

Link to faulty endpoint

/api/v1/space-stations

The name of your client/application

ArisuBot-Production, ArisuBot-ApiFox, ArisuBot-Beta (many requests missing this part because I forgot to set, my bad)

Request information

Request part:

        List<SpaceStation2> dssList = null;
        try {
            dssList = DSSHelper.getDSSListHD2API(Language.ZHS);
        }

DSSHelper.getDSSListHD2API(Language language):

    public static List<SpaceStation2> getDSSListHD2API(Language language) throws HttpException, IOException {
        String apiUrl = Constants.HD2API.API_DOMAIN + Constants.HD2API.API_V1_ROOT + Constants.HD2API.V1_DSS_LIST_API;
        HttpRequest req = HttpUtil.createGet(apiUrl);
        Map<String, String> headerMap = new HashMap<>(language.toHeaderMap());
        headerMap.putAll(HelldiversHelper.CONFIG.getXSuperClientMap());
        headerMap.putAll(HelldiversHelper.CONFIG.getXSuperContactMap());
        req.addHeaders(headerMap);
        try (HttpResponse response = req.execute()) {
            if (!response.isOk()) {
                throw new IOException("HD2API request failed: " + response.getStatus());
            }
            String jsonStr = response.body();
            if (jsonStr == null || jsonStr.isEmpty()) {
                throw new InvalidObjectException("API response empty. ");
            }
            return JSONUtil.toList(jsonStr, SpaceStation2.class);
        }
    }

This HttpRequest is a tool class from HuTool.
Constants:

public class Constants {
    public static class HD2API {
        public static final String API_DOMAIN = "https://api.helldivers2.dev";
        public static final String API_RAW_ROOT = "/raw/api";
        public static final String API_V1_ROOT = "/api/v1";
        public static final String RAW_SE_NEWS_API = "/NewsFeed/801";
        public static final String V1_WAR_STATE_API = "/war";
        public static final String V1_DSS_LIST_API = "/space-stations";
        public static final String V1_DSS_QUERY_API_PREFIX = "/space/stations/";
    }
  /* some more code here*/
}

So, the final API requesting is: https://api.helldivers2.dev/api/v1/space-stations.

Steps to reproduce

Send two request with a little gap.

What is expected?

It should be a fixed date instead of this changing date.

What is actually happening?

Request 1: 
date: Thu, 06 Feb 2025 17:58:53 GMT

[
    {
        "id32": 749875195,
        "planet": {
            "index": 200,
            "name": "玛塔",
            "sector": "Andromeda",
            "biome": {
                "name": "Highlands",
                "description": "Rocky outcroppings punctuate fields of tall grass in a planet dominated by misty highland terrain."
            },
            "hazards": [
                {
                    "name": "Rainstorms",
                    "description": "Torrential rainstorms reduce visibility."
                }
            ],
            "hash": 2071495162,
            "position": {
                "x": -0.4909794,
                "y": 0.4139719
            },
            "waypoints": [
                159,
                199,
                201
            ],
            "maxHealth": 1000000,
            "health": 999335,
            "disabled": false,
            "initialOwner": "Humans",
            "currentOwner": "Automaton",
            "regenPerSecond": 4.1666665,
            "event": null,
            "statistics": {
                "missionsWon": 3997523,
                "missionsLost": 441767,
                "missionTime": 15187810425,
                "terminidKills": 43,
                "automatonKills": 1311005258,
                "illuminateKills": 0,
                "bulletsFired": 6344057213,
                "bulletsHit": 6739893614,
                "timePlayed": 15187810425,
                "deaths": 35274834,
                "revives": 0,
                "friendlies": 3741795,
                "missionSuccessRate": 90,
                "accuracy": 100,
                "playerCount": 17489
            },
            "attacking": []
        },
        "electionEnd": "2025-02-06T18:27:43.7410097Z",
        "flags": 1
    }
]

Request 2:
date: Thu, 06 Feb 2025 17:59:46 GMT

[
    {
        "id32": 749875195,
        "planet": {
            "index": 200,
            "name": "玛塔",
            "sector": "Andromeda",
            "biome": {
                "name": "Highlands",
                "description": "Rocky outcroppings punctuate fields of tall grass in a planet dominated by misty highland terrain."
            },
            "hazards": [
                {
                    "name": "Rainstorms",
                    "description": "Torrential rainstorms reduce visibility."
                }
            ],
            "hash": 2071495162,
            "position": {
                "x": -0.4909794,
                "y": 0.4139719
            },
            "waypoints": [
                159,
                199,
                201
            ],
            "maxHealth": 1000000,
            "health": 999334,
            "disabled": false,
            "initialOwner": "Humans",
            "currentOwner": "Automaton",
            "regenPerSecond": 4.1666665,
            "event": null,
            "statistics": {
                "missionsWon": 3997689,
                "missionsLost": 441771,
                "missionTime": 15188338716,
                "terminidKills": 43,
                "automatonKills": 1311056464,
                "illuminateKills": 0,
                "bulletsFired": 6344346355,
                "bulletsHit": 6740228320,
                "timePlayed": 15188338716,
                "deaths": 35275944,
                "revives": 0,
                "friendlies": 3741902,
                "missionSuccessRate": 90,
                "accuracy": 100,
                "playerCount": 17495
            },
            "attacking": []
        },
        "electionEnd": "2025-02-06T18:27:50.3782101Z",
        "flags": 1
    }
]

System Info

Source: 

        for (SpaceStation2 station :
                dssList) {
            if (station.getPlanet() == null) {
                mcb.add("ID " + station.getId32() + "目前异常(行星名为空)\n\n");
            } else {
                DSSInfo info = dhDssList.get(station.getId32());
                mcb.add("ID" + station.getId32() + "空间站目前位于" + station.getPlanet().getName() + "\n");
                mcb.add("目前星球持有方为:" + station.getPlanet().getCurrentOwner() + "\n");
                if (info == null) mcb.add("DiveHarder API 返回值无效,无法检查战备\n");
                else mcb.add(getTacticalActionsSummary(info));
                mcb.add("FTL目标投票截止日期为" + station.getElectionEnd() + "\n\n");
            }
        }

In this case, SpaceStation2 is defined like this:

package top.rongxiaoli.plugins.helldivers.backend.datatype.hd2;

import lombok.Data;

import java.time.OffsetDateTime;

/**
 * Represents a Super Earth Democracy Space Station.
 */
@Data
public class SpaceStation2 {
    /**
     * The unique identifier of the station.
     */
    public long id32;
    /**
     * The planet it's currently orbiting.
     */
    public Planet planet;
    /**
     * When the election for the next planet will end.
     */
    public OffsetDateTime electionEnd;
    /**
     * A set of flags, purpose currently unknown.
     */
    public int flags;
}

Generated by ApiFox

The whole project is a QQ bot, using mirai framework. See here

Any additional comments?

In the example request, at least the date should be around 2025-02-06T18:26:24.000Z. I had got even crazier data such as 2025-02-06T14:47:17.408Z. I'm confused.

@rong-xiaoli rong-xiaoli added the bug Something isn't working label Feb 6, 2025
@dealloc
Copy link
Member

dealloc commented Feb 7, 2025

I'm sorry, I don't think I quite follow what the issue is?

@rong-xiaoli
Copy link
Author

rong-xiaoli commented Feb 9, 2025

I'm sorry, I don't think I quite follow what the issue is?

Sorry I didn't describe it clearly, my bad. It's about the parameter electionEnd, as it means the end date time of the FTL jump destination election. When I send requests, it changes from time to time. I means I suppose the should be a stable value, as the election deadline should be fixed.

For example, I got a "electionEnd": "2025-02-06T18:27:43.7410097Z" in request 1, and "electionEnd": "2025-02-06T18:27:50.3782101Z" in request 2.Request time is only a minute off, but the result differs a lot.

@dealloc
Copy link
Member

dealloc commented Feb 9, 2025

what are the 'raw' values that are being sent when it fluctuates? the calculation to compute that field is fixed, meaning that the values we receive are most likely fluctuating

@rong-xiaoli
Copy link
Author

these two json arrays are the raw body of /api/v1/space-stations I gave out in the issue description, each array is a single request. The two requests are separated by a // comment:
(I think the raw GET request is nothing special, the only important parameter I sent is Accept-Language=zh-cn. )

the two arrays I gave out in the issue description
//Request 1: 
//date: Thu, 06 Feb 2025 17:58:53 GMT

[
    {
        "id32": 749875195,
        "planet": {
            "index": 200,
            "name": "玛塔",
            "sector": "Andromeda",
            "biome": {
                "name": "Highlands",
                "description": "Rocky outcroppings punctuate fields of tall grass in a planet dominated by misty highland terrain."
            },
            "hazards": [
                {
                    "name": "Rainstorms",
                    "description": "Torrential rainstorms reduce visibility."
                }
            ],
            "hash": 2071495162,
            "position": {
                "x": -0.4909794,
                "y": 0.4139719
            },
            "waypoints": [
                159,
                199,
                201
            ],
            "maxHealth": 1000000,
            "health": 999335,
            "disabled": false,
            "initialOwner": "Humans",
            "currentOwner": "Automaton",
            "regenPerSecond": 4.1666665,
            "event": null,
            "statistics": {
                "missionsWon": 3997523,
                "missionsLost": 441767,
                "missionTime": 15187810425,
                "terminidKills": 43,
                "automatonKills": 1311005258,
                "illuminateKills": 0,
                "bulletsFired": 6344057213,
                "bulletsHit": 6739893614,
                "timePlayed": 15187810425,
                "deaths": 35274834,
                "revives": 0,
                "friendlies": 3741795,
                "missionSuccessRate": 90,
                "accuracy": 100,
                "playerCount": 17489
            },
            "attacking": []
        },
        "electionEnd": "2025-02-06T18:27:43.7410097Z",
        "flags": 1
    }
]

//Request 2:
//date: Thu, 06 Feb 2025 17:59:46 GMT

[
    {
        "id32": 749875195,
        "planet": {
            "index": 200,
            "name": "玛塔",
            "sector": "Andromeda",
            "biome": {
                "name": "Highlands",
                "description": "Rocky outcroppings punctuate fields of tall grass in a planet dominated by misty highland terrain."
            },
            "hazards": [
                {
                    "name": "Rainstorms",
                    "description": "Torrential rainstorms reduce visibility."
                }
            ],
            "hash": 2071495162,
            "position": {
                "x": -0.4909794,
                "y": 0.4139719
            },
            "waypoints": [
                159,
                199,
                201
            ],
            "maxHealth": 1000000,
            "health": 999334,
            "disabled": false,
            "initialOwner": "Humans",
            "currentOwner": "Automaton",
            "regenPerSecond": 4.1666665,
            "event": null,
            "statistics": {
                "missionsWon": 3997689,
                "missionsLost": 441771,
                "missionTime": 15188338716,
                "terminidKills": 43,
                "automatonKills": 1311056464,
                "illuminateKills": 0,
                "bulletsFired": 6344346355,
                "bulletsHit": 6740228320,
                "timePlayed": 15188338716,
                "deaths": 35275944,
                "revives": 0,
                "friendlies": 3741902,
                "missionSuccessRate": 90,
                "accuracy": 100,
                "playerCount": 17495
            },
            "attacking": []
        },
        "electionEnd": "2025-02-06T18:27:50.3782101Z",
        "flags": 1
    }
]

@rong-xiaoli
Copy link
Author

rong-xiaoli commented Feb 10, 2025

I'll set up a little Java application soon which can make a bunch of requests towards /api/v1/space-stations and just give out the date. But I got few time recently.

@rong-xiaoli
Copy link
Author

Sorry, misoperation, issue not solved.
:(

@rong-xiaoli
Copy link
Author

rong-xiaoli commented Feb 10, 2025

Source code poc:

import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;

import java.io.IOException;
import java.io.InvalidObjectException;
import java.time.OffsetDateTime;
import java.util.HashMap;

public class Main {
    public static void main(String[] args) throws InterruptedException, IOException {
        int reqNumber = 30;
        HashMap<String, String> headerMap = new HashMap<>();
        String apiUrl = "https://api.helldivers2.dev/api/v1/space-stations";
        headerMap.put("X-Super-Client","ArisuBot-Beta");
        headerMap.put("X-Super-Contact","[email protected]");
        do {
            reqNumber -= 1;
            HttpRequest req = HttpUtil.createGet(apiUrl);
            req.addHeaders(headerMap);
            try (HttpResponse response = req.execute()) {
                OffsetDateTime dateTime = OffsetDateTime.now();
                if (!response.isOk()) {
                    throw new IOException("HD2API request failed: " + response.getStatus());
                }
                String jsonStr = response.body();
                if (jsonStr == null || jsonStr.isEmpty()) {
                    throw new InvalidObjectException("API response empty. ");
                }
                // System.out.println(response.body());
                String resultDate = (String) ((JSONObject) JSONUtil.parseArray(response.body()).get(0)).get("electionEnd");
                String resultID = String.valueOf((int) ((JSONObject) JSONUtil.parseArray(response.body()).get(0)).get("id32"));
                System.out.println(dateTime +": " + resultDate + " for " + resultID);

            }
            Thread.sleep(1000);
        } while (reqNumber >= 0);
    }
}

got result:

2025-02-10T15:35:08.992749700+08:00: 2025-02-10T10:41:01.6123084Z for 749875195
2025-02-10T15:35:11.171441500+08:00: 2025-02-10T10:41:01.6123084Z for 749875195
2025-02-10T15:35:13.174119400+08:00: 2025-02-10T10:41:01.6123084Z for 749875195
2025-02-10T15:35:15.298372700+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:17.297711700+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:19.451024400+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:21.447019100+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:23.429678700+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:25.559048700+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:27.566301400+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:29.709415800+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:31.854783800+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:33.839575500+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:35.981636300+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:37.975781700+08:00: 2025-02-10T10:40:54.6651163Z for 749875195
2025-02-10T15:35:39.980123300+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:41.974395600+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:44.102977700+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:46.085841400+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:48.092012400+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:50.226639400+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:52.367732800+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:54.359958500+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:56.491305700+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:35:58.630310100+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:36:00.760599700+08:00: 2025-02-10T10:40:57.6916521Z for 749875195
2025-02-10T15:36:02.754443500+08:00: 2025-02-10T10:41:00.7233082Z for 749875195
2025-02-10T15:36:04.737873300+08:00: 2025-02-10T10:41:00.7233082Z for 749875195
2025-02-10T15:36:06.875468600+08:00: 2025-02-10T10:41:00.7233082Z for 749875195
2025-02-10T15:36:08.860118900+08:00: 2025-02-10T10:41:00.7233082Z for 749875195
2025-02-10T15:36:11.017272300+08:00: 2025-02-10T10:41:00.7233082Z for 749875195

@rong-xiaoli rong-xiaoli reopened this Feb 10, 2025
@dealloc
Copy link
Member

dealloc commented Feb 10, 2025

Sorry, I should have been more specific; when I say 'raw' I mean the JSON payloads received from ArrowHead API's, which is where the dates are being calculated from.
You can find them under the /raw prefix

@rong-xiaoli
Copy link
Author

rong-xiaoli commented Feb 10, 2025

So, If I'm understanding correctly, I should give out the currentElectionEndWarTime in spaceStations? Let me edit the code a little bit.

Sample 1:

requested 2025-02-10T17:28:50.117620700+08:00
{
  "warId": 801,
  "time": 31456230,
  "impactMultiplier": 0.06004374,
  "storyBeatId32": 191627877,
  "planetStatus": [
    {
      "index": 0,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 226,
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "index": 1,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.05373042,
        "y": 0.10565466
      }
    },
    {
      "index": 2,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.04664221,
        "y": 0.16758725
      }
    },
    {
      "index": 3,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.12536779,
        "y": 0.11821219
      }
    },
    {
      "index": 4,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.10280278,
        "y": 0.05765711
      }
    },
    {
      "index": 5,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.15988354,
        "y": 0.043583166
      }
    },
    {
      "index": 6,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.13535836,
        "y": -0.03378948
      }
    },
    {
      "index": 7,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.36159223,
        "y": -0.52270126
      }
    },
    {
      "index": 8,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.09485684,
        "y": -0.08101245
      }
    },
    {
      "index": 9,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.15801243,
        "y": -0.09685686
      }
    },
    {
      "index": 10,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.06770126,
        "y": -0.1448935
      }
    },
    {
      "index": 11,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.001789452,
        "y": -0.18935835
      }
    },
    {
      "index": 12,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.001789474,
        "y": -0.12535837
      }
    },
    {
      "index": 13,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.06158319,
        "y": -0.16488354
      }
    },
    {
      "index": 14,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.099012464,
        "y": -0.11185683
      }
    },
    {
      "index": 15,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.17010404,
        "y": -0.08865711
      }
    },
    {
      "index": 16,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.27240774,
        "y": 0.20429876
      }
    },
    {
      "index": 17,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.14765465,
        "y": -0.030730395
      }
    },
    {
      "index": 18,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.15065464,
        "y": 0.015730456
      }
    },
    {
      "index": 19,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.1728935,
        "y": 0.06970126
      }
    },
    {
      "index": 20,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.12621213,
        "y": 0.11136782
      }
    },
    {
      "index": 21,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.07801243,
        "y": 0.10585686
      }
    },
    {
      "index": 22,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.039789412,
        "y": 0.14535835
      }
    },
    {
      "index": 23,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.030315775,
        "y": 0.2269306
      }
    },
    {
      "index": 24,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.09383544,
        "y": 0.25608748
      }
    },
    {
      "index": 25,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.17009519,
        "y": 0.1877717
      }
    },
    {
      "index": 26,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2117717,
        "y": 0.12409518
      }
    },
    {
      "index": 27,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2540875,
        "y": 0.05583542
      }
    },
    {
      "index": 28,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2939306,
        "y": -0.033684243
      }
    },
    {
      "index": 29,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.22952318,
        "y": -0.029197697
      }
    },
    {
      "index": 30,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.23037383,
        "y": -0.0976583
      }
    },
    {
      "index": 31,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2007717,
        "y": -0.1490952
      }
    },
    {
      "index": 32,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.15409517,
        "y": -0.210073
      }
    },
    {
      "index": 33,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.0977173,
        "y": -0.22407754
      }
    },
    {
      "index": 34,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 8.333333,
      "players": 2,
      "position": {
        "x": 0.5111386,
        "y": 0.3511805
      }
    },
    {
      "index": 35,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.023138678,
        "y": -0.24981944
      }
    },
    {
      "index": 36,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.09065833,
        "y": -0.2413738
      }
    },
    {
      "index": 37,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.1440952,
        "y": -0.2027717
      }
    },
    {
      "index": 38,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.19187985,
        "y": -0.14480585
      }
    },
    {
      "index": 39,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.24438877,
        "y": -0.10283538
      }
    },
    {
      "index": 40,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.2415232,
        "y": -0.033197638
      }
    },
    {
      "index": 41,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.25681943,
        "y": 0.030138722
      }
    },
    {
      "index": 42,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.2473738,
        "y": 0.09965837
      }
    },
    {
      "index": 43,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.1857717,
        "y": 0.13809519
      }
    },
    {
      "index": 44,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.16809516,
        "y": 0.19577172
      }
    },
    {
      "index": 45,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 3,
      "position": {
        "x": -0.13065825,
        "y": 0.30637383
      }
    },
    {
      "index": 46,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.061315693,
        "y": 0.2489306
      }
    },
    {
      "index": 47,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.037842084,
        "y": 0.32250285
      }
    },
    {
      "index": 48,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.1129696,
        "y": 0.3345827
      }
    },
    {
      "index": 49,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2219546,
        "y": 0.2772582
      }
    },
    {
      "index": 50,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.87390286,
        "y": 0.35359928
      }
    },
    {
      "index": 51,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.287884,
        "y": 0.1099696
      }
    },
    {
      "index": 52,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.338688,
        "y": 0.05460588
      }
    },
    {
      "index": 53,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.32650283,
        "y": -0.12384212
      }
    },
    {
      "index": 54,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 3,
      "position": {
        "x": 0.26874065,
        "y": -0.21253327
      }
    },
    {
      "index": 55,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.19353323,
        "y": -0.28004193
      }
    },
    {
      "index": 56,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.12696959,
        "y": -0.30758274
      }
    },
    {
      "index": 57,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 7,
      "position": {
        "x": 0.04284205,
        "y": -0.33550286
      }
    },
    {
      "index": 58,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.038842108,
        "y": -0.32750285
      }
    },
    {
      "index": 59,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.11379249,
        "y": -0.3215678
      }
    },
    {
      "index": 60,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.19953328,
        "y": -0.2830419
      }
    },
    {
      "index": 61,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.26690286,
        "y": -0.23559926
      }
    },
    {
      "index": 62,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 26,
      "position": {
        "x": -0.28988406,
        "y": -0.16096954
      }
    },
    {
      "index": 63,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.33550286,
        "y": -0.05084203
      }
    },
    {
      "index": 64,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 0,
      "players": 9,
      "position": {
        "x": 0.4848084,
        "y": 0.1852586
      }
    },
    {
      "index": 65,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.31756774,
        "y": 0.13179255
      }
    },
    {
      "index": 66,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 0,
      "position": {
        "x": -0.24490279,
        "y": 0.21259932
      }
    },
    {
      "index": 67,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 7,
      "position": {
        "x": -0.20995454,
        "y": 0.28325823
      }
    },
    {
      "index": 68,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1.3888888,
      "players": 0,
      "position": {
        "x": -0.05373336,
        "y": 0.3648641
      }
    },
    {
      "index": 69,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 0,
      "position": {
        "x": -0.060664836,
        "y": 0.44539174
      }
    },
    {
      "index": 70,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1.3888888,
      "players": 0,
      "position": {
        "x": -0.1716316,
        "y": 0.8050751
      }
    },
    {
      "index": 71,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.0441322,
        "y": 0.42626023
      }
    },
    {
      "index": 72,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": -0.52319145,
        "y": 0.14335436
      }
    },
    {
      "index": 73,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.1661038,
        "y": 0.40307793
      }
    },
    {
      "index": 74,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2559713,
        "y": 0.5260108
      }
    },
    {
      "index": 75,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 0,
      "position": {
        "x": 0.372748,
        "y": 0.5082812
      }
    },
    {
      "index": 76,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.26528117,
        "y": 0.347748
      }
    },
    {
      "index": 77,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 0.6944444,
      "players": 12,
      "position": {
        "x": 0.32492584,
        "y": 0.25839266
      }
    },
    {
      "index": 78,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 4,
      "position": {
        "x": 0.6113544,
        "y": 0.22880854
      }
    },
    {
      "index": 79,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 8,
      "position": {
        "x": 0.39437926,
        "y": 0.27310377
      }
    },
    {
      "index": 80,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 0,
      "position": {
        "x": 0.43926024,
        "y": 0.0731322
      }
    },
    {
      "index": 81,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.3660751,
        "y": -0.04763163
      }
    },
    {
      "index": 82,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.5340751,
        "y": -0.090368435
      }
    },
    {
      "index": 83,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.44555652,
        "y": -0.06207318
      }
    },
    {
      "index": 84,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.41835436,
        "y": -0.17080852
      }
    },
    {
      "index": 85,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.33707795,
        "y": 0.1548962
      }
    },
    {
      "index": 86,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 3,
      "position": {
        "x": 0.39501083,
        "y": -0.26197135
      }
    },
    {
      "index": 87,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.32492584,
        "y": -0.26339266
      }
    },
    {
      "index": 88,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.24639264,
        "y": -0.3159259
      }
    },
    {
      "index": 89,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": 0.29074797,
        "y": -0.35328123
      }
    },
    {
      "index": 90,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 6,
      "position": {
        "x": 0.18610376,
        "y": -0.381078
      }
    },
    {
      "index": 91,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.15380847,
        "y": -0.4373544
      }
    },
    {
      "index": 92,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.06113215,
        "y": -0.40526026
      }
    },
    {
      "index": 93,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.1470731,
        "y": -0.5095566
      }
    },
    {
      "index": 94,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": 0.00063157,
        "y": -0.4440751
      }
    },
    {
      "index": 95,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.07607324,
        "y": -0.44355652
      }
    },
    {
      "index": 96,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.13786763,
        "y": -0.40105802
      }
    },
    {
      "index": 97,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 7,
      "position": {
        "x": -0.21110377,
        "y": -0.42437923
      }
    },
    {
      "index": 98,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 4,
      "position": {
        "x": -0.25539273,
        "y": -0.3439258
      }
    },
    {
      "index": 99,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.31297135,
        "y": -0.39101082
      }
    },
    {
      "index": 100,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 0,
      "position": {
        "x": 0.9189892,
        "y": -0.1249713
      }
    },
    {
      "index": 101,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.3422812,
        "y": -0.302748
      }
    },
    {
      "index": 102,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 18,
      "position": {
        "x": -0.4123793,
        "y": -0.17510368
      }
    },
    {
      "index": 103,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": -0.353078,
        "y": -0.13310368
      }
    },
    {
      "index": 104,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.42307508,
        "y": -0.029368328
      }
    },
    {
      "index": 105,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.46455657,
        "y": -0.09407307
      }
    },
    {
      "index": 106,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.4232602,
        "y": 0.05013234
      }
    },
    {
      "index": 107,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6355565,
        "y": 0.0490733
      }
    },
    {
      "index": 108,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.349058,
        "y": 0.0568677
      }
    },
    {
      "index": 109,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.531078,
        "y": 0.05410378
      }
    },
    {
      "index": 110,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.48401085,
        "y": 0.21397132
      }
    },
    {
      "index": 111,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.40970957,
        "y": 0.15897132
      }
    },
    {
      "index": 112,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1.3888888,
      "players": 12,
      "position": {
        "x": -0.26997122,
        "y": 0.3760109
      }
    },
    {
      "index": 113,
      "owner": 3,
      "health": 999998,
      "regenPerSecond": 1.3888888,
      "players": 608,
      "position": {
        "x": -0.34874794,
        "y": 0.28628126
      }
    },
    {
      "index": 114,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 6.9444447,
      "players": 0,
      "position": {
        "x": -0.44310373,
        "y": 0.599078
      }
    },
    {
      "index": 115,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 6.9444447,
      "players": 157,
      "position": {
        "x": -0.27880847,
        "y": 0.58735436
      }
    },
    {
      "index": 116,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 4,
      "position": {
        "x": -0.16213205,
        "y": 0.4142603
      }
    },
    {
      "index": 117,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 403,
      "position": {
        "x": -0.122073,
        "y": 0.5435566
      }
    },
    {
      "index": 118,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.12954043,
        "y": 0.52342516
      }
    },
    {
      "index": 119,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.033894707,
        "y": 0.5456473
      }
    },
    {
      "index": 120,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.1969427,
        "y": 0.5865483
      }
    },
    {
      "index": 121,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.28023794,
        "y": 0.6415732
      }
    },
    {
      "index": 122,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 8.333333,
      "players": 1,
      "position": {
        "x": 0.46854144,
        "y": 0.5513042
      }
    },
    {
      "index": 123,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 1,
      "position": {
        "x": 0.3994094,
        "y": 0.6009798
      }
    },
    {
      "index": 124,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 1077,
      "position": {
        "x": 0.3259798,
        "y": 0.4174094
      }
    },
    {
      "index": 125,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 3,
      "position": {
        "x": 0.46994886,
        "y": 0.27418607
      }
    },
    {
      "index": 126,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 6.9444447,
      "players": 3,
      "position": {
        "x": 0.5348745,
        "y": 0.11823793
      }
    },
    {
      "index": 127,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 6.9444447,
      "players": 0,
      "position": {
        "x": 0.4448446,
        "y": 0.1618837
      }
    },
    {
      "index": 128,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 0,
      "position": {
        "x": 0.6416474,
        "y": -0.034105327
      }
    },
    {
      "index": 129,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 0,
      "position": {
        "x": 0.6244252,
        "y": 0.10954041
      }
    },
    {
      "index": 130,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.6394251,
        "y": -0.11354046
      }
    },
    {
      "index": 131,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.5706473,
        "y": -0.035894755
      }
    },
    {
      "index": 132,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.4985732,
        "y": -0.21423799
      }
    },
    {
      "index": 133,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.5715483,
        "y": -0.19894274
      }
    },
    {
      "index": 134,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": 0.39494884,
        "y": -0.34418607
      }
    },
    {
      "index": 135,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.3655414,
        "y": -0.40630427
      }
    },
    {
      "index": 136,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 3,
      "position": {
        "x": 0.30818605,
        "y": -0.4349489
      }
    },
    {
      "index": 137,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.21723792,
        "y": -0.49157324
      }
    },
    {
      "index": 138,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.11354035,
        "y": -0.5914251
      }
    },
    {
      "index": 139,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.06359941,
        "y": -0.5271288
      }
    },
    {
      "index": 140,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.03489475,
        "y": -0.54864734
      }
    },
    {
      "index": 141,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 17,
      "position": {
        "x": -0.12159955,
        "y": -0.5161287
      }
    },
    {
      "index": 142,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.20094277,
        "y": -0.4955483
      }
    },
    {
      "index": 143,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.23688374,
        "y": -0.5768446
      }
    },
    {
      "index": 144,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 9,
      "position": {
        "x": -0.30640945,
        "y": -0.4626785
      }
    },
    {
      "index": 145,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.3871862,
        "y": -0.43394879
      }
    },
    {
      "index": 146,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 226,
      "position": {
        "x": -0.47797978,
        "y": -0.3174094
      }
    },
    {
      "index": 147,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": -0.4116785,
        "y": -0.3474094
      }
    },
    {
      "index": 148,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.5268447,
        "y": -0.18688355
      }
    },
    {
      "index": 149,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 9,
      "position": {
        "x": -0.47057328,
        "y": -0.23023784
      }
    },
    {
      "index": 150,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.5226474,
        "y": -0.035894625
      }
    },
    {
      "index": 151,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.56242514,
        "y": -0.11354032
      }
    },
    {
      "index": 152,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.9146473,
        "y": -0.17310524
      }
    },
    {
      "index": 153,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": -0.745425,
        "y": -0.1314594
      }
    },
    {
      "index": 154,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6788745,
        "y": 0.117238
      }
    },
    {
      "index": 155,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.73154825,
        "y": 0.05294286
      }
    },
    {
      "index": 156,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 0.00027777778,
      "players": 0,
      "position": {
        "x": -0.6009798,
        "y": 0.2024094
      }
    },
    {
      "index": 157,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 0,
      "players": 9440,
      "position": {
        "x": -0.575186,
        "y": 0.26594892
      }
    },
    {
      "index": 158,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 0.00027777778,
      "players": 1,
      "position": {
        "x": -0.7044093,
        "y": 0.25667855
      }
    },
    {
      "index": 159,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 6.9444447,
      "players": 433,
      "position": {
        "x": -0.3992379,
        "y": 0.5128745
      }
    },
    {
      "index": 160,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 8.333333,
      "players": 9,
      "position": {
        "x": -0.3412379,
        "y": 0.5515733
      }
    },
    {
      "index": 161,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 0,
      "position": {
        "x": -0.04959929,
        "y": 0.5291288
      }
    },
    {
      "index": 162,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 54,
      "position": {
        "x": -0.07354023,
        "y": 0.6374251
      }
    },
    {
      "index": 163,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.061421014,
        "y": 0.6512196
      }
    },
    {
      "index": 164,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.09195879,
        "y": 0.7373349
      }
    },
    {
      "index": 165,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.2163721,
        "y": 0.7093697
      }
    },
    {
      "index": 166,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.47584745,
        "y": 0.6789487
      }
    },
    {
      "index": 167,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.5693348,
        "y": 0.6043272
      }
    },
    {
      "index": 168,
      "owner": 2,
      "health": 983366,
      "regenPerSecond": 5.5555553,
      "players": 11771,
      "position": {
        "x": 0.4243272,
        "y": 0.34833485
      }
    },
    {
      "index": 169,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.5803697,
        "y": 0.29137206
      }
    },
    {
      "index": 170,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 8.333333,
      "players": 5,
      "position": {
        "x": 0.6880386,
        "y": 0.30101782
      }
    },
    {
      "index": 171,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 407,
      "position": {
        "x": 0.7302936,
        "y": 0.14800768
      }
    },
    {
      "index": 172,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 1.3888888,
      "players": 488,
      "position": {
        "x": 0.7312195,
        "y": -0.12242107
      }
    },
    {
      "index": 173,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 6,
      "position": {
        "x": 0.8252936,
        "y": -0.13200772
      }
    },
    {
      "index": 174,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 10,
      "position": {
        "x": 0.5600685,
        "y": -0.27437216
      }
    },
    {
      "index": 175,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.6873349,
        "y": -0.2439588
      }
    },
    {
      "index": 176,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 5,
      "position": {
        "x": 0.51897186,
        "y": -0.3859795
      }
    },
    {
      "index": 177,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.5813272,
        "y": -0.45833483
      }
    },
    {
      "index": 178,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 96,
      "position": {
        "x": 0.45897943,
        "y": -0.45897192
      }
    },
    {
      "index": 179,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.4808474,
        "y": -0.5826475
      }
    },
    {
      "index": 180,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": 0.27001774,
        "y": -0.5880387
      }
    },
    {
      "index": 181,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 45,
      "position": {
        "x": 0.3589587,
        "y": -0.73933494
      }
    },
    {
      "index": 182,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": 0.04742095,
        "y": -0.64221954
      }
    },
    {
      "index": 183,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 3,
      "position": {
        "x": 0.2510076,
        "y": -0.69129366
      }
    },
    {
      "index": 184,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": -0.04842106,
        "y": -0.70721954
      }
    },
    {
      "index": 185,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.1330078,
        "y": -0.6602936
      }
    },
    {
      "index": 186,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 1,
      "position": {
        "x": -0.2649589,
        "y": -0.6723349
      }
    },
    {
      "index": 187,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.37284753,
        "y": -0.5306474
      }
    },
    {
      "index": 188,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 4,
      "position": {
        "x": -0.5559487,
        "y": -0.31584743
      }
    },
    {
      "index": 189,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.4953272,
        "y": -0.4213348
      }
    },
    {
      "index": 190,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": -0.6140685,
        "y": -0.20337197
      }
    },
    {
      "index": 191,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.03396134,
        "y": 0.9259823
      }
    },
    {
      "index": 192,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.62221956,
        "y": -0.042420916
      }
    },
    {
      "index": 193,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6862936,
        "y": -0.25600755
      }
    },
    {
      "index": 194,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 24,
      "position": {
        "x": -0.22899726,
        "y": 0.49906695
      }
    },
    {
      "index": 195,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.9272936,
        "y": -0.04299212
      }
    },
    {
      "index": 196,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": -0.8473348,
        "y": -0.096041
      }
    },
    {
      "index": 197,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.74603856,
        "y": -0.03198197
      }
    },
    {
      "index": 198,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 1,
      "position": {
        "x": -0.43697178,
        "y": 0.3259796
      }
    },
    {
      "index": 199,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 2.7777777,
      "players": 1242,
      "position": {
        "x": -0.5379487,
        "y": 0.3338475
      }
    },
    {
      "index": 200,
      "owner": 3,
      "health": 752872,
      "regenPerSecond": 4.1666665,
      "players": 7555,
      "position": {
        "x": -0.4909794,
        "y": 0.4139719
      }
    },
    {
      "index": 201,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 12,
      "position": {
        "x": -0.5683347,
        "y": 0.4903273
      }
    },
    {
      "index": 202,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": -0.53437203,
        "y": 0.6510685
      }
    },
    {
      "index": 203,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 406,
      "position": {
        "x": -0.31501773,
        "y": 0.4560387
      }
    },
    {
      "index": 204,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": -0.35206652,
        "y": 0.64499736
      }
    },
    {
      "index": 205,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": -0.32600746,
        "y": 0.7472937
      }
    },
    {
      "index": 206,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.084947325,
        "y": 0.8337918
      }
    },
    {
      "index": 207,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 0.00027777778,
      "players": 0,
      "position": {
        "x": -0.06005267,
        "y": 0.84179187
      }
    },
    {
      "index": 208,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.3105063,
        "y": 0.77156365
      }
    },
    {
      "index": 209,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.7657729,
        "y": 0.5369948
      }
    },
    {
      "index": 210,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.77812827,
        "y": 0.3443502
      }
    },
    {
      "index": 211,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 8.333333,
      "players": 0,
      "position": {
        "x": 0.4889177,
        "y": 0.43328553
      }
    },
    {
      "index": 212,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 2,
      "position": {
        "x": 0.633865,
        "y": 0.3955063
      }
    },
    {
      "index": 213,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.9115288,
        "y": 0.18509296
      }
    },
    {
      "index": 214,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 1366,
      "position": {
        "x": 0.7147919,
        "y": 0.06394728
      }
    },
    {
      "index": 215,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 1,
      "position": {
        "x": 0.8417918,
        "y": 0.10094728
      }
    },
    {
      "index": 216,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 0,
      "position": {
        "x": 0.93316215,
        "y": 0.004525
      }
    },
    {
      "index": 217,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 5.5555553,
      "players": 2270,
      "position": {
        "x": 0.7587918,
        "y": -0.019947395
      }
    },
    {
      "index": 218,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 900,
      "position": {
        "x": 0.8658252,
        "y": -0.30003393
      }
    },
    {
      "index": 219,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.7575288,
        "y": -0.351093
      }
    },
    {
      "index": 220,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.7659177,
        "y": -0.48228556
      }
    },
    {
      "index": 221,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.66399485,
        "y": -0.5727729
      }
    },
    {
      "index": 222,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 27,
      "position": {
        "x": 0.58777285,
        "y": -0.676995
      }
    },
    {
      "index": 223,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": 0.49028546,
        "y": -0.71661645
      }
    },
    {
      "index": 224,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 2,
      "position": {
        "x": 0.29350623,
        "y": -0.8715637
      }
    },
    {
      "index": 225,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.14809287,
        "y": -0.91152894
      }
    },
    {
      "index": 226,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.09694725,
        "y": -0.7277918
      }
    },
    {
      "index": 227,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 289,
      "position": {
        "x": 0.104947254,
        "y": -0.82979184
      }
    },
    {
      "index": 228,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.037947383,
        "y": -0.8437918
      }
    },
    {
      "index": 229,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.16047508,
        "y": -0.85416216
      }
    },
    {
      "index": 230,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.31250626,
        "y": -0.83086497
      }
    },
    {
      "index": 231,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.44250628,
        "y": -0.76256365
      }
    },
    {
      "index": 232,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.5732856,
        "y": -0.6689176
      }
    },
    {
      "index": 233,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.48777303,
        "y": -0.5639948
      }
    },
    {
      "index": 234,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6169949,
        "y": -0.5607729
      }
    },
    {
      "index": 235,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.75561637,
        "y": -0.5062855
      }
    },
    {
      "index": 236,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6258253,
        "y": -0.40203378
      }
    },
    {
      "index": 237,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.8608651,
        "y": -0.36050615
      }
    },
    {
      "index": 238,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.7807918,
        "y": -0.3289472
      }
    },
    {
      "index": 239,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6268659,
        "y": -0.12653387
      }
    },
    {
      "index": 240,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.2222223,
      "players": 0,
      "position": {
        "x": -0.9021621,
        "y": 0.15547518
      }
    },
    {
      "index": 241,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.8157918,
        "y": -0.2170526
      }
    },
    {
      "index": 242,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.2222223,
      "players": 0,
      "position": {
        "x": -0.806865,
        "y": 0.20750636
      }
    },
    {
      "index": 243,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.2222223,
      "players": 0,
      "position": {
        "x": -0.840825,
        "y": 0.06103413
      }
    },
    {
      "index": 244,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.2222223,
      "players": 0,
      "position": {
        "x": -0.74635,
        "y": 0.3441284
      }
    },
    {
      "index": 245,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1.25,
      "players": 0,
      "position": {
        "x": -0.6519177,
        "y": 0.45428553
      }
    },
    {
      "index": 246,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.2222223,
      "players": 2,
      "position": {
        "x": -0.7952854,
        "y": 0.4969178
      }
    },
    {
      "index": 247,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 2.2222223,
      "players": 0,
      "position": {
        "x": -0.8741281,
        "y": 0.3473503
      }
    },
    {
      "index": 248,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": -0.56103384,
        "y": 0.77082515
      }
    },
    {
      "index": 249,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.6895062,
        "y": 0.5908651
      }
    },
    {
      "index": 250,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 207,
      "position": {
        "x": -0.13953374,
        "y": 0.7098659
      }
    },
    {
      "index": 251,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 126,
      "position": {
        "x": -0.048947096,
        "y": 0.72179186
      }
    },
    {
      "index": 252,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": -0.35552636,
        "y": 0.8833641
      }
    },
    {
      "index": 253,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1.3888888,
      "players": 0,
      "position": {
        "x": -0.19952635,
        "y": 0.9263641
      }
    },
    {
      "index": 254,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.14810903,
        "y": 0.9233154
      }
    },
    {
      "index": 255,
      "owner": 1,
      "health": 1000000,
      "regenPerSecond": 1388.8889,
      "players": 0,
      "position": {
        "x": 0.3191681,
        "y": 0.8730191
      }
    },
    {
      "index": 256,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.5267236,
        "y": 0.7475853
      }
    },
    {
      "index": 257,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": 0.6665664,
        "y": 0.6070179
      }
    },
    {
      "index": 258,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 8.333333,
      "players": 0,
      "position": {
        "x": 0.55758536,
        "y": 0.4887236
      }
    },
    {
      "index": 259,
      "owner": 2,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 1,
      "position": {
        "x": 0.6838866,
        "y": 0.48672357
      }
    },
    {
      "index": 260,
      "owner": 3,
      "health": 1000000,
      "regenPerSecond": 4.1666665,
      "players": 0,
      "position": {
        "x": -0.438396,
        "y": 0.6977152
      }
    }
  ],
  "planetAttacks": [
    {
      "source": 163,
      "target": 162
    },
    {
      "source": 161,
      "target": 117
    },
    {
      "source": 161,
      "target": 162
    },
    {
      "source": 157,
      "target": 199
    },
    {
      "source": 169,
      "target": 34
    },
    {
      "source": 169,
      "target": 170
    },
    {
      "source": 66,
      "target": 113
    },
    {
      "source": 78,
      "target": 170
    },
    {
      "source": 207,
      "target": 251
    },
    {
      "source": 70,
      "target": 250
    },
    {
      "source": 130,
      "target": 172
    },
    {
      "source": 125,
      "target": 34
    },
    {
      "source": 76,
      "target": 124
    },
    {
      "source": 129,
      "target": 171
    },
    {
      "source": 129,
      "target": 214
    },
    {
      "source": 201,
      "target": 200
    },
    {
      "source": 175,
      "target": 218
    },
    {
      "source": 219,
      "target": 218
    },
    {
      "source": 125,
      "target": 168
    },
    {
      "source": 79,
      "target": 168
    },
    {
      "source": 128,
      "target": 217
    },
    {
      "source": 194,
      "target": 115
    },
    {
      "source": 194,
      "target": 117
    },
    {
      "source": 194,
      "target": 203
    },
    {
      "source": 160,
      "target": 115
    },
    {
      "source": 160,
      "target": 159
    },
    {
      "source": 160,
      "target": 203
    },
    {
      "source": 112,
      "target": 113
    },
    {
      "source": 112,
      "target": 203
    },
    {
      "source": 199,
      "target": 157
    }
  ],
  "campaigns": [
    {
      "id": 50388,
      "planetIndex": 162,
      "type": 0,
      "count": 2
    },
    {
      "id": 50413,
      "planetIndex": 117,
      "type": 0,
      "count": 4
    },
    {
      "id": 50441,
      "planetIndex": 199,
      "type": 0,
      "count": 5
    },
    {
      "id": 50452,
      "planetIndex": 113,
      "type": 0,
      "count": 9
    },
    {
      "id": 50502,
      "planetIndex": 214,
      "type": 0,
      "count": 19
    },
    {
      "id": 50533,
      "planetIndex": 251,
      "type": 0,
      "count": 5
    },
    {
      "id": 50534,
      "planetIndex": 250,
      "type": 0,
      "count": 3
    },
    {
      "id": 50543,
      "planetIndex": 172,
      "type": 0,
      "count": 4
    },
    {
      "id": 50572,
      "planetIndex": 124,
      "type": 0,
      "count": 10
    },
    {
      "id": 50619,
      "planetIndex": 171,
      "type": 0,
      "count": 13
    },
    {
      "id": 50621,
      "planetIndex": 200,
      "type": 0,
      "count": 12
    },
    {
      "id": 50629,
      "planetIndex": 218,
      "type": 0,
      "count": 2
    },
    {
      "id": 50634,
      "planetIndex": 168,
      "type": 0,
      "count": 15
    },
    {
      "id": 50686,
      "planetIndex": 217,
      "type": 0,
      "count": 13
    },
    {
      "id": 50697,
      "planetIndex": 115,
      "type": 0,
      "count": 9
    },
    {
      "id": 50699,
      "planetIndex": 203,
      "type": 0,
      "count": 11
    },
    {
      "id": 50706,
      "planetIndex": 159,
      "type": 0,
      "count": 9
    },
    {
      "id": 50739,
      "planetIndex": 157,
      "type": 0,
      "count": 4
    }
  ],
  "communityTargets": [],
  "jointOperations": [
    {
      "id": 4907,
      "planetIndex": 157,
      "hqNodeIndex": 0
    }
  ],
  "planetEvents": [
    {
      "id": 4907,
      "planetIndex": 157,
      "eventType": 1,
      "race": 3,
      "health": 448337,
      "maxHealth": 450000,
      "startTime": 31453290,
      "expireTime": 31539690,
      "campaignId": 50739,
      "jointOperationIds": [
        4907
      ],
      "potentialBuildUp": 0
    }
  ],
  "planetActiveEffects": [
    {
      "index": 123,
      "galacticEffectId": 1186
    },
    {
      "index": 256,
      "galacticEffectId": 1190
    },
    {
      "index": 259,
      "galacticEffectId": 1188
    },
    {
      "index": 259,
      "galacticEffectId": 1190
    },
    {
      "index": 167,
      "galacticEffectId": 1188
    },
    {
      "index": 167,
      "galacticEffectId": 1190
    },
    {
      "index": 258,
      "galacticEffectId": 1188
    },
    {
      "index": 258,
      "galacticEffectId": 1190
    },
    {
      "index": 212,
      "galacticEffectId": 1188
    },
    {
      "index": 212,
      "galacticEffectId": 1190
    },
    {
      "index": 256,
      "galacticEffectId": 1193
    },
    {
      "index": 166,
      "galacticEffectId": 1193
    },
    {
      "index": 166,
      "galacticEffectId": 1190
    },
    {
      "index": 257,
      "galacticEffectId": 1188
    },
    {
      "index": 257,
      "galacticEffectId": 1190
    },
    {
      "index": 209,
      "galacticEffectId": 1188
    },
    {
      "index": 209,
      "galacticEffectId": 1190
    },
    {
      "index": 210,
      "galacticEffectId": 1193
    },
    {
      "index": 210,
      "galacticEffectId": 1190
    },
    {
      "index": 211,
      "galacticEffectId": 1193
    },
    {
      "index": 211,
      "galacticEffectId": 1190
    },
    {
      "index": 34,
      "galacticEffectId": 1193
    },
    {
      "index": 34,
      "galacticEffectId": 1190
    },
    {
      "index": 170,
      "galacticEffectId": 1193
    },
    {
      "index": 170,
      "galacticEffectId": 1190
    },
    {
      "index": 50,
      "galacticEffectId": 1193
    },
    {
      "index": 50,
      "galacticEffectId": 1190
    },
    {
      "index": 122,
      "galacticEffectId": 1193
    },
    {
      "index": 122,
      "galacticEffectId": 1190
    },
    {
      "index": 126,
      "galacticEffectId": 1197
    },
    {
      "index": 161,
      "galacticEffectId": 1198
    },
    {
      "index": 130,
      "galacticEffectId": 1232
    },
    {
      "index": 125,
      "galacticEffectId": 1234
    },
    {
      "index": 45,
      "galacticEffectId": 1236
    },
    {
      "index": 199,
      "galacticEffectId": 1222
    },
    {
      "index": 79,
      "galacticEffectId": 1222
    },
    {
      "index": 160,
      "galacticEffectId": 1239
    },
    {
      "index": 64,
      "galacticEffectId": 1230
    }
  ],
  "activeElectionPolicyEffects": [],
  "globalEvents": [
    {
      "eventId": 1499357,
      "id32": 490047277,
      "portraitId32": 0,
      "title": "BRIEFING",
      "titleId32": 2908633975,
      "message": "The <i=1>Meridian Singularity</i> is moving. \n\nGiven its current course, it is at high risk of reaching <i=1>ANGEL'S VENTURE.</i>\n\nOver the past weeks, the Ministry of Science has shed light on the <i=1>Illuminate’s</i> plans. They appear to be attacking our worlds for the sole purpose of gathering <i=1>Dark Energy.</i> \n\nNow, we know why: <i=1>Dark Energy</i> must somehow be powering the motion of the Singularity.\n\nAccording to projections, the more of this energy the Illuminate are able to gather, the faster the Singularity will move.\n\nThe Helldivers are ordered to end any <i=1>Illuminate</i> invasion attempts as quickly as possible. We must do everything in our power to stop the Singularity and safeguard the citizens of <i=1>ANGEL'S VENTURE.</i>",
      "messageId32": 3254572125,
      "race": 1,
      "flag": 1,
      "introMediaId32": 314671852,
      "outroMediaId32": 0,
      "assignmentId32": 2403201786,
      "effectIds": [],
      "planetIndices": [],
      "expireTime": 31733100
    },
    {
      "eventId": 1499358,
      "id32": 1073882239,
      "portraitId32": 0,
      "title": "WEAPONS EXPERIMENTATION",
      "titleId32": 4169143112,
      "message": "",
      "messageId32": 0,
      "race": 0,
      "flag": 0,
      "introMediaId32": 0,
      "outroMediaId32": 0,
      "assignmentId32": 0,
      "effectIds": [
        1154
      ],
      "planetIndices": [],
      "expireTime": 31499658
    }
  ],
  "superEarthWarResults": [],
  "spaceStations": [
    {
      "id32": 749875195,
      "planetIndex": 200,
      "activeEffectIds": [
        1238
      ],
      "currentElectionEndWarTime": 31460580,
      "flags": 1
    }
  ],
  "globalResources": [
    {
      "id32": 194773219,
      "currentValue": 738936,
      "maxValue": 1000000,
      "flags": 0
    }
  ],
  "layoutVersion": 33
}

Sample 1 result:

2025-02-10T17:28:50.117620700+08:00: 2025-02-10T10:41:13.5576085Z for 749875195
31460580

Sample 2:

2025-02-10T17:29:52.338655100+08:00
{"warId":801,"time":31456280,"impactMultiplier":0.06010184,"storyBeatId32":191627877,"planetStatus":[{"index":0,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":224,"position":{"x":0,"y":0}},{"index":1,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.05373042,"y":0.10565466}},{"index":2,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.04664221,"y":0.16758725}},{"index":3,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.12536779,"y":0.11821219}},{"index":4,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.10280278,"y":0.05765711}},{"index":5,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.15988354,"y":0.043583166}},{"index":6,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.13535836,"y":-0.03378948}},{"index":7,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.36159223,"y":-0.52270126}},{"index":8,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09485684,"y":-0.08101245}},{"index":9,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.15801243,"y":-0.09685686}},{"index":10,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.06770126,"y":-0.1448935}},{"index":11,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.001789452,"y":-0.18935835}},{"index":12,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.001789474,"y":-0.12535837}},{"index":13,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.06158319,"y":-0.16488354}},{"index":14,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.099012464,"y":-0.11185683}},{"index":15,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.17010404,"y":-0.08865711}},{"index":16,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.27240774,"y":0.20429876}},{"index":17,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.14765465,"y":-0.030730395}},{"index":18,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.15065464,"y":0.015730456}},{"index":19,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1728935,"y":0.06970126}},{"index":20,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.12621213,"y":0.11136782}},{"index":21,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.07801243,"y":0.10585686}},{"index":22,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.039789412,"y":0.14535835}},{"index":23,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.030315775,"y":0.2269306}},{"index":24,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09383544,"y":0.25608748}},{"index":25,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.17009519,"y":0.1877717}},{"index":26,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2117717,"y":0.12409518}},{"index":27,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2540875,"y":0.05583542}},{"index":28,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2939306,"y":-0.033684243}},{"index":29,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.22952318,"y":-0.029197697}},{"index":30,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.23037383,"y":-0.0976583}},{"index":31,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2007717,"y":-0.1490952}},{"index":32,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.15409517,"y":-0.210073}},{"index":33,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.0977173,"y":-0.22407754}},{"index":34,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":2,"position":{"x":0.5111386,"y":0.3511805}},{"index":35,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.023138678,"y":-0.24981944}},{"index":36,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.09065833,"y":-0.2413738}},{"index":37,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1440952,"y":-0.2027717}},{"index":38,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.19187985,"y":-0.14480585}},{"index":39,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.24438877,"y":-0.10283538}},{"index":40,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.2415232,"y":-0.033197638}},{"index":41,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.25681943,"y":0.030138722}},{"index":42,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.2473738,"y":0.09965837}},{"index":43,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1857717,"y":0.13809519}},{"index":44,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.16809516,"y":0.19577172}},{"index":45,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":4,"position":{"x":-0.13065825,"y":0.30637383}},{"index":46,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.061315693,"y":0.2489306}},{"index":47,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.037842084,"y":0.32250285}},{"index":48,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1129696,"y":0.3345827}},{"index":49,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2219546,"y":0.2772582}},{"index":50,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.87390286,"y":0.35359928}},{"index":51,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.287884,"y":0.1099696}},{"index":52,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.338688,"y":0.05460588}},{"index":53,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.32650283,"y":-0.12384212}},{"index":54,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":3,"position":{"x":0.26874065,"y":-0.21253327}},{"index":55,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.19353323,"y":-0.28004193}},{"index":56,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.12696959,"y":-0.30758274}},{"index":57,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":5,"position":{"x":0.04284205,"y":-0.33550286}},{"index":58,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.038842108,"y":-0.32750285}},{"index":59,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.11379249,"y":-0.3215678}},{"index":60,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.19953328,"y":-0.2830419}},{"index":61,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.26690286,"y":-0.23559926}},{"index":62,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":23,"position":{"x":-0.28988406,"y":-0.16096954}},{"index":63,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.33550286,"y":-0.05084203}},{"index":64,"owner":1,"health":1000000,"regenPerSecond":0,"players":11,"position":{"x":0.48480365,"y":0.18525586}},{"index":65,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.31756774,"y":0.13179255}},{"index":66,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":-0.24490279,"y":0.21259932}},{"index":67,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":6,"position":{"x":-0.20995454,"y":0.28325823}},{"index":68,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":1,"position":{"x":-0.05373336,"y":0.3648641}},{"index":69,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":-0.060664836,"y":0.44539174}},{"index":70,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":0,"position":{"x":-0.1716316,"y":0.8050751}},{"index":71,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.0441322,"y":0.42626023}},{"index":72,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.52319145,"y":0.14335436}},{"index":73,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1661038,"y":0.40307793}},{"index":74,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2559713,"y":0.5260108}},{"index":75,"owner":2,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":0.372748,"y":0.5082812}},{"index":76,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.26528117,"y":0.347748}},{"index":77,"owner":1,"health":1000000,"regenPerSecond":0.6944444,"players":10,"position":{"x":0.32492584,"y":0.25839266}},{"index":78,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":4,"position":{"x":0.6113544,"y":0.22880854}},{"index":79,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":6,"position":{"x":0.39437926,"y":0.27310377}},{"index":80,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":0.43926024,"y":0.0731322}},{"index":81,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3660751,"y":-0.04763163}},{"index":82,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5340751,"y":-0.090368435}},{"index":83,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.44555652,"y":-0.06207318}},{"index":84,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.41835436,"y":-0.17080852}},{"index":85,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.33707795,"y":0.1548962}},{"index":86,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.39501083,"y":-0.26197135}},{"index":87,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.32492584,"y":-0.26339266}},{"index":88,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.24639264,"y":-0.3159259}},{"index":89,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.29074797,"y":-0.35328123}},{"index":90,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":6,"position":{"x":0.18610376,"y":-0.381078}},{"index":91,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.15380847,"y":-0.4373544}},{"index":92,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.06113215,"y":-0.40526026}},{"index":93,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1470731,"y":-0.5095566}},{"index":94,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.00063157,"y":-0.4440751}},{"index":95,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.07607324,"y":-0.44355652}},{"index":96,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.13786763,"y":-0.40105802}},{"index":97,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":7,"position":{"x":-0.21110377,"y":-0.42437923}},{"index":98,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":4,"position":{"x":-0.25539273,"y":-0.3439258}},{"index":99,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.31297135,"y":-0.39101082}},{"index":100,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":0,"position":{"x":0.9189892,"y":-0.1249713}},{"index":101,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.3422812,"y":-0.302748}},{"index":102,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":20,"position":{"x":-0.4123793,"y":-0.17510368}},{"index":103,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.353078,"y":-0.13310368}},{"index":104,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.42307508,"y":-0.029368328}},{"index":105,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.46455657,"y":-0.09407307}},{"index":106,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.4232602,"y":0.05013234}},{"index":107,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6355565,"y":0.0490733}},{"index":108,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.349058,"y":0.0568677}},{"index":109,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.531078,"y":0.05410378}},{"index":110,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.48401085,"y":0.21397132}},{"index":111,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.40970957,"y":0.15897132}},{"index":112,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":15,"position":{"x":-0.26997122,"y":0.3760109}},{"index":113,"owner":3,"health":1000000,"regenPerSecond":1.3888888,"players":604,"position":{"x":-0.34874794,"y":0.28628126}},{"index":114,"owner":3,"health":1000000,"regenPerSecond":6.9444447,"players":0,"position":{"x":-0.44310373,"y":0.599078}},{"index":115,"owner":3,"health":1000000,"regenPerSecond":6.9444447,"players":151,"position":{"x":-0.27880847,"y":0.58735436}},{"index":116,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":4,"position":{"x":-0.16213205,"y":0.4142603}},{"index":117,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":405,"position":{"x":-0.122073,"y":0.5435566}},{"index":118,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.12954043,"y":0.52342516}},{"index":119,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.033894707,"y":0.5456473}},{"index":120,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1969427,"y":0.5865483}},{"index":121,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.28023794,"y":0.6415732}},{"index":122,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":1,"position":{"x":0.46854144,"y":0.5513042}},{"index":123,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":0.3994094,"y":0.6009798}},{"index":124,"owner":2,"health":1000000,"regenPerSecond":2.7777777,"players":1077,"position":{"x":0.3259798,"y":0.4174094}},{"index":125,"owner":1,"health":1000000,"regenPerSecond":5.5555553,"players":3,"position":{"x":0.46994886,"y":0.27418607}},{"index":126,"owner":1,"health":1000000,"regenPerSecond":6.9444447,"players":4,"position":{"x":0.5348745,"y":0.11823793}},{"index":127,"owner":1,"health":1000000,"regenPerSecond":6.9444447,"players":0,"position":{"x":0.4448446,"y":0.1618837}},{"index":128,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":0.6416474,"y":-0.034105327}},{"index":129,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":1,"position":{"x":0.6244252,"y":0.10954041}},{"index":130,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.6394251,"y":-0.11354046}},{"index":131,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5706473,"y":-0.035894755}},{"index":132,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.4985732,"y":-0.21423799}},{"index":133,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5715483,"y":-0.19894274}},{"index":134,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.39494884,"y":-0.34418607}},{"index":135,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3655414,"y":-0.40630427}},{"index":136,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":3,"position":{"x":0.30818605,"y":-0.4349489}},{"index":137,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.21723792,"y":-0.49157324}},{"index":138,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.11354035,"y":-0.5914251}},{"index":139,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.06359941,"y":-0.5271288}},{"index":140,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.03489475,"y":-0.54864734}},{"index":141,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":15,"position":{"x":-0.12159955,"y":-0.5161287}},{"index":142,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.20094277,"y":-0.4955483}},{"index":143,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.23688374,"y":-0.5768446}},{"index":144,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":8,"position":{"x":-0.30640945,"y":-0.4626785}},{"index":145,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.3871862,"y":-0.43394879}},{"index":146,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":225,"position":{"x":-0.47797978,"y":-0.3174094}},{"index":147,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.4116785,"y":-0.3474094}},{"index":148,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.5268447,"y":-0.18688355}},{"index":149,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":11,"position":{"x":-0.47057328,"y":-0.23023784}},{"index":150,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.5226474,"y":-0.035894625}},{"index":151,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.56242514,"y":-0.11354032}},{"index":152,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.9146473,"y":-0.17310524}},{"index":153,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.745425,"y":-0.1314594}},{"index":154,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6788745,"y":0.117238}},{"index":155,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.73154825,"y":0.05294286}},{"index":156,"owner":1,"health":1000000,"regenPerSecond":0.00027777778,"players":0,"position":{"x":-0.6009798,"y":0.2024094}},{"index":157,"owner":1,"health":1000000,"regenPerSecond":0,"players":9593,"position":{"x":-0.575186,"y":0.26594892}},{"index":158,"owner":1,"health":1000000,"regenPerSecond":0.00027777778,"players":1,"position":{"x":-0.7044093,"y":0.25667855}},{"index":159,"owner":3,"health":1000000,"regenPerSecond":6.9444447,"players":432,"position":{"x":-0.3992379,"y":0.5128745}},{"index":160,"owner":1,"health":1000000,"regenPerSecond":8.333333,"players":6,"position":{"x":-0.3412379,"y":0.5515733}},{"index":161,"owner":1,"health":1000000,"regenPerSecond":5.5555553,"players":1,"position":{"x":-0.04959929,"y":0.5291288}},{"index":162,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":50,"position":{"x":-0.07354023,"y":0.6374251}},{"index":163,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.061421014,"y":0.6512196}},{"index":164,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09195879,"y":0.7373349}},{"index":165,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2163721,"y":0.7093697}},{"index":166,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.47584745,"y":0.6789487}},{"index":167,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.5693348,"y":0.6043272}},{"index":168,"owner":2,"health":983272,"regenPerSecond":5.5555553,"players":11715,"position":{"x":0.4243272,"y":0.34833485}},{"index":169,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":0.5803697,"y":0.29137206}},{"index":170,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":5,"position":{"x":0.6880386,"y":0.30101782}},{"index":171,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":399,"position":{"x":0.7302936,"y":0.14800768}},{"index":172,"owner":2,"health":1000000,"regenPerSecond":1.3888888,"players":488,"position":{"x":0.7312195,"y":-0.12242107}},{"index":173,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":7,"position":{"x":0.8252936,"y":-0.13200772}},{"index":174,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":8,"position":{"x":0.5600685,"y":-0.27437216}},{"index":175,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.6873349,"y":-0.2439588}},{"index":176,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":5,"position":{"x":0.51897186,"y":-0.3859795}},{"index":177,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5813272,"y":-0.45833483}},{"index":178,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":104,"position":{"x":0.45897943,"y":-0.45897192}},{"index":179,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.4808474,"y":-0.5826475}},{"index":180,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.27001774,"y":-0.5880387}},{"index":181,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":41,"position":{"x":0.3589587,"y":-0.73933494}},{"index":182,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":4,"position":{"x":0.04742095,"y":-0.64221954}},{"index":183,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":3,"position":{"x":0.2510076,"y":-0.69129366}},{"index":184,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.04842106,"y":-0.70721954}},{"index":185,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1330078,"y":-0.6602936}},{"index":186,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.2649589,"y":-0.6723349}},{"index":187,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.37284753,"y":-0.5306474}},{"index":188,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":4,"position":{"x":-0.5559487,"y":-0.31584743}},{"index":189,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.4953272,"y":-0.4213348}},{"index":190,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.6140685,"y":-0.20337197}},{"index":191,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.03396134,"y":0.9259823}},{"index":192,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.62221956,"y":-0.042420916}},{"index":193,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6862936,"y":-0.25600755}},{"index":194,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":21,"position":{"x":-0.22899726,"y":0.49906695}},{"index":195,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.9272936,"y":-0.04299212}},{"index":196,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.8473348,"y":-0.096041}},{"index":197,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.74603856,"y":-0.03198197}},{"index":198,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":-0.43697178,"y":0.3259796}},{"index":199,"owner":3,"health":1000000,"regenPerSecond":2.7777777,"players":1248,"position":{"x":-0.5379487,"y":0.3338475}},{"index":200,"owner":3,"health":752772,"regenPerSecond":4.1666665,"players":7459,"position":{"x":-0.4909794,"y":0.4139719}},{"index":201,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":13,"position":{"x":-0.5683347,"y":0.4903273}},{"index":202,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.53437203,"y":0.6510685}},{"index":203,"owner":3,"health":1000000,"regenPerSecond":5.5555553,"players":407,"position":{"x":-0.31501773,"y":0.4560387}},{"index":204,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.35206652,"y":0.64499736}},{"index":205,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.32600746,"y":0.7472937}},{"index":206,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.084947325,"y":0.8337918}},{"index":207,"owner":1,"health":1000000,"regenPerSecond":0.00027777778,"players":0,"position":{"x":-0.06005267,"y":0.84179187}},{"index":208,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3105063,"y":0.77156365}},{"index":209,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.7657729,"y":0.5369948}},{"index":210,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.77812827,"y":0.3443502}},{"index":211,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":0,"position":{"x":0.4889177,"y":0.43328553}},{"index":212,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":2,"position":{"x":0.633865,"y":0.3955063}},{"index":213,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.9115288,"y":0.18509296}},{"index":214,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":1360,"position":{"x":0.7147919,"y":0.06394728}},{"index":215,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":2,"position":{"x":0.8417918,"y":0.10094728}},{"index":216,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":0,"position":{"x":0.93316215,"y":0.004525}},{"index":217,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":2236,"position":{"x":0.7587918,"y":-0.019947395}},{"index":218,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":893,"position":{"x":0.8658252,"y":-0.30003393}},{"index":219,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.7575288,"y":-0.351093}},{"index":220,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.7659177,"y":-0.48228556}},{"index":221,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.66399485,"y":-0.5727729}},{"index":222,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":33,"position":{"x":0.58777285,"y":-0.676995}},{"index":223,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.49028546,"y":-0.71661645}},{"index":224,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.29350623,"y":-0.8715637}},{"index":225,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.14809287,"y":-0.91152894}},{"index":226,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09694725,"y":-0.7277918}},{"index":227,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":285,"position":{"x":0.104947254,"y":-0.82979184}},{"index":228,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.037947383,"y":-0.8437918}},{"index":229,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.16047508,"y":-0.85416216}},{"index":230,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.31250626,"y":-0.83086497}},{"index":231,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.44250628,"y":-0.76256365}},{"index":232,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.5732856,"y":-0.6689176}},{"index":233,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.48777303,"y":-0.5639948}},{"index":234,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6169949,"y":-0.5607729}},{"index":235,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.75561637,"y":-0.5062855}},{"index":236,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.6258253,"y":-0.40203378}},{"index":237,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.8608651,"y":-0.36050615}},{"index":238,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.7807918,"y":-0.3289472}},{"index":239,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6268659,"y":-0.12653387}},{"index":240,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.9021621,"y":0.15547518}},{"index":241,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.8157918,"y":-0.2170526}},{"index":242,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.806865,"y":0.20750636}},{"index":243,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.840825,"y":0.06103413}},{"index":244,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.74635,"y":0.3441284}},{"index":245,"owner":1,"health":1000000,"regenPerSecond":1.25,"players":0,"position":{"x":-0.6519177,"y":0.45428553}},{"index":246,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.7952854,"y":0.4969178}},{"index":247,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.8741281,"y":0.3473503}},{"index":248,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.56103384,"y":0.77082515}},{"index":249,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6895062,"y":0.5908651}},{"index":250,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":208,"position":{"x":-0.13953374,"y":0.7098659}},{"index":251,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":121,"position":{"x":-0.048947096,"y":0.72179186}},{"index":252,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.35552636,"y":0.8833641}},{"index":253,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":0,"position":{"x":-0.19952635,"y":0.9263641}},{"index":254,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.14810903,"y":0.9233154}},{"index":255,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3191681,"y":0.8730191}},{"index":256,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.5267236,"y":0.7475853}},{"index":257,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.6665664,"y":0.6070179}},{"index":258,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":0,"position":{"x":0.55758536,"y":0.4887236}},{"index":259,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":0.6838866,"y":0.48672357}},{"index":260,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.438396,"y":0.6977152}}],"planetAttacks":[{"source":163,"target":162},{"source":161,"target":117},{"source":161,"target":162},{"source":157,"target":199},{"source":169,"target":34},{"source":169,"target":170},{"source":66,"target":113},{"source":78,"target":170},{"source":207,"target":251},{"source":70,"target":250},{"source":130,"target":172},{"source":125,"target":34},{"source":76,"target":124},{"source":129,"target":171},{"source":129,"target":214},{"source":201,"target":200},{"source":175,"target":218},{"source":219,"target":218},{"source":125,"target":168},{"source":79,"target":168},{"source":128,"target":217},{"source":194,"target":115},{"source":194,"target":117},{"source":194,"target":203},{"source":160,"target":115},{"source":160,"target":159},{"source":160,"target":203},{"source":112,"target":113},{"source":112,"target":203},{"source":199,"target":157}],"campaigns":[{"id":50388,"planetIndex":162,"type":0,"count":2},{"id":50413,"planetIndex":117,"type":0,"count":4},{"id":50441,"planetIndex":199,"type":0,"count":5},{"id":50452,"planetIndex":113,"type":0,"count":9},{"id":50502,"planetIndex":214,"type":0,"count":19},{"id":50533,"planetIndex":251,"type":0,"count":5},{"id":50534,"planetIndex":250,"type":0,"count":3},{"id":50543,"planetIndex":172,"type":0,"count":4},{"id":50572,"planetIndex":124,"type":0,"count":10},{"id":50619,"planetIndex":171,"type":0,"count":13},{"id":50621,"planetIndex":200,"type":0,"count":12},{"id":50629,"planetIndex":218,"type":0,"count":2},{"id":50634,"planetIndex":168,"type":0,"count":15},{"id":50686,"planetIndex":217,"type":0,"count":13},{"id":50697,"planetIndex":115,"type":0,"count":9},{"id":50699,"planetIndex":203,"type":0,"count":11},{"id":50706,"planetIndex":159,"type":0,"count":9},{"id":50739,"planetIndex":157,"type":0,"count":4}],"communityTargets":[],"jointOperations":[{"id":4907,"planetIndex":157,"hqNodeIndex":0}],"planetEvents":[{"id":4907,"planetIndex":157,"eventType":1,"race":3,"health":448296,"maxHealth":450000,"startTime":31453290,"expireTime":31539690,"campaignId":50739,"jointOperationIds":[4907],"potentialBuildUp":0}],"planetActiveEffects":[{"index":123,"galacticEffectId":1186},{"index":256,"galacticEffectId":1190},{"index":259,"galacticEffectId":1188},{"index":259,"galacticEffectId":1190},{"index":167,"galacticEffectId":1188},{"index":167,"galacticEffectId":1190},{"index":258,"galacticEffectId":1188},{"index":258,"galacticEffectId":1190},{"index":212,"galacticEffectId":1188},{"index":212,"galacticEffectId":1190},{"index":256,"galacticEffectId":1193},{"index":166,"galacticEffectId":1193},{"index":166,"galacticEffectId":1190},{"index":257,"galacticEffectId":1188},{"index":257,"galacticEffectId":1190},{"index":209,"galacticEffectId":1188},{"index":209,"galacticEffectId":1190},{"index":210,"galacticEffectId":1193},{"index":210,"galacticEffectId":1190},{"index":211,"galacticEffectId":1193},{"index":211,"galacticEffectId":1190},{"index":34,"galacticEffectId":1193},{"index":34,"galacticEffectId":1190},{"index":170,"galacticEffectId":1193},{"index":170,"galacticEffectId":1190},{"index":50,"galacticEffectId":1193},{"index":50,"galacticEffectId":1190},{"index":122,"galacticEffectId":1193},{"index":122,"galacticEffectId":1190},{"index":126,"galacticEffectId":1197},{"index":161,"galacticEffectId":1198},{"index":130,"galacticEffectId":1232},{"index":125,"galacticEffectId":1234},{"index":45,"galacticEffectId":1236},{"index":199,"galacticEffectId":1222},{"index":79,"galacticEffectId":1222},{"index":160,"galacticEffectId":1239},{"index":64,"galacticEffectId":1230}],"activeElectionPolicyEffects":[],"globalEvents":[{"eventId":1499357,"id32":490047277,"portraitId32":0,"title":"BRIEFING","titleId32":2908633975,"message":"The <i=1>Meridian Singularity</i> is moving. \n\nGiven its current course, it is at high risk of reaching <i=1>ANGEL'S VENTURE.</i>\n\nOver the past weeks, the Ministry of Science has shed light on the <i=1>Illuminate’s</i> plans. They appear to be attacking our worlds for the sole purpose of gathering <i=1>Dark Energy.</i> \n\nNow, we know why: <i=1>Dark Energy</i> must somehow be powering the motion of the Singularity.\n\nAccording to projections, the more of this energy the Illuminate are able to gather, the faster the Singularity will move.\n\nThe Helldivers are ordered to end any <i=1>Illuminate</i> invasion attempts as quickly as possible. We must do everything in our power to stop the Singularity and safeguard the citizens of <i=1>ANGEL'S VENTURE.</i>","messageId32":3254572125,"race":1,"flag":1,"introMediaId32":314671852,"outroMediaId32":0,"assignmentId32":2403201786,"effectIds":[],"planetIndices":[],"expireTime":31733100},{"eventId":1499358,"id32":1073882239,"portraitId32":0,"title":"WEAPONS EXPERIMENTATION","titleId32":4169143112,"message":"","messageId32":0,"race":0,"flag":0,"introMediaId32":0,"outroMediaId32":0,"assignmentId32":0,"effectIds":[1154],"planetIndices":[],"expireTime":31499658}],"superEarthWarResults":[],"spaceStations":[{"id32":749875195,"planetIndex":200,"activeEffectIds":[1238],"currentElectionEndWarTime":31460580,"flags":1}],"globalResources":[{"id32":194773219,"currentValue":738783,"maxValue":1000000,"flags":0}],"layoutVersion":33}

Sample 2 result:

2025-02-10T17:29:52.338655100+08:00: 2025-02-10T10:41:09.8768249Z for 749875195
31460580

Sample 3:

2025-02-10T17:31:56.895798900+08:00
{"warId":801,"time":31456420,"impactMultiplier":0.06078519,"storyBeatId32":191627877,"planetStatus":[{"index":0,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":227,"position":{"x":0,"y":0}},{"index":1,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.05373042,"y":0.10565466}},{"index":2,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.04664221,"y":0.16758725}},{"index":3,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.12536779,"y":0.11821219}},{"index":4,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.10280278,"y":0.05765711}},{"index":5,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.15988354,"y":0.043583166}},{"index":6,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.13535836,"y":-0.03378948}},{"index":7,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.36159223,"y":-0.52270126}},{"index":8,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09485684,"y":-0.08101245}},{"index":9,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.15801243,"y":-0.09685686}},{"index":10,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.06770126,"y":-0.1448935}},{"index":11,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.001789452,"y":-0.18935835}},{"index":12,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.001789474,"y":-0.12535837}},{"index":13,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.06158319,"y":-0.16488354}},{"index":14,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.099012464,"y":-0.11185683}},{"index":15,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.17010404,"y":-0.08865711}},{"index":16,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.27240774,"y":0.20429876}},{"index":17,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.14765465,"y":-0.030730395}},{"index":18,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.15065464,"y":0.015730456}},{"index":19,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1728935,"y":0.06970126}},{"index":20,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.12621213,"y":0.11136782}},{"index":21,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.07801243,"y":0.10585686}},{"index":22,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.039789412,"y":0.14535835}},{"index":23,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.030315775,"y":0.2269306}},{"index":24,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09383544,"y":0.25608748}},{"index":25,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.17009519,"y":0.1877717}},{"index":26,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2117717,"y":0.12409518}},{"index":27,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2540875,"y":0.05583542}},{"index":28,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2939306,"y":-0.033684243}},{"index":29,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.22952318,"y":-0.029197697}},{"index":30,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.23037383,"y":-0.0976583}},{"index":31,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2007717,"y":-0.1490952}},{"index":32,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.15409517,"y":-0.210073}},{"index":33,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.0977173,"y":-0.22407754}},{"index":34,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":3,"position":{"x":0.5111386,"y":0.3511805}},{"index":35,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.023138678,"y":-0.24981944}},{"index":36,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.09065833,"y":-0.2413738}},{"index":37,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1440952,"y":-0.2027717}},{"index":38,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.19187985,"y":-0.14480585}},{"index":39,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.24438877,"y":-0.10283538}},{"index":40,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.2415232,"y":-0.033197638}},{"index":41,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.25681943,"y":0.030138722}},{"index":42,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.2473738,"y":0.09965837}},{"index":43,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1857717,"y":0.13809519}},{"index":44,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.16809516,"y":0.19577172}},{"index":45,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":6,"position":{"x":-0.13065825,"y":0.30637383}},{"index":46,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.061315693,"y":0.2489306}},{"index":47,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.037842084,"y":0.32250285}},{"index":48,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1129696,"y":0.3345827}},{"index":49,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2219546,"y":0.2772582}},{"index":50,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.87390286,"y":0.35359928}},{"index":51,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.287884,"y":0.1099696}},{"index":52,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.338688,"y":0.05460588}},{"index":53,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.32650283,"y":-0.12384212}},{"index":54,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.26874065,"y":-0.21253327}},{"index":55,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.19353323,"y":-0.28004193}},{"index":56,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.12696959,"y":-0.30758274}},{"index":57,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":9,"position":{"x":0.04284205,"y":-0.33550286}},{"index":58,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.038842108,"y":-0.32750285}},{"index":59,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.11379249,"y":-0.3215678}},{"index":60,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.19953328,"y":-0.2830419}},{"index":61,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.26690286,"y":-0.23559926}},{"index":62,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":26,"position":{"x":-0.28988406,"y":-0.16096954}},{"index":63,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.33550286,"y":-0.05084203}},{"index":64,"owner":1,"health":1000000,"regenPerSecond":0,"players":14,"position":{"x":0.48479033,"y":0.18524821}},{"index":65,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.31756774,"y":0.13179255}},{"index":66,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":-0.24490279,"y":0.21259932}},{"index":67,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":9,"position":{"x":-0.20995454,"y":0.28325823}},{"index":68,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":0,"position":{"x":-0.05373336,"y":0.3648641}},{"index":69,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":1,"position":{"x":-0.060664836,"y":0.44539174}},{"index":70,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":0,"position":{"x":-0.1716316,"y":0.8050751}},{"index":71,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.0441322,"y":0.42626023}},{"index":72,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.52319145,"y":0.14335436}},{"index":73,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1661038,"y":0.40307793}},{"index":74,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2559713,"y":0.5260108}},{"index":75,"owner":2,"health":1000000,"regenPerSecond":2.7777777,"players":1,"position":{"x":0.372748,"y":0.5082812}},{"index":76,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.26528117,"y":0.347748}},{"index":77,"owner":1,"health":1000000,"regenPerSecond":0.6944444,"players":12,"position":{"x":0.32492584,"y":0.25839266}},{"index":78,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":3,"position":{"x":0.6113544,"y":0.22880854}},{"index":79,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":6,"position":{"x":0.39437926,"y":0.27310377}},{"index":80,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":0.43926024,"y":0.0731322}},{"index":81,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3660751,"y":-0.04763163}},{"index":82,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5340751,"y":-0.090368435}},{"index":83,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.44555652,"y":-0.06207318}},{"index":84,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.41835436,"y":-0.17080852}},{"index":85,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.33707795,"y":0.1548962}},{"index":86,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":3,"position":{"x":0.39501083,"y":-0.26197135}},{"index":87,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.32492584,"y":-0.26339266}},{"index":88,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.24639264,"y":-0.3159259}},{"index":89,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.29074797,"y":-0.35328123}},{"index":90,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":5,"position":{"x":0.18610376,"y":-0.381078}},{"index":91,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.15380847,"y":-0.4373544}},{"index":92,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.06113215,"y":-0.40526026}},{"index":93,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1470731,"y":-0.5095566}},{"index":94,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.00063157,"y":-0.4440751}},{"index":95,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.07607324,"y":-0.44355652}},{"index":96,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.13786763,"y":-0.40105802}},{"index":97,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":5,"position":{"x":-0.21110377,"y":-0.42437923}},{"index":98,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.25539273,"y":-0.3439258}},{"index":99,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.31297135,"y":-0.39101082}},{"index":100,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":0,"position":{"x":0.9189892,"y":-0.1249713}},{"index":101,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.3422812,"y":-0.302748}},{"index":102,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":21,"position":{"x":-0.4123793,"y":-0.17510368}},{"index":103,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.353078,"y":-0.13310368}},{"index":104,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.42307508,"y":-0.029368328}},{"index":105,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.46455657,"y":-0.09407307}},{"index":106,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.4232602,"y":0.05013234}},{"index":107,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6355565,"y":0.0490733}},{"index":108,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.349058,"y":0.0568677}},{"index":109,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.531078,"y":0.05410378}},{"index":110,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.48401085,"y":0.21397132}},{"index":111,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.40970957,"y":0.15897132}},{"index":112,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":18,"position":{"x":-0.26997122,"y":0.3760109}},{"index":113,"owner":3,"health":1000000,"regenPerSecond":1.3888888,"players":594,"position":{"x":-0.34874794,"y":0.28628126}},{"index":114,"owner":3,"health":1000000,"regenPerSecond":6.9444447,"players":0,"position":{"x":-0.44310373,"y":0.599078}},{"index":115,"owner":3,"health":1000000,"regenPerSecond":6.9444447,"players":143,"position":{"x":-0.27880847,"y":0.58735436}},{"index":116,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":5,"position":{"x":-0.16213205,"y":0.4142603}},{"index":117,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":381,"position":{"x":-0.122073,"y":0.5435566}},{"index":118,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.12954043,"y":0.52342516}},{"index":119,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.033894707,"y":0.5456473}},{"index":120,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.1969427,"y":0.5865483}},{"index":121,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.28023794,"y":0.6415732}},{"index":122,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":1,"position":{"x":0.46854144,"y":0.5513042}},{"index":123,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.3994094,"y":0.6009798}},{"index":124,"owner":2,"health":1000000,"regenPerSecond":2.7777777,"players":1077,"position":{"x":0.3259798,"y":0.4174094}},{"index":125,"owner":1,"health":1000000,"regenPerSecond":5.5555553,"players":3,"position":{"x":0.46994886,"y":0.27418607}},{"index":126,"owner":1,"health":1000000,"regenPerSecond":6.9444447,"players":1,"position":{"x":0.5348745,"y":0.11823793}},{"index":127,"owner":1,"health":1000000,"regenPerSecond":6.9444447,"players":1,"position":{"x":0.4448446,"y":0.1618837}},{"index":128,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":0,"position":{"x":0.6416474,"y":-0.034105327}},{"index":129,"owner":1,"health":1000000,"regenPerSecond":2.7777777,"players":4,"position":{"x":0.6244252,"y":0.10954041}},{"index":130,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.6394251,"y":-0.11354046}},{"index":131,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5706473,"y":-0.035894755}},{"index":132,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.4985732,"y":-0.21423799}},{"index":133,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5715483,"y":-0.19894274}},{"index":134,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.39494884,"y":-0.34418607}},{"index":135,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3655414,"y":-0.40630427}},{"index":136,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":3,"position":{"x":0.30818605,"y":-0.4349489}},{"index":137,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.21723792,"y":-0.49157324}},{"index":138,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.11354035,"y":-0.5914251}},{"index":139,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.06359941,"y":-0.5271288}},{"index":140,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.03489475,"y":-0.54864734}},{"index":141,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":16,"position":{"x":-0.12159955,"y":-0.5161287}},{"index":142,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.20094277,"y":-0.4955483}},{"index":143,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.23688374,"y":-0.5768446}},{"index":144,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":5,"position":{"x":-0.30640945,"y":-0.4626785}},{"index":145,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.3871862,"y":-0.43394879}},{"index":146,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":213,"position":{"x":-0.47797978,"y":-0.3174094}},{"index":147,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.4116785,"y":-0.3474094}},{"index":148,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.5268447,"y":-0.18688355}},{"index":149,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":10,"position":{"x":-0.47057328,"y":-0.23023784}},{"index":150,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.5226474,"y":-0.035894625}},{"index":151,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.56242514,"y":-0.11354032}},{"index":152,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.9146473,"y":-0.17310524}},{"index":153,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.745425,"y":-0.1314594}},{"index":154,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6788745,"y":0.117238}},{"index":155,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.73154825,"y":0.05294286}},{"index":156,"owner":1,"health":1000000,"regenPerSecond":0.00027777778,"players":0,"position":{"x":-0.6009798,"y":0.2024094}},{"index":157,"owner":1,"health":1000000,"regenPerSecond":0,"players":9928,"position":{"x":-0.575186,"y":0.26594892}},{"index":158,"owner":1,"health":1000000,"regenPerSecond":0.00027777778,"players":1,"position":{"x":-0.7044093,"y":0.25667855}},{"index":159,"owner":3,"health":1000000,"regenPerSecond":6.9444447,"players":412,"position":{"x":-0.3992379,"y":0.5128745}},{"index":160,"owner":1,"health":1000000,"regenPerSecond":8.333333,"players":4,"position":{"x":-0.3412379,"y":0.5515733}},{"index":161,"owner":1,"health":1000000,"regenPerSecond":5.5555553,"players":1,"position":{"x":-0.04959929,"y":0.5291288}},{"index":162,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":51,"position":{"x":-0.07354023,"y":0.6374251}},{"index":163,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.061421014,"y":0.6512196}},{"index":164,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09195879,"y":0.7373349}},{"index":165,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.2163721,"y":0.7093697}},{"index":166,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.47584745,"y":0.6789487}},{"index":167,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.5693348,"y":0.6043272}},{"index":168,"owner":2,"health":983156,"regenPerSecond":5.5555553,"players":11687,"position":{"x":0.4243272,"y":0.34833485}},{"index":169,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":0.5803697,"y":0.29137206}},{"index":170,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":4,"position":{"x":0.6880386,"y":0.30101782}},{"index":171,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":384,"position":{"x":0.7302936,"y":0.14800768}},{"index":172,"owner":2,"health":1000000,"regenPerSecond":1.3888888,"players":485,"position":{"x":0.7312195,"y":-0.12242107}},{"index":173,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":2,"position":{"x":0.8252936,"y":-0.13200772}},{"index":174,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":7,"position":{"x":0.5600685,"y":-0.27437216}},{"index":175,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.6873349,"y":-0.2439588}},{"index":176,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":4,"position":{"x":0.51897186,"y":-0.3859795}},{"index":177,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.5813272,"y":-0.45833483}},{"index":178,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":98,"position":{"x":0.45897943,"y":-0.45897192}},{"index":179,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.4808474,"y":-0.5826475}},{"index":180,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.27001774,"y":-0.5880387}},{"index":181,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":39,"position":{"x":0.3589587,"y":-0.73933494}},{"index":182,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":3,"position":{"x":0.04742095,"y":-0.64221954}},{"index":183,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.2510076,"y":-0.69129366}},{"index":184,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.04842106,"y":-0.70721954}},{"index":185,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.1330078,"y":-0.6602936}},{"index":186,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":-0.2649589,"y":-0.6723349}},{"index":187,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.37284753,"y":-0.5306474}},{"index":188,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.5559487,"y":-0.31584743}},{"index":189,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.4953272,"y":-0.4213348}},{"index":190,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":4,"position":{"x":-0.6140685,"y":-0.20337197}},{"index":191,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.03396134,"y":0.9259823}},{"index":192,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.62221956,"y":-0.042420916}},{"index":193,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6862936,"y":-0.25600755}},{"index":194,"owner":1,"health":1000000,"regenPerSecond":4.1666665,"players":25,"position":{"x":-0.22899726,"y":0.49906695}},{"index":195,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.9272936,"y":-0.04299212}},{"index":196,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.8473348,"y":-0.096041}},{"index":197,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.74603856,"y":-0.03198197}},{"index":198,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":-0.43697178,"y":0.3259796}},{"index":199,"owner":3,"health":1000000,"regenPerSecond":2.7777777,"players":1223,"position":{"x":-0.5379487,"y":0.3338475}},{"index":200,"owner":3,"health":752481,"regenPerSecond":4.1666665,"players":7262,"position":{"x":-0.4909794,"y":0.4139719}},{"index":201,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":16,"position":{"x":-0.5683347,"y":0.4903273}},{"index":202,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.53437203,"y":0.6510685}},{"index":203,"owner":3,"health":1000000,"regenPerSecond":5.5555553,"players":416,"position":{"x":-0.31501773,"y":0.4560387}},{"index":204,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.35206652,"y":0.64499736}},{"index":205,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.32600746,"y":0.7472937}},{"index":206,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.084947325,"y":0.8337918}},{"index":207,"owner":1,"health":1000000,"regenPerSecond":0.00027777778,"players":0,"position":{"x":-0.06005267,"y":0.84179187}},{"index":208,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3105063,"y":0.77156365}},{"index":209,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.7657729,"y":0.5369948}},{"index":210,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.77812827,"y":0.3443502}},{"index":211,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":0,"position":{"x":0.4889177,"y":0.43328553}},{"index":212,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":0.633865,"y":0.3955063}},{"index":213,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.9115288,"y":0.18509296}},{"index":214,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":1344,"position":{"x":0.7147919,"y":0.06394728}},{"index":215,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.8417918,"y":0.10094728}},{"index":216,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":0,"position":{"x":0.93316215,"y":0.004525}},{"index":217,"owner":2,"health":1000000,"regenPerSecond":5.5555553,"players":2220,"position":{"x":0.7587918,"y":-0.019947395}},{"index":218,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":892,"position":{"x":0.8658252,"y":-0.30003393}},{"index":219,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.7575288,"y":-0.351093}},{"index":220,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.7659177,"y":-0.48228556}},{"index":221,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.66399485,"y":-0.5727729}},{"index":222,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":31,"position":{"x":0.58777285,"y":-0.676995}},{"index":223,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":0.49028546,"y":-0.71661645}},{"index":224,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":1,"position":{"x":0.29350623,"y":-0.8715637}},{"index":225,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.14809287,"y":-0.91152894}},{"index":226,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.09694725,"y":-0.7277918}},{"index":227,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":283,"position":{"x":0.104947254,"y":-0.82979184}},{"index":228,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.037947383,"y":-0.8437918}},{"index":229,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.16047508,"y":-0.85416216}},{"index":230,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.31250626,"y":-0.83086497}},{"index":231,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.44250628,"y":-0.76256365}},{"index":232,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":2,"position":{"x":-0.5732856,"y":-0.6689176}},{"index":233,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.48777303,"y":-0.5639948}},{"index":234,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6169949,"y":-0.5607729}},{"index":235,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.75561637,"y":-0.5062855}},{"index":236,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6258253,"y":-0.40203378}},{"index":237,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.8608651,"y":-0.36050615}},{"index":238,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.7807918,"y":-0.3289472}},{"index":239,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6268659,"y":-0.12653387}},{"index":240,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.9021621,"y":0.15547518}},{"index":241,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.8157918,"y":-0.2170526}},{"index":242,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.806865,"y":0.20750636}},{"index":243,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.840825,"y":0.06103413}},{"index":244,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.74635,"y":0.3441284}},{"index":245,"owner":1,"health":1000000,"regenPerSecond":1.25,"players":0,"position":{"x":-0.6519177,"y":0.45428553}},{"index":246,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.7952854,"y":0.4969178}},{"index":247,"owner":1,"health":1000000,"regenPerSecond":2.2222223,"players":0,"position":{"x":-0.8741281,"y":0.3473503}},{"index":248,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.56103384,"y":0.77082515}},{"index":249,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.6895062,"y":0.5908651}},{"index":250,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":201,"position":{"x":-0.13953374,"y":0.7098659}},{"index":251,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":121,"position":{"x":-0.048947096,"y":0.72179186}},{"index":252,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":-0.35552636,"y":0.8833641}},{"index":253,"owner":1,"health":1000000,"regenPerSecond":1.3888888,"players":0,"position":{"x":-0.19952635,"y":0.9263641}},{"index":254,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.14810903,"y":0.9233154}},{"index":255,"owner":1,"health":1000000,"regenPerSecond":1388.8889,"players":0,"position":{"x":0.3191681,"y":0.8730191}},{"index":256,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.5267236,"y":0.7475853}},{"index":257,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":0.6665664,"y":0.6070179}},{"index":258,"owner":2,"health":1000000,"regenPerSecond":8.333333,"players":0,"position":{"x":0.55758536,"y":0.4887236}},{"index":259,"owner":2,"health":1000000,"regenPerSecond":4.1666665,"players":1,"position":{"x":0.6838866,"y":0.48672357}},{"index":260,"owner":3,"health":1000000,"regenPerSecond":4.1666665,"players":0,"position":{"x":-0.438396,"y":0.6977152}}],"planetAttacks":[{"source":163,"target":162},{"source":161,"target":117},{"source":161,"target":162},{"source":157,"target":199},{"source":169,"target":34},{"source":169,"target":170},{"source":66,"target":113},{"source":78,"target":170},{"source":207,"target":251},{"source":70,"target":250},{"source":130,"target":172},{"source":125,"target":34},{"source":76,"target":124},{"source":129,"target":171},{"source":129,"target":214},{"source":201,"target":200},{"source":175,"target":218},{"source":219,"target":218},{"source":125,"target":168},{"source":79,"target":168},{"source":128,"target":217},{"source":194,"target":115},{"source":194,"target":117},{"source":194,"target":203},{"source":160,"target":115},{"source":160,"target":159},{"source":160,"target":203},{"source":112,"target":113},{"source":112,"target":203},{"source":199,"target":157}],"campaigns":[{"id":50388,"planetIndex":162,"type":0,"count":2},{"id":50413,"planetIndex":117,"type":0,"count":4},{"id":50441,"planetIndex":199,"type":0,"count":5},{"id":50452,"planetIndex":113,"type":0,"count":9},{"id":50502,"planetIndex":214,"type":0,"count":19},{"id":50533,"planetIndex":251,"type":0,"count":5},{"id":50534,"planetIndex":250,"type":0,"count":3},{"id":50543,"planetIndex":172,"type":0,"count":4},{"id":50572,"planetIndex":124,"type":0,"count":10},{"id":50619,"planetIndex":171,"type":0,"count":13},{"id":50621,"planetIndex":200,"type":0,"count":12},{"id":50629,"planetIndex":218,"type":0,"count":2},{"id":50634,"planetIndex":168,"type":0,"count":15},{"id":50686,"planetIndex":217,"type":0,"count":13},{"id":50697,"planetIndex":115,"type":0,"count":9},{"id":50699,"planetIndex":203,"type":0,"count":11},{"id":50706,"planetIndex":159,"type":0,"count":9},{"id":50739,"planetIndex":157,"type":0,"count":4}],"communityTargets":[],"jointOperations":[{"id":4907,"planetIndex":157,"hqNodeIndex":0}],"planetEvents":[{"id":4907,"planetIndex":157,"eventType":1,"race":3,"health":448115,"maxHealth":450000,"startTime":31453290,"expireTime":31539690,"campaignId":50739,"jointOperationIds":[4907],"potentialBuildUp":0}],"planetActiveEffects":[{"index":123,"galacticEffectId":1186},{"index":256,"galacticEffectId":1190},{"index":259,"galacticEffectId":1188},{"index":259,"galacticEffectId":1190},{"index":167,"galacticEffectId":1188},{"index":167,"galacticEffectId":1190},{"index":258,"galacticEffectId":1188},{"index":258,"galacticEffectId":1190},{"index":212,"galacticEffectId":1188},{"index":212,"galacticEffectId":1190},{"index":256,"galacticEffectId":1193},{"index":166,"galacticEffectId":1193},{"index":166,"galacticEffectId":1190},{"index":257,"galacticEffectId":1188},{"index":257,"galacticEffectId":1190},{"index":209,"galacticEffectId":1188},{"index":209,"galacticEffectId":1190},{"index":210,"galacticEffectId":1193},{"index":210,"galacticEffectId":1190},{"index":211,"galacticEffectId":1193},{"index":211,"galacticEffectId":1190},{"index":34,"galacticEffectId":1193},{"index":34,"galacticEffectId":1190},{"index":170,"galacticEffectId":1193},{"index":170,"galacticEffectId":1190},{"index":50,"galacticEffectId":1193},{"index":50,"galacticEffectId":1190},{"index":122,"galacticEffectId":1193},{"index":122,"galacticEffectId":1190},{"index":126,"galacticEffectId":1197},{"index":161,"galacticEffectId":1198},{"index":130,"galacticEffectId":1232},{"index":125,"galacticEffectId":1234},{"index":45,"galacticEffectId":1236},{"index":199,"galacticEffectId":1222},{"index":79,"galacticEffectId":1222},{"index":160,"galacticEffectId":1239},{"index":64,"galacticEffectId":1230}],"activeElectionPolicyEffects":[],"globalEvents":[{"eventId":1499357,"id32":490047277,"portraitId32":0,"title":"BRIEFING","titleId32":2908633975,"message":"The <i=1>Meridian Singularity</i> is moving. \n\nGiven its current course, it is at high risk of reaching <i=1>ANGEL'S VENTURE.</i>\n\nOver the past weeks, the Ministry of Science has shed light on the <i=1>Illuminate’s</i> plans. They appear to be attacking our worlds for the sole purpose of gathering <i=1>Dark Energy.</i> \n\nNow, we know why: <i=1>Dark Energy</i> must somehow be powering the motion of the Singularity.\n\nAccording to projections, the more of this energy the Illuminate are able to gather, the faster the Singularity will move.\n\nThe Helldivers are ordered to end any <i=1>Illuminate</i> invasion attempts as quickly as possible. We must do everything in our power to stop the Singularity and safeguard the citizens of <i=1>ANGEL'S VENTURE.</i>","messageId32":3254572125,"race":1,"flag":1,"introMediaId32":314671852,"outroMediaId32":0,"assignmentId32":2403201786,"effectIds":[],"planetIndices":[],"expireTime":31733100},{"eventId":1499358,"id32":1073882239,"portraitId32":0,"title":"WEAPONS EXPERIMENTATION","titleId32":4169143112,"message":"","messageId32":0,"race":0,"flag":0,"introMediaId32":0,"outroMediaId32":0,"assignmentId32":0,"effectIds":[1154],"planetIndices":[],"expireTime":31499658}],"superEarthWarResults":[],"spaceStations":[{"id32":749875195,"planetIndex":200,"activeEffectIds":[1238],"currentElectionEndWarTime":31460580,"flags":1}],"globalResources":[{"id32":194773219,"currentValue":738356,"maxValue":1000000,"flags":0}],"layoutVersion":33}

Result:

2025-02-10T17:31:56.895798900+08:00: 2025-02-10T10:41:09.1357049Z for 749875195
31460580

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants