update: Don't double-round money, fixing mil pay and more
The update tallies income and expenses in full dollars. Each debit or
credit is rounded before it is added to the tally. Different things
are rounded differently. Examples:
* Each sector's military pay is rounded down. In the stock game, 1m
is paid $4.999998, so n mil cost n*$5 -$1, for all practical n. 10m
in one sector cost $49, but spread over ten sectors they cost only
$40.
* Total pay for military in ships and land units is rounded down.
* Each plane's military pay is rounded down (used to be rounded up
except for broke countries until recent commit 2eb08f4
). In the
stock game, flight pay is 5 * $4.999998 = $24.99999. For a plane
with n mil, that's n * $25 - $1. Filed under plane maintenance, not
military payroll.
* Each sector's civilian tax is rounded. In the stock game, 1c pays
$0.499998. 10c in one sector pay $5, but spread over ten sectors
they pay nothing.
* An occupied sector's civilian tax is first rounded, then divided by
four and rounded down *boggle*.
* Each sector's uw tax is rounded. In the stock game, 1u pays
$0.106662. 1-4u in one sector pay nothing. 5-14u pay $1.
This is madness. Has always been that way.
Drop the rounding and track money in type double throughout the
update. Round only the final amount, randomly. This is similar to
how commands accumulate a money delta in player->dolcost.
Likewise, tally the subtotals for budget in type double. Display them
rounded to full dollars.
Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
10789a0365
commit
25a6cf92b2
14 changed files with 760 additions and 758 deletions
|
@ -52,7 +52,7 @@ enum {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct budg_item {
|
struct budg_item {
|
||||||
int money; /* money delta */
|
double money; /* money delta */
|
||||||
int count; /* #things making/consuming the money */
|
int count; /* #things making/consuming the money */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ struct budget {
|
||||||
struct budg_item civ, mil, uw, bars;
|
struct budg_item civ, mil, uw, bars;
|
||||||
/* treasury */
|
/* treasury */
|
||||||
int start_money; /* at beginning of update */
|
int start_money; /* at beginning of update */
|
||||||
int money; /* current */
|
double money; /* current */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* main.c */
|
/* main.c */
|
||||||
|
|
|
@ -87,7 +87,7 @@ budg(void)
|
||||||
pchr[dchr[i].d_prd].p_sname);
|
pchr[dchr[i].d_prd].p_sname);
|
||||||
else
|
else
|
||||||
pr("\t\t");
|
pr("\t\t");
|
||||||
pr("\t\t%8d\n", -budget->prod[i].money);
|
pr("\t\t%8.0f\n", -budget->prod[i].money);
|
||||||
expenses -= budget->prod[i].money;
|
expenses -= budget->prod[i].money;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ budg(void)
|
||||||
snprintf(buf, sizeof(buf), "%d %s%s",
|
snprintf(buf, sizeof(buf), "%d %s%s",
|
||||||
budget->bm[i].count, bm_name[i].object,
|
budget->bm[i].count, bm_name[i].object,
|
||||||
splur(budget->bm[i].count));
|
splur(budget->bm[i].count));
|
||||||
pr("%-20s\t\t%-16s\t\t%8d\n",
|
pr("%-20s\t\t%-16s\t\t%8.0f\n",
|
||||||
bm_name[i].activity, buf, -budget->bm[i].money);
|
bm_name[i].activity, buf, -budget->bm[i].money);
|
||||||
expenses -= budget->bm[i].money;
|
expenses -= budget->bm[i].money;
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ budg(void)
|
||||||
if (budget->mil.money) {
|
if (budget->mil.money) {
|
||||||
snprintf(buf, sizeof(buf), "%d mil, %d res",
|
snprintf(buf, sizeof(buf), "%d mil, %d res",
|
||||||
budget->mil.count, np->nat_reserve);
|
budget->mil.count, np->nat_reserve);
|
||||||
pr("Military payroll\t\t%-32s%8d\n",
|
pr("Military payroll\t\t%-32s%8.0f\n",
|
||||||
buf, -budget->mil.money);
|
buf, -budget->mil.money);
|
||||||
expenses -= budget->mil.money;
|
expenses -= budget->mil.money;
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,7 @@ budg(void)
|
||||||
if (budget->bars.money) {
|
if (budget->bars.money) {
|
||||||
snprintf(buf, sizeof(buf), "%d bar%s",
|
snprintf(buf, sizeof(buf), "%d bar%s",
|
||||||
budget->bars.count, splur(budget->bars.count));
|
budget->bars.count, splur(budget->bars.count));
|
||||||
pr("Income from bars\t\t%-32s%+8d\n",
|
pr("Income from bars\t\t%-32s%+8.0f\n",
|
||||||
buf, budget->bars.money);
|
buf, budget->bars.money);
|
||||||
income += budget->bars.money;
|
income += budget->bars.money;
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,7 +89,8 @@ upd_land(struct lndstr *lp, int etus, struct bp *bp, int build)
|
||||||
struct natstr *np = getnatp(lp->lnd_own);
|
struct natstr *np = getnatp(lp->lnd_own);
|
||||||
int pstage, ptime;
|
int pstage, ptime;
|
||||||
int min = morale_base - (int)np->nat_level[NAT_HLEV];
|
int min = morale_base - (int)np->nat_level[NAT_HLEV];
|
||||||
int n, mult, cost, eff_lost;
|
int n, mult, eff_lost;
|
||||||
|
double cost;
|
||||||
|
|
||||||
if (!player->simulation)
|
if (!player->simulation)
|
||||||
if (lp->lnd_retreat < min)
|
if (lp->lnd_retreat < min)
|
||||||
|
@ -107,7 +108,7 @@ upd_land(struct lndstr *lp, int etus, struct bp *bp, int build)
|
||||||
if (lcp->l_flags & L_ENGINEER)
|
if (lcp->l_flags & L_ENGINEER)
|
||||||
mult *= 3;
|
mult *= 3;
|
||||||
budget->bm[BUDG_LND_MAINT].count++;
|
budget->bm[BUDG_LND_MAINT].count++;
|
||||||
cost = -(mult * etus * MIN(0.0, money_land * lcp->l_cost));
|
cost = mult * etus * -money_land * lcp->l_cost;
|
||||||
if (budget->money < cost && !player->simulation) {
|
if (budget->money < cost && !player->simulation) {
|
||||||
eff_lost = etus / 5;
|
eff_lost = etus / 5;
|
||||||
if (lp->lnd_effic - eff_lost < LAND_MINEFF)
|
if (lp->lnd_effic - eff_lost < LAND_MINEFF)
|
||||||
|
@ -196,7 +197,7 @@ landrepair(struct lndstr *land, struct natstr *np, struct bp *bp, int etus,
|
||||||
int build;
|
int build;
|
||||||
int avail;
|
int avail;
|
||||||
int mult;
|
int mult;
|
||||||
int cost;
|
double cost;
|
||||||
|
|
||||||
if (land->lnd_effic == 100)
|
if (land->lnd_effic == 100)
|
||||||
return;
|
return;
|
||||||
|
@ -239,7 +240,7 @@ landrepair(struct lndstr *land, struct natstr *np, struct bp *bp, int etus,
|
||||||
sp->sct_avail = avail;
|
sp->sct_avail = avail;
|
||||||
|
|
||||||
bp_set_from_sect(bp, sp);
|
bp_set_from_sect(bp, sp);
|
||||||
cost = roundavg(mult * lp->l_cost * build / 100.0);
|
cost = mult * lp->l_cost * build / 100.0;
|
||||||
budget->bm[BUDG_LND_BUILD].count += !!build;
|
budget->bm[BUDG_LND_BUILD].count += !!build;
|
||||||
budget->bm[BUDG_LND_BUILD].money -= cost;
|
budget->bm[BUDG_LND_BUILD].money -= cost;
|
||||||
budget->money -= cost;
|
budget->money -= cost;
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
#include "chance.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "game.h"
|
#include "game.h"
|
||||||
#include "item.h"
|
#include "item.h"
|
||||||
|
@ -217,9 +218,9 @@ prod_nat(int etu)
|
||||||
lnd_money, sea_money, air_money);
|
lnd_money, sea_money, air_money);
|
||||||
if (CANT_HAPPEN(np->nat_money != nat_budget[n].start_money))
|
if (CANT_HAPPEN(np->nat_money != nat_budget[n].start_money))
|
||||||
nat_budget[n].money += np->nat_money - nat_budget[n].start_money;
|
nat_budget[n].money += np->nat_money - nat_budget[n].start_money;
|
||||||
|
np->nat_money = roundavg(nat_budget[n].money);
|
||||||
wu(0, n, "money delta was $%d for this update\n",
|
wu(0, n, "money delta was $%d for this update\n",
|
||||||
nat_budget[n].money - nat_budget[n].start_money);
|
np->nat_money - nat_budget[n].start_money);
|
||||||
np->nat_money = nat_budget[n].money;
|
|
||||||
|
|
||||||
if (opt_LOSE_CONTACT) {
|
if (opt_LOSE_CONTACT) {
|
||||||
for (cn = 1; cn < MAXNOC; cn++) {
|
for (cn = 1; cn < MAXNOC; cn++) {
|
||||||
|
|
|
@ -85,7 +85,8 @@ upd_plane(struct plnstr *pp, int etus, struct bp *bp, int build)
|
||||||
struct budget *budget = &nat_budget[pp->pln_own];
|
struct budget *budget = &nat_budget[pp->pln_own];
|
||||||
struct plchrstr *pcp = &plchr[pp->pln_type];
|
struct plchrstr *pcp = &plchr[pp->pln_type];
|
||||||
struct natstr *np = getnatp(pp->pln_own);
|
struct natstr *np = getnatp(pp->pln_own);
|
||||||
int mult, cost, eff_lost;
|
int mult, eff_lost;
|
||||||
|
double cost;
|
||||||
|
|
||||||
if (build == 1) {
|
if (build == 1) {
|
||||||
if (!pp->pln_off && budget->money >= 0)
|
if (!pp->pln_off && budget->money >= 0)
|
||||||
|
@ -97,7 +98,7 @@ upd_plane(struct plnstr *pp, int etus, struct bp *bp, int build)
|
||||||
if (np->nat_level[NAT_TLEV] < pp->pln_tech * 0.85)
|
if (np->nat_level[NAT_TLEV] < pp->pln_tech * 0.85)
|
||||||
mult = 2;
|
mult = 2;
|
||||||
budget->bm[BUDG_PLN_MAINT].count++;
|
budget->bm[BUDG_PLN_MAINT].count++;
|
||||||
cost = -(mult * etus * MIN(0.0, pcp->pl_cost * money_plane));
|
cost = mult * etus * -money_plane * pcp->pl_cost;
|
||||||
if (budget->money < cost && !player->simulation) {
|
if (budget->money < cost && !player->simulation) {
|
||||||
eff_lost = etus / 5;
|
eff_lost = etus / 5;
|
||||||
if (pp->pln_effic - eff_lost < PLANE_MINEFF)
|
if (pp->pln_effic - eff_lost < PLANE_MINEFF)
|
||||||
|
@ -130,7 +131,7 @@ planerepair(struct plnstr *pp, struct natstr *np, struct bp *bp, int etus,
|
||||||
int mult;
|
int mult;
|
||||||
int avail;
|
int avail;
|
||||||
int used;
|
int used;
|
||||||
int cost;
|
double cost;
|
||||||
|
|
||||||
if (pp->pln_effic == 100)
|
if (pp->pln_effic == 100)
|
||||||
return;
|
return;
|
||||||
|
@ -196,7 +197,7 @@ planerepair(struct plnstr *pp, struct natstr *np, struct bp *bp, int etus,
|
||||||
}
|
}
|
||||||
|
|
||||||
bp_set_from_sect(bp, sp);
|
bp_set_from_sect(bp, sp);
|
||||||
cost = roundavg(mult * build * pcp->pl_cost / 100.0);
|
cost = mult * pcp->pl_cost * build / 100.0;
|
||||||
budget->bm[BUDG_PLN_BUILD].count += !!build;
|
budget->bm[BUDG_PLN_BUILD].count += !!build;
|
||||||
budget->bm[BUDG_PLN_BUILD].money -= cost;
|
budget->bm[BUDG_PLN_BUILD].money -= cost;
|
||||||
budget->money -= cost;
|
budget->money -= cost;
|
||||||
|
|
|
@ -108,10 +108,9 @@ void
|
||||||
tax(struct sctstr *sp, int etu, int *pop)
|
tax(struct sctstr *sp, int etu, int *pop)
|
||||||
{
|
{
|
||||||
struct budget *budget = &nat_budget[sp->sct_own];
|
struct budget *budget = &nat_budget[sp->sct_own];
|
||||||
int civ_tax, uw_tax, mil_pay;
|
double civ_tax, uw_tax, mil_pay;
|
||||||
|
|
||||||
civ_tax = (int)(0.5 + sp->sct_item[I_CIVIL] * sp->sct_effic *
|
civ_tax = sp->sct_item[I_CIVIL] * etu * money_civ * sp->sct_effic / 100;
|
||||||
etu * money_civ / 100);
|
|
||||||
/*
|
/*
|
||||||
* captured civs only pay 1/4 taxes
|
* captured civs only pay 1/4 taxes
|
||||||
*/
|
*/
|
||||||
|
@ -121,8 +120,7 @@ tax(struct sctstr *sp, int etu, int *pop)
|
||||||
budget->civ.money += civ_tax;
|
budget->civ.money += civ_tax;
|
||||||
budget->money += civ_tax;
|
budget->money += civ_tax;
|
||||||
|
|
||||||
uw_tax = (int)(0.5 + sp->sct_item[I_UW] * sp->sct_effic *
|
uw_tax = sp->sct_item[I_UW] * etu * money_uw * sp->sct_effic / 100;
|
||||||
etu * money_uw / 100);
|
|
||||||
budget->uw.count += sp->sct_item[I_UW];
|
budget->uw.count += sp->sct_item[I_UW];
|
||||||
budget->uw.money += uw_tax;
|
budget->uw.money += uw_tax;
|
||||||
budget->money += uw_tax;
|
budget->money += uw_tax;
|
||||||
|
@ -144,7 +142,8 @@ upd_slmilcosts(int etu, natid n)
|
||||||
{
|
{
|
||||||
struct shpstr *sp;
|
struct shpstr *sp;
|
||||||
struct lndstr *lp;
|
struct lndstr *lp;
|
||||||
int mil, i, mil_pay;
|
int mil, i;
|
||||||
|
double mil_pay;
|
||||||
|
|
||||||
mil = 0;
|
mil = 0;
|
||||||
|
|
||||||
|
@ -169,18 +168,18 @@ upd_slmilcosts(int etu, natid n)
|
||||||
void
|
void
|
||||||
bank_income(struct sctstr *sp, int etu)
|
bank_income(struct sctstr *sp, int etu)
|
||||||
{
|
{
|
||||||
int inc;
|
double income;
|
||||||
|
|
||||||
inc = (int)(sp->sct_item[I_BAR] * etu * bankint * sp->sct_effic / 100);
|
income = sp->sct_item[I_BAR] * etu * bankint * sp->sct_effic / 100;
|
||||||
nat_budget[sp->sct_own].bars.count += sp->sct_item[I_BAR];
|
nat_budget[sp->sct_own].bars.count += sp->sct_item[I_BAR];
|
||||||
nat_budget[sp->sct_own].bars.money += inc;
|
nat_budget[sp->sct_own].bars.money += income;
|
||||||
nat_budget[sp->sct_own].money += inc;
|
nat_budget[sp->sct_own].money += income;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
pay_reserve(struct natstr *np, int etu)
|
pay_reserve(struct natstr *np, int etu)
|
||||||
{
|
{
|
||||||
int pay = (int)(np->nat_reserve * money_res * etu);
|
double pay = np->nat_reserve * money_res * etu;
|
||||||
|
|
||||||
nat_budget[np->nat_cnum].mil.money += pay;
|
nat_budget[np->nat_cnum].mil.money += pay;
|
||||||
nat_budget[np->nat_cnum].money += pay;
|
nat_budget[np->nat_cnum].money += pay;
|
||||||
|
|
|
@ -62,7 +62,7 @@ produce(struct natstr *np, struct sctstr *sp)
|
||||||
int material_limit, res_limit;
|
int material_limit, res_limit;
|
||||||
int material_consume;
|
int material_consume;
|
||||||
int val;
|
int val;
|
||||||
int cost;
|
double cost;
|
||||||
|
|
||||||
if (dchr[sp->sct_type].d_prd < 0)
|
if (dchr[sp->sct_type].d_prd < 0)
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -229,8 +229,8 @@ produce_sect(struct natstr *np, int etu, struct bp *bp)
|
||||||
{
|
{
|
||||||
struct budget *budget = &nat_budget[np->nat_cnum];
|
struct budget *budget = &nat_budget[np->nat_cnum];
|
||||||
struct sctstr *sp, scratch_sect;
|
struct sctstr *sp, scratch_sect;
|
||||||
int cost;
|
|
||||||
int n;
|
int n;
|
||||||
|
double cost;
|
||||||
|
|
||||||
for (n = 0; NULL != (sp = getsectid(n)); n++) {
|
for (n = 0; NULL != (sp = getsectid(n)); n++) {
|
||||||
if (sp->sct_type == SCT_WATER)
|
if (sp->sct_type == SCT_WATER)
|
||||||
|
@ -272,7 +272,7 @@ produce_sect(struct natstr *np, int etu, struct bp *bp)
|
||||||
|
|
||||||
if ((sp->sct_effic < 100 || sp->sct_type != sp->sct_newtype) &&
|
if ((sp->sct_effic < 100 || sp->sct_type != sp->sct_newtype) &&
|
||||||
budget->money >= 0) {
|
budget->money >= 0) {
|
||||||
cost = roundavg(buildeff(sp));
|
cost = buildeff(sp);
|
||||||
budget->bm[BUDG_SCT_BUILD].count++;
|
budget->bm[BUDG_SCT_BUILD].count++;
|
||||||
budget->bm[BUDG_SCT_BUILD].money -= cost;
|
budget->bm[BUDG_SCT_BUILD].money -= cost;
|
||||||
budget->money -= cost;
|
budget->money -= cost;
|
||||||
|
|
|
@ -93,7 +93,8 @@ upd_ship(struct shpstr *sp, int etus, struct bp *bp, int build)
|
||||||
struct pchrstr *product;
|
struct pchrstr *product;
|
||||||
unsigned char *resource;
|
unsigned char *resource;
|
||||||
int dep;
|
int dep;
|
||||||
int n, mult, cost, eff_lost;
|
int n, mult, eff_lost;
|
||||||
|
double cost;
|
||||||
|
|
||||||
if (build == 1) {
|
if (build == 1) {
|
||||||
if (!sp->shp_off && budget->money >= 0)
|
if (!sp->shp_off && budget->money >= 0)
|
||||||
|
@ -105,7 +106,7 @@ upd_ship(struct shpstr *sp, int etus, struct bp *bp, int build)
|
||||||
if (np->nat_level[NAT_TLEV] < sp->shp_tech * 0.85)
|
if (np->nat_level[NAT_TLEV] < sp->shp_tech * 0.85)
|
||||||
mult = 2;
|
mult = 2;
|
||||||
budget->bm[BUDG_SHP_MAINT].count++;
|
budget->bm[BUDG_SHP_MAINT].count++;
|
||||||
cost = -(mult * etus * MIN(0.0, money_ship * mp->m_cost));
|
cost = mult * etus * -money_ship * mp->m_cost;
|
||||||
if (budget->money < cost && !player->simulation) {
|
if (budget->money < cost && !player->simulation) {
|
||||||
eff_lost = etus / 5;
|
eff_lost = etus / 5;
|
||||||
if (sp->shp_effic - eff_lost < SHIP_MINEFF)
|
if (sp->shp_effic - eff_lost < SHIP_MINEFF)
|
||||||
|
@ -244,7 +245,7 @@ shiprepair(struct shpstr *ship, struct natstr *np, struct bp *bp, int etus,
|
||||||
int wf;
|
int wf;
|
||||||
int avail;
|
int avail;
|
||||||
int mult;
|
int mult;
|
||||||
int cost;
|
double cost;
|
||||||
|
|
||||||
if (ship->shp_effic == 100)
|
if (ship->shp_effic == 100)
|
||||||
return;
|
return;
|
||||||
|
@ -307,7 +308,7 @@ shiprepair(struct shpstr *ship, struct natstr *np, struct bp *bp, int etus,
|
||||||
}
|
}
|
||||||
|
|
||||||
bp_set_from_sect(bp, sp);
|
bp_set_from_sect(bp, sp);
|
||||||
cost = roundavg(mult * mp->m_cost * build / 100.0);
|
cost = mult * mp->m_cost * build / 100.0;
|
||||||
budget->bm[BUDG_SHP_BUILD].count += !!build;
|
budget->bm[BUDG_SHP_BUILD].count += !!build;
|
||||||
budget->bm[BUDG_SHP_BUILD].money -= cost;
|
budget->bm[BUDG_SHP_BUILD].money -= cost;
|
||||||
budget->money -= cost;
|
budget->money -= cost;
|
||||||
|
|
|
@ -25,7 +25,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -20 0 0 0 0 0 0 0 0 0 0 0 -20 0 0 -20 100 1 0 0 0 61 42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -20 0 0 0 0 0 0 0 0 0 0 0 -20 0 0 -20 100 1 0 0 0 61 42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -18 0 0 0 0 0 0 0 0 0 0 0 -18 0 0 -14 100 1 0 0 0 55 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -18 0 0 0 0 0 0 0 0 0 0 0 -18 0 0 -14 100 1 0 0 0 55 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -16 0 4 0 0 0 0 0 0 0 0 0 -16 0 0 50 100 1 4 45 19 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -16 0 4 0 0 0 0 0 0 0 0 0 -16 0 0 50 100 1 4 45 19 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
4 -14 0 11 100 127 0 0 0 0 0 0 0 -14 0 650 82 100 0 11 96 0 0 0 77 4 1000 0 0 0 0 0 291 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 4 0 0 0 0 0
|
4 -14 0 11 100 127 0 0 0 0 0 0 0 -14 0 650 82 100 0 11 96 0 0 0 77 4 1000 0 0 0 0 0 290 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 4 0 0 0 0 0
|
||||||
0 -12 0 4 0 0 0 0 0 0 0 0 0 -12 0 0 97 100 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -12 0 4 0 0 0 0 0 0 0 0 0 -12 0 0 97 100 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -10 0 4 0 0 0 0 0 0 0 0 0 -10 0 0 86 100 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -10 0 4 0 0 0 0 0 0 0 0 0 -10 0 0 86 100 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -8 0 4 0 0 0 0 0 0 0 0 0 -8 0 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -8 0 4 0 0 0 0 0 0 0 0 0 -8 0 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -241,7 +241,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 29 7 0 0 0 0 0 0 0 0 0 0 29 7 0 -37 100 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 29 7 0 0 0 0 0 0 0 0 0 0 29 7 0 -37 100 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 31 7 4 0 0 0 0 0 0 0 0 0 31 7 0 14 100 1 4 0 0 91 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 31 7 4 0 0 0 0 0 0 0 0 0 31 7 0 14 100 1 4 0 0 91 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -31 7 4 0 0 0 0 0 0 0 0 0 -31 7 0 61 100 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -31 7 4 0 0 0 0 0 0 0 0 0 -31 7 0 61 100 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
5 -29 7 11 100 127 0 0 0 0 0 0 0 -29 7 650 93 100 0 11 100 0 0 0 100 5 1000 0 0 0 0 0 368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 5 0 0 0 0 0
|
5 -29 7 11 100 127 0 0 0 0 0 0 0 -29 7 650 93 100 0 11 100 0 0 0 100 5 1000 0 0 0 0 0 357 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 5 0 0 0 0 0
|
||||||
0 -27 7 4 0 0 0 0 0 0 0 0 0 -27 7 0 89 100 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -27 7 4 0 0 0 0 0 0 0 0 0 -27 7 0 89 100 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -25 7 4 0 0 0 0 0 0 0 0 0 -25 7 0 79 100 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -25 7 4 0 0 0 0 0 0 0 0 0 -25 7 0 79 100 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -23 7 4 0 0 0 0 0 0 0 0 0 -23 7 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -23 7 4 0 0 0 0 0 0 0 0 0 -23 7 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -262,7 +262,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 6 8 0 0 0 0 0 0 0 0 0 0 6 8 0 -12 100 1 0 0 0 53 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 8 0 0 0 0 0 0 0 0 0 0 6 8 0 -12 100 1 0 0 0 53 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 8 0 0 0 0 0 0 0 0 0 0 8 8 0 -15 100 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 8 0 0 0 0 0 0 0 0 0 0 8 8 0 -15 100 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 10 8 24 3 127 0 0 0 0 0 0 0 12 8 1 10 100 1 24 0 0 100 87 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 10 8 24 3 127 0 0 0 0 0 0 0 12 8 1 10 100 1 24 0 0 100 87 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 12 8 13 92 102 0 0 0 0 0 0 0 12 8 1 32 100 1 13 17 0 52 7 0 2 1 0 0 0 0 900 858 0 0 522 310 183 0 0 230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 12 8 13 92 102 0 0 0 0 0 0 0 12 8 1 32 100 1 13 17 0 52 7 0 2 1 0 0 0 0 900 859 0 0 518 310 184 0 0 230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 14 8 0 0 0 0 0 0 0 0 0 0 14 8 0 -39 100 1 0 0 0 80 81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 14 8 0 0 0 0 0 0 0 0 0 0 14 8 0 -39 100 1 0 0 0 80 81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 16 8 0 0 0 0 0 0 0 0 0 0 16 8 0 -18 100 1 0 0 0 59 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 16 8 0 0 0 0 0 0 0 0 0 0 16 8 0 -18 100 1 0 0 0 59 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 18 8 5 78 127 0 0 0 0 0 0 0 12 8 30 36 100 1 5 23 1 43 0 0 2 50 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 18 8 5 78 127 0 0 0 0 0 0 0 12 8 30 36 100 1 5 23 1 43 0 0 2 50 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
|
@ -299,7 +299,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
2 17 9 29 100 127 0 0 0 0 0 0 0 12 8 2 43 100 1 29 34 0 28 0 0 2 385 0 0 0 0 0 300 128 0 0 0 0 0 0 385 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 17 9 29 100 127 0 0 0 0 0 0 0 12 8 2 43 100 1 29 34 0 28 0 0 2 385 0 0 0 0 0 300 128 0 0 0 0 0 0 385 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 19 9 23 92 127 0 0 0 0 0 0 0 12 8 0 71 100 1 23 78 1 0 0 45 2 300 0 0 0 0 0 1 0 0 0 300 0 0 0 300 0 0 0 0 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 19 9 23 92 127 0 0 0 0 0 0 0 12 8 0 71 100 1 23 78 1 0 0 45 2 300 0 0 0 0 0 1 0 0 0 300 0 0 0 300 0 0 0 0 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 21 9 18 100 127 0 0 0 0 0 0 0 12 8 1 68 100 1 18 74 2 0 0 37 2 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 21 9 18 100 127 0 0 0 0 0 0 0 12 8 1 68 100 1 18 74 2 0 0 37 2 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 23 9 11 100 127 0 0 0 0 0 0 0 12 8 0 46 100 1 11 39 3 21 0 0 2 769 0 0 0 0 999 1 0 0 0 0 0 0 0 769 0 0 0 0 999 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 23 9 11 100 127 0 0 0 0 0 0 0 12 8 2 46 100 1 11 39 4 21 0 0 2 769 0 0 0 0 999 1 0 0 0 0 0 0 0 769 0 0 0 0 999 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 25 9 0 0 0 0 0 0 0 0 0 0 25 9 0 -41 100 1 0 0 0 82 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 25 9 0 0 0 0 0 0 0 0 0 0 25 9 0 -41 100 1 0 0 0 82 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 27 9 0 0 0 0 0 0 0 0 0 0 27 9 0 -59 100 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 27 9 0 0 0 0 0 0 0 0 0 0 27 9 0 -59 100 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 29 9 0 0 0 0 0 0 0 0 0 0 29 9 0 -47 100 1 0 0 0 88 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 29 9 0 0 0 0 0 0 0 0 0 0 29 9 0 -47 100 1 0 0 0 88 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -318,7 +318,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -9 9 0 0 0 0 0 0 0 0 0 0 -9 9 0 -13 100 1 0 0 0 54 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -9 9 0 0 0 0 0 0 0 0 0 0 -9 9 0 -13 100 1 0 0 0 54 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -7 9 0 0 0 0 0 0 0 0 0 0 -7 9 0 -33 100 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -7 9 0 0 0 0 0 0 0 0 0 0 -7 9 0 -33 100 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -5 9 4 0 0 0 0 0 0 0 0 0 -5 9 0 53 100 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -5 9 4 0 0 0 0 0 0 0 0 0 -5 9 0 53 100 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
3 -3 9 11 100 127 0 0 0 0 0 0 0 -3 9 650 93 100 0 11 100 0 0 0 100 3 1000 0 0 0 0 0 365 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 3 0 0 0 0 0
|
3 -3 9 11 100 127 0 0 0 0 0 0 0 -3 9 650 93 100 0 11 100 0 0 0 100 3 1000 0 0 0 0 0 357 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 3 0 0 0 0 0
|
||||||
0 -1 9 4 0 0 0 0 0 0 0 0 0 -1 9 0 89 100 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -1 9 4 0 0 0 0 0 0 0 0 0 -1 9 0 89 100 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 0 10 4 0 0 0 0 0 0 0 0 0 0 10 0 79 100 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 0 10 4 0 0 0 0 0 0 0 0 0 0 10 0 79 100 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 2 10 4 0 0 0 0 0 0 0 0 0 2 10 0 46 100 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 2 10 4 0 0 0 0 0 0 0 0 0 2 10 0 46 100 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -547,12 +547,12 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 1 -15 18 100 127 0 0 0 0 0 0 0 11 -11 1 25 100 1 18 6 0 67 0 0 1 1000 0 0 0 0 999 0 0 0 1 0 1 0 0 0 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 1 -15 18 100 127 0 0 0 0 0 0 0 11 -11 1 25 100 1 18 6 0 67 0 0 1 1000 0 0 0 0 999 0 0 0 1 0 1 0 0 0 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 3 -15 17 100 127 0 0 0 0 0 0 0 11 -11 0 28 100 1 17 11 0 61 0 0 1 1000 0 0 0 0 999 0 0 0 1 1 0 0 0 0 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 3 -15 17 100 127 0 0 0 0 0 0 0 11 -11 0 28 100 1 17 11 0 61 0 0 1 1000 0 0 0 0 999 0 0 0 1 1 0 0 0 0 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 5 -15 5 100 127 0 0 0 0 0 0 0 11 -11 650 39 100 1 5 28 5 37 0 0 1 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 5 -15 5 100 127 0 0 0 0 0 0 0 11 -11 650 39 100 1 5 28 5 37 0 0 1 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 7 -15 30 100 127 0 0 0 0 0 0 0 11 -11 592 21 100 1 30 0 0 76 25 0 1 1000 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 7 -15 30 100 127 0 0 0 0 0 0 0 11 -11 593 21 100 1 30 0 0 76 24 0 1 1000 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 9 -15 20 100 127 0 0 0 0 0 0 0 11 -11 409 46 100 1 20 39 14 21 0 0 1 999 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 9 -15 20 100 127 0 0 0 0 0 0 0 11 -11 409 46 100 1 20 39 14 21 0 0 1 999 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 11 -15 23 100 127 0 0 0 0 0 0 0 11 -11 200 14 100 1 23 0 0 91 72 0 1 1000 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 11 -15 23 100 127 0 0 0 0 0 0 0 11 -11 200 14 100 1 23 0 0 91 72 0 1 1000 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 13 -15 0 0 0 0 0 0 0 0 0 0 13 -15 0 -1 100 1 0 0 0 42 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 13 -15 0 0 0 0 0 0 0 0 0 0 13 -15 0 -1 100 1 0 0 0 42 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 15 -15 0 0 0 0 0 0 0 0 0 0 15 -15 0 -4 100 1 0 0 0 45 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 15 -15 0 0 0 0 0 0 0 0 0 0 15 -15 0 -4 100 1 0 0 0 45 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 17 -15 19 100 127 0 0 0 0 0 0 0 26 -10 599 10 100 1 19 0 0 100 2 0 8 769 50 200 5 0 0 0 0 0 1 0 100 0 0 769 0 200 7 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 17 -15 19 100 127 0 0 0 0 0 0 0 26 -10 599 10 100 1 19 0 0 100 2 0 8 769 50 200 4 0 0 0 0 0 1 0 100 0 0 769 0 200 7 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 19 -15 16 100 127 0 0 0 0 0 0 0 26 -10 0 3 100 1 16 0 0 100 55 0 8 769 0 0 0 0 0 0 0 0 1 0 0 0 0 769 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 19 -15 16 100 127 0 0 0 0 0 0 0 26 -10 0 3 100 1 16 0 0 100 55 0 8 769 0 0 0 0 0 0 0 0 1 0 0 0 0 769 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 21 -15 0 0 0 0 0 0 0 0 0 0 21 -15 0 -46 100 1 0 0 0 87 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 21 -15 0 0 0 0 0 0 0 0 0 0 21 -15 0 -46 100 1 0 0 0 87 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 23 -15 18 100 127 0 0 0 0 0 0 0 26 -10 0 28 100 1 18 11 0 61 21 0 8 769 0 0 0 0 999 0 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 23 -15 18 100 127 0 0 0 0 0 0 0 26 -10 0 28 100 1 18 11 0 61 21 0 8 769 0 0 0 0 999 0 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
|
@ -584,7 +584,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 10 -14 12 100 127 0 0 0 0 0 0 0 11 -11 627 50 100 1 12 45 19 13 0 0 1 960 5 200 10 0 1 1 0 0 1 200 200 0 0 0 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 10 -14 12 100 127 0 0 0 0 0 0 0 11 -11 627 50 100 1 12 45 19 13 0 0 1 960 5 200 10 0 1 1 0 0 1 200 200 0 0 0 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 12 -14 28 100 127 0 0 0 0 0 0 0 11 -11 91 -4 100 1 28 0 0 45 11 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 12 -14 28 100 127 0 0 0 0 0 0 0 11 -11 91 -4 100 1 28 0 0 45 11 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 14 -14 28 100 127 0 0 0 0 0 0 0 11 -11 91 -22 100 1 28 0 0 63 46 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 14 -14 28 100 127 0 0 0 0 0 0 0 11 -11 91 -22 100 1 28 0 0 63 46 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 16 -14 25 100 127 0 0 0 0 0 0 0 11 -11 643 7 100 1 25 0 0 100 98 0 1 1000 19 20 0 20 0 0 0 0 0 0 0 1 0 0 0 20 0 20 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 16 -14 25 100 127 0 0 0 0 0 0 0 11 -11 646 7 100 1 25 0 0 100 98 0 1 1000 19 20 0 20 0 0 0 0 0 0 0 1 0 0 0 20 0 20 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 18 -14 16 100 127 0 0 0 0 0 0 0 26 -10 1 14 100 1 16 0 0 91 5 0 8 769 0 0 0 0 0 0 0 0 72 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 18 -14 16 100 127 0 0 0 0 0 0 0 26 -10 1 14 100 1 16 0 0 91 5 0 8 769 0 0 0 0 0 0 0 0 72 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 20 -14 4 100 127 0 0 0 0 0 0 0 26 -10 650 18 100 1 4 0 0 82 58 0 8 769 0 0 0 0 0 0 0 0 0 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 20 -14 4 100 127 0 0 0 0 0 0 0 26 -10 650 18 100 1 4 0 0 82 58 0 8 769 0 0 0 0 0 0 0 0 0 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 22 -14 26 100 127 0 0 0 0 0 0 0 26 -10 650 53 100 1 26 50 0 6 0 0 8 769 0 77 0 0 0 1 0 0 0 200 200 0 0 769 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 22 -14 26 100 127 0 0 0 0 0 0 0 26 -10 650 53 100 1 26 50 0 6 0 0 8 769 0 77 0 0 0 1 0 0 0 200 200 0 0 769 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
|
@ -644,7 +644,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 2 -12 0 0 0 0 0 0 0 0 0 0 2 -12 0 -38 100 1 0 0 0 79 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 2 -12 0 0 0 0 0 0 0 0 0 0 2 -12 0 -38 100 1 0 0 0 79 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 4 -12 18 100 127 0 0 0 0 0 0 0 11 -11 158 68 100 1 18 74 42 0 0 37 1 1000 0 0 0 0 451 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 4 -12 18 100 127 0 0 0 0 0 0 0 11 -11 158 68 100 1 18 74 42 0 0 37 1 1000 0 0 0 0 451 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 6 -12 10 100 127 0 96 0 0 0 0 0 11 -11 0 97 97 0 10 100 0 0 0 100 1 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 6 -12 10 100 127 0 96 0 0 0 0 0 11 -11 0 97 97 0 10 100 0 0 0 100 1 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 8 -12 10 100 127 0 0 0 0 0 0 0 11 -11 0 86 100 0 10 100 0 0 0 88 1 1000 0 0 0 0 0 0 0 0 0 0 0 562 0 0 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 8 -12 10 100 127 0 0 0 0 0 0 0 11 -11 0 86 100 0 10 100 1 0 0 88 1 1000 0 0 0 0 0 0 0 0 0 0 0 562 0 0 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 10 -12 17 100 127 0 0 0 0 0 0 0 11 -11 0 53 100 1 17 50 0 6 0 0 1 1000 0 0 0 0 1454 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 10 -12 17 100 127 0 0 0 0 0 0 0 11 -11 0 53 100 1 17 50 0 6 0 0 1 1000 0 0 0 0 1454 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 12 -12 8 100 127 0 0 0 0 0 0 0 11 -11 490 61 100 1 8 63 0 0 0 17 1 1000 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 12 -12 8 100 127 0 0 0 0 0 0 0 11 -11 490 61 100 1 8 63 0 0 0 17 1 1000 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 14 -12 0 0 0 0 0 0 0 0 0 0 14 -12 0 -8 100 1 0 0 0 49 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 14 -12 0 0 0 0 0 0 0 0 0 0 14 -12 0 -8 100 1 0 0 0 49 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -677,7 +677,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 5 -11 10 100 127 0 0 0 0 0 0 0 11 -11 0 93 100 0 10 100 0 0 0 100 1 1000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 5 -11 10 100 127 0 0 0 0 0 0 0 11 -11 0 93 100 0 10 100 0 0 0 100 1 1000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 7 -11 14 100 127 0 0 0 0 0 0 0 11 -11 657 79 100 1 14 91 0 0 0 68 1 1000 30 180 0 200 1 0 0 0 0 200 200 0 0 0 30 180 0 200 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 7 -11 14 100 127 0 0 0 0 0 0 0 11 -11 657 79 100 1 14 91 0 0 0 68 1 1000 30 180 0 200 1 0 0 0 0 200 200 0 0 0 30 180 0 200 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 9 -11 21 100 127 0 0 0 0 0 0 0 11 -11 490 75 100 1 21 85 0 0 0 57 1 1000 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 9 -11 21 100 127 0 0 0 0 0 0 0 11 -11 490 75 100 1 21 85 0 0 0 57 1 1000 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 11 -11 13 100 127 0 0 0 0 0 0 0 11 -11 668 71 100 1 13 78 1 0 0 45 1 1000 108 181 0 1234 4267 474 0 0 705 2217 4413 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 11 -11 13 100 127 0 0 0 0 0 0 0 11 -11 668 71 100 1 13 78 0 0 0 45 1 1000 108 182 0 1226 4267 479 0 0 711 2218 4412 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 13 -11 31 100 127 0 0 0 0 0 0 0 11 -11 650 64 100 1 31 67 0 0 0 25 1 967 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 13 -11 31 100 127 0 0 0 0 0 0 0 11 -11 650 64 100 1 31 67 0 0 0 25 1 967 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 15 -11 26 100 127 0 0 0 0 0 0 0 11 -11 656 57 100 1 26 56 0 0 0 5 1 1000 25 200 21 0 0 0 0 0 0 200 200 0 0 0 25 200 25 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 15 -11 26 100 127 0 0 0 0 0 0 0 11 -11 656 57 100 1 26 56 0 0 0 5 1 1000 25 200 21 0 0 0 0 0 0 200 200 0 0 0 25 200 25 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 17 -11 0 0 0 0 0 0 0 0 0 0 17 -11 0 -9 100 1 0 0 0 50 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 17 -11 0 0 0 0 0 0 0 0 0 0 17 -11 0 -9 100 1 0 0 0 50 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -698,7 +698,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -17 -11 4 0 0 0 0 0 0 0 0 0 -17 -11 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -17 -11 4 0 0 0 0 0 0 0 0 0 -17 -11 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -15 -11 4 0 0 0 0 0 0 0 0 0 -15 -11 0 82 100 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -15 -11 4 0 0 0 0 0 0 0 0 0 -15 -11 0 82 100 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -13 -11 4 0 0 0 0 0 0 0 0 0 -13 -11 0 86 100 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -13 -11 4 0 0 0 0 0 0 0 0 0 -13 -11 0 86 100 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
10 -11 -11 11 100 127 0 0 0 0 0 0 0 -11 -11 650 71 100 1 11 78 0 0 0 45 10 1000 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 10 0 0 0 0 0
|
10 -11 -11 11 100 127 0 0 0 0 0 0 0 -11 -11 650 71 100 1 11 78 0 0 0 45 10 1000 0 0 0 0 0 220 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 10 0 0 0 0 0
|
||||||
0 -9 -11 0 0 0 0 0 0 0 0 0 0 -9 -11 0 -46 100 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -9 -11 0 0 0 0 0 0 0 0 0 0 -9 -11 0 -46 100 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -7 -11 0 0 0 0 0 0 0 0 0 0 -7 -11 0 -24 100 1 0 0 0 65 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -7 -11 0 0 0 0 0 0 0 0 0 0 -7 -11 0 -24 100 1 0 0 0 65 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -5 -11 4 0 0 0 0 0 0 0 0 0 -5 -11 0 13 100 1 4 0 0 93 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -5 -11 4 0 0 0 0 0 0 0 0 0 -5 -11 0 13 100 1 4 0 0 93 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -717,7 +717,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
8 20 -10 17 100 127 0 0 0 0 0 0 0 26 -10 0 71 100 1 17 78 0 0 0 45 8 769 0 0 0 0 999 1 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 20 -10 17 100 127 0 0 0 0 0 0 0 26 -10 0 71 100 1 17 78 0 0 0 45 8 769 0 0 0 0 999 1 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 22 -10 17 100 127 0 0 0 0 0 0 0 26 -10 0 25 100 1 17 6 0 67 32 0 8 769 0 0 0 0 999 0 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 22 -10 17 100 127 0 0 0 0 0 0 0 26 -10 0 25 100 1 17 6 0 67 32 0 8 769 0 0 0 0 999 0 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 24 -10 18 100 127 0 0 0 0 0 0 0 26 -10 0 64 100 1 18 67 0 0 0 25 8 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 24 -10 18 100 127 0 0 0 0 0 0 0 26 -10 0 64 100 1 18 67 0 0 0 25 8 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 26 -10 13 100 127 0 0 0 0 0 0 0 26 -10 650 32 100 1 13 17 0 52 7 0 8 7342 0 0 0 0 5750 1786 0 0 619 856 358 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 26 -10 13 100 127 0 0 0 0 0 0 0 26 -10 650 32 100 1 13 17 0 52 7 0 8 7342 0 0 0 0 5750 1792 0 0 622 855 358 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 28 -10 0 0 0 0 0 0 0 0 0 0 28 -10 0 -10 100 1 0 0 0 51 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 28 -10 0 0 0 0 0 0 0 0 0 0 28 -10 0 -10 100 1 0 0 0 51 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 30 -10 0 0 0 0 0 0 0 0 0 0 30 -10 0 -42 100 1 0 0 0 83 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 30 -10 0 0 0 0 0 0 0 0 0 0 30 -10 0 -42 100 1 0 0 0 83 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -32 -10 0 0 0 0 0 0 0 0 0 0 -32 -10 0 -37 100 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -32 -10 0 0 0 0 0 0 0 0 0 0 -32 -10 0 -37 100 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -819,7 +819,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -31 -7 0 0 0 0 0 0 0 0 0 0 -31 -7 0 -46 100 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -31 -7 0 0 0 0 0 0 0 0 0 0 -31 -7 0 -46 100 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -29 -7 0 0 0 0 0 0 0 0 0 0 -29 -7 0 -15 100 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -29 -7 0 0 0 0 0 0 0 0 0 0 -29 -7 0 -15 100 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -27 -7 4 0 0 0 0 0 0 0 0 0 -27 -7 0 64 100 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -27 -7 4 0 0 0 0 0 0 0 0 0 -27 -7 0 64 100 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
9 -25 -7 11 100 127 0 0 0 0 0 0 0 -25 -7 650 39 100 1 11 28 0 37 0 0 9 1000 0 0 0 0 0 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 9 0 0 0 0 0
|
9 -25 -7 11 100 127 0 0 0 0 0 0 0 -25 -7 650 39 100 1 11 28 0 37 0 0 9 1000 0 0 0 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 9 0 0 0 0 0
|
||||||
0 -23 -7 4 0 0 0 0 0 0 0 0 0 -23 -7 0 21 100 1 4 0 0 76 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -23 -7 4 0 0 0 0 0 0 0 0 0 -23 -7 0 21 100 1 4 0 0 76 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -21 -7 4 0 0 0 0 0 0 0 0 0 -21 -7 0 18 100 1 4 0 0 82 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -21 -7 4 0 0 0 0 0 0 0 0 0 -21 -7 0 18 100 1 4 0 0 82 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -19 -7 0 0 0 0 0 0 0 0 0 0 -19 -7 0 -36 100 1 0 0 0 77 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -19 -7 0 0 0 0 0 0 0 0 0 0 -19 -7 0 -36 100 1 0 0 0 77 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -929,7 +929,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -4 -4 0 0 0 0 0 0 0 0 0 0 -4 -4 0 -5 100 1 0 0 0 46 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -4 -4 0 0 0 0 0 0 0 0 0 0 -4 -4 0 -5 100 1 0 0 0 46 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -2 -4 0 0 0 0 0 0 0 0 0 0 -2 -4 0 -34 100 1 0 0 0 75 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -2 -4 0 0 0 0 0 0 0 0 0 0 -2 -4 0 -34 100 1 0 0 0 75 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 1 -3 4 0 0 0 0 0 0 0 0 0 1 -3 0 82 100 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 1 -3 4 0 0 0 0 0 0 0 0 0 1 -3 0 82 100 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 3 -3 11 100 127 0 0 0 0 0 0 0 3 -3 650 97 100 0 11 100 0 0 0 100 6 1000 0 0 0 0 0 408 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 6 0 0 0 0 0
|
6 3 -3 11 100 127 0 0 0 0 0 0 0 3 -3 650 97 100 0 11 100 0 0 0 100 6 1000 0 0 0 0 0 405 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 6 0 0 0 0 0
|
||||||
0 5 -3 4 0 0 0 0 0 0 0 0 0 5 -3 0 89 100 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 5 -3 4 0 0 0 0 0 0 0 0 0 5 -3 0 89 100 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 7 -3 4 0 0 0 0 0 0 0 0 0 7 -3 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 -3 4 0 0 0 0 0 0 0 0 0 7 -3 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 9 -3 0 0 0 0 0 0 0 0 0 0 9 -3 0 -42 100 1 0 0 0 83 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 9 -3 0 0 0 0 0 0 0 0 0 0 9 -3 0 -42 100 1 0 0 0 83 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -1004,7 +1004,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 19 -1 4 0 0 0 0 0 0 0 0 0 19 -1 0 61 100 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 19 -1 4 0 0 0 0 0 0 0 0 0 19 -1 0 61 100 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 21 -1 4 0 0 0 0 0 0 0 0 0 21 -1 0 64 100 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 21 -1 4 0 0 0 0 0 0 0 0 0 21 -1 0 64 100 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 23 -1 4 0 0 0 0 0 0 0 0 0 23 -1 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 23 -1 4 0 0 0 0 0 0 0 0 0 23 -1 0 32 100 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 25 -1 11 100 127 0 0 0 0 0 0 0 25 -1 650 89 100 0 11 100 0 0 0 97 7 1000 0 0 0 0 0 357 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 7 0 0 0 0 0
|
7 25 -1 11 100 127 0 0 0 0 0 0 0 25 -1 650 89 100 0 11 100 0 0 0 97 7 1000 0 0 0 0 0 358 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 7 0 0 0 0 0
|
||||||
0 27 -1 4 0 0 0 0 0 0 0 0 0 27 -1 0 53 100 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 27 -1 4 0 0 0 0 0 0 0 0 0 27 -1 0 53 100 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 29 -1 0 0 0 0 0 0 0 0 0 0 29 -1 0 -15 100 1 0 0 0 56 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 29 -1 0 0 0 0 0 0 0 0 0 0 29 -1 0 -15 100 1 0 0 0 56 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 31 -1 0 0 0 0 0 0 0 0 0 0 31 -1 0 -45 100 1 0 0 0 86 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 31 -1 0 0 0 0 0 0 0 0 0 0 31 -1 0 -45 100 1 0 0 0 86 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -1030,15 +1030,15 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet civil
|
||||||
0 1 18 -12 6 100 127 0 0 0 0 none 0 "" 0 25 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
0 1 18 -12 6 100 127 0 0 0 0 none 0 "" 0 25 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
||||||
1 1 10 -14 2 100 127 0 31 0 0 none 0 "" 300 25 0 0 0 0 0 0 0 0 100 100 0 0 healthy 0 0 "" 10 -14 1 () ""
|
1 1 10 -14 2 100 127 0 31 0 0 none 0 "" 300 25 0 0 0 0 0 0 0 0 100 100 0 0 healthy 0 0 "" 10 -14 1 () ""
|
||||||
2 1 10 -14 15 100 127 0 44 0 0 none 0 "" 30 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
2 1 10 -14 15 100 127 0 44 0 0 none 0 "" 30 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
||||||
3 1 11 -13 8 100 127 0 51 0 0 none 0 "" 990 0 0 0 0 0 0 0 0 449 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
3 1 11 -13 8 100 127 0 51 0 0 none 0 "" 990 0 0 0 0 0 0 0 0 450 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
||||||
4 1 11 -13 1 100 127 0 51 0 0 none 0 "" 300 0 0 0 0 0 0 0 900 0 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
4 1 11 -13 1 100 127 0 51 0 0 none 0 "" 300 0 0 0 0 0 0 0 900 0 0 0 0 0 healthy 0 0 "" 10 -14 1 () ""
|
||||||
49 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 0 0 0 () ""
|
49 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 0 0 0 () ""
|
||||||
/config
|
/config
|
||||||
config plane
|
config plane
|
||||||
uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range harden ship land flags access theta
|
uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range harden ship land flags access theta
|
||||||
0 1 16 -14 0 89 90 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
0 1 16 -14 0 90 90 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
||||||
1 1 16 -14 0 90 90 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
1 1 16 -14 0 91 91 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
||||||
2 1 16 -14 0 95 103 0 51 16 -14 offensive\040support 2 "" 4 0 -1 -1 () 0 0.00000
|
2 1 16 -14 0 96 103 0 51 16 -14 offensive\040support 2 "" 4 0 -1 -1 () 0 0.00000
|
||||||
49 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
49 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
/config
|
/config
|
||||||
config land
|
config land
|
||||||
|
@ -1048,7 +1048,7 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius army ship h
|
||||||
2 0 10 -14 0 0 4 0 31 0 0 none 0 "" -1 0 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
2 0 10 -14 0 0 4 0 31 0 0 none 0 "" -1 0 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
3 1 10 -14 0 100 127 0 31 0 0 none 0 "" -1 117 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
3 1 10 -14 0 100 127 0 31 0 0 none 0 "" -1 117 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
4 1 16 -14 0 73 127 0 31 0 0 none 0 "" -1 30 42 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
4 1 16 -14 0 73 127 0 31 0 0 none 0 "" -1 30 42 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
5 1 16 -14 11 97 118 0 38 0 0 none 0 "" -1 0 42 () "" 0 5 35 10 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
5 1 16 -14 11 98 119 0 38 0 0 none 0 "" -1 0 42 () "" 0 5 36 10 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
49 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
49 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
/config
|
/config
|
||||||
config nuke
|
config nuke
|
||||||
|
@ -1088,16 +1088,16 @@ uid owner type unitid price maxbidder markettime xloc yloc
|
||||||
config nat
|
config nat
|
||||||
cnum stat flags cname passwd ip hostname userid xcap ycap xorg yorg update tgms ann timeused btu access milreserve money login logout newstim annotim tech research education happiness relations(0) relations(1) relations(2) relations(3) relations(4) relations(5) relations(6) relations(7) relations(8) relations(9) relations(10) relations(11) relations(12) relations(13) relations(14) relations(15) relations(16) relations(17) relations(18) relations(19) relations(20) relations(21) relations(22) relations(23) relations(24) relations(25) relations(26) relations(27) relations(28) relations(29) relations(30) relations(31) relations(32) relations(33) relations(34) relations(35) relations(36) relations(37) relations(38) relations(39) relations(40) relations(41) relations(42) relations(43) relations(44) relations(45) relations(46) relations(47) relations(48) relations(49) relations(50) relations(51) relations(52) relations(53) relations(54) relations(55) relations(56) relations(57) relations(58) relations(59) relations(60) relations(61) relations(62) relations(63) relations(64) relations(65) relations(66) relations(67) relations(68) relations(69) relations(70) relations(71) relations(72) relations(73) relations(74) relations(75) relations(76) relations(77) relations(78) relations(79) relations(80) relations(81) relations(82) relations(83) relations(84) relations(85) relations(86) relations(87) relations(88) relations(89) relations(90) relations(91) relations(92) relations(93) relations(94) relations(95) relations(96) relations(97) relations(98) contacts(0) contacts(1) contacts(2) contacts(3) contacts(4) contacts(5) contacts(6) contacts(7) contacts(8) contacts(9) contacts(10) contacts(11) contacts(12) contacts(13) contacts(14) contacts(15) contacts(16) contacts(17) contacts(18) contacts(19) contacts(20) contacts(21) contacts(22) contacts(23) contacts(24) contacts(25) contacts(26) contacts(27) contacts(28) contacts(29) contacts(30) contacts(31) contacts(32) contacts(33) contacts(34) contacts(35) contacts(36) contacts(37) contacts(38) contacts(39) contacts(40) contacts(41) contacts(42) contacts(43) contacts(44) contacts(45) contacts(46) contacts(47) contacts(48) contacts(49) contacts(50) contacts(51) contacts(52) contacts(53) contacts(54) contacts(55) contacts(56) contacts(57) contacts(58) contacts(59) contacts(60) contacts(61) contacts(62) contacts(63) contacts(64) contacts(65) contacts(66) contacts(67) contacts(68) contacts(69) contacts(70) contacts(71) contacts(72) contacts(73) contacts(74) contacts(75) contacts(76) contacts(77) contacts(78) contacts(79) contacts(80) contacts(81) contacts(82) contacts(83) contacts(84) contacts(85) contacts(86) contacts(87) contacts(88) contacts(89) contacts(90) contacts(91) contacts(92) contacts(93) contacts(94) contacts(95) contacts(96) contacts(97) contacts(98) rejects(0) rejects(1) rejects(2) rejects(3) rejects(4) rejects(5) rejects(6) rejects(7) rejects(8) rejects(9) rejects(10) rejects(11) rejects(12) rejects(13) rejects(14) rejects(15) rejects(16) rejects(17) rejects(18) rejects(19) rejects(20) rejects(21) rejects(22) rejects(23) rejects(24) rejects(25) rejects(26) rejects(27) rejects(28) rejects(29) rejects(30) rejects(31) rejects(32) rejects(33) rejects(34) rejects(35) rejects(36) rejects(37) rejects(38) rejects(39) rejects(40) rejects(41) rejects(42) rejects(43) rejects(44) rejects(45) rejects(46) rejects(47) rejects(48) rejects(49) rejects(50) rejects(51) rejects(52) rejects(53) rejects(54) rejects(55) rejects(56) rejects(57) rejects(58) rejects(59) rejects(60) rejects(61) rejects(62) rejects(63) rejects(64) rejects(65) rejects(66) rejects(67) rejects(68) rejects(69) rejects(70) rejects(71) rejects(72) rejects(73) rejects(74) rejects(75) rejects(76) rejects(77) rejects(78) rejects(79) rejects(80) rejects(81) rejects(82) rejects(83) rejects(84) rejects(85) rejects(86) rejects(87) rejects(88) rejects(89) rejects(90) rejects(91) rejects(92) rejects(93) rejects(94) rejects(95) rejects(96) rejects(97) rejects(98)
|
cnum stat flags cname passwd ip hostname userid xcap ycap xorg yorg update tgms ann timeused btu access milreserve money login logout newstim annotim tech research education happiness relations(0) relations(1) relations(2) relations(3) relations(4) relations(5) relations(6) relations(7) relations(8) relations(9) relations(10) relations(11) relations(12) relations(13) relations(14) relations(15) relations(16) relations(17) relations(18) relations(19) relations(20) relations(21) relations(22) relations(23) relations(24) relations(25) relations(26) relations(27) relations(28) relations(29) relations(30) relations(31) relations(32) relations(33) relations(34) relations(35) relations(36) relations(37) relations(38) relations(39) relations(40) relations(41) relations(42) relations(43) relations(44) relations(45) relations(46) relations(47) relations(48) relations(49) relations(50) relations(51) relations(52) relations(53) relations(54) relations(55) relations(56) relations(57) relations(58) relations(59) relations(60) relations(61) relations(62) relations(63) relations(64) relations(65) relations(66) relations(67) relations(68) relations(69) relations(70) relations(71) relations(72) relations(73) relations(74) relations(75) relations(76) relations(77) relations(78) relations(79) relations(80) relations(81) relations(82) relations(83) relations(84) relations(85) relations(86) relations(87) relations(88) relations(89) relations(90) relations(91) relations(92) relations(93) relations(94) relations(95) relations(96) relations(97) relations(98) contacts(0) contacts(1) contacts(2) contacts(3) contacts(4) contacts(5) contacts(6) contacts(7) contacts(8) contacts(9) contacts(10) contacts(11) contacts(12) contacts(13) contacts(14) contacts(15) contacts(16) contacts(17) contacts(18) contacts(19) contacts(20) contacts(21) contacts(22) contacts(23) contacts(24) contacts(25) contacts(26) contacts(27) contacts(28) contacts(29) contacts(30) contacts(31) contacts(32) contacts(33) contacts(34) contacts(35) contacts(36) contacts(37) contacts(38) contacts(39) contacts(40) contacts(41) contacts(42) contacts(43) contacts(44) contacts(45) contacts(46) contacts(47) contacts(48) contacts(49) contacts(50) contacts(51) contacts(52) contacts(53) contacts(54) contacts(55) contacts(56) contacts(57) contacts(58) contacts(59) contacts(60) contacts(61) contacts(62) contacts(63) contacts(64) contacts(65) contacts(66) contacts(67) contacts(68) contacts(69) contacts(70) contacts(71) contacts(72) contacts(73) contacts(74) contacts(75) contacts(76) contacts(77) contacts(78) contacts(79) contacts(80) contacts(81) contacts(82) contacts(83) contacts(84) contacts(85) contacts(86) contacts(87) contacts(88) contacts(89) contacts(90) contacts(91) contacts(92) contacts(93) contacts(94) contacts(95) contacts(96) contacts(97) contacts(98) rejects(0) rejects(1) rejects(2) rejects(3) rejects(4) rejects(5) rejects(6) rejects(7) rejects(8) rejects(9) rejects(10) rejects(11) rejects(12) rejects(13) rejects(14) rejects(15) rejects(16) rejects(17) rejects(18) rejects(19) rejects(20) rejects(21) rejects(22) rejects(23) rejects(24) rejects(25) rejects(26) rejects(27) rejects(28) rejects(29) rejects(30) rejects(31) rejects(32) rejects(33) rejects(34) rejects(35) rejects(36) rejects(37) rejects(38) rejects(39) rejects(40) rejects(41) rejects(42) rejects(43) rejects(44) rejects(45) rejects(46) rejects(47) rejects(48) rejects(49) rejects(50) rejects(51) rejects(52) rejects(53) rejects(54) rejects(55) rejects(56) rejects(57) rejects(58) rejects(59) rejects(60) rejects(61) rejects(62) rejects(63) rejects(64) rejects(65) rejects(66) rejects(67) rejects(68) rejects(69) rejects(70) rejects(71) rejects(72) rejects(73) rejects(74) rejects(75) rejects(76) rejects(77) rejects(78) rejects(79) rejects(80) rejects(81) rejects(82) rejects(83) rejects(84) rejects(85) rejects(86) rejects(87) rejects(88) rejects(89) rejects(90) rejects(91) rejects(92) rejects(93) rejects(94) rejects(95) rejects(96) rejects(97) rejects(98)
|
||||||
0 deity (flash beep coastwatch sonar techlists) "POGO" "peter" "127.0.0.1" "" "tester" 0 0 0 0 0 0 0 255 640 0 0 123456789 0 0 0 0 0.00000 0.00000 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
0 deity (flash beep coastwatch sonar techlists) "POGO" "peter" "127.0.0.1" "" "tester" 0 0 0 0 0 0 0 255 640 0 0 123456789 0 0 0 0 0.00000 0.00000 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
1 active (flash beep coastwatch sonar techlists) "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 0 0 255 640 0 28 59106 0 0 0 0 65.6014 21.7134 38.6907 12.0115 neutral neutral allied neutral neutral neutral neutral neutral at-war neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
1 active (flash beep coastwatch sonar techlists) "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 0 0 255 640 0 31 59180 0 0 0 0 65.6014 21.7134 38.6834 12.0073 neutral neutral allied neutral neutral neutral neutral neutral at-war neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
2 active (flash beep coastwatch sonar techlists) "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 98 37785 0 0 0 0 27.2975 10.8567 11.7679 0.00000 neutral allied neutral neutral neutral neutral neutral neutral hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
2 active (flash beep coastwatch sonar techlists) "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 98 37768 0 0 0 0 27.2975 10.8567 11.7679 0.00000 neutral allied neutral neutral neutral neutral neutral neutral hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
3 active (flash beep coastwatch sonar techlists) "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38175 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
3 active (flash beep coastwatch sonar techlists) "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38145 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
4 active (flash beep coastwatch sonar techlists) "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38170 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
4 active (flash beep coastwatch sonar techlists) "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38131 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
5 active (flash beep coastwatch sonar techlists) "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38149 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
5 active (flash beep coastwatch sonar techlists) "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38118 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
6 active (flash beep coastwatch sonar techlists) "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38155 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
6 active (flash beep coastwatch sonar techlists) "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38130 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
7 active (flash beep coastwatch sonar techlists) "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38164 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
7 active (flash beep coastwatch sonar techlists) "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38131 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
8 active (flash beep coastwatch sonar techlists) "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 27681 0 0 0 0 52.0706 10.8567 40.5195 6.99195 neutral at-war hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
8 active (flash beep coastwatch sonar techlists) "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 27702 0 0 0 0 52.0706 10.8567 40.5195 6.99195 neutral at-war hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
9 active (flash beep coastwatch sonar techlists) "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38157 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
9 active (flash beep coastwatch sonar techlists) "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38128 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
10 active (flash beep coastwatch sonar techlists) "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38157 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
10 active (flash beep coastwatch sonar techlists) "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38118 0 0 0 0 27.2975 10.8567 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
11 visitor (flash beep coastwatch sonar techlists) "visitor" "visitor" "" "" "" 0 0 0 0 0 0 0 255 640 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
11 visitor (flash beep coastwatch sonar techlists) "visitor" "visitor" "" "" "" 0 0 0 0 0 0 0 255 640 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
/config
|
/config
|
||||||
config loan
|
config loan
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,4 @@
|
||||||
budget
|
budget
|
||||||
| BUG: military payroll slightly low
|
|
||||||
| TODO is it accurate?
|
| TODO is it accurate?
|
||||||
production *
|
production *
|
||||||
| Note: ignores going broke
|
| Note: ignores going broke
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
config sect
|
config sect
|
||||||
owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist ydist avail elev work coastal newdes min gold fert ocontent uran oldown civil milit shell gun petrol iron dust bar food oil lcm hcm uw rad c_dist m_dist s_dist g_dist p_dist i_dist d_dist b_dist f_dist o_dist l_dist h_dist u_dist r_dist c_del m_del s_del g_del p_del i_del d_del b_del f_del o_del l_del h_del u_del r_del mines pstage ptime che che_target fallout access road rail dfense
|
owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist ydist avail elev work coastal newdes min gold fert ocontent uran oldown civil milit shell gun petrol iron dust bar food oil lcm hcm uw rad c_dist m_dist s_dist g_dist p_dist i_dist d_dist b_dist f_dist o_dist l_dist h_dist u_dist r_dist c_del m_del s_del g_del p_del i_del d_del b_del f_del o_del l_del h_del u_del r_del mines pstage ptime che che_target fallout access road rail dfense
|
||||||
1 0 0 5 100 120 0 0 0 0 0 0 0 0 0 282 0 100 0 5 0 0 0 0 0 1 650 2 0 0 0 0 0 0 84 0 7 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 0 0 5 100 120 0 0 0 0 0 0 0 0 0 282 0 100 0 5 0 0 0 0 0 1 650 2 0 0 0 0 0 0 84 0 6 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 2 0 24 100 120 0 0 0 0 0 0 0 2 0 940 0 100 0 24 0 0 0 0 0 1 783 0 0 0 0 0 0 0 0 0 0 0 783 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 2 0 24 100 120 0 0 0 0 0 0 0 2 0 940 0 100 0 24 0 0 0 0 0 1 783 0 0 0 0 0 0 0 0 0 0 0 783 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 4 0 24 100 120 0 0 0 0 0 0 0 4 0 1002 0 100 0 24 0 0 0 0 0 1 866 0 0 0 0 0 0 0 0 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 4 0 24 100 120 0 0 0 0 0 0 0 4 0 1002 0 100 0 24 0 0 0 0 0 1 866 0 0 0 0 0 0 0 0 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 6 0 24 100 120 0 0 0 0 0 0 0 6 0 1029 0 100 0 24 0 0 0 0 0 1 910 0 0 0 0 0 0 0 1 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 6 0 24 100 120 0 0 0 0 0 0 0 6 0 1029 0 100 0 24 0 0 0 0 0 1 910 0 0 0 0 0 0 0 1 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -72,12 +72,12 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 10 4 16 100 120 0 0 0 0 0 0 0 10 4 0 0 100 0 16 0 0 0 92 0 1 130 0 0 0 0 0 0 0 96 72 20 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 10 4 16 100 120 0 0 0 0 0 0 0 10 4 0 0 100 0 16 0 0 0 92 0 1 130 0 0 0 0 0 0 0 96 72 20 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 12 4 4 39 120 0 0 0 0 0 0 0 12 4 39 0 100 0 4 0 0 0 0 0 1 130 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 12 4 4 39 120 0 0 0 0 0 0 0 12 4 39 0 100 0 4 0 0 0 0 0 1 130 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 14 4 4 39 120 0 0 0 0 0 0 0 14 4 39 0 100 1 4 0 0 0 0 0 1 130 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 14 4 4 39 120 0 0 0 0 0 0 0 14 4 39 0 100 1 4 0 0 0 0 0 1 130 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 16 4 0 0 0 0 0 0 0 0 0 0 16 4 0 0 100 1 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 16 4 0 0 0 0 0 0 0 0 0 0 16 4 0 0 100 1 0 0 0 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 18 4 0 0 0 0 0 0 0 0 0 0 18 4 0 0 100 1 0 0 0 100 90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 18 4 0 0 0 0 0 0 0 0 0 0 18 4 0 0 100 1 0 0 0 100 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 20 4 0 0 0 0 0 0 0 0 0 0 20 4 0 0 100 1 0 0 0 100 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 20 4 0 0 0 0 0 0 0 0 0 0 20 4 0 0 100 1 0 0 0 100 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -16 4 10 100 120 0 0 0 0 0 0 0 -16 4 9 0 100 1 10 10 0 0 0 0 1 130 1 0 0 0 7 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -16 4 10 100 120 0 0 0 0 0 0 0 -16 4 9 0 100 1 10 10 0 0 0 0 1 130 1 0 0 0 7 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -14 4 10 100 120 0 0 0 0 0 0 0 -14 4 0 0 100 0 10 100 0 0 0 0 1 130 1 0 0 0 78 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -14 4 10 100 120 0 0 0 0 0 0 0 -14 4 0 0 100 0 10 100 0 0 0 0 1 130 1 0 0 0 78 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -12 4 10 69 120 0 0 0 0 0 0 0 -12 4 1 0 100 0 10 100 0 0 0 0 1 130 1 0 0 0 26 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -12 4 10 69 120 0 0 0 0 0 0 0 -12 4 2 0 100 0 10 100 0 0 0 0 1 130 1 0 0 0 26 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -10 4 4 39 120 0 0 0 0 0 0 0 -10 4 39 0 100 0 4 0 0 0 0 0 1 130 1 0 0 0 0 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -10 4 4 39 120 0 0 0 0 0 0 0 -10 4 39 0 100 0 4 0 0 0 0 0 1 130 1 0 0 0 0 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -8 4 11 100 120 0 0 0 0 0 0 0 -8 4 9 0 100 0 11 0 9 0 0 0 1 130 1 0 0 0 0 7 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -8 4 11 100 120 0 0 0 0 0 0 0 -8 4 9 0 100 0 11 0 9 0 0 0 1 130 1 0 0 0 0 7 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -6 4 11 100 120 0 0 0 0 0 0 0 -6 4 0 0 100 0 11 0 84 0 0 0 1 130 1 0 0 0 0 79 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -6 4 11 100 120 0 0 0 0 0 0 0 -6 4 0 0 100 0 11 0 84 0 0 0 1 130 1 0 0 0 0 79 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -103,7 +103,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 2 6 18 100 120 0 0 0 0 0 0 0 2 6 290 0 100 0 18 0 0 0 0 0 1 650 0 0 0 0 0 0 0 84 0 0 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 2 6 18 100 120 0 0 0 0 0 0 0 2 6 290 0 100 0 18 0 0 0 0 0 1 650 0 0 0 0 0 0 0 84 0 0 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 4 6 18 100 120 0 0 0 0 0 0 0 4 6 36 0 100 0 18 0 0 0 0 0 1 130 0 0 0 0 58 0 0 97 0 0 9999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 4 6 18 100 120 0 0 0 0 0 0 0 4 6 36 0 100 0 18 0 0 0 0 0 1 130 0 0 0 0 58 0 0 97 0 0 9999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 6 6 4 39 120 0 0 0 0 0 0 0 6 6 39 0 100 0 4 0 0 0 0 0 1 130 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 6 6 4 39 120 0 0 0 0 0 0 0 6 6 39 0 100 0 4 0 0 0 0 0 1 130 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 8 6 19 100 120 0 0 0 0 0 0 0 8 6 564 0 100 0 19 0 0 0 0 0 1 1000 0 0 0 0 0 0 0 70 0 5 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 8 6 19 100 120 0 0 0 0 0 0 0 8 6 564 0 100 0 19 0 0 0 0 0 1 1000 0 0 0 0 0 0 0 70 0 5 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 10 6 26 100 120 0 0 0 0 0 0 0 10 6 544 0 100 0 26 0 0 0 0 0 1 1000 0 0 0 0 0 0 0 70 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 10 6 26 100 120 0 0 0 0 0 0 0 10 6 544 0 100 0 26 0 0 0 0 0 1 1000 0 0 0 0 0 0 0 70 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 12 6 14 100 120 0 0 0 0 0 0 0 12 6 571 0 100 0 14 0 0 0 0 0 1 1000 8 0 0 0 0 0 0 70 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 12 6 14 100 120 0 0 0 0 0 0 0 12 6 571 0 100 0 14 0 0 0 0 0 1 1000 8 0 0 0 0 0 0 70 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 14 6 12 100 120 0 0 0 0 0 0 0 14 6 440 0 100 1 12 0 0 0 0 0 1 1000 0 0 0 0 0 0 0 70 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 14 6 12 100 120 0 0 0 0 0 0 0 14 6 440 0 100 1 12 0 0 0 0 0 1 1000 0 0 0 0 0 0 0 70 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -134,14 +134,14 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
6 0 8 5 100 120 0 0 0 0 0 0 0 0 8 395 0 100 1 5 0 0 0 0 0 6 650 20 0 0 0 0 0 0 84 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 0 8 5 100 120 0 0 0 0 0 0 0 0 8 395 0 100 1 5 0 0 0 0 0 6 650 20 0 0 0 0 0 0 84 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 2 8 4 100 120 0 0 0 0 0 0 0 2 8 295 0 100 1 4 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 2 8 4 100 120 0 0 0 0 0 0 0 2 8 295 0 100 1 4 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 4 8 19 100 120 0 0 0 0 0 0 0 4 8 444 0 100 1 19 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 391 396 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 4 8 19 100 120 0 0 0 0 0 0 0 4 8 444 0 100 1 19 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 391 396 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 6 8 14 100 120 0 0 0 0 0 0 0 6 8 444 0 100 1 14 0 0 0 0 0 6 650 18 0 0 0 0 0 0 84 0 386 396 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 6 8 14 100 120 0 0 0 0 0 0 0 6 8 444 0 100 1 14 0 0 0 0 0 6 650 19 0 0 0 0 0 0 84 0 385 396 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 8 8 12 100 120 0 0 0 0 0 0 0 8 8 445 0 100 1 12 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 8 8 12 100 120 0 0 0 0 0 0 0 8 8 445 0 100 1 12 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 10 8 26 100 120 0 0 0 0 0 0 0 10 8 394 0 100 1 26 0 0 0 0 0 6 650 20 0 0 0 0 0 0 84 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 10 8 26 100 120 0 0 0 0 0 0 0 10 8 394 0 100 1 26 0 0 0 0 0 6 650 20 0 0 0 0 0 0 84 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 12 8 14 100 120 0 0 0 0 0 0 0 12 8 395 0 100 1 14 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 12 8 14 100 120 0 0 0 0 0 0 0 12 8 395 0 100 1 14 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 14 8 12 100 120 0 0 0 0 0 0 0 14 8 395 0 100 1 12 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 14 8 12 100 120 0 0 0 0 0 0 0 14 8 395 0 100 1 12 0 0 0 0 0 6 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 -16 8 4 100 120 0 0 0 0 0 0 0 -16 8 295 0 100 1 4 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 -16 8 4 100 120 0 0 0 0 0 0 0 -16 8 295 0 100 1 4 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 -14 8 12 100 120 0 0 0 0 0 0 0 -14 8 395 0 100 1 12 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 -14 8 12 100 120 0 0 0 0 0 0 0 -14 8 395 0 100 1 12 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 -12 8 14 100 120 0 0 0 0 0 0 0 -12 8 394 0 100 1 14 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 397 399 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 -12 8 14 100 120 0 0 0 0 0 0 0 -12 8 394 0 100 1 14 0 0 0 0 0 7 650 19 0 0 0 0 0 0 83 0 399 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 -10 8 26 100 120 0 0 0 0 0 0 0 -10 8 395 0 100 1 26 0 0 0 0 0 7 650 20 0 0 0 0 0 0 84 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 -10 8 26 100 120 0 0 0 0 0 0 0 -10 8 395 0 100 1 26 0 0 0 0 0 7 650 20 0 0 0 0 0 0 84 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 -8 8 12 100 120 0 0 0 0 0 0 0 -8 8 445 0 100 1 12 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 352 368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 -8 8 12 100 120 0 0 0 0 0 0 0 -8 8 445 0 100 1 12 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 352 368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 -6 8 14 100 120 0 0 0 0 0 0 0 -6 8 445 0 100 1 14 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 -6 8 14 100 120 0 0 0 0 0 0 0 -6 8 445 0 100 1 14 0 0 0 0 0 7 650 20 0 0 0 0 0 0 83 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -303,13 +303,13 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet civil
|
||||||
61 1 15 -1 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
61 1 15 -1 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
62 7 15 -1 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
62 7 15 -1 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
65 2 -8 8 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
65 2 -8 8 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
70 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 9 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
70 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 10 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
71 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 9 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
71 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 9 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
72 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 10 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
72 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 9 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
73 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 10 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
73 1 16 6 2 20 90 0 20 0 0 none 0 "" 4 10 0 0 0 0 0 0 10 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
74 1 16 6 2 21 90 0 20 0 0 none 0 "" 12 10 0 0 0 0 0 0 10 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
74 1 16 6 2 21 90 0 20 0 0 none 0 "" 12 10 0 0 0 0 0 0 10 0 10 10 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
75 1 16 6 6 21 90 0 20 0 0 none 0 "" 0 11 0 0 0 0 0 0 9 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
75 1 16 6 6 21 90 0 20 0 0 none 0 "" 0 11 0 0 0 0 0 0 10 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
76 1 16 6 6 80 90 0 20 0 0 none 0 "" 0 60 0 0 0 0 0 0 9 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
76 1 16 6 6 80 90 0 20 0 0 none 0 "" 0 60 0 0 0 0 0 0 8 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
90 1 -8 8 2 100 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
90 1 -8 8 2 100 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
91 1 -14 8 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
91 1 -14 8 2 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
92 1 -2 8 0 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
92 1 -2 8 0 20 90 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
|
@ -323,10 +323,10 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet civil
|
||||||
103 1 18 4 0 73 90 0 20 0 0 none 0 "" 100 0 0 0 0 0 0 0 250 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
103 1 18 4 0 73 90 0 20 0 0 none 0 "" 100 0 0 0 0 0 0 0 250 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
104 1 18 4 0 33 90 0 20 0 0 none 0 "" 100 0 0 0 0 0 0 0 88 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
104 1 18 4 0 33 90 0 20 0 0 none 0 "" 100 0 0 0 0 0 0 0 88 0 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
110 1 16 4 8 100 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 5 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
110 1 16 4 8 100 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 5 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
111 1 18 4 8 100 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 52 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
111 1 18 4 8 100 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 51 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
112 1 20 4 8 100 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 51 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
112 1 20 4 8 100 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 51 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
113 1 18 4 8 65 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 29 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
113 1 18 4 8 65 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 29 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
114 1 18 4 8 25 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 9 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
114 1 18 4 8 25 90 0 50 0 0 none 0 "" 100 0 0 0 0 0 0 0 7 10 0 0 0 0 healthy 0 0 "" 14 6 1 () ""
|
||||||
149 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 0 0 0 () ""
|
149 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 "" 0 0 0 () ""
|
||||||
/config
|
/config
|
||||||
config plane
|
config plane
|
||||||
|
@ -411,13 +411,13 @@ uid owner type unitid price maxbidder markettime xloc yloc
|
||||||
config nat
|
config nat
|
||||||
cnum stat flags cname passwd ip hostname userid xcap ycap xorg yorg update tgms ann timeused btu access milreserve money login logout newstim annotim tech research education happiness relations(0) relations(1) relations(2) relations(3) relations(4) relations(5) relations(6) relations(7) relations(8) relations(9) relations(10) relations(11) relations(12) relations(13) relations(14) relations(15) relations(16) relations(17) relations(18) relations(19) relations(20) relations(21) relations(22) relations(23) relations(24) relations(25) relations(26) relations(27) relations(28) relations(29) relations(30) relations(31) relations(32) relations(33) relations(34) relations(35) relations(36) relations(37) relations(38) relations(39) relations(40) relations(41) relations(42) relations(43) relations(44) relations(45) relations(46) relations(47) relations(48) relations(49) relations(50) relations(51) relations(52) relations(53) relations(54) relations(55) relations(56) relations(57) relations(58) relations(59) relations(60) relations(61) relations(62) relations(63) relations(64) relations(65) relations(66) relations(67) relations(68) relations(69) relations(70) relations(71) relations(72) relations(73) relations(74) relations(75) relations(76) relations(77) relations(78) relations(79) relations(80) relations(81) relations(82) relations(83) relations(84) relations(85) relations(86) relations(87) relations(88) relations(89) relations(90) relations(91) relations(92) relations(93) relations(94) relations(95) relations(96) relations(97) relations(98) contacts(0) contacts(1) contacts(2) contacts(3) contacts(4) contacts(5) contacts(6) contacts(7) contacts(8) contacts(9) contacts(10) contacts(11) contacts(12) contacts(13) contacts(14) contacts(15) contacts(16) contacts(17) contacts(18) contacts(19) contacts(20) contacts(21) contacts(22) contacts(23) contacts(24) contacts(25) contacts(26) contacts(27) contacts(28) contacts(29) contacts(30) contacts(31) contacts(32) contacts(33) contacts(34) contacts(35) contacts(36) contacts(37) contacts(38) contacts(39) contacts(40) contacts(41) contacts(42) contacts(43) contacts(44) contacts(45) contacts(46) contacts(47) contacts(48) contacts(49) contacts(50) contacts(51) contacts(52) contacts(53) contacts(54) contacts(55) contacts(56) contacts(57) contacts(58) contacts(59) contacts(60) contacts(61) contacts(62) contacts(63) contacts(64) contacts(65) contacts(66) contacts(67) contacts(68) contacts(69) contacts(70) contacts(71) contacts(72) contacts(73) contacts(74) contacts(75) contacts(76) contacts(77) contacts(78) contacts(79) contacts(80) contacts(81) contacts(82) contacts(83) contacts(84) contacts(85) contacts(86) contacts(87) contacts(88) contacts(89) contacts(90) contacts(91) contacts(92) contacts(93) contacts(94) contacts(95) contacts(96) contacts(97) contacts(98) rejects(0) rejects(1) rejects(2) rejects(3) rejects(4) rejects(5) rejects(6) rejects(7) rejects(8) rejects(9) rejects(10) rejects(11) rejects(12) rejects(13) rejects(14) rejects(15) rejects(16) rejects(17) rejects(18) rejects(19) rejects(20) rejects(21) rejects(22) rejects(23) rejects(24) rejects(25) rejects(26) rejects(27) rejects(28) rejects(29) rejects(30) rejects(31) rejects(32) rejects(33) rejects(34) rejects(35) rejects(36) rejects(37) rejects(38) rejects(39) rejects(40) rejects(41) rejects(42) rejects(43) rejects(44) rejects(45) rejects(46) rejects(47) rejects(48) rejects(49) rejects(50) rejects(51) rejects(52) rejects(53) rejects(54) rejects(55) rejects(56) rejects(57) rejects(58) rejects(59) rejects(60) rejects(61) rejects(62) rejects(63) rejects(64) rejects(65) rejects(66) rejects(67) rejects(68) rejects(69) rejects(70) rejects(71) rejects(72) rejects(73) rejects(74) rejects(75) rejects(76) rejects(77) rejects(78) rejects(79) rejects(80) rejects(81) rejects(82) rejects(83) rejects(84) rejects(85) rejects(86) rejects(87) rejects(88) rejects(89) rejects(90) rejects(91) rejects(92) rejects(93) rejects(94) rejects(95) rejects(96) rejects(97) rejects(98)
|
cnum stat flags cname passwd ip hostname userid xcap ycap xorg yorg update tgms ann timeused btu access milreserve money login logout newstim annotim tech research education happiness relations(0) relations(1) relations(2) relations(3) relations(4) relations(5) relations(6) relations(7) relations(8) relations(9) relations(10) relations(11) relations(12) relations(13) relations(14) relations(15) relations(16) relations(17) relations(18) relations(19) relations(20) relations(21) relations(22) relations(23) relations(24) relations(25) relations(26) relations(27) relations(28) relations(29) relations(30) relations(31) relations(32) relations(33) relations(34) relations(35) relations(36) relations(37) relations(38) relations(39) relations(40) relations(41) relations(42) relations(43) relations(44) relations(45) relations(46) relations(47) relations(48) relations(49) relations(50) relations(51) relations(52) relations(53) relations(54) relations(55) relations(56) relations(57) relations(58) relations(59) relations(60) relations(61) relations(62) relations(63) relations(64) relations(65) relations(66) relations(67) relations(68) relations(69) relations(70) relations(71) relations(72) relations(73) relations(74) relations(75) relations(76) relations(77) relations(78) relations(79) relations(80) relations(81) relations(82) relations(83) relations(84) relations(85) relations(86) relations(87) relations(88) relations(89) relations(90) relations(91) relations(92) relations(93) relations(94) relations(95) relations(96) relations(97) relations(98) contacts(0) contacts(1) contacts(2) contacts(3) contacts(4) contacts(5) contacts(6) contacts(7) contacts(8) contacts(9) contacts(10) contacts(11) contacts(12) contacts(13) contacts(14) contacts(15) contacts(16) contacts(17) contacts(18) contacts(19) contacts(20) contacts(21) contacts(22) contacts(23) contacts(24) contacts(25) contacts(26) contacts(27) contacts(28) contacts(29) contacts(30) contacts(31) contacts(32) contacts(33) contacts(34) contacts(35) contacts(36) contacts(37) contacts(38) contacts(39) contacts(40) contacts(41) contacts(42) contacts(43) contacts(44) contacts(45) contacts(46) contacts(47) contacts(48) contacts(49) contacts(50) contacts(51) contacts(52) contacts(53) contacts(54) contacts(55) contacts(56) contacts(57) contacts(58) contacts(59) contacts(60) contacts(61) contacts(62) contacts(63) contacts(64) contacts(65) contacts(66) contacts(67) contacts(68) contacts(69) contacts(70) contacts(71) contacts(72) contacts(73) contacts(74) contacts(75) contacts(76) contacts(77) contacts(78) contacts(79) contacts(80) contacts(81) contacts(82) contacts(83) contacts(84) contacts(85) contacts(86) contacts(87) contacts(88) contacts(89) contacts(90) contacts(91) contacts(92) contacts(93) contacts(94) contacts(95) contacts(96) contacts(97) contacts(98) rejects(0) rejects(1) rejects(2) rejects(3) rejects(4) rejects(5) rejects(6) rejects(7) rejects(8) rejects(9) rejects(10) rejects(11) rejects(12) rejects(13) rejects(14) rejects(15) rejects(16) rejects(17) rejects(18) rejects(19) rejects(20) rejects(21) rejects(22) rejects(23) rejects(24) rejects(25) rejects(26) rejects(27) rejects(28) rejects(29) rejects(30) rejects(31) rejects(32) rejects(33) rejects(34) rejects(35) rejects(36) rejects(37) rejects(38) rejects(39) rejects(40) rejects(41) rejects(42) rejects(43) rejects(44) rejects(45) rejects(46) rejects(47) rejects(48) rejects(49) rejects(50) rejects(51) rejects(52) rejects(53) rejects(54) rejects(55) rejects(56) rejects(57) rejects(58) rejects(59) rejects(60) rejects(61) rejects(62) rejects(63) rejects(64) rejects(65) rejects(66) rejects(67) rejects(68) rejects(69) rejects(70) rejects(71) rejects(72) rejects(73) rejects(74) rejects(75) rejects(76) rejects(77) rejects(78) rejects(79) rejects(80) rejects(81) rejects(82) rejects(83) rejects(84) rejects(85) rejects(86) rejects(87) rejects(88) rejects(89) rejects(90) rejects(91) rejects(92) rejects(93) rejects(94) rejects(95) rejects(96) rejects(97) rejects(98)
|
||||||
0 deity (flash beep coastwatch sonar techlists) "POGO" "peter" "127.0.0.1" "" "tester" 0 0 0 0 0 0 0 255 640 0 0 123456789 0 0 0 0 0.00000 0.00000 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
0 deity (flash beep coastwatch sonar techlists) "POGO" "peter" "127.0.0.1" "" "tester" 0 0 0 0 0 0 0 255 640 0 0 123456789 0 0 0 0 0.00000 0.00000 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
1 active (flash beep coastwatch sonar techlists) "1" "1" "127.0.0.1" "" "tester" 0 0 0 0 0 1 0 255 640 0 0 13358 0 0 0 0 102.787 3.37264 21.0875 12.3287 neutral neutral neutral neutral neutral neutral allied friendly neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
1 active (flash beep coastwatch sonar techlists) "1" "1" "127.0.0.1" "" "tester" 0 0 0 0 0 1 0 255 640 0 0 13292 0 0 0 0 102.787 3.37264 21.0875 12.3287 neutral neutral neutral neutral neutral neutral allied friendly neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
2 active (flash beep coastwatch sonar techlists) "2" "2" "127.0.0.1" "" "tester" -2 0 0 0 0 1 0 255 193 0 975 -5912 0 0 0 0 101.081 1.68632 15.2381 2.74222 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
2 active (flash beep coastwatch sonar techlists) "2" "2" "127.0.0.1" "" "tester" -2 0 0 0 0 1 0 255 193 0 975 -5921 0 0 0 0 101.081 1.68632 15.2381 2.74222 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
3 active (flash beep coastwatch sonar techlists) "3" "3" "127.0.0.1" "" "tester" 1 -1 0 0 0 1 0 255 640 0 0 4337 0 0 0 0 101.081 1.68632 15.2381 4.44444 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
3 active (flash beep coastwatch sonar techlists) "3" "3" "127.0.0.1" "" "tester" 1 -1 0 0 0 1 0 255 640 0 0 4335 0 0 0 0 101.081 1.68632 15.2381 4.44444 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
4 active (flash beep coastwatch sonar techlists) "4" "4" "127.0.0.1" "" "tester" -1 -1 0 0 0 1 0 255 640 0 0 18752 0 0 0 0 31.5183 1.68632 3.04762 4.44444 neutral allied neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
4 active (flash beep coastwatch sonar techlists) "4" "4" "127.0.0.1" "" "tester" -1 -1 0 0 0 1 0 255 640 0 0 18750 0 0 0 0 31.5183 1.68632 3.04762 4.44444 neutral allied neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
5 active (flash beep coastwatch sonar techlists) "5" "5" "127.0.0.1" "" "tester" -16 -8 0 0 0 1 0 255 99 0 0 26499 0 0 0 0 101.081 1.68632 15.2381 4.44444 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
5 active (flash beep coastwatch sonar techlists) "5" "5" "127.0.0.1" "" "tester" -16 -8 0 0 0 1 0 255 99 0 0 26498 0 0 0 0 101.081 1.68632 15.2381 4.44444 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
6 active (flash beep coastwatch sonar techlists) "6" "6" "127.0.0.1" "" "tester" 0 8 0 0 0 1 0 255 640 0 0 24815 0 0 0 0 101.081 1.68632 15.2381 4.44444 allied allied allied allied allied allied neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
6 active (flash beep coastwatch sonar techlists) "6" "6" "127.0.0.1" "" "tester" 0 8 0 0 0 1 0 255 640 0 0 24803 0 0 0 0 101.081 1.68632 15.2381 4.44444 allied allied allied allied allied allied neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
7 active (flash beep coastwatch sonar techlists) "7" "7" "127.0.0.1" "" "tester" -2 8 0 0 0 1 0 255 640 0 0 25828 0 0 0 0 101.081 1.68632 15.2381 4.44444 friendly friendly friendly friendly friendly friendly friendly neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
7 active (flash beep coastwatch sonar techlists) "7" "7" "127.0.0.1" "" "tester" -2 8 0 0 0 1 0 255 640 0 0 25819 0 0 0 0 101.081 1.68632 15.2381 4.44444 friendly friendly friendly friendly friendly friendly friendly neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
/config
|
/config
|
||||||
config loan
|
config loan
|
||||||
uid loaner loanee status irate ldur amtpaid amtdue lastpay duedate
|
uid loaner loanee status irate ldur amtpaid amtdue lastpay duedate
|
||||||
|
|
|
@ -33,21 +33,21 @@
|
||||||
Play#1 output Play#1 1 bank 41 bars 410
|
Play#1 output Play#1 1 bank 41 bars 410
|
||||||
Play#1 output Play#1 1 refinery 2581 petrol 290
|
Play#1 output Play#1 1 refinery 2581 petrol 290
|
||||||
Play#1 output Play#1 1 enlistment center 75 mil 225
|
Play#1 output Play#1 1 enlistment center 75 mil 225
|
||||||
Play#1 output Play#1 1 Ship building 10 ships 1519
|
Play#1 output Play#1 1 Ship building 10 ships 1520
|
||||||
Play#1 output Play#1 1 Ship maintenance 32 ships 2202
|
Play#1 output Play#1 1 Ship maintenance 32 ships 2207
|
||||||
Play#1 output Play#1 1 Plane building 13 planes 1924
|
Play#1 output Play#1 1 Plane building 13 planes 1924
|
||||||
Play#1 output Play#1 1 Plane maintenance 20 planes 984
|
Play#1 output Play#1 1 Plane maintenance 20 planes 1004
|
||||||
Play#1 output Play#1 1 Unit building 6 units 2300
|
Play#1 output Play#1 1 Unit building 6 units 2300
|
||||||
Play#1 output Play#1 1 Unit maintenance 16 units 510
|
Play#1 output Play#1 1 Unit maintenance 16 units 510
|
||||||
Play#1 output Play#1 1 Sector building 40 sectors 774
|
Play#1 output Play#1 1 Sector building 40 sectors 774
|
||||||
Play#1 output Play#1 1 Sector maintenance 2 sectors 120
|
Play#1 output Play#1 1 Sector maintenance 2 sectors 120
|
||||||
Play#1 output Play#1 1 Military payroll 1164 mil, 0 res 5777
|
Play#1 output Play#1 1 Military payroll 1164 mil, 0 res 5820
|
||||||
Play#1 output Play#1 1 Total expenses.....................................................24627
|
Play#1 output Play#1 1 Total expenses.....................................................24692
|
||||||
Play#1 output Play#1 1 Income from taxes 26911 civs, 9007 uws +12625
|
Play#1 output Play#1 1 Income from taxes 26911 civs, 9007 uws +12627
|
||||||
Play#1 output Play#1 1 Total income......................................................+12625
|
Play#1 output Play#1 1 Total income......................................................+12627
|
||||||
Play#1 output Play#1 1 Balance forward 25000
|
Play#1 output Play#1 1 Balance forward 25000
|
||||||
Play#1 output Play#1 1 Estimated delta -12002
|
Play#1 output Play#1 1 Estimated delta -12065
|
||||||
Play#1 output Play#1 1 Estimated new treasury.............................................12998
|
Play#1 output Play#1 1 Estimated new treasury.............................................12935
|
||||||
Play#1 output Play#1 6 0 99
|
Play#1 output Play#1 6 0 99
|
||||||
Play#1 input neweff * ?newd#-
|
Play#1 input neweff * ?newd#-
|
||||||
Play#1 command neweff
|
Play#1 command neweff
|
||||||
|
@ -226,16 +226,16 @@
|
||||||
Play#2 command budget
|
Play#2 command budget
|
||||||
Play#2 output Play#2 1 Sector Type Production Cost
|
Play#2 output Play#2 1 Sector Type Production Cost
|
||||||
Play#2 output Play#2 1 Ship maintenance 3 ships 90
|
Play#2 output Play#2 1 Ship maintenance 3 ships 90
|
||||||
Play#2 output Play#2 1 Plane maintenance 3 planes 144
|
Play#2 output Play#2 1 Plane maintenance 3 planes 147
|
||||||
Play#2 output Play#2 1 Unit maintenance 3 units 90
|
Play#2 output Play#2 1 Unit maintenance 3 units 90
|
||||||
Play#2 output Play#2 1 Military payroll 1900 mil, 1000 res 9994
|
Play#2 output Play#2 1 Military payroll 1900 mil, 1000 res 10000
|
||||||
Play#2 output Play#2 1 Total expenses.....................................................10318
|
Play#2 output Play#2 1 Total expenses.....................................................10325
|
||||||
Play#2 output Play#2 1 Income from taxes 6800 civs, 4000 uws +1076
|
Play#2 output Play#2 1 Income from taxes 6800 civs, 4000 uws +1076
|
||||||
Play#2 output Play#2 1 Income from bars 400 bars +2865
|
Play#2 output Play#2 1 Income from bars 400 bars +2865
|
||||||
Play#2 output Play#2 1 Total income.......................................................+3941
|
Play#2 output Play#2 1 Total income.......................................................+3941
|
||||||
Play#2 output Play#2 1 Balance forward 100
|
Play#2 output Play#2 1 Balance forward 100
|
||||||
Play#2 output Play#2 1 Estimated delta -6377
|
Play#2 output Play#2 1 Estimated delta -6384
|
||||||
Play#2 output Play#2 1 Estimated new treasury.............................................-6277
|
Play#2 output Play#2 1 Estimated new treasury.............................................-6284
|
||||||
Play#2 output Play#2 1 After processsing sectors, you will be broke!
|
Play#2 output Play#2 1 After processsing sectors, you will be broke!
|
||||||
Play#2 output Play#2 1 Sectors will not produce, distribute, or deliver!
|
Play#2 output Play#2 1 Sectors will not produce, distribute, or deliver!
|
||||||
Play#2 output Play#2 1
|
Play#2 output Play#2 1
|
||||||
|
@ -276,13 +276,13 @@
|
||||||
Play#3 output Play#3 1 uranium mine 67 rad 156
|
Play#3 output Play#3 1 uranium mine 67 rad 156
|
||||||
Play#3 output Play#3 1 Sector building 56 sectors 39
|
Play#3 output Play#3 1 Sector building 56 sectors 39
|
||||||
Play#3 output Play#3 1 Sector maintenance 1 sector 60
|
Play#3 output Play#3 1 Sector maintenance 1 sector 60
|
||||||
Play#3 output Play#3 1 Military payroll 170 mil, 0 res 848
|
Play#3 output Play#3 1 Military payroll 170 mil, 0 res 850
|
||||||
Play#3 output Play#3 1 Total expenses......................................................1103
|
Play#3 output Play#3 1 Total expenses......................................................1104
|
||||||
Play#3 output Play#3 1 Income from taxes 16549 civs, 150 uws +5540
|
Play#3 output Play#3 1 Income from taxes 16549 civs, 150 uws +5540
|
||||||
Play#3 output Play#3 1 Total income.......................................................+5540
|
Play#3 output Play#3 1 Total income.......................................................+5540
|
||||||
Play#3 output Play#3 1 Balance forward -100
|
Play#3 output Play#3 1 Balance forward -100
|
||||||
Play#3 output Play#3 1 Estimated delta +4437
|
Play#3 output Play#3 1 Estimated delta +4436
|
||||||
Play#3 output Play#3 1 Estimated new treasury..............................................4337
|
Play#3 output Play#3 1 Estimated new treasury..............................................4336
|
||||||
Play#3 output Play#3 6 0 99
|
Play#3 output Play#3 6 0 99
|
||||||
Play#3 input production *
|
Play#3 input production *
|
||||||
Play#3 command production
|
Play#3 command production
|
||||||
|
@ -317,14 +317,14 @@
|
||||||
Play#4 output Play#4 1 bank 4 bars 40
|
Play#4 output Play#4 1 bank 4 bars 40
|
||||||
Play#4 output Play#4 1 Ship maintenance 10 ships 300
|
Play#4 output Play#4 1 Ship maintenance 10 ships 300
|
||||||
Play#4 output Play#4 1 Unit maintenance 10 units 600
|
Play#4 output Play#4 1 Unit maintenance 10 units 600
|
||||||
Play#4 output Play#4 1 Military payroll 1111 mil, 0 res 5552
|
Play#4 output Play#4 1 Military payroll 1111 mil, 0 res 5555
|
||||||
Play#4 output Play#4 1 Total expenses......................................................6492
|
Play#4 output Play#4 1 Total expenses......................................................6494
|
||||||
Play#4 output Play#4 1 Income from taxes 23604 civs, 4100 uws +212
|
Play#4 output Play#4 1 Income from taxes 23604 civs, 4100 uws +212
|
||||||
Play#4 output Play#4 1 Income from bars 100 bars +1500
|
Play#4 output Play#4 1 Income from bars 100 bars +1500
|
||||||
Play#4 output Play#4 1 Total income.......................................................+1712
|
Play#4 output Play#4 1 Total income.......................................................+1712
|
||||||
Play#4 output Play#4 1 Balance forward 25000
|
Play#4 output Play#4 1 Balance forward 25000
|
||||||
Play#4 output Play#4 1 Estimated delta -4780
|
Play#4 output Play#4 1 Estimated delta -4782
|
||||||
Play#4 output Play#4 1 Estimated new treasury.............................................20220
|
Play#4 output Play#4 1 Estimated new treasury.............................................20218
|
||||||
Play#4 output Play#4 6 0 99
|
Play#4 output Play#4 6 0 99
|
||||||
Play#4 input production *
|
Play#4 input production *
|
||||||
Play#4 command production
|
Play#4 command production
|
||||||
|
@ -387,16 +387,16 @@
|
||||||
Play#6 command budget
|
Play#6 command budget
|
||||||
Play#6 output Play#6 1 Sector Type Production Cost
|
Play#6 output Play#6 1 Sector Type Production Cost
|
||||||
Play#6 output Play#6 1 Ship maintenance 1 ship 540
|
Play#6 output Play#6 1 Ship maintenance 1 ship 540
|
||||||
Play#6 output Play#6 1 Plane maintenance 3 planes 144
|
Play#6 output Play#6 1 Plane maintenance 3 planes 147
|
||||||
Play#6 output Play#6 1 Unit maintenance 3 units 90
|
Play#6 output Play#6 1 Unit maintenance 3 units 90
|
||||||
Play#6 output Play#6 1 Sector maintenance 1 sector 60
|
Play#6 output Play#6 1 Sector maintenance 1 sector 60
|
||||||
Play#6 output Play#6 1 Military payroll 168 mil, 0 res 831
|
Play#6 output Play#6 1 Military payroll 168 mil, 0 res 840
|
||||||
Play#6 output Play#6 1 Total expenses......................................................1665
|
Play#6 output Play#6 1 Total expenses......................................................1675
|
||||||
Play#6 output Play#6 1 Income from taxes 4000 civs, 0 uws +1750
|
Play#6 output Play#6 1 Income from taxes 4000 civs, 0 uws +1749
|
||||||
Play#6 output Play#6 1 Total income.......................................................+1750
|
Play#6 output Play#6 1 Total income.......................................................+1749
|
||||||
Play#6 output Play#6 1 Balance forward 25000
|
Play#6 output Play#6 1 Balance forward 25000
|
||||||
Play#6 output Play#6 1 Estimated delta +85
|
Play#6 output Play#6 1 Estimated delta +74
|
||||||
Play#6 output Play#6 1 Estimated new treasury.............................................25085
|
Play#6 output Play#6 1 Estimated new treasury.............................................25074
|
||||||
Play#6 output Play#6 6 0 99
|
Play#6 output Play#6 6 0 99
|
||||||
Play#6 input ctld
|
Play#6 input ctld
|
||||||
Play#6 output Play#6 1 Bye-bye
|
Play#6 output Play#6 1 Bye-bye
|
||||||
|
@ -419,15 +419,15 @@
|
||||||
Play#7 input budget
|
Play#7 input budget
|
||||||
Play#7 command budget
|
Play#7 command budget
|
||||||
Play#7 output Play#7 1 Sector Type Production Cost
|
Play#7 output Play#7 1 Sector Type Production Cost
|
||||||
Play#7 output Play#7 1 Ship maintenance 3 ships 70
|
Play#7 output Play#7 1 Ship maintenance 3 ships 71
|
||||||
Play#7 output Play#7 1 Sector maintenance 1 sector 60
|
Play#7 output Play#7 1 Sector maintenance 1 sector 60
|
||||||
Play#7 output Play#7 1 Military payroll 160 mil, 0 res 792
|
Play#7 output Play#7 1 Military payroll 160 mil, 0 res 800
|
||||||
Play#7 output Play#7 1 Total expenses.......................................................922
|
Play#7 output Play#7 1 Total expenses.......................................................929
|
||||||
Play#7 output Play#7 1 Income from taxes 4000 civs, 0 uws +1750
|
Play#7 output Play#7 1 Income from taxes 4000 civs, 0 uws +1749
|
||||||
Play#7 output Play#7 1 Total income.......................................................+1750
|
Play#7 output Play#7 1 Total income.......................................................+1749
|
||||||
Play#7 output Play#7 1 Balance forward 25000
|
Play#7 output Play#7 1 Balance forward 25000
|
||||||
Play#7 output Play#7 1 Estimated delta +828
|
Play#7 output Play#7 1 Estimated delta +820
|
||||||
Play#7 output Play#7 1 Estimated new treasury.............................................25828
|
Play#7 output Play#7 1 Estimated new treasury.............................................25820
|
||||||
Play#7 output Play#7 6 0 99
|
Play#7 output Play#7 6 0 99
|
||||||
Play#7 input show updates
|
Play#7 input show updates
|
||||||
Play#7 command show
|
Play#7 command show
|
||||||
|
@ -529,8 +529,8 @@
|
||||||
Play#0 output Play#0 1 78 happiness, 178 education produced
|
Play#0 output Play#0 1 78 happiness, 178 education produced
|
||||||
Play#0 output Play#0 1 total pop was 28106, yielding 14.19 hap, 24.57 edu
|
Play#0 output Play#0 1 total pop was 28106, yielding 14.19 hap, 24.57 edu
|
||||||
Play#0 output Play#0 1 3.4330 tech, 3.3939 research produced
|
Play#0 output Play#0 1 3.4330 tech, 3.3939 research produced
|
||||||
Play#0 output Play#0 1 Army delta $-2810, Navy delta $-3721, Air force delta $-2548
|
Play#0 output Play#0 1 Army delta $-2810, Navy delta $-3726, Air force delta $-2567
|
||||||
Play#0 output Play#0 1 money delta was $-11642 for this update
|
Play#0 output Play#0 1 money delta was $-11708 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 1
|
Play#0 input nation 1
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -538,7 +538,7 @@
|
||||||
Play#0 output Play#0 1 (#1) 1 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#1) 1 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
||||||
Play#0 output Play#0 1 100% eff capital at 0,0 has 650 civilians & 2 military
|
Play#0 output Play#0 1 100% eff capital at 0,0 has 650 civilians & 2 military
|
||||||
Play#0 output Play#0 1 The treasury has $13358.00 Military reserves: 0
|
Play#0 output Play#0 1 The treasury has $13292.00 Military reserves: 0
|
||||||
Play#0 output Play#0 1 Education.......... 21.09 Happiness....... 12.33
|
Play#0 output Play#0 1 Education.......... 21.09 Happiness....... 12.33
|
||||||
Play#0 output Play#0 1 Technology.........102.79 Research........ 3.37
|
Play#0 output Play#0 1 Technology.........102.79 Research........ 3.37
|
||||||
Play#0 output Play#0 1 Technology factor : 50.46% Plague factor : 1.96%
|
Play#0 output Play#0 1 Technology factor : 50.46% Plague factor : 1.96%
|
||||||
|
@ -591,7 +591,7 @@
|
||||||
Play#0 output Play#0 1 Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 COMMODITIES deliver-- distribute
|
Play#0 output Play#0 1 COMMODITIES deliver-- distribute
|
||||||
Play#0 output Play#0 1 sect sgpidbolhr sgpidbolhr sh gun pet iron dust bar oil lcm hcm rad
|
Play#0 output Play#0 1 sect sgpidbolhr sgpidbolhr sh gun pet iron dust bar oil lcm hcm rad
|
||||||
Play#0 output Play#0 1 1 0,0 c .......... .......... 0 0 0 0 0 0 0 7 32 0
|
Play#0 output Play#0 1 1 0,0 c .......... .......... 0 0 0 0 0 0 0 6 34 0
|
||||||
Play#0 output Play#0 1 1 2,0 + .......... .......... 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 2,0 + .......... .......... 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 4,0 + .......... .......... 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 4,0 + .......... .......... 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 6,0 + .......... .......... 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 6,0 + .......... .......... 0 0 0 0 0 0 0 0 0 0
|
||||||
|
@ -632,7 +632,7 @@
|
||||||
Play#0 output Play#0 1 own sect eff prd mob uf uf old civ mil uw food work avail fall coa
|
Play#0 output Play#0 1 own sect eff prd mob uf uf old civ mil uw food work avail fall coa
|
||||||
Play#0 output Play#0 1 1 -16,4 m 100% 120 .. .. 130 1 0 96 100% 9 0 1
|
Play#0 output Play#0 1 1 -16,4 m 100% 120 .. .. 130 1 0 96 100% 9 0 1
|
||||||
Play#0 output Play#0 1 1 -14,4 m 100% 120 .. .. 130 1 0 97 100% 0 0
|
Play#0 output Play#0 1 1 -14,4 m 100% 120 .. .. 130 1 0 97 100% 0 0
|
||||||
Play#0 output Play#0 1 1 -12,4 m 69% 120 .. .. 130 1 0 97 100% 1 0
|
Play#0 output Play#0 1 1 -12,4 m 69% 120 .. .. 130 1 0 97 100% 2 0
|
||||||
Play#0 output Play#0 1 1 -10,4 - 39% 120 .. .. 130 1 0 96 100% 39 0
|
Play#0 output Play#0 1 1 -10,4 - 39% 120 .. .. 130 1 0 96 100% 39 0
|
||||||
Play#0 output Play#0 1 1 -8,4 g 100% 120 .. .. 130 1 0 97 100% 9 0
|
Play#0 output Play#0 1 1 -8,4 g 100% 120 .. .. 130 1 0 97 100% 9 0
|
||||||
Play#0 output Play#0 1 1 -6,4 g 100% 120 .. .. 130 1 0 97 100% 0 0
|
Play#0 output Play#0 1 1 -6,4 g 100% 120 .. .. 130 1 0 97 100% 0 0
|
||||||
|
@ -745,7 +745,7 @@
|
||||||
Play#0 output Play#0 1 1 2,6 k .......... .......... 0 0 0 0 0 0 0 0 46 0
|
Play#0 output Play#0 1 1 2,6 k .......... .......... 0 0 0 0 0 0 0 0 46 0
|
||||||
Play#0 output Play#0 1 1 4,6 k .......... .......... 0 0 0 58 0 0 0 0 9999 0
|
Play#0 output Play#0 1 1 4,6 k .......... .......... 0 0 0 58 0 0 0 0 9999 0
|
||||||
Play#0 output Play#0 1 1 6,6 - .......... .......... 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 6,6 - .......... .......... 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 8,6 f .......... .......... 0 0 0 0 0 0 0 5 16 0
|
Play#0 output Play#0 1 1 8,6 f .......... .......... 0 0 0 0 0 0 0 5 15 0
|
||||||
Play#0 output Play#0 1 1 10,6 ! .......... .......... 0 0 0 0 0 0 0 0 13 0
|
Play#0 output Play#0 1 1 10,6 ! .......... .......... 0 0 0 0 0 0 0 0 13 0
|
||||||
Play#0 output Play#0 1 1 12,6 * .......... .......... 0 0 0 0 0 0 0 0 8 0
|
Play#0 output Play#0 1 1 12,6 * .......... .......... 0 0 0 0 0 0 0 0 8 0
|
||||||
Play#0 output Play#0 1 1 14,6 h .......... .......... 0 0 0 0 0 0 0 40 0 0
|
Play#0 output Play#0 1 1 14,6 h .......... .......... 0 0 0 0 0 0 0 40 0 0
|
||||||
|
@ -779,13 +779,13 @@
|
||||||
Play#0 output Play#0 1 1 42 cs cargo ship 17,1 100% 0 25 0 0 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 42 cs cargo ship 17,1 100% 0 25 0 0 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 43 cs cargo ship 17,1 100% 17 50 0 0 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 43 cs cargo ship 17,1 100% 17 50 0 0 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 60 cs cargo ship 14,6 20% 0 0 0 0 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 60 cs cargo ship 14,6 20% 0 0 0 0 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 70 cs cargo ship 16,6 20% 4 10 0 9 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 70 cs cargo ship 16,6 20% 4 10 0 10 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 71 cs cargo ship 16,6 20% 4 10 0 9 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 71 cs cargo ship 16,6 20% 4 10 0 9 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 72 cs cargo ship 16,6 20% 4 10 0 10 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 72 cs cargo ship 16,6 20% 4 10 0 9 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 73 cs cargo ship 16,6 20% 4 10 0 10 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 73 cs cargo ship 16,6 20% 4 10 0 10 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 74 cs cargo ship 16,6 21% 12 10 0 10 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 74 cs cargo ship 16,6 21% 12 10 0 10 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 75 frg frigate 16,6 21% 0 11 0 9 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 75 frg frigate 16,6 21% 0 11 0 10 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 76 frg frigate 16,6 80% 0 60 0 9 0 0 0 0 90 20
|
Play#0 output Play#0 1 1 76 frg frigate 16,6 80% 0 60 0 8 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 7 93 fb fishing boa 0,0 20% 0 0 0 0 0 0 0 0 90 20
|
Play#0 output Play#0 1 7 93 fb fishing boa 0,0 20% 0 0 0 0 0 0 0 0 90 20
|
||||||
Play#0 output Play#0 1 1 95 cs cargo ship 14,6 100% 0 0 0 0 0 0 0 0 90 200
|
Play#0 output Play#0 1 1 95 cs cargo ship 14,6 100% 0 0 0 0 0 0 0 0 90 200
|
||||||
Play#0 output Play#0 1 7 96 cs cargo ship 14,6 20% 0 0 0 0 0 0 0 0 90 20
|
Play#0 output Play#0 1 7 96 cs cargo ship 14,6 20% 0 0 0 0 0 0 0 0 90 20
|
||||||
|
@ -831,10 +831,10 @@
|
||||||
Play#0 output Play#0 1 103 fb 18,4 73% 100 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 103 fb 18,4 73% 100 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 104 fb 18,4 33% 100 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 104 fb 18,4 33% 100 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 110 od 16,4 100% 100 0 0 0 0 0 0 0 0 5 0 0 0
|
Play#0 output Play#0 1 110 od 16,4 100% 100 0 0 0 0 0 0 0 0 5 0 0 0
|
||||||
Play#0 output Play#0 1 111 od 18,4 100% 100 0 0 0 0 0 0 0 0 52 0 0 0
|
Play#0 output Play#0 1 111 od 18,4 100% 100 0 0 0 0 0 0 0 0 51 0 0 0
|
||||||
Play#0 output Play#0 1 112 od 20,4 100% 100 0 0 0 0 0 0 0 0 51 0 0 0
|
Play#0 output Play#0 1 112 od 20,4 100% 100 0 0 0 0 0 0 0 0 51 0 0 0
|
||||||
Play#0 output Play#0 1 113 od 18,4 65% 100 0 0 0 0 0 0 0 0 29 0 0 0
|
Play#0 output Play#0 1 113 od 18,4 65% 100 0 0 0 0 0 0 0 0 29 0 0 0
|
||||||
Play#0 output Play#0 1 114 od 18,4 25% 100 0 0 0 0 0 0 0 0 9 0 0 0
|
Play#0 output Play#0 1 114 od 18,4 25% 100 0 0 0 0 0 0 0 0 10 0 0 0
|
||||||
Play#0 output Play#0 1 30 ships
|
Play#0 output Play#0 1 30 ships
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input plane 0:31,0:15
|
Play#0 input plane 0:31,0:15
|
||||||
|
@ -895,8 +895,8 @@
|
||||||
Play#0 output Play#0 1 0 happiness, 0 education produced
|
Play#0 output Play#0 1 0 happiness, 0 education produced
|
||||||
Play#0 output Play#0 1 total pop was 6100, yielding 0.00 hap, 0.00 edu
|
Play#0 output Play#0 1 total pop was 6100, yielding 0.00 hap, 0.00 edu
|
||||||
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
||||||
Play#0 output Play#0 1 Army delta $0, Navy delta $0, Air force delta $-72
|
Play#0 output Play#0 1 Army delta $0, Navy delta $0, Air force delta $-74
|
||||||
Play#0 output Play#0 1 money delta was $-6012 for this update
|
Play#0 output Play#0 1 money delta was $-6021 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 2
|
Play#0 input nation 2
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -904,7 +904,7 @@
|
||||||
Play#0 output Play#0 1 (#2) 2 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#2) 2 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 193
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 193
|
||||||
Play#0 output Play#0 1 10% eff capital at -2,0 has 130 civilians & 0 military
|
Play#0 output Play#0 1 10% eff capital at -2,0 has 130 civilians & 0 military
|
||||||
Play#0 output Play#0 1 The treasury has $-5912.00 Military reserves: 975
|
Play#0 output Play#0 1 The treasury has $-5921.00 Military reserves: 975
|
||||||
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 2.74
|
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 2.74
|
||||||
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
||||||
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
||||||
|
@ -1081,7 +1081,7 @@
|
||||||
Play#0 output Play#0 1 0 happiness, 0 education produced
|
Play#0 output Play#0 1 0 happiness, 0 education produced
|
||||||
Play#0 output Play#0 1 total pop was 15849, yielding 0.00 hap, 0.00 edu
|
Play#0 output Play#0 1 total pop was 15849, yielding 0.00 hap, 0.00 edu
|
||||||
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
||||||
Play#0 output Play#0 1 money delta was $4437 for this update
|
Play#0 output Play#0 1 money delta was $4435 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 3
|
Play#0 input nation 3
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -1089,7 +1089,7 @@
|
||||||
Play#0 output Play#0 1 (#3) 3 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#3) 3 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
||||||
Play#0 output Play#0 1 100% eff capital at 1,-1 has 9999 civilians & 0 military
|
Play#0 output Play#0 1 100% eff capital at 1,-1 has 9999 civilians & 0 military
|
||||||
Play#0 output Play#0 1 The treasury has $4337.00 Military reserves: 0
|
Play#0 output Play#0 1 The treasury has $4335.00 Military reserves: 0
|
||||||
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
||||||
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
||||||
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
||||||
|
@ -1389,7 +1389,7 @@
|
||||||
Play#0 output Play#0 1 total pop was 24000, yielding 0.00 hap, 0.00 edu
|
Play#0 output Play#0 1 total pop was 24000, yielding 0.00 hap, 0.00 edu
|
||||||
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
||||||
Play#0 output Play#0 1 Army delta $-600, Navy delta $-300, Air force delta $0
|
Play#0 output Play#0 1 Army delta $-600, Navy delta $-300, Air force delta $0
|
||||||
Play#0 output Play#0 1 money delta was $-6248 for this update
|
Play#0 output Play#0 1 money delta was $-6250 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 4
|
Play#0 input nation 4
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -1397,7 +1397,7 @@
|
||||||
Play#0 output Play#0 1 (#4) 4 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#4) 4 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
||||||
Play#0 output Play#0 1 100% eff capital at -1,-1 has 130 civilians & 0 military
|
Play#0 output Play#0 1 100% eff capital at -1,-1 has 130 civilians & 0 military
|
||||||
Play#0 output Play#0 1 The treasury has $18752.00 Military reserves: 0
|
Play#0 output Play#0 1 The treasury has $18750.00 Military reserves: 0
|
||||||
Play#0 output Play#0 1 Education.......... 3.05 Happiness....... 4.44
|
Play#0 output Play#0 1 Education.......... 3.05 Happiness....... 4.44
|
||||||
Play#0 output Play#0 1 Technology......... 31.52 Research........ 1.69
|
Play#0 output Play#0 1 Technology......... 31.52 Research........ 1.69
|
||||||
Play#0 output Play#0 1 Technology factor : 35.21% Plague factor : 1.29%
|
Play#0 output Play#0 1 Technology factor : 35.21% Plague factor : 1.29%
|
||||||
|
@ -1665,7 +1665,7 @@
|
||||||
Play#0 output Play#0 1 0 happiness, 0 education produced
|
Play#0 output Play#0 1 0 happiness, 0 education produced
|
||||||
Play#0 output Play#0 1 total pop was 190, yielding 0.00 hap, 0.00 edu
|
Play#0 output Play#0 1 total pop was 190, yielding 0.00 hap, 0.00 edu
|
||||||
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
||||||
Play#0 output Play#0 1 money delta was $1499 for this update
|
Play#0 output Play#0 1 money delta was $1498 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 5
|
Play#0 input nation 5
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -1673,7 +1673,7 @@
|
||||||
Play#0 output Play#0 1 (#5) 5 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#5) 5 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 99
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 99
|
||||||
Play#0 output Play#0 1 No capital (was at -16,-8).
|
Play#0 output Play#0 1 No capital (was at -16,-8).
|
||||||
Play#0 output Play#0 1 The treasury has $26499.00 Military reserves: 0
|
Play#0 output Play#0 1 The treasury has $26498.00 Military reserves: 0
|
||||||
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
||||||
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
||||||
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
||||||
|
@ -1689,8 +1689,8 @@
|
||||||
Play#0 output Play#0 1 0 happiness, 0 education produced
|
Play#0 output Play#0 1 0 happiness, 0 education produced
|
||||||
Play#0 output Play#0 1 total pop was 4000, yielding 0.00 hap, 0.00 edu
|
Play#0 output Play#0 1 total pop was 4000, yielding 0.00 hap, 0.00 edu
|
||||||
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
||||||
Play#0 output Play#0 1 Army delta $-240, Navy delta $-540, Air force delta $-264
|
Play#0 output Play#0 1 Army delta $-240, Navy delta $-540, Air force delta $-266
|
||||||
Play#0 output Play#0 1 money delta was $-185 for this update
|
Play#0 output Play#0 1 money delta was $-197 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 6
|
Play#0 input nation 6
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -1698,7 +1698,7 @@
|
||||||
Play#0 output Play#0 1 (#6) 6 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#6) 6 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
||||||
Play#0 output Play#0 1 100% eff capital at 0,8 has 650 civilians & 20 military
|
Play#0 output Play#0 1 100% eff capital at 0,8 has 650 civilians & 20 military
|
||||||
Play#0 output Play#0 1 The treasury has $24815.00 Military reserves: 0
|
Play#0 output Play#0 1 The treasury has $24803.00 Military reserves: 0
|
||||||
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
||||||
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
||||||
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
||||||
|
@ -1715,7 +1715,7 @@
|
||||||
Play#0 output Play#0 1 6 0,8 c 100% 120 .. .. 650 20 0 84 100% 395 0 1
|
Play#0 output Play#0 1 6 0,8 c 100% 120 .. .. 650 20 0 84 100% 395 0 1
|
||||||
Play#0 output Play#0 1 6 2,8 - 100% 120 .. .. 650 20 0 83 100% 295 0 1
|
Play#0 output Play#0 1 6 2,8 - 100% 120 .. .. 650 20 0 83 100% 295 0 1
|
||||||
Play#0 output Play#0 1 6 4,8 f 100% 120 .. .. 650 20 0 83 100% 444 0 1
|
Play#0 output Play#0 1 6 4,8 f 100% 120 .. .. 650 20 0 83 100% 444 0 1
|
||||||
Play#0 output Play#0 1 6 6,8 * 100% 120 .. .. 650 18 0 84 100% 444 0 1
|
Play#0 output Play#0 1 6 6,8 * 100% 120 .. .. 650 19 0 84 100% 444 0 1
|
||||||
Play#0 output Play#0 1 6 8,8 h 100% 120 .. .. 650 20 0 83 100% 445 0 1
|
Play#0 output Play#0 1 6 8,8 h 100% 120 .. .. 650 20 0 83 100% 445 0 1
|
||||||
Play#0 output Play#0 1 6 10,8 ! 100% 120 .. .. 650 20 0 84 100% 394 0 1
|
Play#0 output Play#0 1 6 10,8 ! 100% 120 .. .. 650 20 0 84 100% 394 0 1
|
||||||
Play#0 output Play#0 1 6 12,8 * 100% 120 .. .. 650 20 0 83 100% 395 0 1
|
Play#0 output Play#0 1 6 12,8 * 100% 120 .. .. 650 20 0 83 100% 395 0 1
|
||||||
|
@ -1730,7 +1730,7 @@
|
||||||
Play#0 output Play#0 1 6 0,8 c .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 6 0,8 c .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 6 2,8 - .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 6 2,8 - .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 6 4,8 f .......... .......... 0 0 0 0 0 0 0 391 396 0
|
Play#0 output Play#0 1 6 4,8 f .......... .......... 0 0 0 0 0 0 0 391 396 0
|
||||||
Play#0 output Play#0 1 6 6,8 * .......... .......... 0 0 0 0 0 0 0 386 396 0
|
Play#0 output Play#0 1 6 6,8 * .......... .......... 0 0 0 0 0 0 0 385 396 0
|
||||||
Play#0 output Play#0 1 6 8,8 h .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 6 8,8 h .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 6 10,8 ! .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 6 10,8 ! .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 6 12,8 * .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 6 12,8 * .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
|
@ -1745,7 +1745,7 @@
|
||||||
Play#0 output Play#0 1 total pop was 4000, yielding 0.00 hap, 0.00 edu
|
Play#0 output Play#0 1 total pop was 4000, yielding 0.00 hap, 0.00 edu
|
||||||
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
Play#0 output Play#0 1 1.7165 technology (0.0000 + 1.7165), 1.6969 research (0.0000 + 1.6969) produced
|
||||||
Play#0 output Play#0 1 Army delta $0, Navy delta $-70, Air force delta $0
|
Play#0 output Play#0 1 Army delta $0, Navy delta $-70, Air force delta $0
|
||||||
Play#0 output Play#0 1 money delta was $828 for this update
|
Play#0 output Play#0 1 money delta was $819 for this update
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input nation 7
|
Play#0 input nation 7
|
||||||
Play#0 command nation
|
Play#0 command nation
|
||||||
|
@ -1753,7 +1753,7 @@
|
||||||
Play#0 output Play#0 1 (#7) 7 Nation Report Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 (#7) 7 Nation Report Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
Play#0 output Play#0 1 Nation status is ACTIVE Bureaucratic Time Units: 640
|
||||||
Play#0 output Play#0 1 100% eff capital at -2,8 has 650 civilians & 20 military
|
Play#0 output Play#0 1 100% eff capital at -2,8 has 650 civilians & 20 military
|
||||||
Play#0 output Play#0 1 The treasury has $25828.00 Military reserves: 0
|
Play#0 output Play#0 1 The treasury has $25819.00 Military reserves: 0
|
||||||
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
Play#0 output Play#0 1 Education.......... 15.24 Happiness....... 4.44
|
||||||
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
Play#0 output Play#0 1 Technology.........101.08 Research........ 1.69
|
||||||
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
Play#0 output Play#0 1 Technology factor : 50.18% Plague factor : 1.98%
|
||||||
|
@ -1769,7 +1769,7 @@
|
||||||
Play#0 output Play#0 1 own sect eff prd mob uf uf old civ mil uw food work avail fall coa
|
Play#0 output Play#0 1 own sect eff prd mob uf uf old civ mil uw food work avail fall coa
|
||||||
Play#0 output Play#0 1 7 -16,8 - 100% 120 .. .. 650 20 0 83 100% 295 0 1
|
Play#0 output Play#0 1 7 -16,8 - 100% 120 .. .. 650 20 0 83 100% 295 0 1
|
||||||
Play#0 output Play#0 1 7 -14,8 h 100% 120 .. .. 650 20 0 83 100% 395 0 1
|
Play#0 output Play#0 1 7 -14,8 h 100% 120 .. .. 650 20 0 83 100% 395 0 1
|
||||||
Play#0 output Play#0 1 7 -12,8 * 100% 120 .. .. 650 20 0 83 100% 394 0 1
|
Play#0 output Play#0 1 7 -12,8 * 100% 120 .. .. 650 19 0 83 100% 394 0 1
|
||||||
Play#0 output Play#0 1 7 -10,8 ! 100% 120 .. .. 650 20 0 84 100% 395 0 1
|
Play#0 output Play#0 1 7 -10,8 ! 100% 120 .. .. 650 20 0 84 100% 395 0 1
|
||||||
Play#0 output Play#0 1 7 -8,8 h 100% 120 .. .. 650 20 0 83 100% 445 0 1
|
Play#0 output Play#0 1 7 -8,8 h 100% 120 .. .. 650 20 0 83 100% 445 0 1
|
||||||
Play#0 output Play#0 1 7 -6,8 * 100% 120 .. .. 650 20 0 83 100% 445 0 1
|
Play#0 output Play#0 1 7 -6,8 * 100% 120 .. .. 650 20 0 83 100% 445 0 1
|
||||||
|
@ -1784,7 +1784,7 @@
|
||||||
Play#0 output Play#0 1 sect sgpidbolhr sgpidbolhr sh gun pet iron dust bar oil lcm hcm rad
|
Play#0 output Play#0 1 sect sgpidbolhr sgpidbolhr sh gun pet iron dust bar oil lcm hcm rad
|
||||||
Play#0 output Play#0 1 7 -16,8 - .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 7 -16,8 - .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 7 -14,8 h .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 7 -14,8 h .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 7 -12,8 * .......... .......... 0 0 0 0 0 0 0 397 399 0
|
Play#0 output Play#0 1 7 -12,8 * .......... .......... 0 0 0 0 0 0 0 399 400 0
|
||||||
Play#0 output Play#0 1 7 -10,8 ! .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 7 -10,8 ! .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
Play#0 output Play#0 1 7 -8,8 h .......... .......... 0 0 0 0 0 0 0 352 368 0
|
Play#0 output Play#0 1 7 -8,8 h .......... .......... 0 0 0 0 0 0 0 352 368 0
|
||||||
Play#0 output Play#0 1 7 -6,8 * .......... .......... 0 0 0 0 0 0 0 400 400 0
|
Play#0 output Play#0 1 7 -6,8 * .......... .......... 0 0 0 0 0 0 0 400 400 0
|
||||||
|
@ -1825,8 +1825,8 @@
|
||||||
Play#0 output Play#0 1 1 0,4 a 100% 0 0 10 0 0
|
Play#0 output Play#0 1 1 0,4 a 100% 0 0 10 0 0
|
||||||
Play#0 output Play#0 1 1 2,4 a 100% 0 0 100 0 0
|
Play#0 output Play#0 1 1 2,4 a 100% 0 0 100 0 0
|
||||||
Play#0 output Play#0 1 1 4,4 a 100% 0 0 100 0 0
|
Play#0 output Play#0 1 1 4,4 a 100% 0 0 100 0 0
|
||||||
Play#0 output Play#0 1 0 16,4 . 0% 0 0 10 10 0
|
Play#0 output Play#0 1 0 16,4 . 0% 0 0 10 9 0
|
||||||
Play#0 output Play#0 1 0 18,4 . 0% 0 0 100 90 0
|
Play#0 output Play#0 1 0 18,4 . 0% 0 0 100 91 0
|
||||||
Play#0 output Play#0 1 0 20,4 . 0% 0 0 100 95 0
|
Play#0 output Play#0 1 0 20,4 . 0% 0 0 100 95 0
|
||||||
Play#0 output Play#0 1 8 sectors
|
Play#0 output Play#0 1 8 sectors
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
|
@ -1837,8 +1837,8 @@
|
||||||
Play#0 output Play#0 1 own sect eff min gold fert oil uran
|
Play#0 output Play#0 1 own sect eff min gold fert oil uran
|
||||||
Play#0 output Play#0 1 1 8,4 o 100% 0 0 0 10 0
|
Play#0 output Play#0 1 1 8,4 o 100% 0 0 0 10 0
|
||||||
Play#0 output Play#0 1 1 10,4 o 100% 0 0 0 92 0
|
Play#0 output Play#0 1 1 10,4 o 100% 0 0 0 92 0
|
||||||
Play#0 output Play#0 1 0 16,4 . 0% 0 0 10 10 0
|
Play#0 output Play#0 1 0 16,4 . 0% 0 0 10 9 0
|
||||||
Play#0 output Play#0 1 0 18,4 . 0% 0 0 100 90 0
|
Play#0 output Play#0 1 0 18,4 . 0% 0 0 100 91 0
|
||||||
Play#0 output Play#0 1 0 20,4 . 0% 0 0 100 95 0
|
Play#0 output Play#0 1 0 20,4 . 0% 0 0 100 95 0
|
||||||
Play#0 output Play#0 1 5 sectors
|
Play#0 output Play#0 1 5 sectors
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue