]> git.pond.sub.org Git - empserver/commitdiff
Make sector production more predictable
authorMarkus Armbruster <armbru@pond.sub.org>
Mon, 6 May 2013 16:58:59 +0000 (18:58 +0200)
committerMarkus Armbruster <armbru@pond.sub.org>
Wed, 8 May 2013 12:23:50 +0000 (14:23 +0200)
produce() limits production to how many units the workers can produce,
rounding randomly.  It charges work for the units actually produced,
discarding fractions.

If you get lucky with the random rounding, you may get a bit of extra
work done for free.  Else, you get to keep the unused work, and may
even be undercharged a tiny bit of work.  Has always been that way.

The production command assumes the random rounding rounds up if and
only if the probability to do so is at least 50%.  Thus, it's
frequently off by one for sectors producing at their worker limit.

The budget command runs the update code, and is therefore also off by
one, only differently.

Rather annoying for tech and research centers, where a single unit
matters.  A tech center with full civilian population can produce 37.5
units in 60 etus.  Given enough materials, it'll fluctuate between 37
and 38.  Production consistently predicts 38, and budget randomly
predicts either 37 or 38.  Both are off by one half the time.

Fix this as follows: limit production to the amount the workers can
produce (no rounding).  Work becomes a hard limit, not subject to
random fluctuations.  Randomly round the work charged for actual
production.  On average, this charges exactly the work that's used.

More importantly, production and budget now predict how much gets
produced more accurately.  They're still not exact, as the amount of
work available for production remains slightly random.

This also "fixes" the smoke test on a i686 Debian 6 box for me.  The
root problem is that floating-point subexpressions may either be
computed in double precision or extended precision.  Different
machines (or different compilers, or even different compiler flags)
may use different precision, and get different results.

Example: producing 108 units at one work per unit, sector p.e. 0.4
needs to charge 108 / 0.4 work.  Computed in double precision, this
gets rounded to 270.0, then truncated to 270.  In 80 bit extended
precision, it gets rounded to 269.999999999, then truncated to 269.

With random rounding instead of truncation, the probability for a
different result is vanishingly small.  However, this commit
introduces truncation in another place.  It just happens not to mess
up the smoke test there.  I doubt this is the last time this kind of
problem upsets the smoke test.

src/lib/commands/prod.c
src/lib/update/produce.c
tests/smoke/smoke.out
tests/smoke/smoke.xdump

index 1bc240855429dc32f6331b4613367d5478c89f6e..a784881173de963fb4faace3b54390ad4f62b6de 100644 (file)
@@ -82,7 +82,7 @@ prod(void)
     int there;
     int unit_work;             /* sum of component amounts */
     int mat_limit, res_limit;
-    int worker_limit;
+    double worker_limit;
     i_type it;
     i_type vtype;
     unsigned char *resource;
@@ -217,12 +217,12 @@ prod(void)
        if (unit_work == 0)
            unit_work = 1;
 
-       worker_limit = (int)(work * p_e / (double)unit_work + 0.5);
+       worker_limit = work * p_e / (double)unit_work;
        res_limit = prod_resource_limit(pp, resource);
 
        max_consume = res_limit;
        if (max_consume > worker_limit)
-           max_consume = worker_limit;
+           max_consume = (int)worker_limit;
        material_consume = MIN(max_consume, mat_limit);
 
        prodeff = prod_eff(type, natp->nat_level[pp->p_nlndx]);
index 2483aca1fcc183c6bc16c13955d87d7f7168f9dd..398e02e8d7413a19f058e9a9d88ab12b2c052cf6 100644 (file)
@@ -54,9 +54,9 @@ produce(struct natstr *np, struct sctstr *sp, short *vec, int work,
     unsigned char *resource;
     double output;
     int actual;
-    int unit_work;
+    int unit_work, work_used;
     i_type item;
-    int worker_limit;
+    double worker_limit;
     int material_limit, res_limit;
     int material_consume;
     int val;
@@ -85,12 +85,12 @@ produce(struct natstr *np, struct sctstr *sp, short *vec, int work,
     if (unit_work == 0)
        unit_work = 1;
 
-    worker_limit = roundavg(work * p_e / unit_work);
+    worker_limit = work * p_e / unit_work;
     res_limit = prod_resource_limit(product, resource);
 
     material_consume = res_limit;
     if (material_consume > worker_limit)
-       material_consume = worker_limit;
+       material_consume = (int)worker_limit;
     if (material_consume > material_limit)
        material_consume = material_limit;
     if (material_consume == 0)
@@ -161,11 +161,12 @@ produce(struct natstr *np, struct sctstr *sp, short *vec, int work,
        }
     }
 
-    /* The MIN() here is to take care of integer rounding errors */
-    if (p_e > 0.0) {
-       return MIN(work, (int)(unit_work * material_consume / p_e));
-    }
-    return 0;
+    if (CANT_HAPPEN(p_e <= 0.0))
+       return 0;
+    work_used = roundavg(unit_work * material_consume / p_e);
+    if (CANT_HAPPEN(work_used > work))
+       return work;
+    return work_used;
 }
 
 /*
index 7d0f3f145c6c16aa118d43f5090ecc16b8e4924c..556905411b684695cd0496a00934b87fdd2c29ad 100644 (file)
@@ -2132,7 +2132,7 @@ CENSUS                   del dst
    2,-2   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
    4,-2   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
    6,-2   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
-  -1,-1   g  100%      60 .. ..      782    0    0    0 100%    0        0   1
+  -1,-1   g  100%      60 .. ..      782    0    0    0 100%    8        0   1
    1,-1   m  100%      60 .. ..      715    0    0    0 100%    0        0
    3,-1   +    0%      60 .. ..        1    0    0    0 100%    0        0
    5,-1   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
@@ -2191,8 +2191,8 @@ Update Turn 02 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  30   11% 2.7K   0    0    0    0  903   37    0    0    0    0   24K
-     1.14
+        1  30   11% 2.7K   0    0    0    0  903   36    0    0    0    0   24K
+     1.13
         6   3   93% 2.3K 110    0    0    0    0   51    0    0    0    0   25K
      1.06
         8   3   93% 2.3K 110    0    0    0    0   51    0    0    0    0   25K
@@ -2207,12 +2207,12 @@ Update Turn 02 starting
      1.05
        10   3   93% 2.3K 110    0    0    0    0   29    0    0    0    0   25K
      1.05
-        2   3   93% 2.3K 110    0    0    0    0    7    0    0    0    0   25K
+        2   3   93% 2.3K 110    0    0    0    0    6    0    0    0    0   25K
      1.04
-        9   3   93% 2.3K 110    0    0    0    0    4    0    0    0    0   25K
+        9   3   93% 2.3K 110    0    0    0    0    3    0    0    0    0   25K
      1.04
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  57   50%  23K 990    0    0    0  903  355    0    0    0    0  251K
+worldwide  57   50%  23K 990    0    0    0  903  352    0    0    0    0  251K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -2240,7 +2240,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    7,-15  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1    9,-15  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1   11,-15  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
-  1    4,-14  g  100%      60 .. ..      782    0    0    0 100%    0    0   1
+  1    4,-14  g  100%      60 .. ..      782    0    0    0 100%    8    0   1
   1    6,-14  m  100%      60 .. ..      715    0    0    0 100%    0    0
   1    8,-14  +    0%      60 .. ..        1    0    0    0 100%    0    0
   1   10,-14  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
@@ -2253,8 +2253,8 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    8,-12  +    0%      60 .. ..        1    0    0    0 100%    0    0
   1   10,-12  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1   12,-12  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
-  8   24,-12  g   80%      60 .. ..      268    0    0    0 100%    1    0
- 10  -11,-11  g   79%      60 .. ..      267    0    0    0 100%    1    0   1
+  8   24,-12  g   80%      60 .. ..      268    0    0    0 100%    0    0
+ 10  -11,-11  g   79%      60 .. ..      267    0    0    0 100%    0    0   1
   1    3,-11  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
   1    5,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0
   1    7,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
@@ -2269,13 +2269,13 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    4,-10  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1    6,-10  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1   10,-10  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
-  9  -25,-7   g   80%      60 .. ..      268    0    0    0 100%    0    0   1
+  9  -25,-7   g   80%      60 .. ..      268    0    0    0 100%    5    0   1
   9  -26,-6   c  100%     127 .. ..     1000   55   86    0 100%  664    0
   9  -24,-6   c  100%     127 .. ..     1000   55   86    0 100%  664    0
-  6    3,-3   g   80%      60 .. ..      268    0    0    0 100%    1    0
+  6    3,-3   g   80%      60 .. ..      268    0    0    0 100%    0    0
   6    2,-2   c  100%     127 .. ..     1000   55   86    0 100%  664    0
   6    4,-2   c  100%     127 .. ..     1000   55   86    0 100%  664    0
-  7   25,-1   g   80%      60 .. ..      268    0    0    0 100%    1    0
+  7   25,-1   g   80%      60 .. ..      268    0    0    0 100%    0    0
   4  -14,0    g   80%      60 .. ..      268    0    0    0 100%    1    0
   7   24,0    c  100%     127 .. ..     1000   55   87    0 100%  664    0
   7   26,0    c  100%     127 .. ..     1000   55   86    0 100%  664    0
@@ -2284,8 +2284,8 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   5  -29,7    g   80%      60 .. ..      268    0    0    0 100%    1    0
   5  -30,8    c  100%     127 .. ..     1000   55   86    0 100%  664    0   1
   5  -28,8    c  100%     127 .. ..     1000   55   86    0 100%  664    0
-  3   -3,9    g   80%      60 .. ..      268    0    0    0 100%    1    0
-  2   17,9    g   79%      60 .. ..      267    0    0    0 100%    0    0   1
+  3   -3,9    g   80%      60 .. ..      268    0    0    0 100%    0    0
+  2   17,9    g   79%      60 .. ..      267    0    0    0 100%    4    0   1
   3   -4,10   c  100%     127 .. ..     1000   55   87    0 100%  664    0
   3   -2,10   c  100%     127 .. ..     1000   55   87    0 100%  665    0
   2   16,10   c  100%     127 .. ..     1000   55   86    0 100%  664    0
@@ -2302,7 +2302,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   9,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  11,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1   4,-14  g .......... ..........   0   0    0    0   37   0    0    0    0   0
+  1   4,-14  g .......... ..........   0   0    0    0   36   0    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0  329    0   0    0    0    0   0
   1   8,-14  + .......... ..........   0   0    0  350    0   0    0    0    0   0
   1  10,-14  + .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -2331,7 +2331,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0    4   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0    3   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   3,-3   g .......... ..........   0   0    0    0   51   0    0    0    0   0
@@ -2347,7 +2347,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -3,9    g .......... ..........   0   0    0    0   47   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0    7   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0    6   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -2393,14 +2393,14 @@ own   sect        eff  min gold fert oil uran
   1    4,-10  +    0%    0    0  100 100    0
   1    6,-10  +    0%    0    0  100 100    0
   1   10,-10  +    0%    0    0  100  98    0
-  9  -25,-7   g   80%   28    4   37   0    0
+  9  -25,-7   g   80%   28    5   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
   9  -24,-6   c  100%  100  100  100 100  100
   6    3,-3   g   80%  100   70    0   0  100
   6    2,-2   c  100%  100  100  100 100  100
   6    4,-2   c  100%  100  100  100 100  100
   7   25,-1   g   80%  100   60    0   0   97
-  4  -14,0    g   80%   96   53    0   0   77
+  4  -14,0    g   80%   96   52    0   0   77
   7   24,0    c  100%  100  100  100 100  100
   7   26,0    c  100%  100  100  100 100  100
   4  -15,1    c  100%  100  100  100 100  100
@@ -2408,7 +2408,7 @@ own   sect        eff  min gold fert oil uran
   5  -29,7    g   80%  100   65    0   0  100
   5  -30,8    c  100%  100  100  100 100  100
   5  -28,8    c  100%  100  100  100 100  100
-  3   -3,9    g   80%  100   64    0   0  100
+  3   -3,9    g   80%  100   65    0   0  100
   2   17,9    g   79%   34    9   28   0    0
   3   -4,10   c  100%  100  100  100 100  100
   3   -2,10   c  100%  100  100  100 100  100
@@ -2568,23 +2568,23 @@ Update Turn 03 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  30   13% 3.3K   0    0    0    0  2.2K 162    0    0    0    0   25K
+        1  30   13% 3.3K   0    0    0    0  2.2K 161    0    0    0    0   25K
      1.35
-        6   3  100% 2.3K 110    0    0    0    0  183    0    0    0    0   26K
+        6   3  100% 2.3K 110    0    0    0    0  182    0    0    0    0   26K
      1.14
         8   3  100% 2.3K 110    0    0    0    0  182    0    0    0    0   26K
      1.14
-        5   3  100% 2.3K 110    0    0    0    0  170    0    0    0    0   26K
+        3   3  100% 2.3K 110    0    0    0    0  169    0    0    0    0   26K
      1.13
-        3   3  100% 2.3K 110    0    0    0    0  168    0    0    0    0   26K
+        5   3  100% 2.3K 110    0    0    0    0  169    0    0    0    0   26K
      1.13
-        7   3  100% 2.3K 110    0    0    0    0  157    0    0    0    0   26K
+        7   3  100% 2.3K 110    0    0    0    0  156    0    0    0    0   26K
      1.13
-        4   3  100% 2.3K 110    0    0    0    0  138    0    0    0    0   26K
+        4   3  100% 2.3K 110    0    0    0    0  135    0    0    0    0   26K
      1.12
-       10   3  100% 2.3K 110    0    0    0    0  104    0    0    0    0   26K
-     1.11
-        2   3  100% 2.3K 110    0    0    0    0   24    0    0    0    0   26K
+       10   3  100% 2.3K 110    0    0    0    0  103    0    0    0    0   26K
+     1.10
+        2   3  100% 2.3K 110    0    0    0    0   22    0    0    0    0   26K
      1.07
         9   3  100% 2.3K 110    0    0    0    0   12    0    0    0    0   26K
      1.07
@@ -2631,7 +2631,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   10,-12  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
   1   12,-12  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
   8   24,-12  g  100%     120 .. ..      348    0    0    0 100%    1    0
- 10  -11,-11  g  100%     120 .. ..      348    0    0    0 100%    0    0   1
+ 10  -11,-11  g  100%     120 .. ..      348    0    0    0 100%    2    0   1
   1    3,-11  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
   1    5,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0
   1    7,-11  +    0%     120 .. ..        2    0    0    0 100%    0    0   1
@@ -2646,14 +2646,14 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    4,-10  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
   1    6,-10  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
   1   10,-10  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
-  9  -25,-7   g  100%     120 .. ..      348    0    0    0 100%    0    0   1
+  9  -25,-7   g  100%     120 .. ..      348    0    0    0 100%    8    0   1
   9  -26,-6   c  100%     127 .. ..     1000   55   99    0 100%  671    0
   9  -24,-6   c  100%     127 .. ..     1000   55   99    0 100%  671    0
   6    3,-3   g  100%     120 .. ..      348    0    0    0 100%    0    0
   6    2,-2   c  100%     127 .. ..     1000   55   99    0 100%  671    0
   6    4,-2   c  100%     127 .. ..     1000   55   99    0 100%  671    0
-  7   25,-1   g  100%     120 .. ..      348    0    0    0 100%    0    0
-  4  -14,0    g  100%     120 .. ..      349    0    0    0 100%    0    0
+  7   25,-1   g  100%     120 .. ..      348    0    0    0 100%    1    0
+  4  -14,0    g  100%     120 .. ..      349    0    0    0 100%    1    0
   7   24,0    c  100%     127 .. ..     1000   55  100    0 100%  672    0
   7   26,0    c  100%     127 .. ..     1000   55   98    0 100%  671    0
   4  -15,1    c  100%     127 .. ..     1000   55   99    0 100%  671    0
@@ -2661,8 +2661,8 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   5  -29,7    g  100%     120 .. ..      348    0    0    0 100%    0    0
   5  -30,8    c  100%     127 .. ..     1000   55   99    0 100%  671    0   1
   5  -28,8    c  100%     127 .. ..     1000   55   98    0 100%  671    0
-  3   -3,9    g  100%     120 .. ..      348    0    0    0 100%    0    0
-  2   17,9    g  100%     120 .. ..      347    0    0    0 100%    0    0   1
+  3   -3,9    g  100%     120 .. ..      348    0    0    0 100%    1    0
+  2   17,9    g  100%     120 .. ..      347    0    0    0 100%    9    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  100    0 100%  672    0
   3   -2,10   c  100%     127 .. ..     1000   55  100    0 100%  672    0
   2   16,10   c  100%     127 .. ..     1000   55   99    0 100%  671    0
@@ -2679,7 +2679,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   9,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  11,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1   4,-14  g .......... ..........   0   0    0    0   52   0    0    0    0   0
+  1   4,-14  g .......... ..........   0   0    0    0   51   0    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0  584    0   0    0    0    0   0
   1   8,-14  j .......... .......0..   0   0    0 1272    0   0    0    0    0   0
   1  10,-14  h .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -2693,7 +2693,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-12  g .......... ..........   0   0    0    0  182   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  104   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  103   0    0    0    0   0
   1   3,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -2711,20 +2711,20 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   9 -25,-7   g .......... ..........   0   0    0    0   12   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  183   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  182   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  157   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  138   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  156   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  135   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  170   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  169   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  168   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   24   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  169   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   22   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -2754,7 +2754,7 @@ own   sect        eff  min gold fert oil uran
   1    8,-12  +    0%  100   65    0   0   88
   1   10,-12  +    0%   50   23    6   0    0
   1   12,-12  +    0%   63   33    0   0   17
-  8   24,-12  g  100%  100   43    0   0  100
+  8   24,-12  g  100%  100   44    0   0  100
  10  -11,-11  g  100%   78   25    0   0   45
   1    3,-11  +    0%    0    0  100  87    0
   1    5,-11  +    0%  100   74    0   0  100
@@ -2770,10 +2770,10 @@ own   sect        eff  min gold fert oil uran
   1    4,-10  +    0%    0    0  100 100    0
   1    6,-10  +    0%    0    0  100 100    0
   1   10,-10  +    0%    0    0  100  98    0
-  9  -25,-7   g  100%   28    2   37   0    0
+  9  -25,-7   g  100%   28    3   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
   9  -24,-6   c  100%  100  100  100 100  100
-  6    3,-3   g  100%  100   43    0   0  100
+  6    3,-3   g  100%  100   44    0   0  100
   6    2,-2   c  100%  100  100  100 100  100
   6    4,-2   c  100%  100  100  100 100  100
   7   25,-1   g  100%  100   37    0   0   97
@@ -2782,11 +2782,11 @@ own   sect        eff  min gold fert oil uran
   7   26,0    c  100%  100  100  100 100  100
   4  -15,1    c  100%  100  100  100 100  100
   4  -13,1    c  100%  100  100  100 100  100
-  5  -29,7    g  100%  100   40    0   0  100
+  5  -29,7    g  100%  100   41    0   0  100
   5  -30,8    c  100%  100  100  100 100  100
   5  -28,8    c  100%  100  100  100 100  100
-  3   -3,9    g  100%  100   40    0   0  100
-  2   17,9    g  100%   34    5   28   0    0
+  3   -3,9    g  100%  100   41    0   0  100
+  2   17,9    g  100%   34    6   28   0    0
   3   -4,10   c  100%  100  100  100 100  100
   3   -2,10   c  100%  100  100  100 100  100
   2   16,10   c  100%  100  100  100 100  100
@@ -2819,7 +2819,7 @@ CENSUS                   del dst
    3,-1   j  100%     127 .. ..      619    0    0    0 100%    0        0
    5,-1   h   89%     127 .. ..      300    0    0    0 100%   90        0   1
   -2,0    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   0,0    g  100%     127 .. ..      370    0    0    0 100%    1        0
+   0,0    g  100%     127 .. ..      370    0    0    0 100%    0        0
    2,0    m  100%      72 .. ..     1000    0  227    0 100%    0        0
    4,0    k  100%     127 .. ..      391    0    0    0 100%    0        0   1
   -1,1    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
@@ -2914,9 +2914,9 @@ PRODUCTION SIMULATION
   -1,-1   b 100%   405    0b 1.00 $0       0d            405d              81
    1,-1   m 100%   600  600i 1.00 $0                                      600
    3,-1   j 100%   482  241l 0.50 $0     482i            482i             241
-   0,0    g  44%   288  127d 1.00 $0                                      127
+   0,0    g  44%   288  126d 1.00 $0                                      126
    2,0    m 100%   702  702i 1.00 $0                                      702
-   4,0    k 100%   105   26h 0.50 $0     106i            106i              26
+   4,0    k 100%   105   26h 0.50 $0     104i            104i              26
   -2,2    o  87%   137   60o 0.50 $0                                       60
 8 sectors
 
@@ -2932,7 +2932,7 @@ You have three new telegrams waiting ...
 [0:640] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-1   g  100%     127 .. ..      452    0    0    0 100%    0        0
+   1,-1   g  100%     127 .. ..      452    0    0    0 100%    2        0
    0,0    c  100%     127 .. ..     1000   55  115    0 100%  682        0
    2,0    c  100%     127 .. ..     1000   55  114    0 100%  681        0
 3 sectors
@@ -2994,25 +2994,25 @@ Update Turn 04 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  30   23% 4.2K   0    0    0    0  3.1K 285    0    0    1    0   26K
+        1  30   23% 4.2K   0    0    0    0  3.1K 284    0    0    1    0   26K
      1.74
-        6   3  100% 2.5K 110    0    0    0    0  299    0    0    0    0   26K
-     1.21
-        8   4   75% 2.5K 110    0    0    0    0  299    0    0    0    0   26K
-     1.21
-        5   3  100% 2.5K 110    0    0    0    0  278    0    0    0    0   26K
+        6   3  100% 2.5K 110    0    0    0    0  300    0    0    0    0   26K
+     1.22
+        8   4   75% 2.5K 110    0    0    0    0  300    0    0    0    0   26K
+     1.22
+        3   3  100% 2.5K 110    0    0    0    0  279    0    0    0    0   26K
      1.21
-        3   3  100% 2.5K 110    0    0    0    0  276    0    0    0    0   26K
+        5   3  100% 2.5K 110    0    0    0    0  279    0    0    0    0   26K
      1.21
-        7   3  100% 2.5K 110    0    0    0    0  257    0    0    0    0   26K
+        7   3  100% 2.5K 110    0    0    0    0  255    0    0    0    0   26K
      1.20
-        4   3  100% 2.5K 110    0    0    0    0  227    0    0    0    0   26K
-     1.19
-       10   3  100% 2.5K 110    0    0    0    0  171    0    0    0    0   26K
+        4   3  100% 2.5K 110    0    0    0    0  224    0    0    0    0   26K
+     1.18
+       10   3  100% 2.5K 110    0    0    0    0  170    0    0    0    0   26K
      1.16
         2   3  100% 2.5K 110    0    0    0    0   38    0    0    0    0   26K
      1.11
-        9   3  100% 2.5K 110    0    0    0    0   18    0    0    0    0   26K
+        9   3  100% 2.5K 110    0    0    0    0   20    0    0    0    0   26K
      1.10
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
 worldwide  58   58%  26K 990    0    0    0  3.1K 2.1K   0    0    1    0  261K
@@ -3049,7 +3049,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   10,-14  h   89%     123 .. ..      300    0    0    0 100%   68    0   1
   8   16,-14  )    0%       0 .. ..       50    0    0    0 100%    0    0   1
   1    3,-13  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  1    5,-13  g  100%     127 .. ..      370    0    0    0 100%    1    0
+  1    5,-13  g  100%     127 .. ..      370    0    0    0 100%    0    0
   1    7,-13  m  100%      42 .. ..      700    0  227    0 100%    0    0
   1    9,-13  k  100%     111 .. ..      136    0    0    0 100%    0    0   1
   1    4,-12  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
@@ -3057,7 +3057,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    8,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0
   1   10,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1   12,-12  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   24,-12  g  100%     127 .. ..      452    0    0    0 100%    0    0
+  8   24,-12  g  100%     127 .. ..      452    0    0    0 100%    2    0
  10  -11,-11  g  100%     127 .. ..      452    0    0    0 100%    2    0   1
   1    3,-11  o    0%     127 .. ..      304    0    0    0 100%    1    0   1
   1    5,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0
@@ -3073,23 +3073,23 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    4,-10  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1    6,-10  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1   10,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  9  -25,-7   g  100%     127 .. ..      453    0    0    0 100%    0    0   1
+  9  -25,-7   g  100%     127 .. ..      453    0    0    0 100%    4    0   1
   9  -26,-6   c  100%     127 .. ..     1000   55  114    0 100%  681    0
   9  -24,-6   c  100%     127 .. ..     1000   55  114    0 100%  681    0
   6    3,-3   g  100%     127 .. ..      452    0    0    0 100%    1    0
   6    2,-2   c  100%     127 .. ..     1000   55  114    0 100%  681    0
   6    4,-2   c  100%     127 .. ..     1000   55  114    0 100%  681    0
-  7   25,-1   g  100%     127 .. ..      452    0    0    0 100%    0    0
-  4  -14,0    g  100%     127 .. ..      454    0    0    0 100%    3    0
+  7   25,-1   g  100%     127 .. ..      452    0    0    0 100%    3    0
+  4  -14,0    g  100%     127 .. ..      454    0    0    0 100%    2    0
   7   24,0    c  100%     127 .. ..     1000   55  115    0 100%  682    0
   7   26,0    c  100%     127 .. ..     1000   55  113    0 100%  681    0
   4  -15,1    c  100%     127 .. ..     1000   55  114    0 100%  681    0
   4  -13,1    c  100%     127 .. ..     1000   55  115    0 100%  682    0
-  5  -29,7    g  100%     127 .. ..      452    0    0    0 100%    0    0
+  5  -29,7    g  100%     127 .. ..      452    0    0    0 100%    1    0
   5  -30,8    c  100%     127 .. ..     1000   55  113    0 100%  680    0   1
   5  -28,8    c  100%     127 .. ..     1000   55  113    0 100%  681    0
-  3   -3,9    g  100%     127 .. ..      452    0    0    0 100%    0    0
-  2   17,9    g  100%     127 .. ..      451    0    0    0 100%    0    0   1
+  3   -3,9    g  100%     127 .. ..      452    0    0    0 100%    2    0
+  2   17,9    g  100%     127 .. ..      451    0    0    0 100%    4    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  115    0 100%  682    0
   3   -2,10   c  100%     127 .. ..     1000   55  115    0 100%  682    0
   2   16,10   c  100%     127 .. ..     1000   55  113    0 100%  680    0
@@ -3106,10 +3106,10 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   9,-15  + .......... ....0.01..   0   0    0    0    0   0    0    0    0   0
   1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  102    0   0
-  1   4,-14  b .......... ....0.....   0   0    0    0    2  10    0    0    0   0
+  1   4,-14  b .......... ....0.....   0   0    0    0    1  10    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0  354    0   0    0    0    0   0
   1   8,-14  j .......... .......0..   0   0    0 1821    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0  598  282   0    0   26   27   0
+  1  10,-14  h .......... ..........   0   0    0  598  282   0    0   26   26   0
   8  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   5,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
@@ -3120,8 +3120,8 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  8  24,-12  g .......... ..........   0   0    0    0  299   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  171   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0  300   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  170   0    0    0    0   0
   1   3,-11  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
   1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -3136,22 +3136,22 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   20   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  299   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  300   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  257   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  227   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  255   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  224   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  278   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  279   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  276   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  279   0    0    0    0   0
   2  17,9    g .......... ..........   0   0    0    0   38   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -3184,7 +3184,7 @@ own   sect        eff  min gold fert oil uran
   1   10,-12  +    0%   50   23    6   0    0
   1   12,-12  +    0%   63   33    0   0   17
   8   24,-12  g  100%  100   20    0   0  100
- 10  -11,-11  g  100%   78   12    0   0   45
+ 10  -11,-11  g  100%   78   11    0   0   45
   1    3,-11  o    0%    0    0  100  87    0
   1    5,-11  +    0%  100   74    0   0  100
   1    7,-11  +    0%   91   56    0   0   68
@@ -3199,10 +3199,10 @@ own   sect        eff  min gold fert oil uran
   1    4,-10  +    0%    0    0  100 100    0
   1    6,-10  +    0%    0    0  100 100    0
   1   10,-10  +    0%    0    0  100  98    0
-  9  -25,-7   g  100%   28    0   37   0    0
+  9  -25,-7   g  100%   28    2   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
   9  -24,-6   c  100%  100  100  100 100  100
-  6    3,-3   g  100%  100   19    0   0  100
+  6    3,-3   g  100%  100   20    0   0  100
   6    2,-2   c  100%  100  100  100 100  100
   6    4,-2   c  100%  100  100  100 100  100
   7   25,-1   g  100%  100   17    0   0   97
@@ -3211,11 +3211,11 @@ own   sect        eff  min gold fert oil uran
   7   26,0    c  100%  100  100  100 100  100
   4  -15,1    c  100%  100  100  100 100  100
   4  -13,1    c  100%  100  100  100 100  100
-  5  -29,7    g  100%  100   18    0   0  100
+  5  -29,7    g  100%  100   19    0   0  100
   5  -30,8    c  100%  100  100  100 100  100
   5  -28,8    c  100%  100  100  100 100  100
   3   -3,9    g  100%  100   19    0   0  100
-  2   17,9    g  100%   34    2   28   0    0
+  2   17,9    g  100%   34    3   28   0    0
   3   -4,10   c  100%  100  100  100 100  100
   3   -2,10   c  100%  100  100  100 100  100
   2   16,10   c  100%  100  100  100 100  100
@@ -3248,9 +3248,9 @@ CENSUS                   del dst
    3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
    5,-1   h  100%     127 .. ..        1    0    0    0 100%  135        0   1
   -2,0    +    0%     127 .. ..      426    0    0    0 100%    0        0   1
-   0,0    g  100%     127 .. ..      481    0    0    0 100%    0        0
+   0,0    g  100%     127 .. ..      481    0    0    0 100%    2        0
    2,0    m  100%      82 .. ..      768    0  261    0 100%    0        0
-   4,0    k  100%     127 .. ..      176    0    0    0 100%    0        0   1
+   4,0    k  100%     127 .. ..      176    0    0    0 100%    1        0   1
   -1,1    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
    1,1    g    1%     127 .. ..        5    0    0    0 100%    1        0
    3,1    +    0%     127 .. ..        2    0    0    0 100%    0        0
@@ -3299,7 +3299,7 @@ money delta was $229 for this update
 [0:554] Command : 
 [0:553] Command :  60 enlisted in -2,0 (60)
 Total new enlistment : 60
-Military reserves stand at 39
+Military reserves stand at 38
 Paperwork at recruiting stations ... 1
 
 [0:550] Command : Looking for best path to 5,-1
@@ -3341,15 +3341,15 @@ We have secured a beachhead at 11,-1, sir!
 [0:544] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-   4,-2   t 100%   188  5.04 0.50 $3000   10d  50o 100l   12d  60o 120l  6.05
+   4,-2   t 100%   188  5.04 0.50 $3000   10d  50o 100l   11d  55o 110l  5.55
    6,-2   l 100%   195  145  1.00 $1305  145l            195l             195
-  -1,-1   b 100%   598   10b 1.00 $100    50d            600d             120
+  -1,-1   b 100%   598   10b 1.00 $100    50d            595d             119
    1,-1   m 100%   598  598i 1.00 $0                                      598
    3,-1   j 100%   598  299l 0.50 $0     598i            598i             299
    0,0    g  19%   375   71d 1.00 $0                                       71
    2,0    m 100%   778  778i 1.00 $0                                      778
    4,0    k 100%   136   34h 0.50 $0     136i            136i              34
-  -2,2    o  76%   307  116o 0.50 $0                                      116
+  -2,2    o  75%   307  115o 0.50 $0                                      115
 9 sectors
 
 [0:544] Command : Bye-bye
@@ -3364,7 +3364,7 @@ You have two new telegrams waiting ...
 [0:640] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-1   g  100%     127 .. ..      588    0    0    0 100%    0        0
+   1,-1   g  100%     127 .. ..      588    0    0    0 100%    2        0
    0,0    c  100%      87 .. ..     1000   55  132    0 100%  692        0
    2,0    c  100%     127 .. ..     1000   55  131    0 100%  691        0
 3 sectors
@@ -3419,25 +3419,25 @@ Update Turn 05 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  31   30% 5.2K  60    0    0    0  3.8K 412   59    0    1    0   26K
+        1  31   30% 5.2K  60    0    0    0  3.8K 410   59    0    1    0   26K
      2.12
-        8   3  100% 2.6K 110    0    0    0    0  370    0    0    0    0   27K
+        6   3  100% 2.6K 110    0    0    0    0  370    0    0    0    0   27K
      1.28
-        6   3  100% 2.6K 110    0    0    0    0  366    0    0    0    0   27K
+        8   3  100% 2.6K 110    0    0    0    0  370    0    0    0    0   27K
      1.28
-        3   3  100% 2.6K 110    0    0    0    0  342    0    0    0    0   27K
+        3   3  100% 2.6K 110    0    0    0    0  345    0    0    0    0   27K
      1.27
-        5   3  100% 2.6K 110    0    0    0    0  341    0    0    0    0   27K
+        5   3  100% 2.6K 110    0    0    0    0  345    0    0    0    0   27K
      1.27
-        7   3  100% 2.6K 110    0    0    0    0  317    0    0    0    0   27K
+        7   3  100% 2.6K 110    0    0    0    0  314    0    0    0    0   27K
      1.26
-        4   3  100% 2.6K 110    0    0    0    0  280    0    0    0    0   27K
+        4   3  100% 2.6K 110    0    0    0    0  277    0    0    0    0   27K
      1.25
-       10   3  100% 2.6K 110    0    0    0    0  213    0    0    0    0   27K
+       10   3  100% 2.6K 110    0    0    0    0  208    0    0    0    0   27K
      1.22
-        2   3  100% 2.6K 110    0    0    0    0   45    0    0    0    0   27K
+        2   3  100% 2.6K 110    0    0    0    0   48    0    0    0    0   27K
      1.15
-        9   3  100% 2.6K 110    0    0    0    0   18    0    0    0    0   27K
+        9   3  100% 2.6K 110    0    0    0    0   27    0    0    0    0   27K
      1.14
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
 worldwide  58   62%  29K 1.1K   0    0    0  3.8K 2.7K  59    0    1    0  266K
@@ -3474,16 +3474,16 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   10,-14  h  100%     127 .. ..        1    0    0    0 100%  135    0   1
   1   16,-14  )   19% no    0 .. ..   8   58   35    0    0 100%    0    0   1
   1    3,-13  +    0%      61 .. ..      366    0    0    0 100%    0    0   1
-  1    5,-13  g  100%     127 .. ..      481    0    0    0 100%    0    0
+  1    5,-13  g  100%     127 .. ..      481    0    0    0 100%    2    0
   1    7,-13  m  100%      82 .. ..      768    0  261    0 100%    0    0
-  1    9,-13  k  100%     127 .. ..      176    0    0    0 100%    0    0   1
+  1    9,-13  k  100%     127 .. ..      176    0    0    0 100%    1    0   1
   1    4,-12  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
   1    6,-12  g    1%     127 .. ..        5    0    0    0 100%    1    0
   1    8,-12  +    0%     127 .. ..        2    0    0    0 100%    0    0
   1   10,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1   12,-12  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  8   24,-12  g  100%     127 .. ..      588    0    0    0 100%    0    0
- 10  -11,-11  g  100%     127 .. ..      587    0    0    0 100%    2    0   1
+  8   24,-12  g  100%     127 .. ..      588    0    0    0 100%    2    0
+ 10  -11,-11  g  100%     127 .. ..      587    0    0    0 100%    7    0   1
   1    3,-11  o  100%     127 .. ..      395    0    0    0 100%    1    0   1
   1    5,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0
   1    7,-11  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
@@ -3498,23 +3498,23 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    4,-10  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
   1    6,-10  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1   10,-10  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  9  -25,-7   g  100%     127 .. ..      589    0    0    0 100%  352    0   1
+  9  -25,-7   g  100%     127 .. ..      589    0    0    0 100%    2    0   1
   9  -26,-6   c  100%     127 .. ..     1000   55  131    0 100%  691    0
   9  -24,-6   c  100%     127 .. ..     1000   55  131    0 100%  691    0
-  6    3,-3   g  100%     127 .. ..      587    0    0    0 100%    0    0
+  6    3,-3   g  100%     127 .. ..      587    0    0    0 100%    2    0
   6    2,-2   c  100%     127 .. ..     1000   55  131    0 100%  691    0
   6    4,-2   c  100%     127 .. ..     1000   55  132    0 100%  691    0
-  7   25,-1   g  100%     127 .. ..      588    0    0    0 100%    0    0
-  4  -14,0    g  100%     127 .. ..      591    0    0    0 100%    1    0
+  7   25,-1   g  100%     127 .. ..      588    0    0    0 100%    5    0
+  4  -14,0    g  100%     127 .. ..      591    0    0    0 100%    0    0
   7   24,0    c  100%     127 .. ..     1000   55  133    0 100%  692    0
   7   26,0    c  100%     127 .. ..     1000   55  130    0 100%  691    0
   4  -15,1    c  100%     127 .. ..     1000   55  131    0 100%  691    0
   4  -13,1    c  100%     127 .. ..     1000   55  132    0 100%  692    0
-  5  -29,7    g  100%     127 .. ..      588    0    0    0 100%    2    0
+  5  -29,7    g  100%     127 .. ..      588    0    0    0 100%    4    0
   5  -30,8    c  100%     127 .. ..     1000   55  130    0 100%  691    0   1
   5  -28,8    c  100%     127 .. ..     1000   55  130    0 100%  691    0
   3   -3,9    g  100%     127 .. ..      588    0    0    0 100%    5    0
-  2   17,9    g  100%     127 .. ..      586    0    0    0 100%    1    0   1
+  2   17,9    g  100%     127 .. ..      586    0    0    0 100%   18    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  132    0 100%  692    0
   3   -2,10   c  100%     127 .. ..     1000   55  132    0 100%  692    0
   2   16,10   c  100%     127 .. ..     1000   55  130    0 100%  691    0
@@ -3534,19 +3534,19 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-14  b .......... ....0.....   0   0    0    0   50  10    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... .......0..   0   0    0 2292    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0  598  350   0    8    0   29   0
+  1  10,-14  h .......... ..........   0   0    0  598  348   0    8    0   28   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   5,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   1   7,-13  m ...j...... ..........   0   0    0  284    0   0    0    0    0   0
-  1   9,-13  k .......... ........0.   0   0    0  638    0   0    0    0    1   0
+  1   9,-13  k .......... ........0.   0   0    0  640    0   0    0    0    1   0
   1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   6,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-12  g .......... ..........   0   0    0    0  370   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  213   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  208   0    0    0    0   0
   1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -3561,23 +3561,23 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   27   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  370   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  317   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  280   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  314   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  277   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  341   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  345   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  342   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   45   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  345   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   48   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -3609,8 +3609,8 @@ own   sect        eff  min gold fert oil uran
   1   10,-12  +    0%   50   23    6   0    0
   1   12,-12  +    1%   63   33    0   0   17
   8   24,-12  g  100%  100    6    0   0  100
- 10  -11,-11  g  100%   78    4    0   0   45
-  1    3,-11  o  100%    0    0  100  76    0
+ 10  -11,-11  g  100%   78    3    0   0   45
+  1    3,-11  o  100%    0    0  100  75    0
   1    5,-11  +    0%  100   74    0   0  100
   1    7,-11  +    0%   91   56    0   0   68
   1    9,-11  +    0%   85   51    0   0   57
@@ -3624,13 +3624,13 @@ own   sect        eff  min gold fert oil uran
   1    4,-10  +    0%    0    0  100 100    0
   1    6,-10  +    0%    0    0  100 100    0
   1   10,-10  +    1%    0    0  100  98    0
-  9  -25,-7   g  100%   28    0   37   0    0
+  9  -25,-7   g  100%   28    1   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
   9  -24,-6   c  100%  100  100  100 100  100
-  6    3,-3   g  100%  100    5    0   0  100
+  6    3,-3   g  100%  100    6    0   0  100
   6    2,-2   c  100%  100  100  100 100  100
   6    4,-2   c  100%  100  100  100 100  100
-  7   25,-1   g  100%  100    5    0   0   97
+  7   25,-1   g  100%  100    6    0   0   97
   4  -14,0    g  100%   96    4    0   0   77
   7   24,0    c  100%  100  100  100 100  100
   7   26,0    c  100%  100  100  100 100  100
@@ -3684,7 +3684,7 @@ CENSUS                   del dst
    3,1    +    0%     127 .. ..        3    0    0    0 100%    1        0
    5,1    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
    7,1    +    3%     127 .. ..        7    0    0    0 100%    2        0   1
-  -2,2    o  100%     127 .. ..      513    0    0    0 100%    0        0   1
+  -2,2    o  100%     127 .. ..      513    0    0    0 100%    1        0   1
    0,2    +    0%     127 .. ..        1    0    0    0 100%    0        0
    2,2    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
    4,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
@@ -3724,7 +3724,7 @@ a class of graduates (145.00) produced in 6,-2
 total pop was 5162, yielding 0.00 hap, 72.87 edu
 3.3339 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $-2629 for this update
+money delta was $-2628 for this update
 
 
 [0:544] Command : Thu Jan  1 00:00:00 1970
@@ -3732,13 +3732,13 @@ PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    4,-2   t 100%   288  7.05 0.71 $3000   10d  50o 100l   18d  90o 180l 12.69
    6,-2   l 100%   195  150  1.00 $1350  150l            195l             195
-  -1,-1   b 100%   598   10b 1.00 $100    50d            600d             120
+  -1,-1   b 100%   598   10b 1.00 $100    50d            595d             119
    1,-1   m 100%   598  598i 1.00 $0                                      598
    3,-1   j 100%   598  341l 0.57 $0     598i            598i             341
    0,0    g   5%   598   25d 1.00 $0                                       25
    2,0    m 100%   806  806i 1.00 $0                                      806
    4,0    k 100%   598  171h 0.57 $0     598i            598i             171
-  -2,2    o  53%   399  120o 0.57 $0                                      120
+  -2,2    o  52%   399  118o 0.57 $0                                      118
 9 sectors
 
 [0:544] Command : Bye-bye
@@ -3753,28 +3753,28 @@ Update Turn 06 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  31   37% 6.8K  53    0    0    0  4.5K 423  126    0    1    0   23K
+        1  31   37% 6.8K  53    0    0    0  4.5K 421  124    0    1    0   23K
      8.27
-        8   3  100% 2.8K 110    0    0    0    0  397    0    0    0    0   27K
+        6   3  100% 2.8K 110    0    0    0    0  397    0    0    0    0   27K
      2.22
-        6   3  100% 2.8K 110    0    0    0    0  389    0    0    0    0   27K
+        8   3  100% 2.8K 110    0    0    0    0  397    0    0    0    0   27K
      2.22
-        3   3  100% 2.8K 110    0    0    0    0  369    0    0    0    0   27K
+        3   3  100% 2.8K 110    0    0    0    0  372    0    0    0    0   27K
      2.20
-        5   3  100% 2.8K 110    0    0    0    0  363    0    0    0    0   27K
+        5   3  100% 2.8K 110    0    0    0    0  367    0    0    0    0   27K
      2.20
-        7   3  100% 2.8K 110    0    0    0    0  340    0    0    0    0   27K
+        7   3  100% 2.8K 110    0    0    0    0  341    0    0    0    0   27K
      2.18
-        4   3  100% 2.8K 110    0    0    0    0  298    0    0    0    0   27K
+        4   3  100% 2.8K 110    0    0    0    0  295    0    0    0    0   27K
      2.16
-       10   3  100% 2.8K 110    0    0    0    0  231    0    0    0    0   27K
-     2.11
-        2   3  100% 2.8K 110    0    0    0    0   50    0    0    0    0   27K
+       10   3  100% 2.8K 110    0    0    0    0  221    0    0    0    0   27K
+     2.10
+        2   3  100% 2.8K 110    0    0    0    0   52    0    0    0    0   27K
      1.99
-        9   3  100% 2.8K 110    0    0    0    0   18    0    0    0    0   27K
-     1.97
+        9   3  100% 2.8K 110    0    0    0    0   31    0    0    0    0   27K
+     1.98
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  58   66%  32K 1.0K   0    0    0  4.5K 2.9K 126    0    1    0  270K
+worldwide  58   66%  32K 1.0K   0    0    0  4.5K 2.9K 124    0    1    0  270K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -3817,8 +3817,8 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   10,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1   12,-12  +    3%     127 .. ..        7    0    0    0 100%    2    0   1
   8   24,-12  g  100%     127 .. ..      764    0    0    0 100%    7    0
- 10  -11,-11  g  100%     127 .. ..      763    0    0    0 100%    7    0   1
-  1    3,-11  o  100%     127 .. ..      513    0    0    0 100%    0    0   1
+ 10  -11,-11  g  100%     127 .. ..      763    0    0    0 100%   24    0   1
+  1    3,-11  o  100%     127 .. ..      513    0    0    0 100%    1    0   1
   1    5,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0
   1    7,-11  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
   1    9,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
@@ -3832,13 +3832,13 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    4,-10  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
   1    6,-10  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
   1   10,-10  +    3%     127 .. ..        7    0    0    0 100%    2    0   1
-  9  -25,-7   g  100%     127 .. ..      765    0    0    0 100%  458    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  151    0 100%  703    0
+  9  -25,-7   g  100%     127 .. ..      765    0    0    0 100%   58    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  150    0 100%  702    0
   9  -24,-6   c  100%     127 .. ..     1000   55  150    0 100%  702    0
-  6    3,-3   g  100%     127 .. ..      763    0    0    0 100%    0    0
+  6    3,-3   g  100%     127 .. ..      763    0    0    0 100%    7    0
   6    2,-2   c  100%     127 .. ..     1000   55  151    0 100%  703    0
   6    4,-2   c  100%     127 .. ..     1000   55  152    0 100%  704    0
-  7   25,-1   g  100%     127 .. ..      764    0    0    0 100%    0    0
+  7   25,-1   g  100%     127 .. ..      764    0    0    0 100%    7    0
   4  -14,0    g  100%     127 .. ..      768    0    0    0 100%   10    0
   7   24,0    c  100%     127 .. ..     1000   55  153    0 100%  705    0
   7   26,0    c  100%     127 .. ..     1000   55  149    0 100%  702    0
@@ -3848,7 +3848,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   5  -30,8    c  100%     127 .. ..     1000   55  150    0 100%  703    0   1
   5  -28,8    c  100%     127 .. ..     1000   55  150    0 100%  703    0
   3   -3,9    g  100%     127 .. ..      764    0    0    0 100%    7    0
-  2   17,9    g  100%     127 .. ..      762    0    0    0 100%    0    0   1
+  2   17,9    g  100%     127 .. ..      762    0    0    0 100%   56    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  152    0 100%  704    0
   3   -2,10   c  100%     127 .. ..     1000   55  152    0 100%  704    0
   2   16,10   c  100%     127 .. ..     1000   55  150    0 100%  703    0
@@ -3868,19 +3868,19 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-14  b .......... ....0.....   0   0    0    0   50  20    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... .......0..   0   0    0 2292    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0  598  361   0   75   49   63   0
+  1  10,-14  h .......... ..........   0   0    0  598  359   0   73   49   62   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   5,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   1   7,-13  m ...j...... ..........   0   0    0  244    0   0    0    0    0   0
-  1   9,-13  k .......... ........0.   0   0    0 1321    0   0    0    0    1   0
+  1   9,-13  k .......... ........0.   0   0    0 1323    0   0    0    0    1   0
   1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   6,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-12  g .......... ..........   0   0    0    0  397   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  221   0    0    0    0   0
   1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -3895,23 +3895,23 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  341   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  363   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  367   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  369   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  372   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -3943,8 +3943,8 @@ own   sect        eff  min gold fert oil uran
   1   10,-12  +    0%   50   23    6   0    0
   1   12,-12  +    3%   63   33    0   0   17
   8   24,-12  g  100%  100    1    0   0  100
- 10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  o  100%    0    0  100  53    0
+ 10  -11,-11  g  100%   78    1    0   0   45
+  1    3,-11  o  100%    0    0  100  52    0
   1    5,-11  +    0%  100   74    0   0  100
   1    7,-11  +    1%   91   56    0   0   68
   1    9,-11  +    0%   85   51    0   0   57
@@ -3964,7 +3964,7 @@ own   sect        eff  min gold fert oil uran
   6    3,-3   g  100%  100    0    0   0  100
   6    2,-2   c  100%  100  100  100 100  100
   6    4,-2   c  100%  100  100  100 100  100
-  7   25,-1   g  100%  100    0    0   0   97
+  7   25,-1   g  100%  100    1    0   0   97
   4  -14,0    g  100%   96    0    0   0   77
   7   24,0    c  100%  100  100  100 100  100
   7   26,0    c  100%  100  100  100 100  100
@@ -4099,26 +4099,26 @@ CENSUS                   del dst
    1,-1   m  100%     127 .. ..      768    0    0    0 100%    0        0
    3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
    5,-1   h  100%     127 .. ..     1212    0    0    0 100%    0        0   1
-  11,-1   )   51%     105 .. ..   8   22   28   76    0 100%   33        0   1
+  11,-1   )   51%     104 .. ..   8   22   28   76    0 100%   33        0   1
   -2,0    +j 100%     127 .. ..      768    0    0    0 100%  598        0   1
    0,0    gm 100%     126 .. ..      768    0    0    0 100%   98        0
    2,0    m  100%     112 .. ..      768    0  346    0 100%    0        0
    4,0    k  100%     127 .. ..      768    0    0    0 100%    0        0   1
   -1,1    +    5%     127 .. ..        9    0    0    0 100%    3        0   1
-   1,1    g   56%     127 .. ..      768    0    0    0 100%   54        0
+   1,1    g   55%     127 .. ..      768    0    0    0 100%   54        0
    3,1    g    0%     127 .. ..        4    0    0    0 100%    1        0
    5,1    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
    7,1    +    5%     127 .. ..        9    0    0    0 100%    3        0   1
-  -2,2    o  100%     125 .. ..      620    0    0    0 100%    0        0   1
-   0,2    g    0%     127 .. ..       48    0    0    0 100%    0        0
+  -2,2    o  100%     125 .. ..      620    0    0    0 100%    1        0   1
+   0,2    g    0%     127 .. ..       49    0    0    0 100%    0        0
    2,2    g    0%     127 .. ..        8    0    0    0 100%    2        0   1
-   4,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   6,2    +    3%     127 .. ..        7    0    0    0 100%    2        0   1
+   4,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   6,2    +    2%     127 .. ..        6    0    0    0 100%    2        0   1
    8,2    +    3%     127 .. ..        8    0    0    0 100%    2        0   1
-  10,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  10,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
   -1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   1,3    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
-   5,3    +    5%     127 .. ..       10    0    0    0 100%    3        0   1
+   1,3    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   5,3    +    5%     127 .. ..        9    0    0    0 100%    3        0   1
 31 sectors
 
 [0:513] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
@@ -4147,7 +4147,7 @@ a class of graduates (150.00) produced in 6,-2
 total pop was 6711, yielding 0.00 hap, 61.04 edu
 3.8178 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $-1339 for this update
+money delta was $-1337 for this update
 
 
 [0:513] Command : Thu Jan  1 00:00:00 1970
@@ -4155,15 +4155,15 @@ PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    4,-2   t 100%   288  7.59 0.76 $3000   10d  50o 100l   18d  90o 180l 13.67
    6,-2   l 100%   195  150  1.00 $1350  150l            195l             195
-  -1,-1   b 100%   598   10b 1.00 $100    50d            600d             120
+  -1,-1   b 100%   598   10b 1.00 $100    50d            595d             119
    1,-1   m 100%   598  598i 1.00 $0                                      598
    3,-1   j 100%   598  377l 0.63 $0     598i            598i             377
   -2,0    j 100%   473    0l 0.63 $0       0i            473i             298
    0,0    m 100%   473  473i 1.00 $0                                      473
    2,0    m 100%   837  837i 1.00 $0                                      837
    4,0    k 100%   598  189h 0.63 $0     598i            598i             189
-   1,1    g  80%   554  400d 1.00 $0                                      400
-  -2,2    o  31%   483   95o 0.63 $0                                       95
+   1,1    g  80%   553  400d 1.00 $0                                      400
+  -2,2    o  31%   483   94o 0.63 $0                                       94
 11 sectors
 
 [0:513] Command : Bye-bye
@@ -4178,25 +4178,25 @@ You have two new telegrams waiting ...
 [0:640] Command : No mobility used, 127 mob left in 0,0
 Sector -2,0 is now yours.
 
-[0:639] Command : No mobility used, 127 mob left in 0,0
+[0:639] Command : Total movement cost = 1, 126 mob left in 0,0
 Sector -1,-1 is now yours.
 
-[0:638] Command : Total movement cost = 1, 126 mob left in 0,0
+[0:638] Command : Total movement cost = 1, 125 mob left in 0,0
 Sector -3,-1 is now yours.
 
-[0:637] Command : Total movement cost = 1, 125 mob left in 0,0
+[0:637] Command : Total movement cost = 1, 124 mob left in 0,0
 Sector -2,-2 is now yours.
 
-[0:636] Command : Total movement cost = 1, 124 mob left in 0,0
+[0:636] Command : Total movement cost = 1, 123 mob left in 0,0
 Sector -3,-3 is now yours.
 
-[0:635] Command : Total movement cost = 2, 122 mob left in 0,0
+[0:635] Command : Total movement cost = 2, 121 mob left in 0,0
 Sector -4,-4 is now yours.
 
-[0:634] Command : Total movement cost = 1, 121 mob left in 0,0
+[0:634] Command : Total movement cost = 1, 120 mob left in 0,0
 Sector -4,-2 is now yours.
 
-[0:633] Command : Total movement cost = 2, 119 mob left in 0,0
+[0:633] Command : Total movement cost = 1, 119 mob left in 0,0
 Sector -5,-3 is now yours.
 
 [0:632] Command : Total movement cost = 2, 117 mob left in 0,0
@@ -4271,13 +4271,13 @@ CENSUS                   del dst
    6,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
   -3,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
   -1,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0
-   1,-1   g  100%     127 .. ..      994    0    0    0 100%   96        0
+   1,-1   g  100%     127 .. ..      993    0    0    0 100%   95        0
    3,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0
    5,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0
    7,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
   -2,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
-   0,0    c  100%     111 .. ..      983   55  174    0 100%  717        0
-   2,0    c  100%     119 .. ..      991   55  174    0 100%  716        0
+   0,0    c  100%     111 .. ..      983   55  175    0 100%  717        0
+   2,0    c  100%     119 .. ..      991   55  173    0 100%  716        0
    4,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
    6,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
    8,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
@@ -4335,28 +4335,28 @@ Update Turn 07 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  31   40% 8.7K  53    0    0    0  4.7K 388  197    0    1    0   22K
-    21.18
+        1  31   40% 8.7K  53    0    0    0  4.7K 386  192    0    1    0   22K
+    21.16
         8  29   10% 3.0K 110    0    0    0    0  402    0    0    0    0   28K
      4.97
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   28K
-     4.95
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   28K
-     4.93
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   28K
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   28K
+     4.97
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   28K
+     4.94
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   28K
      4.93
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   28K
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   28K
      4.89
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   28K
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   28K
      4.83
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   28K
-     4.73
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   28K
-     4.47
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   28K
-     4.43
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   28K
+     4.72
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   28K
+     4.48
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   28K
+     4.45
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  84   47%  36K 1.0K   0    0    0  4.7K 2.9K 197    0    1    0  275K
+worldwide  84   47%  36K 1.0K   0    0    0  4.7K 2.9K 192    0    1    0  275K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -4391,7 +4391,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    6,-14  m  100%     127 .. ..      768    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      768    0    0    0 100%    0    0
   1   10,-14  h  100%     127 .. ..     1212    0    0    0 100%    0    0   1
-  1   16,-14  )   51%     105 .. ..   8   22   28   76    0 100%   33    0   1
+  1   16,-14  )   51%     104 .. ..   8   22   28   76    0 100%   33    0   1
   8   18,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   20,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   22,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
@@ -4407,59 +4407,59 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8   27,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   29,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   1    4,-12  +    5%     127 .. ..        9    0    0    0 100%    3    0   1
-  1    6,-12  g   56%     127 .. ..      768    0    0    0 100%   54    0
+  1    6,-12  g   55%     127 .. ..      768    0    0    0 100%   54    0
   1    8,-12  g    0%     127 .. ..        4    0    0    0 100%    1    0
   1   10,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1   12,-12  +    5%     127 .. ..        9    0    0    0 100%    3    0   1
   8   20,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   22,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0
-  8   24,-12  g  100%     127 .. ..      994    0    0    0 100%   96    0
+  8   24,-12  g  100%     127 .. ..      993    0    0    0 100%   95    0
   8   26,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0
   8   28,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0
   8   30,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
- 10  -11,-11  g  100%     127 .. ..      992    0    0    0 100%  594    0   1
-  1    3,-11  o  100%     125 .. ..      620    0    0    0 100%    0    0   1
-  1    5,-11  g    0%     127 .. ..       48    0    0    0 100%    0    0
+ 10  -11,-11  g  100%     127 .. ..      992    0    0    0 100%   94    0   1
+  1    3,-11  o  100%     125 .. ..      620    0    0    0 100%    1    0   1
+  1    5,-11  g    0%     127 .. ..       49    0    0    0 100%    0    0
   1    7,-11  g    0%     127 .. ..        8    0    0    0 100%    2    0   1
-  1    9,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  1   11,-11  +    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  1    9,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1   11,-11  +    2%     127 .. ..        6    0    0    0 100%    2    0   1
   1   13,-11  +    3%     127 .. ..        8    0    0    0 100%    2    0   1
-  1   15,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
   8   21,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
-  8   23,-11  c  100%     111 .. ..      983   55  174    0 100%  717    0
-  8   25,-11  c  100%     119 .. ..      991   55  174    0 100%  716    0
+  8   23,-11  c  100%     111 .. ..      983   55  175    0 100%  717    0
+  8   25,-11  c  100%     119 .. ..      991   55  173    0 100%  716    0
   8   27,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   29,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   31,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
  10  -12,-10  c  100%     127 .. ..     1000   55  172    0 100%  715    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  173    0 100%  716    0   1
+ 10  -10,-10  c  100%     127 .. ..     1000   55  174    0 100%  716    0   1
   1    4,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  1    6,-10  +    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  1   10,-10  +    5%     127 .. ..       10    0    0    0 100%    3    0   1
+  1    6,-10  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   10,-10  +    5%     127 .. ..        9    0    0    0 100%    3    0   1
   8   20,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   22,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   24,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   8   26,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
   9  -25,-7   g  100%     127 .. ..      994    0    0    0 100%  596    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  174    0 100%  716    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  172    0 100%  716    0
-  6    3,-3   g  100%     127 .. ..      991    0    0    0 100%  593    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  173    0 100%  716    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  173    0 100%  716    0
+  6    3,-3   g  100%     127 .. ..      992    0    0    0 100%  594    0
   6    2,-2   c  100%     127 .. ..     1000   55  174    0 100%  716    0
   6    4,-2   c  100%     127 .. ..     1000   55  174    0 100%  717    0
-  7   25,-1   g  100%     127 .. ..      994    0    0    0 100%  596    0
-  4  -14,0    g  100%     127 .. ..      998    0    0    0 100%  598    0
+  7   25,-1   g  100%     127 .. ..      994    0    0    0 100%   96    0
+  4  -14,0    g  100%     127 .. ..      999    0    0    0 100%  598    0
   7   24,0    c  100%     127 .. ..     1000   55  176    0 100%  718    0
   7   26,0    c  100%     127 .. ..     1000   55  171    0 100%  715    0
-  4  -15,1    c  100%     127 .. ..     1000   55  173    0 100%  716    0
-  4  -13,1    c  100%     127 .. ..     1000   55  174    0 100%  716    0
+  4  -15,1    c  100%     127 .. ..     1000   55  174    0 100%  716    0
+  4  -13,1    c  100%     127 .. ..     1000   55  173    0 100%  716    0
   5  -29,7    g  100%     127 .. ..      993    0    0    0 100%   95    0
   5  -30,8    c  100%     127 .. ..     1000   55  172    0 100%  716    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  173    0 100%  716    0
+  5  -28,8    c  100%     127 .. ..     1000   55  172    0 100%  716    0
   3   -3,9    g  100%     127 .. ..      993    0    0    0 100%   95    0
   2   17,9    g  100%     127 .. ..      991    0    0    0 100%  594    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  175    0 100%  717    0
-  3   -2,10   c  100%     127 .. ..     1000   55  175    0 100%  717    0
-  2   16,10   c  100%     127 .. ..     1000   55  173    0 100%  716    0
+  3   -2,10   c  100%     127 .. ..     1000   55  174    0 100%  717    0
+  2   16,10   c  100%     127 .. ..     1000   55  172    0 100%  716    0
   2   18,10   c  100%     127 .. ..     1000   55  175    0 100%  717    0
 84 sectors
 
@@ -4479,7 +4479,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-14  b .......... ....3.....   0   0    0    0   51  30    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0 2292    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0  598  326   0  146  140  234   0
+  1  10,-14  h .......... ..........   0   0    0  598  324   0  141  141  232   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  18,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -4488,7 +4488,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   3,-13  + .......... .......0..   0   0    0    0    0   0    0    0    0   0
   1   5,-13  g ...g...... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-13  m ...j...... ..........   0   0    0   31    0   0    0    0    0   0
-  1   9,-13  k .......... ...9....0.   0   0    0 1742    0   0    0    0    1   0
+  1   9,-13  k .......... ...9....0.   0   0    0 1744    0   0    0    0    1   0
   8  19,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  21,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -4506,7 +4506,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  28,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  30,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   1   5,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   1   7,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
@@ -4529,23 +4529,23 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  26,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -4585,7 +4585,7 @@ own   sect        eff  min gold fert oil uran
   8   27,-13  -    0%    0    0   76  47    0
   8   29,-13  -    0%   28    5   37   0    0
   1    4,-12  +    5%   74   42    0   0   37
-  1    6,-12  g   56%  100   80    0   0  100
+  1    6,-12  g   55%  100   80    0   0  100
   1    8,-12  g    0%  100   65    0   0   88
   1   10,-12  +    0%   50   23    6   0    0
   1   12,-12  +    5%   63   33    0   0   17
@@ -4600,7 +4600,7 @@ own   sect        eff  min gold fert oil uran
   1    5,-11  g    0%  100   74    0   0  100
   1    7,-11  g    0%   91   56    0   0   68
   1    9,-11  +    0%   85   51    0   0   57
-  1   11,-11  +    3%   78   46    0   0   45
+  1   11,-11  +    2%   78   46    0   0   45
   1   13,-11  +    3%   67   37    0   0   25
   1   15,-11  +    0%   56   28    0   0    5
   8   21,-11  -    0%   85   51    0   0   57
@@ -4652,19 +4652,19 @@ Player 01 Turn 07 starting
        -=O=-
 You have a new telegram waiting ...
 
-[0:517] Command : Bridge span built over 7,-1
+[0:516] Command : Bridge span built over 7,-1
 That just cost you $1000.00
 
-[0:516] Command : Total movement cost = 1, 126 mob left in 5,-1
+[0:515] Command : No mobility used, 127 mob left in 5,-1
 Sector 7,-1 is now yours.
 
-[0:515] Command : Looking for best path to 7,-1
+[0:514] Command : Looking for best path to 7,-1
 Using best path 'jh', movement cost 0.320
-Total movement cost = 2
+Total movement cost = 3
 124 mob left in 5,-1
 
-[0:514] Command : 
-[0:513] Command : highway at 1,-3 distributes to 5,-1. 
+[0:513] Command : 
+[0:512] Command : highway at 1,-3 distributes to 5,-1. 
 highway 1,-3 now distributes to 5,-1 (cost 0.800)
 
 highway at -4,-2 distributes to 5,-1. 
@@ -4730,7 +4730,7 @@ highway at 7,1 distributes to 5,-1.
 highway 7,1 now distributes to 5,-1 (cost 0.800)
 
 oil field at -2,2 distributes to 5,-1. 
-oil field -2,2 now distributes to 5,-1 (cost 1.164)
+oil field -2,2 now distributes to 5,-1 (cost 1.162)
 
 gold mine at 0,2 distributes to 5,-1. 
 gold mine 0,2 now distributes to 5,-1 (cost 0.800)
@@ -4751,26 +4751,25 @@ highway at 10,2 distributes to 5,-1.
 highway 10,2 now distributes to 5,-1 (cost 1.548)
 
 highway at -1,3 distributes to 5,-1. 
-highway -1,3 now distributes to 5,-1 (cost 1.164)
+highway -1,3 now distributes to 5,-1 (cost 1.162)
 
 highway at 1,3 distributes to 5,-1. 
-highway 1,3 now distributes to 5,-1 (cost 1.164)
+highway 1,3 now distributes to 5,-1 (cost 1.162)
 
 highway at 5,3 distributes to 5,-1. 
-highway 5,3 now distributes to 5,-1 (cost 1.180)
+highway 5,3 now distributes to 5,-1 (cost 1.184)
 
 
-[0:512] Command : 
-[0:511] Command : Deliver iron ore from gold mine @ 1,1 to -1,1
+[0:511] Command : 
+[0:510] Command : Deliver iron ore from gold mine @ 1,1 to -1,1
 
-[0:510] Command : 1,1 old threshold 1
+[0:509] Command : 1,1 old threshold 1
 
-[0:509] Command : Looking for best path to -1,-1
+[0:508] Command : Looking for best path to -1,-1
 Using best path 'yyh', movement cost 0.400
 Total movement cost = 2
 125 mob left in 1,1
 
-[0:508] Command : 
 [0:507] Command : 
 [0:506] Command : 
 [0:505] Command : 
@@ -4782,7 +4781,8 @@ Total movement cost = 2
 [0:499] Command : 
 [0:498] Command : 
 [0:497] Command : 
-[0:496] Command : 1,-1 old threshold 768
+[0:496] Command : 
+[0:495] Command : 1,-1 old threshold 768
 3,-1 old threshold 768
 5,-1 old threshold 768
 0,0 old threshold 768
@@ -4790,7 +4790,7 @@ Total movement cost = 2
 4,0 old threshold 768
 1,1 old threshold 768
 
-[0:495] Command :      1111111---------0000000000111111111122222
+[0:494] Command :      1111111---------0000000000111111111122222
      65432109876543210123456789012345678901234
   -8                                           -8  
   -7                                           -7  
@@ -4802,7 +4802,7 @@ Total movement cost = 2
   -1          - . . b m j h = . ) - -          -1  
    0         - - . + g m k . . . . -           0   
    1          - - . + g g + + . . . ?          1   
-   2         - - . o g g g + + + . .           2   
+   2         - - . o g g g g + + . .           2   
    3          - - . + + . + . . .              3   
    4           - - . . . . .                   4   
    5                                           5   
@@ -4812,7 +4812,7 @@ Total movement cost = 2
      1111111---------0000000000111111111122222
      65432109876543210123456789012345678901234
 
-[0:495] Command : 11,-1 efficiency 89%, max range 3
+[0:494] Command : 11,-1 efficiency 89%, max range 3
    . . . .   
   . . . . .  
  l . . - ? . 
@@ -4822,7 +4822,7 @@ h = . 0 - ? ?
    + + . .   
 
 
-[0:494] Command : Thu Jan  1 00:00:00 1970
+[0:493] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
    1,-3   o    0%     127 .. ..        1    0    0    0 100%    0        0   1
@@ -4835,7 +4835,7 @@ CENSUS                   del dst
   -1,-1   b  100%     127 .. ..      100    0    0    0 100%  548        0   1
    1,-1   m  100%     127 .. ..      768    0    0    0 100%    0        0
    3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
-   5,-1   h  100%     124 .. ..     1367    0    0    0 100%  560        0   1
+   5,-1   h  100%     124 .. ..     1369    0    0    0 100%  560        0   1
    7,-1   =   20%       0 .. ..       77    0    0    0 100%    0        0   1
   11,-1   )   89%     127 .. ..   8   29   28   88    0 100%   38        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%  473        0   1
@@ -4843,27 +4843,27 @@ CENSUS                   del dst
    2,0    m  100%     127 .. ..      768    0  398    0 100%    0        0
    4,0    k  100%     127 .. ..      768    0    0    0 100%    0        0   1
   -1,1    +k   8%     127 .. ..       11    0    0    0 100%    3        0   1
-   1,1    gm 100%     125 .. ..      768    0    0    0 100%   54        0
+   1,1    gm 100%     125 .. ..      768    0    0    0 100%   53        0
    3,1    g    1%     127 .. ..      769    0    0    0 100%    2        0
    5,1    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
    7,1    +    8%     127 .. ..       12    0    0    0 100%    3        0   1
-  -2,2    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-   0,2    g   18%     127 .. ..      769    0    0    0 100%   18        0
+  -2,2    o  100%     127 .. ..      769    0    0    0 100%    3        0   1
+   0,2    g   19%     127 .. ..      769    0    0    0 100%   19        0
    2,2    g    2%     127 .. ..      769    0    0    0 100%    3        0   1
-   4,2    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   6,2    +g   5%     127 .. ..        9    0    0    0 100%    3        0   1
+   4,2    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   6,2    g    0%     127 .. ..        8    0    0    0 100%    2        0   1
    8,2    +g   5%     127 .. ..       10    0    0    0 100%    3        0   1
-  10,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  10,2    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
   -1,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
-   1,3    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   5,3    +    8%     127 .. ..       13    0    0    0 100%    4        0   1
+   1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   5,3    +    8%     127 .. ..       11    0    0    0 100%    3        0   1
 32 sectors
 
-[0:494] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+[0:493] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
    0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
 1 ship
 
-[0:494] Command :      --------00000000001111111
+[0:493] Command :      --------00000000001111111
      8765432101234567890123456
   -4     . . . . . . . . . .   -4  
   -3    . . . o . . . . . . .  -3  
@@ -4871,29 +4871,29 @@ CENSUS                   del dst
   -1  - . . b m j h = . ) ? ?  -1  
    0 - - . j m m k . . . . ? ? 0   
    1  - - . + g g + + . . . ?  1   
-   2 - - . o g g g + + + . .   2   
+   2 - - . o g g g g + + . .   2   
    3  - - . + + . + . . .      3   
    4   - - . . . . .           4   
      --------00000000001111111
      8765432101234567890123456
 
-[0:494] Command : 
+[0:493] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
 technological breakthroughs (7.59) produced in 4,-2
 a class of graduates (150.00) produced in 6,-2
   0 happiness, 150 education produced
-total pop was 8722, yielding 0.00 hap, 50.02 edu
+total pop was 8724, yielding 0.00 hap, 50.01 edu
 3.9248 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $-576 for this update
+money delta was $-581 for this update
 
 
-[0:494] Command : Thu Jan  1 00:00:00 1970
+[0:493] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    4,-2   t 100%   288  7.77 0.78 $3000   10d  50o 100l   18d  90o 180l 13.98
    6,-2   l 100%   163  150  1.00 $1350  150l            163l             163
-  -1,-1   b 100%    78   16b 1.00 $160    80d             80d              16
+  -1,-1   b 100%    78   15b 1.00 $150    75d             75d              15
    1,-1   m 100%   598  598i 1.00 $0                                      598
    3,-1   j 100%   598  405l 0.68 $0     598i            598i             405
   -2,0    j 100%   599  320l 0.68 $0     473i            599i             405
@@ -4902,12 +4902,12 @@ PRODUCTION SIMULATION
    4,0    k 100%   598  202h 0.68 $0     598i            598i             202
    1,1    m 100%   473  473i 1.00 $0                                      473
    3,1    g  65%   500  325d 1.00 $0                                      325
-  -2,2    o  16%   599   65o 0.68 $0                                       65
-   0,2    g  74%   517  370d 1.00 $0                                      370
+  -2,2    o  16%   599   64o 0.68 $0                                       64
+   0,2    g  74%   518  370d 1.00 $0                                      370
    2,2    g  56%   501  280d 1.00 $0                                      280
 14 sectors
 
-[0:494] Command : Bye-bye
+[0:493] Command : Bye-bye
 Exit: so long...
 Player 01 Turn 07 completed successfully
 Player 08 Turn 07 starting
@@ -5042,8 +5042,8 @@ Distribution from and to warehouse 3,1 terminated
 [0:625] Command : 
 [0:624] Command : 
 [0:623] Command : 
-[0:622] Command : Total movement cost = 9
-118 mob left in 2,0
+[0:622] Command : Total movement cost = 10
+117 mob left in 2,0
 
 [0:621] Command : Total movement cost = 14
 113 mob left in 0,0
@@ -5070,34 +5070,34 @@ Distribution from and to warehouse 3,1 terminated
 [0:619] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -6,-4   o    0%      60 .. ..        2    0    0    0 100%    0        0   1
   -4,-4   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
    0,-4   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
-  -5,-3   o    0%      60 .. ..        2    0    0    0 100%    0        0   1
-  -3,-3   -    0%      60 .. ..        2    0    0    0 100%    0        0   1
-  -1,-3   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
-   1,-3   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   o    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -3,-3   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -1,-3   g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   1,-3   g    0%      60 .. ..        2    0    0    0 100%    0        0   1
   -4,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -2,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0
-   0,-2   g    0%      60 .. ..        2    0    0    0 100%    0        0
+   0,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0
    2,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
-   4,-2   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   4,-2   -    0%      60 .. ..        2    0    0    0 100%    0        0   1
    6,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -3,-1   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -1,-1   g    0%      60 .. ..        1    0    0    0 100%    0        0
    1,-1   gm 100%     117 .. ..      769    0    0    0 100%  599        0
    3,-1   g    0%      60 .. ..      232    0    0    0 100%    0        0
-   5,-1   g    0%      60 .. ..        2    0    0    0 100%    0        0
+   5,-1   g    0%      60 .. ..        1    0    0    0 100%    0        0
    7,-1   c    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -2,0    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
-   0,0    cg 100%     113 .. ..      769   55  200    0 100%  732        0
-   2,0    cg 100%     118 .. ..      769   55  200    0 100%  733        0
+   0,0    cg 100%     113 .. ..      769   55  201    0 100%  733        0
+   2,0    cg 100%     117 .. ..      769   55  199    0 100%  732        0
    4,0    g    0%      60 .. ..      463    0    0    0 100%    0        0   1
-   6,0    g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   6,0    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
    8,0    -    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -3,1    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
-  -1,1    -    0%      60 .. ..        2    0    0    0 100%    0        0   1
-   1,1    g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -1,1    -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
    3,1    w    0%      60 .. ..        1    0    0    0 100%    0        0   1
 29 sectors
 
@@ -5120,18 +5120,18 @@ CENSUS                   del dst
 [0:619] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 2994, yielding 0.00 hap, 0.00 edu
+total pop was 2993, yielding 0.00 hap, 0.00 edu
 1.9624 technology (0.0000 + 1.9624), 0.0000 research (0.0000 + 0.0000) produced
-money delta was $853 for this update
+money delta was $851 for this update
 
 
 [0:619] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    1,-1   m 100%   474  474i 1.00 $0                                      474
-   3,-1   g  67%    90   60d 1.00 $0                                       60
-   0,0    g 100%   625  500d 1.00 $0                                      500
-   2,0    g 100%   625  500d 1.00 $0                                      500
+   3,-1   g  67%    90   59d 1.00 $0                                       59
+   0,0    g 100%   626  500d 1.00 $0                                      500
+   2,0    g 100%   624  500d 1.00 $0                                      500
    4,0    g  14%   260   36d 1.00 $0                                       36
 5 sectors
 
@@ -5147,28 +5147,28 @@ Update Turn 08 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  32   43%  11K  53    0    0    0  5.4K 728  241    0    1    0   20K
-    39.75
+        1  32   43%  11K  53    0    0    0  5.4K 726  236    0    1    0   20K
+    39.72
         8  29   10% 3.0K 110    0    0    0    0  402    0    0    0    0   29K
      7.81
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   29K
-     7.75
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   29K
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   29K
+     7.77
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   29K
+     7.73
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   29K
      7.72
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   29K
-     7.71
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   29K
-     7.65
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   29K
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   29K
+     7.66
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   29K
      7.55
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   29K
-     7.41
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   29K
-     7.01
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   29K
-     6.94
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   29K
+     7.40
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   29K
+     7.02
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   29K
+     6.97
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  85   48%  38K 1.0K   0    0    0  5.4K 3.2K 241    0    1    0  281K
+worldwide  85   48%  38K 1.0K   0    0    0  5.4K 3.2K 236    0    1    0  281K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -5196,31 +5196,31 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    7,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1    9,-15  t  100%     127 .. ..      370    0    0    0 100%  128    0   1
   1   11,-15  l  100%     127 .. ..      210    0    0    0 100%   45    0   1
-  8   17,-15  o    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   17,-15  o    0%      60 .. ..        2    0    0    0 100%    0    0   1
   8   19,-15  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
   8   23,-15  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1    4,-14  b  100%     127 .. ..      100    0    0    0 100%  548    0   1
   1    6,-14  m  100%     127 .. ..      768    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      768    0    0    0 100%    0    0
-  1   10,-14  h  100%     124 .. ..     1367    0    0    0 100%  560    0   1
+  1   10,-14  h  100%     124 .. ..     1369    0    0    0 100%  560    0   1
   1   12,-14  =   20%       0 .. ..       77    0    0    0 100%    0    0   1
   1   16,-14  )   89%     127 .. ..   8   29   28   88    0 100%   38    0   1
-  8   18,-14  o    0%      60 .. ..        2    0    0    0 100%    0    0   1
-  8   20,-14  -    0%      60 .. ..        2    0    0    0 100%    0    0   1
-  8   22,-14  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
-  8   24,-14  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   18,-14  o    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   20,-14  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-14  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   24,-14  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%  473    0   1
   1    5,-13  m  100%     127 .. ..      768    0    0    0 100%    0    0
   1    7,-13  m  100%     127 .. ..      768    0  398    0 100%    0    0
   1    9,-13  k  100%     127 .. ..      768    0    0    0 100%    0    0   1
   8   19,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
   8   21,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0
-  8   23,-13  g    0%      60 .. ..        2    0    0    0 100%    0    0
+  8   23,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0
   8   25,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
-  8   27,-13  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   27,-13  -    0%      60 .. ..        2    0    0    0 100%    0    0   1
   8   29,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
   1    4,-12  +k   8%     127 .. ..       11    0    0    0 100%    3    0   1
-  1    6,-12  gm 100%     125 .. ..      768    0    0    0 100%   54    0
+  1    6,-12  gm 100%     125 .. ..      768    0    0    0 100%   53    0
   1    8,-12  g    1%     127 .. ..      769    0    0    0 100%    2    0
   1   10,-12  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
   1   12,-12  +    8%     127 .. ..       12    0    0    0 100%    3    0   1
@@ -5228,34 +5228,34 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8   22,-12  g    0%      60 .. ..        1    0    0    0 100%    0    0
   8   24,-12  gm 100%     117 .. ..      769    0    0    0 100%  599    0
   8   26,-12  g    0%      60 .. ..      232    0    0    0 100%    0    0
-  8   28,-12  g    0%      60 .. ..        2    0    0    0 100%    0    0
+  8   28,-12  g    0%      60 .. ..        1    0    0    0 100%    0    0
   8   30,-12  c    0%      60 .. ..        1    0    0    0 100%    0    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  599    0   1
-  1    3,-11  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    5,-11  g   18%     127 .. ..      769    0    0    0 100%   18    0
+  1    3,-11  o  100%     127 .. ..      769    0    0    0 100%    3    0   1
+  1    5,-11  g   19%     127 .. ..      769    0    0    0 100%   19    0
   1    7,-11  g    2%     127 .. ..      769    0    0    0 100%    3    0   1
-  1    9,-11  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  1   11,-11  +g   5%     127 .. ..        9    0    0    0 100%    3    0   1
+  1    9,-11  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  1   11,-11  g    0%     127 .. ..        8    0    0    0 100%    2    0   1
   1   13,-11  +g   5%     127 .. ..       10    0    0    0 100%    3    0   1
-  1   15,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
   8   21,-11  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
-  8   23,-11  cg 100%     113 .. ..      769   55  200    0 100%  732    0
-  8   25,-11  cg 100%     118 .. ..      769   55  200    0 100%  733    0
+  8   23,-11  cg 100%     113 .. ..      769   55  201    0 100%  733    0
+  8   25,-11  cg 100%     117 .. ..      769   55  199    0 100%  732    0
   8   27,-11  g    0%      60 .. ..      463    0    0    0 100%    0    0   1
-  8   29,-11  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   29,-11  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
   8   31,-11  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
  10  -12,-10  c  100%     127 .. ..     1000   55  198    0 100%  731    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  198    0 100%  732    0   1
+ 10  -10,-10  c  100%     127 .. ..     1000   55  200    0 100%  732    0   1
   1    4,-10  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  1    6,-10  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  1   10,-10  +    8%     127 .. ..       13    0    0    0 100%    4    0   1
+  1    6,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   10,-10  +    8%     127 .. ..       11    0    0    0 100%    3    0   1
   8   20,-10  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
-  8   22,-10  -    0%      60 .. ..        2    0    0    0 100%    0    0   1
-  8   24,-10  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   22,-10  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
   8   26,-10  w    0%      60 .. ..        1    0    0    0 100%    0    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  599    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  200    0 100%  732    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  198    0 100%  731    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  199    0 100%  732    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  199    0 100%  732    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  599    0
   6    2,-2   c  100%     127 .. ..     1000   55  200    0 100%  732    0
   6    4,-2   c  100%     127 .. ..     1000   55  200    0 100%  732    0
@@ -5263,16 +5263,16 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  599    0
   7   24,0    c  100%     127 .. ..     1000   55  202    0 100%  733    0
   7   26,0    c  100%     127 .. ..     1000   55  197    0 100%  730    0
-  4  -15,1    c  100%     127 .. ..     1000   55  199    0 100%  732    0
-  4  -13,1    c  100%     127 .. ..     1000   55  200    0 100%  732    0
+  4  -15,1    c  100%     127 .. ..     1000   55  200    0 100%  732    0
+  4  -13,1    c  100%     127 .. ..     1000   55  199    0 100%  732    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  599    0
   5  -30,8    c  100%     127 .. ..     1000   55  198    0 100%  731    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  199    0 100%  732    0
+  5  -28,8    c  100%     127 .. ..     1000   55  198    0 100%  731    0
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  599    0
   2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  599    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  201    0 100%  733    0
-  3   -2,10   c  100%     127 .. ..     1000   55  201    0 100%  733    0
-  2   16,10   c  100%     127 .. ..     1000   55  199    0 100%  732    0
+  3   -2,10   c  100%     127 .. ..     1000   55  200    0 100%  732    0
+  2   16,10   c  100%     127 .. ..     1000   55  197    0 100%  731    0
   2   18,10   c  100%     127 .. ..     1000   55  202    0 100%  734    0
 85 sectors
 
@@ -5292,7 +5292,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-14  b .......... ....3.....   0   0    0    0  301  40    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0 2904  414   0  190  266  322   0
+  1  10,-14  h .......... ..........   0   0    0 2906  412   0  185  267  320   0
   1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
@@ -5320,12 +5320,12 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   1   5,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   1   7,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   1   9,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
-  1  11,-11  + .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   1  13,-11  + .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  21,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
@@ -5343,23 +5343,23 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   8  26,-10  w .......... ..........   0   0    0    0    0   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -5412,10 +5412,10 @@ own   sect        eff  min gold fert oil uran
   8   30,-12  c    0%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
   1    3,-11  o  100%    0    0  100  16    0
-  1    5,-11  g   18%  100   74    0   0  100
+  1    5,-11  g   19%  100   74    0   0  100
   1    7,-11  g    2%   91   56    0   0   68
   1    9,-11  g    0%   85   51    0   0   57
-  1   11,-11  +g   5%   78   46    0   0   45
+  1   11,-11  g    0%   78   46    0   0   45
   1   13,-11  +g   5%   67   37    0   0   25
   1   15,-11  +    0%   56   28    0   0    5
   8   21,-11  g    0%   85   51    0   0   57
@@ -5549,7 +5549,7 @@ CENSUS                   del dst
   -4,-2   o    2%     127 .. ..      769    0    0    0 100%    3        0   1
   -2,-2   o    2%     127 .. ..      769    0    0    0 100%    2        0   1
    0,-2   c   39%     127 .. ..      100    0    0    0 100%   39        0   1
-   2,-2   +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   2,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
    4,-2   t  100%     127 .. ..      370    0    0    0 100%  128        0   1
    6,-2   l  100%     127 .. ..      210    0    0    0 100%   13        0   1
   -1,-1   b  100%     127 .. ..      100    0    0    0 100%    3        0   1
@@ -5557,7 +5557,7 @@ CENSUS                   del dst
    3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
    5,-1   h  100%     127 .. ..        1    0    0    0 100%  600        0   1
    7,-1   =   49%      60 .. ..      100    0    0    0 100%   30        0   1
-  11,-1   )  100%     127 .. ..       37   28  101    0 100%   77        0   1
+  11,-1   )  100%     127 .. ..   8   37   28  102    0 100%   78        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%  126        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,0    m  100%     127 .. ..      769    0  458    0 100%    0        0
@@ -5566,17 +5566,17 @@ CENSUS                   del dst
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    gm 100%     124 .. ..      769    0    0    0 100%    0        0
    5,1    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   7,1    +g  12%     127 .. ..       16    0    0    0 100%    5        0   1
-  -2,2    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-   0,2    gm 100%     124 .. ..      769    0    0    0 100%   17        0
-   2,2    gk 100%     124 .. ..      769    0    0    0 100%    2        0   1
-   4,2    g    0%     127 .. ..      720    0    0    0 100%    0        0   1
-   6,2    g    1%     127 .. ..       12    0    0    0 100%    3        0   1
+   7,1    +g  12%     127 .. ..       15    0    0    0 100%    4        0   1
+  -2,2    o  100%     127 .. ..      769    0    0    0 100%    5        0   1
+   0,2    gm 100%     124 .. ..      769    0    0    0 100%   18        0
+   2,2    gk 100%     124 .. ..      769    0    0    0 100%    1        0   1
+   4,2    g    0%     127 .. ..      721    0    0    0 100%    1        0   1
+   6,2    g    2%     127 .. ..       10    0    0    0 100%    3        0   1
    8,2    g    1%     127 .. ..       13    0    0    0 100%    4        0   1
-  10,2    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  10,2    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
   -1,3    +    2%     127 .. ..        6    0    0    0 100%    2        0   1
-   1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   5,3    +   12%     127 .. ..       16    0    0    0 100%    4        0   1
+   1,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   5,3    +   11%     127 .. ..       14    0    0    0 100%    4        0   1
 32 sectors
 
 [0:618] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
@@ -5599,14 +5599,13 @@ CENSUS                   del dst
 
 [0:618] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
-Sector 11,-1 is now fully yours
 technological breakthroughs (7.77) produced in 4,-2
 a class of graduates (150.00) produced in 6,-2
   0 happiness, 150 education produced
-total pop was 10789, yielding 0.00 hap, 42.71 edu
-3.9572 tech, 0.0000 research produced
+total pop was 10763, yielding 0.00 hap, 42.78 edu
+3.9571 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $-533 for this update
+money delta was $-537 for this update
 
 
 [0:618] Command : Thu Jan  1 00:00:00 1970
@@ -5617,20 +5616,20 @@ PRODUCTION SIMULATION
   -2,-2   o  21%   501   75o 0.71 $0                                       75
    4,-2   t 100%   288  7.80 0.78 $3000   10d  50o 100l   18d  90o 180l 14.04
    6,-2   l 100%   163  150  1.00 $1350  150l            163l             163
-  -1,-1   b 100%    78   16b 1.00 $160    80d             80d              16
+  -1,-1   b 100%    78   15b 1.00 $150    75d             75d              15
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   j 100%   599  427l 0.71 $0     599i            599i             427
   -2,0    j 100%   599  426l 0.71 $0     598i            599i             427
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   915  915i 1.00 $0                                      915
-   4,0    k 100%   599  214h 0.71 $0     600i            600i             214
+   4,0    k 100%   599  213h 0.71 $0     598i            598i             213
   -1,1    k 100%   500  168h 0.71 $0     472i            500i             178
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   474  474i 1.00 $0                                      474
-  -2,2    o   7%   599   30o 0.71 $0                                       30
+  -2,2    o   6%   599   25o 0.71 $0                                       25
    0,2    m 100%   474  474i 1.00 $0                                      474
    2,2    k 100%   474    0h 0.71 $0       0i            474i             169
-   4,2    g  51%   461  235d 1.00 $0                                      235
+   4,2    g  51%   462  235d 1.00 $0                                      235
 19 sectors
 
 [0:618] Command : Bye-bye
@@ -5664,35 +5663,35 @@ You have a new telegram waiting ...
 [0:616] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o    0%     120 .. ..        2    0    0    0 100%    0        0   1
-  -4,-4   -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+  -6,-4   o    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -4,-4   -    0%     120 .. ..        2    0    0    0 100%    0        0   1
    0,-4   -    0%     120 .. ..        2    0    0    0 100%    0        0   1
-  -5,-3   o    0%     120 .. ..        2    0    0    0 100%    1        0   1
-  -3,-3   -    0%     120 .. ..        3    0    0    0 100%    1        0   1
-  -1,-3   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
-   1,-3   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   o    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -3,-3   -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+  -1,-3   g    0%     120 .. ..        3    0    0    0 100%    1        0   1
+   1,-3   g    0%     120 .. ..        2    0    0    0 100%    1        0   1
   -4,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
-  -2,-2   g    0%     120 .. ..        2    0    0    0 100%    0        0
-   0,-2   g    0%     120 .. ..        2    0    0    0 100%    1        0
+  -2,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0
+   0,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0
    2,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
-   4,-2   -    0%     120 .. ..        2    0    0    0 100%    0        0   1
-   6,-2   g    0%     120 .. ..        2    0    0    0 100%    0        0   1
+   4,-2   -    0%     120 .. ..        3    0    0    0 100%    1        0   1
+   6,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
   -3,-1   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
-  -1,-1   g    0%     120 .. ..        2    0    0    0 100%    0        0
+  -1,-1   g    0%     120 .. ..        1    0    0    0 100%    0        0
    1,-1   m  100%      61 .. ..      769    0    0    0 100%    0        0
-   3,-1   g   90%     103 .. ..      769    0    0    0 100%    0        0
-   5,-1   g    0%     120 .. ..        3    0    0    0 100%    1        0
+   3,-1   g   90%     103 .. ..      769    0    0    0 100%    1        0
+   5,-1   g    0%     120 .. ..        1    0    0    0 100%    0        0
    7,-1   c    0%     120 .. ..        1    0    0    0 100%    0        0   1
   -2,0    g    0%     120 .. ..        1    0    0    0 100%    0        0   1
-   0,0    gm 100%      61 .. ..      769   55  230    0 100%  125        0
-   2,0    gm 100%      79 .. ..      769   55  230    0 100%  125        0
+   0,0    gm 100%      61 .. ..      769   55  231    0 100%  126        0
+   2,0    gm 100%      78 .. ..      769   55  229    0 100%  125        0
    4,0    g  100%     119 .. ..      350    0    0    0 100%    3        0   1
-   6,0    g    0%     120 .. ..        2    0    0    0 100%    1        0   1
-   8,0    -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   6,0    g    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   8,0    -    0%     120 .. ..        2    0    0    0 100%    0        0   1
   -3,1    g    0%     120 .. ..        1    0    0    0 100%    0        0   1
-  -1,1    -    0%     120 .. ..        2    0    0    0 100%    1        0   1
-   1,1    g    0%     120 .. ..        2    0    0    0 100%    1        0   1
-   3,1    w    0%     101 .. ..      478    0    0    0 100%    0        0   1
+  -1,1    -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   3,1    w    0%     101 .. ..      476    0    0    0 100%    0        0   1
 29 sectors
 
 [0:616] Command :      --------00000000001
@@ -5714,7 +5713,7 @@ CENSUS                   del dst
 [0:616] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 3033, yielding 0.00 hap, 0.00 edu
+total pop was 3030, yielding 0.00 hap, 0.00 edu
 1.9786 technology (0.0000 + 1.9786), 0.0000 research (0.0000 + 0.0000) produced
 money delta was $-99 for this update
 
@@ -5725,7 +5724,7 @@ PRODUCTION SIMULATION
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   g  62%   589  310d 1.00 $0                                      310
    0,0    m 100%   646  646i 1.00 $0                                      646
-   2,0    m 100%   646  646i 1.00 $0                                      646
+   2,0    m 100%   645  645i 1.00 $0                                      645
    4,0    g   7%   273   19d 1.00 $0                                       19
 5 sectors
 
@@ -5741,34 +5740,34 @@ Update Turn 09 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  32   54%  13K  53    0    0    0  6.2K 1.6K 256    0    1    0   20K
-    70.58
+        1  32   54%  13K  53    0    0    0  6.2K 1.6K 250    0    1    0   20K
+    70.55
         8  29   17% 3.9K 110    0    0    0  474  1.5K   0    0    0    0   29K
-    15.50
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   30K
-    10.62
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   30K
-    10.58
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   30K
-    10.56
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   30K
-    10.48
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   30K
-    10.35
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   30K
-    10.15
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   30K
+    15.49
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   30K
+    10.64
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   30K
+    10.59
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   30K
+    10.57
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   30K
+    10.49
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   30K
+    10.34
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   30K
+    10.14
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   30K
      9.62
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   30K
-     9.52
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   30K
+     9.56
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  85   54%  41K 1.0K   0    0    0  6.7K 5.2K 256    0    1    0  287K
+worldwide  85   54%  41K 1.0K   0    0    0  6.7K 5.2K 250    0    1    0  287K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 14.81        0.00       40.46        0.00     5,-15 
+ 1     1                 14.81        0.00       40.48        0.00     5,-15 
  2     2                  7.40        0.00        0.00        0.00    16,10  
  3     3                  7.40        0.00        0.00        0.00    -4,10  
  4     4                  7.40        0.00        0.00        0.00   -15,1   
@@ -5787,87 +5786,87 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    1,-15  o    2%     127 .. ..      769    0    0    0 100%    3    0   1
   1    3,-15  o    2%     127 .. ..      769    0    0    0 100%    2    0   1
   1    5,-15  c   39%     127 .. ..      100    0    0    0 100%   39    0   1
-  1    7,-15  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1    7,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1    9,-15  t  100%     127 .. ..      370    0    0    0 100%  128    0   1
   1   11,-15  l  100%     127 .. ..      210    0    0    0 100%   13    0   1
-  8   17,-15  o    0%     120 .. ..        2    0    0    0 100%    0    0   1
-  8   19,-15  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   17,-15  o    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  8   19,-15  -    0%     120 .. ..        2    0    0    0 100%    0    0   1
   8   23,-15  -    0%     120 .. ..        2    0    0    0 100%    0    0   1
   1    4,-14  b  100%     127 .. ..      100    0    0    0 100%    3    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
   1   10,-14  h  100%     127 .. ..        1    0    0    0 100%  600    0   1
   1   12,-14  =   49%      60 .. ..      100    0    0    0 100%   30    0   1
-  1   16,-14  )  100%     127 .. ..       37   28  101    0 100%   77    0   1
-  8   18,-14  o    0%     120 .. ..        2    0    0    0 100%    1    0   1
-  8   20,-14  -    0%     120 .. ..        3    0    0    0 100%    1    0   1
-  8   22,-14  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  8   24,-14  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1   16,-14  )  100%     127 .. ..   8   37   28  102    0 100%   78    0   1
+  8   18,-14  o    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  8   20,-14  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-14  g    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  8   24,-14  g    0%     120 .. ..        2    0    0    0 100%    1    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%  126    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-13  m  100%     127 .. ..      769    0  458    0 100%    0    0
   1    9,-13  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   19,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  8   21,-13  g    0%     120 .. ..        2    0    0    0 100%    0    0
-  8   23,-13  g    0%     120 .. ..        2    0    0    0 100%    1    0
+  8   21,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0
   8   25,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  8   27,-13  -    0%     120 .. ..        2    0    0    0 100%    0    0   1
-  8   29,-13  g    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  8   27,-13  -    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  8   29,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
   1    4,-12  k    1%     127 .. ..      769    0    0    0 100%    4    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-12  gm 100%     124 .. ..      769    0    0    0 100%    0    0
   1   10,-12  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  1   12,-12  +g  12%     127 .. ..       16    0    0    0 100%    5    0   1
+  1   12,-12  +g  12%     127 .. ..       15    0    0    0 100%    4    0   1
   8   20,-12  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  8   22,-12  g    0%     120 .. ..        2    0    0    0 100%    0    0
+  8   22,-12  g    0%     120 .. ..        1    0    0    0 100%    0    0
   8   24,-12  m  100%      61 .. ..      769    0    0    0 100%    0    0
-  8   26,-12  g   90%     103 .. ..      769    0    0    0 100%    0    0
-  8   28,-12  g    0%     120 .. ..        3    0    0    0 100%    1    0
+  8   26,-12  g   90%     103 .. ..      769    0    0    0 100%    1    0
+  8   28,-12  g    0%     120 .. ..        1    0    0    0 100%    0    0
   8   30,-12  c    0%     120 .. ..        1    0    0    0 100%    0    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  1    3,-11  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    5,-11  gm 100%     124 .. ..      769    0    0    0 100%   17    0
-  1    7,-11  gk 100%     124 .. ..      769    0    0    0 100%    2    0   1
-  1    9,-11  g    0%     127 .. ..      720    0    0    0 100%    0    0   1
-  1   11,-11  g    1%     127 .. ..       12    0    0    0 100%    3    0   1
+  1    3,-11  o  100%     127 .. ..      769    0    0    0 100%    5    0   1
+  1    5,-11  gm 100%     124 .. ..      769    0    0    0 100%   18    0
+  1    7,-11  gk 100%     124 .. ..      769    0    0    0 100%    1    0   1
+  1    9,-11  g    0%     127 .. ..      721    0    0    0 100%    1    0   1
+  1   11,-11  g    2%     127 .. ..       10    0    0    0 100%    3    0   1
   1   13,-11  g    1%     127 .. ..       13    0    0    0 100%    4    0   1
-  1   15,-11  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
   8   21,-11  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  8   23,-11  gm 100%      61 .. ..      769   55  230    0 100%  125    0
-  8   25,-11  gm 100%      79 .. ..      769   55  230    0 100%  125    0
+  8   23,-11  gm 100%      61 .. ..      769   55  231    0 100%  126    0
+  8   25,-11  gm 100%      78 .. ..      769   55  229    0 100%  125    0
   8   27,-11  g  100%     119 .. ..      350    0    0    0 100%    3    0   1
-  8   29,-11  g    0%     120 .. ..        2    0    0    0 100%    1    0   1
-  8   31,-11  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   29,-11  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   31,-11  -    0%     120 .. ..        2    0    0    0 100%    0    0   1
  10  -12,-10  c  100%     127 .. ..     1000   55  228    0 100%  750    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  228    0 100%  750    0   1
+ 10  -10,-10  c  100%     127 .. ..     1000   55  230    0 100%  751    0   1
   1    4,-10  +    2%     127 .. ..        6    0    0    0 100%    2    0   1
-  1    6,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  1   10,-10  +   12%     127 .. ..       16    0    0    0 100%    4    0   1
+  1    6,-10  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  1   10,-10  +   11%     127 .. ..       14    0    0    0 100%    4    0   1
   8   20,-10  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  8   22,-10  -    0%     120 .. ..        2    0    0    0 100%    1    0   1
-  8   24,-10  g    0%     120 .. ..        2    0    0    0 100%    1    0   1
-  8   26,-10  w    0%     101 .. ..      478    0    0    0 100%    0    0   1
+  8   22,-10  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   26,-10  w    0%     101 .. ..      476    0    0    0 100%    0    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  230    0 100%  751    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  227    0 100%  749    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  229    0 100%  750    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  229    0 100%  750    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   6    2,-2   c  100%     127 .. ..     1000   55  230    0 100%  751    0
   6    4,-2   c  100%     127 .. ..     1000   55  230    0 100%  751    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   7   24,0    c  100%     127 .. ..     1000   55  233    0 100%  752    0
-  7   26,0    c  100%     127 .. ..     1000   55  226    0 100%  748    0
-  4  -15,1    c  100%     127 .. ..     1000   55  229    0 100%  750    0
-  4  -13,1    c  100%     127 .. ..     1000   55  230    0 100%  751    0
+  7   26,0    c  100%     127 .. ..     1000   55  227    0 100%  749    0
+  4  -15,1    c  100%     127 .. ..     1000   55  230    0 100%  751    0
+  4  -13,1    c  100%     127 .. ..     1000   55  229    0 100%  750    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   5  -30,8    c  100%     127 .. ..     1000   55  228    0 100%  750    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  229    0 100%  750    0
+  5  -28,8    c  100%     127 .. ..     1000   55  228    0 100%  750    0
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
   3   -4,10   c  100%     127 .. ..     1000   55  231    0 100%  751    0
-  3   -2,10   c  100%     127 .. ..     1000   55  231    0 100%  751    0
-  2   16,10   c  100%     127 .. ..     1000   55  229    0 100%  750    0
-  2   18,10   c  100%     127 .. ..     1000   55  233    0 100%  752    0
+  3   -2,10   c  100%     127 .. ..     1000   55  230    0 100%  751    0
+  2   16,10   c  100%     127 .. ..     1000   55  227    0 100%  749    0
+  2   18,10   c  100%     127 .. ..     1000   55  232    0 100%  752    0
 85 sectors
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -5886,7 +5885,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   4,-14  b .......... ....3.....   0   0    0    0  303  55    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0 3179 1302   0  202  741  523   0
+  1  10,-14  h .......... ..........   0   0    0 3181 1300   0  196  741  522   0
   1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
@@ -5914,7 +5913,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   1   5,-11  g ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  g .......... ........0.   0   0    0    0    0   0    0    0    0   0
@@ -5936,24 +5935,24 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0  473 1210   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0  473 1209   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -6005,11 +6004,11 @@ own   sect        eff  min gold fert oil uran
   8   28,-12  g    0%   91   56    0   0   68
   8   30,-12  c    0%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  o  100%    0    0  100   7    0
+  1    3,-11  o  100%    0    0  100   6    0
   1    5,-11  gm 100%  100    0    0   0  100
   1    7,-11  gk 100%   91    0    0   0   68
   1    9,-11  g    0%   85   51    0   0   57
-  1   11,-11  g    1%   78   46    0   0   45
+  1   11,-11  g    2%   78   46    0   0   45
   1   13,-11  g    1%   67   37    0   0   25
   1   15,-11  g    0%   56   28    0   0    5
   8   21,-11  g    0%   85   51    0   0   57
@@ -6021,8 +6020,8 @@ own   sect        eff  min gold fert oil uran
  10  -12,-10  c  100%  100  100  100 100  100
  10  -10,-10  c  100%  100  100  100 100  100
   1    4,-10  +    2%    0    0  100 100    0
-  1    6,-10  +    0%    0    0  100 100    0
-  1   10,-10  +   12%    0    0  100  98    0
+  1    6,-10  +    1%    0    0  100 100    0
+  1   10,-10  +   11%    0    0  100  98    0
   8   20,-10  g    0%   78   46    0   0   45
   8   22,-10  -    0%    6    0   67  32    0
   8   24,-10  g    0%   67   37    0   0   25
@@ -6063,8 +6062,8 @@ You have a new telegram waiting ...
 
 [0:640] Command : Looking for best path to 7,-1
 Using best path 'ujjh', movement cost 0.484
-Total movement cost = 9
-118 mob left in 2,0
+Total movement cost = 10
+117 mob left in 2,0
 
 [0:639] Command : 
 [0:638] Command : 
@@ -6132,38 +6131,38 @@ Total movement cost = 1
 [0:631] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-3   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -4,-2   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
   -2,-2   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
    0,-2   c   78%     127 .. ..      100    0    0    0 100%   39        0   1
-   2,-2   +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   2,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
    4,-2   t  100%     127 .. ..      370    0    0    0 100%  128        0   1
    6,-2   l  100%     127 .. ..      210    0    0    0 100%   13        0   1
-  -1,-1   b  100%     127 .. ..      100    0    0    0 100%    0        0   1
+  -1,-1   b  100%     127 .. ..      100    0    0    0 100%    3        0   1
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,-1   h  100%     127 .. ..       99    0    0    0 100%    0        0   1
+   5,-1   h  100%     127 .. ..      105    0    0    0 100%    0        0   1
    7,-1   =   79%     120 .. ..       77    0   10    0 100%   30        0   1
-  11,-1   )  100%     127 .. ..       48   28  116    0 100%  104        0   1
+  11,-1   )  100%     127 .. ..   8   48   28  118    0 100%  106        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    1        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
-   2,0    m  100%     118 .. ..      769    0  517    0 100%    0        0
+   2,0    m  100%     117 .. ..      769    0  516    0 100%    0        0
    4,0    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
   -1,1    k  100%     127 .. ..      769    0    0    0 100%   28        0   1
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    5,1    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
-   7,1    g    3%     127 .. ..      769    0    0    0 100%    6        0   1
-  -2,2    oi 100%     126 .. ..      769    0    0    0 100%    0        0   1
+   7,1    g    2%     127 .. ..      769    0    0    0 100%    6        0   1
+  -2,2    oi 100%     126 .. ..      769    0    0    0 100%   16        0   1
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,2    k  100%     127 .. ..      769    0    0    0 100%  474        0   1
-   4,2    g  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,2    g  100%     127 .. ..      769    0    0    0 100%    0        0   1
    6,2    g    5%     127 .. ..      769    0    0    0 100%    4        0   1
    8,2    g    5%     127 .. ..      769    0    0    0 100%    5        0   1
-  10,2    g    0%     127 .. ..      769    0    0    0 100%    0        0   1
+  10,2    g    1%     127 .. ..      769    0    0    0 100%    1        0   1
   -1,3    +    3%     127 .. ..        7    0    0    0 100%    2        0   1
-   1,3    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
-   5,3    +   18%     127 .. ..       21    0    0    0 100%    6        0   1
+   1,3    +    2%     127 .. ..        6    0    0    0 100%    2        0   1
+   5,3    +   16%     127 .. ..       18    0    0    0 100%    5        0   1
 32 sectors
 
 [0:631] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
@@ -6189,39 +6188,39 @@ CENSUS                   del dst
 technological breakthroughs (7.80) produced in 4,-2
 a class of graduates (150.00) produced in 6,-2
   0 happiness, 150 education produced
-total pop was 13246, yielding 0.00 hap, 36.78 edu
-3.9635 tech, 0.0000 research produced
+total pop was 13208, yielding 0.00 hap, 36.86 edu
+3.9637 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $-315 for this update
+money delta was $-316 for this update
 
 
 [0:631] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-   1,-3   o  30%   599  133o 0.74 $0                                      133
-  -4,-2   o  16%   599   71o 0.74 $0                                       71
+   1,-3   o  29%   599  128o 0.74 $0                                      128
+  -4,-2   o  16%   599   70o 0.74 $0                                       70
   -2,-2   o  10%   599   44o 0.74 $0                                       44
-   4,-2   t 100%   288 11.64 0.78 $4500   15d  75o 150l   18d  90o 180l 13.96
+   4,-2   t 100%   288 11.64 0.78 $4500   15d  75o 150l   18d  90o 180l 13.97
    6,-2   l 100%   163  150  1.00 $1350  150l            163l             163
-  -1,-1   b 100%    78   16b 1.00 $160    80d             80d              16
+  -1,-1   b 100%    78   15b 1.00 $150    75d             75d              15
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   j 100%   599  444l 0.74 $0     599i            599i             444
   -2,0    j 100%   599  444l 0.74 $0     599i            599i             444
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   955  955i 1.00 $0                                      955
-   4,0    k 100%   599  222h 0.74 $0     600i            600i             222
-  -1,1    k 100%   599  222h 0.74 $0     600i            600i             222
+   4,0    k 100%   599  222h 0.74 $0     598i            598i             222
+  -1,1    k 100%   599  222h 0.74 $0     598i            598i             222
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   599  599i 1.00 $0                                      599
-   5,1    g  23%   499  115d 1.00 $0                                      115
-   7,1    g  33%   502  165d 1.00 $0                                      165
+   5,1    g  23%   499  114d 1.00 $0                                      114
+   7,1    g  33%   501  165d 1.00 $0                                      165
   -2,2    i 100%   474    0s 0.00 $0       0l   0h         0l   0h          0
    0,2    m 100%   599  599i 1.00 $0                                      599
-   2,2    k 100%   599  176h 0.74 $0     474i            600i             222
+   2,2    k 100%   599  176h 0.74 $0     474i            598i             222
    4,2    g   4%   599   20d 1.00 $0                                       20
    6,2    g  46%   504  230d 1.00 $0                                      230
    8,2    g  37%   504  185d 1.00 $0                                      185
-  10,2    g  28%   499  140d 1.00 $0                                      140
+  10,2    g  28%   500  140d 1.00 $0                                      140
 24 sectors
 
 [0:631] Command : Bye-bye
@@ -6287,35 +6286,35 @@ Total movement cost = 1
 [0:601] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o    0%     127 .. ..        3    0    0    0 100%    1        0   1
-  -4,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -6,-4   o    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -4,-4   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
    0,-4   -    0%     127 .. ..        2    0    0    0 100%    1        0   1
-  -5,-3   o    0%     127 .. ..        3    0    0    0 100%    1        0   1
-  -3,-3   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
-  -1,-3   g    0%     127 .. ..        2    0    0    0 100%    0        0   1
-   1,-3   g    0%     127 .. ..        2    0    0    0 100%    0        0   1
+  -5,-3   o    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -3,-3   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -1,-3   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   1,-3   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
   -4,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -2,-2   g    0%     127 .. ..        2    0    0    0 100%    1        0
-   0,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0
+  -2,-2   g    0%     127 .. ..        2    0    0    0 100%    0        0
+   0,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
    2,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   4,-2   -    0%     127 .. ..        2    0    0    0 100%    1        0   1
-   6,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   4,-2   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   6,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0   1
   -3,-1   g    0%     127 .. ..      769    0    0    0 100%    0        0   1
-  -1,-1   g    0%     127 .. ..      769    0    0    0 100%    1        0
+  -1,-1   g    0%     127 .. ..      769    0    0    0 100%    0        0
    1,-1   m  100%     115 .. ..      769    0    0    0 100%    0        0
    3,-1   gm 100%     126 .. ..      769    0    0    0 100%   89        0
-   5,-1   g    0%     127 .. ..        4    0    0    0 100%    1        0
+   5,-1   g    0%     127 .. ..        1    0    0    0 100%    0        0
    7,-1   c    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -2,0    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   0,0    m  100%     115 .. ..      769   55  264    0 100%    0        0
-   2,0    m  100%     126 .. ..      769   55  265    0 100%    0        0
-   4,0    gb 100%     127 .. ..      350    0    0    0 100%    2        0   1
-   6,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   8,0    -    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -3,1    g    0%     127 .. ..        2    0    0    0 100%    0        0   1
-  -1,1    -    0%     127 .. ..        2    0    0    0 100%    1        0   1
-   1,1    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   3,1    w  100%     127 .. ..      114    0    0    0 100%  272        0   1
+  -2,0    g    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   0,0    m  100%     115 .. ..      769   55  266    0 100%    0        0
+   2,0    m  100%     126 .. ..      769   55  263    0 100%    0        0
+   4,0    gb 100%     127 .. ..      350    0    0    0 100%    1        0   1
+   6,0    g    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   8,0    -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -3,1    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -1,1    -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   3,1    w  100%     127 .. ..      108    0    0    0 100%  270        0   1
 29 sectors
 
 [0:601] Command :      --------00000000001
@@ -6337,21 +6336,21 @@ CENSUS                   del dst
 [0:601] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 3942, yielding 0.00 hap, 0.00 edu
+total pop was 3936, yielding 0.00 hap, 0.00 edu
 1.9818 technology (0.0000 + 1.9818), 0.0000 research (0.0000 + 0.0000) produced
-money delta was $755 for this update
+money delta was $754 for this update
 
 
 [0:601] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -3,-1   g  42%   499  210d 1.00 $0                                      210
+  -3,-1   g  42%   499  209d 1.00 $0                                      209
   -1,-1   g  69%   499  344d 1.00 $0                                      344
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   474  474i 1.00 $0                                      474
-   0,0    m 100%   794  794i 1.00 $0                                      794
-   2,0    m 100%   795  795i 1.00 $0                                      795
-   4,0    b 100%   148   11b 1.00 $110    55d            150d              30
+   0,0    m 100%   795  795i 1.00 $0                                      795
+   2,0    m 100%   793  793i 1.00 $0                                      793
+   4,0    b 100%   148   11b 1.00 $110    55d            145d              29
 7 sectors
 
 [0:601] Command : Bye-bye
@@ -6366,34 +6365,34 @@ Update Turn 10 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  32   72%  17K  53    0    0    0  7.6K 1.8K 631    0    1    0   20K
-   114.34
+        1  32   72%  17K  53    0    0    0  7.6K 1.8K 619    0    1    0   20K
+   114.27
         8  29   21% 5.1K 110    0    0    0  2.4K 1.8K   0    0    0    0   30K
-    23.66
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   31K
-    13.54
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   31K
-    13.49
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   31K
-    13.47
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   31K
-    13.36
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   31K
-    13.21
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   31K
-    12.95
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   31K
-    12.28
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   31K
-    12.16
+    23.63
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   31K
+    13.57
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   31K
+    13.50
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   31K
+    13.48
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   31K
+    13.38
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   31K
+    13.19
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   31K
+    12.94
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   31K
+    12.29
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   31K
+    12.21
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  85   62%  46K 1.0K   0    0    0   10K 5.7K 631    0    1    0  295K
+worldwide  85   62%  46K 1.0K   0    0    0   10K 5.7K 619    0    1    0  295K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 18.65        0.00       39.59        0.00     5,-15 
+ 1     1                 18.65        0.00       39.62        0.00     5,-15 
  2     2                  9.33        0.00        0.00        0.00    16,10  
  3     3                  9.33        0.00        0.00        0.00    -4,10  
  4     4                  9.33        0.00        0.00        0.00   -15,1   
@@ -6408,91 +6407,91 @@ worldwide  85   62%  46K 1.0K   0    0    0   10K 5.7K 631    0    1    0  295K
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
-  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    5,-15  c   78%     127 .. ..      100    0    0    0 100%   39    0   1
-  1    7,-15  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    7,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1    9,-15  t  100%     127 .. ..      370    0    0    0 100%  128    0   1
   1   11,-15  l  100%     127 .. ..      210    0    0    0 100%   13    0   1
-  8   17,-15  o    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   19,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   17,-15  o    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   19,-15  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
   8   23,-15  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  1    4,-14  b  100%     127 .. ..      100    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      100    0    0    0 100%    3    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
-  1   10,-14  h  100%     127 .. ..       99    0    0    0 100%    0    0   1
+  1   10,-14  h  100%     127 .. ..      105    0    0    0 100%    0    0   1
   1   12,-14  =   79%     120 .. ..       77    0   10    0 100%   30    0   1
-  1   16,-14  )  100%     127 .. ..       48   28  116    0 100%  104    0   1
-  8   18,-14  o    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   20,-14  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   22,-14  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  8   24,-14  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1   16,-14  )  100%     127 .. ..   8   48   28  118    0 100%  106    0   1
+  8   18,-14  o    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-14  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   24,-14  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  1    7,-13  m  100%     118 .. ..      769    0  517    0 100%    0    0
+  1    7,-13  m  100%     117 .. ..      769    0  516    0 100%    0    0
   1    9,-13  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   8   19,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   21,-13  g    0%     127 .. ..        2    0    0    0 100%    1    0
-  8   23,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0
+  8   21,-13  g    0%     127 .. ..        2    0    0    0 100%    0    0
+  8   23,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
   8   25,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   27,-13  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  8   29,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   27,-13  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   29,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
   1    4,-12  k  100%     127 .. ..      769    0    0    0 100%   28    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1   10,-12  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
-  1   12,-12  g    3%     127 .. ..      769    0    0    0 100%    6    0   1
+  1   12,-12  g    2%     127 .. ..      769    0    0    0 100%    6    0   1
   8   20,-12  g    0%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   22,-12  g    0%     127 .. ..      769    0    0    0 100%    1    0
+  8   22,-12  g    0%     127 .. ..      769    0    0    0 100%    0    0
   8   24,-12  m  100%     115 .. ..      769    0    0    0 100%    0    0
   8   26,-12  gm 100%     126 .. ..      769    0    0    0 100%   89    0
-  8   28,-12  g    0%     127 .. ..        4    0    0    0 100%    1    0
+  8   28,-12  g    0%     127 .. ..        1    0    0    0 100%    0    0
   8   30,-12  c    0%     127 .. ..        1    0    0    0 100%    0    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  1    3,-11  oi 100%     126 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-11  oi 100%     126 .. ..      769    0    0    0 100%   16    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-11  k  100%     127 .. ..      769    0    0    0 100%  474    0   1
-  1    9,-11  g  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    9,-11  g  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1   11,-11  g    5%     127 .. ..      769    0    0    0 100%    4    0   1
   1   13,-11  g    5%     127 .. ..      769    0    0    0 100%    5    0   1
-  1   15,-11  g    0%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   21,-11  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   23,-11  m  100%     115 .. ..      769   55  264    0 100%    0    0
-  8   25,-11  m  100%     126 .. ..      769   55  265    0 100%    0    0
-  8   27,-11  gb 100%     127 .. ..      350    0    0    0 100%    2    0   1
-  8   29,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   31,-11  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  262    0 100%  770    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  262    0 100%  770    0   1
+  1   15,-11  g    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   21,-11  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   23,-11  m  100%     115 .. ..      769   55  266    0 100%    0    0
+  8   25,-11  m  100%     126 .. ..      769   55  263    0 100%    0    0
+  8   27,-11  gb 100%     127 .. ..      350    0    0    0 100%    1    0   1
+  8   29,-11  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   31,-11  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  263    0 100%  771    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  265    0 100%  772    0   1
   1    4,-10  +    3%     127 .. ..        7    0    0    0 100%    2    0   1
-  1    6,-10  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
-  1   10,-10  +   18%     127 .. ..       21    0    0    0 100%    6    0   1
-  8   20,-10  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  8   22,-10  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  8   24,-10  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   26,-10  w  100%     127 .. ..      114    0    0    0 100%  272    0   1
+  1    6,-10  +    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  1   10,-10  +   16%     127 .. ..       18    0    0    0 100%    5    0   1
+  8   20,-10  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-10  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   26,-10  w  100%     127 .. ..      108    0    0    0 100%  270    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  265    0 100%  772    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  261    0 100%  769    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  263    0 100%  770    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  263    0 100%  770    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  6    2,-2   c  100%     127 .. ..     1000   55  265    0 100%  772    0
-  6    4,-2   c  100%     127 .. ..     1000   55  264    0 100%  771    0
+  6    2,-2   c  100%     127 .. ..     1000   55  264    0 100%  771    0
+  6    4,-2   c  100%     127 .. ..     1000   55  265    0 100%  772    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   7   24,0    c  100%     127 .. ..     1000   55  268    0 100%  774    0
-  7   26,0    c  100%     127 .. ..     1000   55  260    0 100%  768    0
-  4  -15,1    c  100%     127 .. ..     1000   55  263    0 100%  770    0
-  4  -13,1    c  100%     127 .. ..     1000   55  265    0 100%  772    0
+  7   26,0    c  100%     127 .. ..     1000   55  261    0 100%  769    0
+  4  -15,1    c  100%     127 .. ..     1000   55  265    0 100%  772    0
+  4  -13,1    c  100%     127 .. ..     1000   55  264    0 100%  771    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   5  -30,8    c  100%     127 .. ..     1000   55  262    0 100%  770    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  263    0 100%  770    0
+  5  -28,8    c  100%     127 .. ..     1000   55  262    0 100%  770    0
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  266    0 100%  772    0
-  3   -2,10   c  100%     127 .. ..     1000   55  266    0 100%  772    0
-  2   16,10   c  100%     127 .. ..     1000   55  263    0 100%  770    0
-  2   18,10   c  100%     127 .. ..     1000   55  268    0 100%  774    0
+  3   -4,10   c  100%     127 .. ..     1000   55  265    0 100%  771    0
+  3   -2,10   c  100%     127 .. ..     1000   55  265    0 100%  772    0
+  2   16,10   c  100%     127 .. ..     1000   55  261    0 100%  769    0
+  2   18,10   c  100%     127 .. ..     1000   55  266    0 100%  772    0
 85 sectors
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -6508,10 +6507,10 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  17,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1   4,-14  b .......... ....3.....   0   0    0    0  300  71    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300  70    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0 3497 1442   0  552 1294  903   0
+  1  10,-14  h .......... ..........   0   0    0 3498 1445   0  540 1294  902   0
   1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
@@ -6539,7 +6538,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  g .......... ...0......   0   0    0    0    0   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  o .......... 0......63.   0   0    0    0    0   0    0    0    0   0
   1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  k .......... ........0.   0   0    0  474    0   0    0    0    1   0
@@ -6561,24 +6560,24 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 2362 1754   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 2362 1753   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -6588,7 +6587,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
 [0:630] Command : Thu Jan  1 00:00:00 1970
     RESOURCE
 own   sect        eff  min gold fert oil uran 
-  1    6,-16  o  100%    0    0   82  30    0
+  1    6,-16  o  100%    0    0   82  29    0
   1    1,-15  o  100%    6    0   67  16    0
   1    3,-15  o  100%   11    0   61  10    0
   1    5,-15  c   78%   28    5   37   0    0
@@ -6622,7 +6621,7 @@ own   sect        eff  min gold fert oil uran
   1    6,-12  m  100%  100    0    0   0  100
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  g    0%   50   23    6   0    0
-  1   12,-12  g    3%   63   33    0   0   17
+  1   12,-12  g    2%   63   33    0   0   17
   8   20,-12  g    0%   74   42    0   0   37
   8   22,-12  g    0%  100   69    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
@@ -6630,13 +6629,13 @@ own   sect        eff  min gold fert oil uran
   8   28,-12  g    0%   91   56    0   0   68
   8   30,-12  c    0%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  oi 100%    0    0  100   2    0
+  1    3,-11  oi 100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  k  100%   91    0    0   0   68
   1    9,-11  g  100%   85    4    0   0   57
   1   11,-11  g    5%   78   46    0   0   45
   1   13,-11  g    5%   67   37    0   0   25
-  1   15,-11  g    0%   56   28    0   0    5
+  1   15,-11  g    1%   56   28    0   0    5
   8   21,-11  g    0%   85   51    0   0   57
   8   23,-11  m  100%  100    0  100 100  100
   8   25,-11  m  100%  100    0  100 100  100
@@ -6646,8 +6645,8 @@ own   sect        eff  min gold fert oil uran
  10  -12,-10  c  100%  100  100  100 100  100
  10  -10,-10  c  100%  100  100  100 100  100
   1    4,-10  +    3%    0    0  100 100    0
-  1    6,-10  +    1%    0    0  100 100    0
-  1   10,-10  +   18%    0    0  100  98    0
+  1    6,-10  +    2%    0    0  100 100    0
+  1   10,-10  +   16%    0    0  100  98    0
   8   20,-10  g    0%   78   46    0   0   45
   8   22,-10  -    0%    6    0   67  32    0
   8   24,-10  g    0%   67   37    0   0   25
@@ -6701,8 +6700,8 @@ Sector 9,-1 is now yours.
 [0:636] Command : Only moving 11.
 Looking for best path to 4,0
 Using best path 'gbh', movement cost 0.400
-Total movement cost = 9
-118 mob left in 7,-1
+Total movement cost = 8
+119 mob left in 7,-1
 
 [0:635] Command : 
 [0:634] Command : 
@@ -6903,29 +6902,29 @@ Thu Jan  1 00:00:00 1970
 [0:595] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    3        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    5        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    9        0   1
    0,-2   c  100%     127 .. ..      769    0    0    0 100%   56        0   1
-   2,-2   +    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   2,-2   +    0%     127 .. ..      769    0    0    0 100%    0        0   1
    4,-2   t  100%     127 .. ..      769    0    0    0 100%   48        0   1
    6,-2   l  100%     127 .. ..      769    0    0    0 100%   13        0   1
   -1,-1   b  100%     127 .. ..      769    0    0    0 100%    3        0   1
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,-1   h  100%     127 .. ..     1242    0    0    0 100%   76        0   1
-   7,-1   =  100%     118 .. ..       76    0    0    0 100%    5        0   1
+   5,-1   h  100%     127 .. ..     1245    0    0    0 100%   82        0   1
+   7,-1   =  100%     119 .. ..       76    0    0    0 100%    5        0   1
    9,-1   =   20%       0 .. ..        1    0    0    0 100%    0        0   1
-  11,-1   )  100%     127 .. 0.       63   28  133    0 100%  124        0   1
+  11,-1   )  100%     127 .. 0.   8   62   28  135    0 100%  124        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
-   2,0    m  100%     127 .. 5.      769    0  595    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  593    0 100%    0        0
    4,0    k  100%     127 .. 8.      769    0   11    0 100%    1        0   1
   -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,1    gj 100%     123 .. ..      769    0    0    0 100%    0        0   1
-   7,1    gd 100%     122 .. ..      769    0    0    0 100%    2        0   1
+   5,1    gj 100%     123 .. ..      769    0    0    0 100%    3        0   1
+   7,1    gd 100%     122 .. ..      769    0    0    0 100%    1        0   1
   -2,2    i  100%     127 .. ..      769    0    0    0 100%  474        0   1
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,2    k  100%     127 .. ..      769    0    0    0 100%  125        0   1
@@ -6935,7 +6934,7 @@ CENSUS                   del dst
   10,2    g! 100%     120 .. ..      769    0    0    0 100%    0        0   1
   -1,3    +    5%     127 .. ..      100    0    0    0 100%    3        0   1
    1,3    +    3%     127 .. ..      100    0    0    0 100%    2        0   1
-   5,3    +p  25%     127 .. ..      769    0    0    0 100%    8        0   1
+   5,3    +p  22%     127 .. ..      769    0    0    0 100%    7        0   1
 33 sectors
 
 [0:595] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
@@ -6961,38 +6960,38 @@ CENSUS                   del dst
 technological breakthroughs (11.64) produced in 4,-2
 a class of graduates (150.00) produced in 6,-2
   0 happiness, 150 education produced
-total pop was 17190, yielding 0.00 hap, 30.58 edu
-4.5405 tech, 0.0000 research produced
+total pop was 17143, yielding 0.00 hap, 30.64 edu
+4.5408 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $770 for this update
+money delta was $742 for this update
 
 
 [0:595] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-   1,-3   o  12%   599   55o 0.77 $0                                       55
-  -4,-2   o   7%   599   32o 0.77 $0                                       32
-  -2,-2   o   4%   599   18o 0.77 $0                                       18
-   4,-2   t 100%   599 11.47 0.76 $4500   15d  75o 150l   37d 185o 370l 28.28
+   1,-3   o  11%   599   50o 0.77 $0                                       50
+  -4,-2   o   7%   599   31o 0.77 $0                                       31
+  -2,-2   o   5%   599   22o 0.77 $0                                       22
+   4,-2   t 100%   599 11.47 0.76 $4500   15d  75o 150l   37d 185o 370l 28.29
    6,-2   l 100%   599  150  1.00 $1350  150l            599l             599
-  -1,-1   b 100%   599   61b 1.00 $610   305d            600d             120
+  -1,-1   b 100%   599   61b 1.00 $610   305d            595d             119
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   j 100%   599  460l 0.77 $0     599i            599i             460
   -2,0    j 100%   599  460l 0.77 $0     599i            599i             460
    0,0    m 100%   599  599i 1.00 $0                                      599
-   2,0    m 100%  1009  999i 1.00 $0                                      999
+   2,0    m 100%  1008  999i 1.00 $0                                      999
    4,0    k 100%   606  233h 0.77 $0     606i            606i             233
-  -1,1    k 100%   599  230h 0.77 $0     600i            600i             230
+  -1,1    k 100%   599  230h 0.77 $0     598i            598i             230
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   599  599i 1.00 $0                                      599
    5,1    j 100%   474  364l 0.77 $0     474i            474i             364
-   7,1    d 100%   474    0g 0.23 $0       0o   0l   0h   30o 150l 300h     7
-  -2,2    i 100%   599   47s 0.23 $600   400l 200h       400l 200h         47
+   7,1    d 100%   474    0g 0.23 $0       0o   0l   0h   29o 145l 290h     7
+  -2,2    i 100%   599   46s 0.23 $597   398l 199h       398l 199h         46
    0,2    m 100%   599  599i 1.00 $0                                      599
-   2,2    k 100%   599  230h 0.77 $0     598i            600i             230
-   4,2    r 100%   474  0.00 0.76 $0       0d   0o   0l   30d 150o 300l 22.93
+   2,2    k 100%   599  230h 0.77 $0     598i            598i             230
+   4,2    r 100%   474  0.00 0.76 $0       0d   0o   0l   29d 145o 290l 22.17
    8,2    e 100%   474   30m 1.00 $90     30c             30c             499
-   5,3    p 100%   492    0  1.00 $0       0l            492l             492
+   5,3    p 100%   493    0  1.00 $0       0l            493l             493
 23 sectors
 
 [0:595] Command : Bye-bye
@@ -7004,22 +7003,22 @@ Player 08 Turn 10 starting
        -=O=-
 You have a new telegram waiting ...
 
-[0:601] Command : 
-[0:600] Command : -3,-1 threshold unchanged (left at 999)
+[0:602] Command : 
+[0:601] Command : -3,-1 threshold unchanged (left at 999)
 
+[0:600] Command : 
 [0:599] Command : 
-[0:598] Command : 
-[0:597] Command : -3,-1 old threshold 1
+[0:598] Command : -3,-1 old threshold 1
 
-[0:596] Command : Looking for best path to 4,0
+[0:597] Command : Looking for best path to 4,0
 Using best path 'jjjnh', movement cost 0.800
 Total movement cost = 4
 123 mob left in -3,-1
 
+[0:596] Command : 
 [0:595] Command : 
 [0:594] Command : 
-[0:593] Command : 
-[0:592] Command :      --------00000000001
+[0:593] Command :      --------00000000001
      8765432101234567890
   -5  . . . . .          -5  
   -4 . o - . - . . .     -4  
@@ -7035,41 +7034,41 @@ Total movement cost = 4
      --------00000000001
      8765432101234567890
 
-[0:592] Command : Thu Jan  1 00:00:00 1970
+[0:593] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o    0%     127 .. ..      769    0    0    0 100%    1        0   1
-  -4,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   0,-4   -    0%     127 .. ..        2    0    0    0 100%    1        0   1
-  -5,-3   o    0%     127 .. ..        4    0    0    0 100%    1        0   1
-  -3,-3   -    1%     127 .. ..        5    0    0    0 100%    1        0   1
-  -1,-3   g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -6,-4   o    1%     127 .. ..      769    0    0    0 100%    2        0   1
+  -4,-4   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   0,-4   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -5,-3   o    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -3,-3   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -1,-3   g    1%     127 .. ..        5    0    0    0 100%    1        0   1
    1,-3   g    0%     127 .. ..      769    0    0    0 100%    1        0   1
   -4,-2   g    0%     127 .. ..        2    0    0    0 100%    0        0   1
-  -2,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0
-   0,-2   g    0%     127 .. ..        4    0    0    0 100%    1        0
+  -2,-2   g    0%     127 .. ..        2    0    0    0 100%    1        0
+   0,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
    2,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   4,-2   -    0%     127 .. ..        2    0    0    0 100%    1        0   1
-   6,-2   g    0%     127 .. ..      108    0    0    0 100%    1        0   1
-  -3,-1   gj 100%     123 .. ..      769    0    0    0 100%    0        0   1
-  -1,-1   g  100%     127 .. ..      769    0    0    0 100%    1        0
+   4,-2   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   6,-2   g    0%     127 .. ..      100    0    0    0 100%    0        0   1
+  -3,-1   gj 100%     123 .. ..      769    0    0    0 100%    1        0   1
+  -1,-1   g  100%     127 .. ..      769    0    0    0 100%    0        0
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,-1   g    1%     127 .. ..        5    0    0    0 100%    1        0
-   7,-1   c    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -2,0    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   0,0    m  100%     127 .. ..      769   55  304    0 100%    0        0
-   2,0    m  100%     127 .. ..      769   55  304    0 100%    0        0
+   5,-1   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   7,-1   c    0%     127 .. ..        2    0    0    0 100%    0        0   1
+  -2,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. ..      769   55  306    0 100%    0        0
+   2,0    m  100%     127 .. ..      769   55  302    0 100%    0        0
    4,0    b  100%     127 .. ..      350    0    0    0 100%   93        0   1
-   6,0    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   8,0    -    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -3,1    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
-  -1,1    -    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   1,1    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   3,1    w  100%     127 .. ..        1    0    0    0 100%   88        0   1
+   6,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   8,0    -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -3,1    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -1,1    -    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   1,1    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   3,1    w  100%     127 .. ..        1    0    0    0 100%   83        0   1
 29 sectors
 
-[0:592] Command :      --------00000000001
+[0:593] Command :      --------00000000001
      8765432101234567890
   -5  . . . . .          -5  
   -4 . o - . - . . .     -4  
@@ -7085,29 +7084,29 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:592] Command : 
+[0:593] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 5124, yielding 0.00 hap, 0.00 edu
-2.2702 technology (0.0000 + 2.2702), 0.0000 research (0.0000 + 0.0000) produced
-money delta was $655 for this update
+total pop was 5112, yielding 0.00 hap, 0.00 edu
+2.2704 technology (0.0000 + 2.2704), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $651 for this update
 
 
-[0:592] Command : Thu Jan  1 00:00:00 1970
+[0:593] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -6,-4   o  87%   499  296o 0.68 $0                                      296
-   1,-3   g  19%   499   95d 1.00 $0                                       95
+  -6,-4   o  87%   500  297o 0.68 $0                                      297
+   1,-3   g  19%   499   94d 1.00 $0                                       94
   -3,-1   j 100%   474  324l 0.68 $0     474i            474i             324
   -1,-1   g   0%   599    0d 1.00 $0                                        0
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
-   0,0    m 100%   822  822i 1.00 $0                                      822
-   2,0    m 100%   822  822i 1.00 $0                                      822
-   4,0    b 100%   273   55b 1.00 $550   275d            275d              55
+   0,0    m 100%   823  823i 1.00 $0                                      823
+   2,0    m 100%   820  820i 1.00 $0                                      820
+   4,0    b 100%   273   54b 1.00 $540   270d            270d              54
 9 sectors
 
-[0:592] Command : Bye-bye
+[0:593] Command : Bye-bye
 Exit: so long...
 Player 08 Turn 10 completed successfully
 Update Turn 11 starting
@@ -7119,34 +7118,34 @@ Update Turn 11 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33   86%  22K  53    0    0    0  8.7K 2.5K 805    0    1    0   19K
-   184.06
-        8  29   28% 6.7K 110    0    0    0  5.0K 2.3K   0    0    0    0   30K
-    36.55
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   32K
-    16.94
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   32K
-    16.87
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   32K
-    16.84
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   32K
-    16.71
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   32K
-    16.52
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   32K
-    16.21
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   32K
-    15.38
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   32K
-    15.23
+        1  33   86%  22K  53    0    0    0  8.7K 2.5K 787    0    1    0   19K
+   183.92
+        8  29   28% 6.6K 110    0    0    0  5.0K 2.3K   0    0    0    0   30K
+    36.51
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   32K
+    16.98
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   32K
+    16.89
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   32K
+    16.86
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   32K
+    16.74
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   32K
+    16.51
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   32K
+    16.19
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   32K
+    15.39
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   32K
+    15.29
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  86   70%  53K 1.0K   0    0    0   14K 6.9K 805    0    1    0  303K
+worldwide  86   70%  53K 1.0K   0    0    0   14K 7.0K 787    0    1    0  302K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 23.05        0.00       37.44        0.00     5,-15 
+ 1     1                 23.05        0.00       37.48        0.00     5,-15 
  2     2                 11.52        0.00        0.00        0.00    16,10  
  3     3                 11.52        0.00        0.00        0.00    -4,10  
  4     4                 11.52        0.00        0.00        0.00   -15,1   
@@ -7161,48 +7160,48 @@ worldwide  86   70%  53K 1.0K   0    0    0   14K 6.9K 805    0    1    0  303K
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
-  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    3    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    5    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    9    0   1
   1    5,-15  c  100%     127 .. ..      769    0    0    0 100%   56    0   1
-  1    7,-15  +    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    7,-15  +    0%     127 .. ..      769    0    0    0 100%    0    0   1
   1    9,-15  t  100%     127 .. ..      769    0    0    0 100%   48    0   1
   1   11,-15  l  100%     127 .. ..      769    0    0    0 100%   13    0   1
-  8   17,-15  o    0%     127 .. ..      769    0    0    0 100%    1    0   1
-  8   19,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   23,-15  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   17,-15  o    1%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   19,-15  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   23,-15  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
   1    4,-14  b  100%     127 .. ..      769    0    0    0 100%    3    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
-  1   10,-14  h  100%     127 .. ..     1242    0    0    0 100%   76    0   1
-  1   12,-14  =  100%     118 .. ..       76    0    0    0 100%    5    0   1
+  1   10,-14  h  100%     127 .. ..     1245    0    0    0 100%   82    0   1
+  1   12,-14  =  100%     119 .. ..       76    0    0    0 100%    5    0   1
   1   14,-14  =   20%       0 .. ..        1    0    0    0 100%    0    0   1
-  1   16,-14  )  100%     127 .. 0.       63   28  133    0 100%  124    0   1
-  8   18,-14  o    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   20,-14  -    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  8   22,-14  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  1   16,-14  )  100%     127 .. 0.   8   62   28  135    0 100%  124    0   1
+  8   18,-14  o    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-14  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
   8   24,-14  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  1    7,-13  m  100%     127 .. 5.      769    0  595    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  593    0 100%    0    0
   1    9,-13  k  100%     127 .. 8.      769    0   11    0 100%    1    0   1
   8   19,-13  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  8   21,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0
-  8   23,-13  g    0%     127 .. ..        4    0    0    0 100%    1    0
+  8   21,-13  g    0%     127 .. ..        2    0    0    0 100%    1    0
+  8   23,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
   8   25,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   27,-13  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  8   29,-13  g    0%     127 .. ..      108    0    0    0 100%    1    0   1
+  8   27,-13  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   29,-13  g    0%     127 .. ..      100    0    0    0 100%    0    0   1
   1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  1   10,-12  gj 100%     123 .. ..      769    0    0    0 100%    0    0   1
-  1   12,-12  gd 100%     122 .. ..      769    0    0    0 100%    2    0   1
-  8   20,-12  gj 100%     123 .. ..      769    0    0    0 100%    0    0   1
-  8   22,-12  g  100%     127 .. ..      769    0    0    0 100%    1    0
+  1   10,-12  gj 100%     123 .. ..      769    0    0    0 100%    3    0   1
+  1   12,-12  gd 100%     122 .. ..      769    0    0    0 100%    1    0   1
+  8   20,-12  gj 100%     123 .. ..      769    0    0    0 100%    1    0   1
+  8   22,-12  g  100%     127 .. ..      769    0    0    0 100%    0    0
   8   24,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  8   28,-12  g    1%     127 .. ..        5    0    0    0 100%    1    0
-  8   30,-12  c    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   28,-12  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   30,-12  c    0%     127 .. ..        2    0    0    0 100%    0    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
   1    3,-11  i  100%     127 .. ..      769    0    0    0 100%  474    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
@@ -7211,42 +7210,42 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   11,-11  gw 100%     122 .. ..      769    0    0    0 100%    4    0   1
   1   13,-11  ge 100%     121 .. ..      769    0    0    0 100%    4    0   1
   1   15,-11  g! 100%     120 .. ..      769    0    0    0 100%    0    0   1
-  8   21,-11  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   23,-11  m  100%     127 .. ..      769   55  304    0 100%    0    0
-  8   25,-11  m  100%     127 .. ..      769   55  304    0 100%    0    0
+  8   21,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   23,-11  m  100%     127 .. ..      769   55  306    0 100%    0    0
+  8   25,-11  m  100%     127 .. ..      769   55  302    0 100%    0    0
   8   27,-11  b  100%     127 .. ..      350    0    0    0 100%   93    0   1
-  8   29,-11  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   31,-11  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  301    0 100%  793    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  301    0 100%  793    0   1
+  8   29,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   31,-11  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  303    0 100%  795    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  304    0 100%  795    0   1
   1    4,-10  +    5%     127 .. ..      100    0    0    0 100%    3    0   1
   1    6,-10  +    3%     127 .. ..      100    0    0    0 100%    2    0   1
-  1   10,-10  +p  25%     127 .. ..      769    0    0    0 100%    8    0   1
-  8   20,-10  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  8   22,-10  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   24,-10  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   26,-10  w  100%     127 .. ..        1    0    0    0 100%   88    0   1
+  1   10,-10  +p  22%     127 .. ..      769    0    0    0 100%    7    0   1
+  8   20,-10  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-10  -    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   24,-10  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   26,-10  w  100%     127 .. ..        1    0    0    0 100%   83    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  305    0 100%  796    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  300    0 100%  792    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  303    0 100%  795    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  303    0 100%  795    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  6    2,-2   c  100%     127 .. ..     1000   55  305    0 100%  796    0
-  6    4,-2   c  100%     127 .. ..     1000   55  303    0 100%  794    0
+  6    2,-2   c  100%     127 .. ..     1000   55  304    0 100%  795    0
+  6    4,-2   c  100%     127 .. ..     1000   55  305    0 100%  796    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   7   24,0    c  100%     127 .. ..     1000   55  308    0 100%  798    0
-  7   26,0    c  100%     127 .. ..     1000   55  299    0 100%  792    0
-  4  -15,1    c  100%     127 .. ..     1000   55  302    0 100%  794    0
-  4  -13,1    c  100%     127 .. ..     1000   55  305    0 100%  796    0
+  7   26,0    c  100%     127 .. ..     1000   55  300    0 100%  792    0
+  4  -15,1    c  100%     127 .. ..     1000   55  304    0 100%  795    0
+  4  -13,1    c  100%     127 .. ..     1000   55  303    0 100%  794    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  301    0 100%  793    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  303    0 100%  795    0
+  5  -30,8    c  100%     127 .. ..     1000   55  302    0 100%  794    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  302    0 100%  794    0
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  306    0 100%  796    0
-  3   -2,10   c  100%     127 .. ..     1000   55  306    0 100%  796    0
-  2   16,10   c  100%     127 .. ..     1000   55  302    0 100%  794    0
-  2   18,10   c  100%     127 .. ..     1000   55  309    0 100%  798    0
+  3   -4,10   c  100%     127 .. ..     1000   55  305    0 100%  796    0
+  3   -2,10   c  100%     127 .. ..     1000   55  304    0 100%  795    0
+  2   16,10   c  100%     127 .. ..     1000   55  300    0 100%  792    0
+  2   18,10   c  100%     127 .. ..     1000   55  306    0 100%  796    0
 86 sectors
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -7262,10 +7261,10 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  17,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  - .......... ...9......   0   0    0    0    0   0    0    0    0   0
-  1   4,-14  b .......... ....3.....   0   0    0    0  305  86    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  305  85    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
-  1  10,-14  h .......... ..........   0   0    0 3855 2207   0  727 1282 1122   0
+  1  10,-14  h .......... ..........   0   0    0 3855 2209   0  709 1282 1120   0
   1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -7294,7 +7293,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   0   0    0    0    0   0    0  600  300   0
   1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  k .......... ........0.   0   0    0  599    0   0    0    0    1   0
@@ -7316,24 +7315,24 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  22,-10  - .......... ...9......   0   0    0    0    0   0    0    0    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 4024 2012   0    0    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 4024 2010   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -7343,14 +7342,14 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
 [0:630] Command : Thu Jan  1 00:00:00 1970
     RESOURCE
 own   sect        eff  min gold fert oil uran 
-  1    6,-16  o  100%    0    0   82  12    0
+  1    6,-16  o  100%    0    0   82  11    0
   1    1,-15  o  100%    6    0   67   7    0
-  1    3,-15  o  100%   11    0   61   4    0
+  1    3,-15  o  100%   11    0   61   5    0
   1    5,-15  c  100%   28    5   37   0    0
   1    7,-15  +    0%    0    0   76  47    0
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
-  8   17,-15  o    0%    0    0  100  87    0
+  8   17,-15  o    1%    0    0  100  87    0
   8   19,-15  -    0%    0    0  100 100    0
   8   23,-15  -    0%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
@@ -7361,8 +7360,8 @@ own   sect        eff  min gold fert oil uran
   1   14,-14  =   20%    0    0   63  46    0
   1   16,-14  )  100%    0    0  100  98    0
   8   18,-14  o    0%    0    0   91  72    0
-  8   20,-14  -    1%    0    0   82  58    0
-  8   22,-14  g    0%   50   23    6   0    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    1%   50   23    6   0    0
   8   24,-14  g    0%   45   19   13   0    0
   1    3,-13  j  100%   23    1   43   0    0
   1    5,-13  m  100%  100    0  100 100  100
@@ -7379,14 +7378,14 @@ own   sect        eff  min gold fert oil uran
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  gj 100%   50    0    6   0    0
   1   12,-12  gd 100%   63    0    0   0   17
-  8   20,-12  gj 100%   74    0    0   0   37
+  8   20,-12  gj 100%   74    1    0   0   37
   8   22,-12  g  100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
-  8   28,-12  g    1%   91   56    0   0   68
+  8   28,-12  g    0%   91   56    0   0   68
   8   30,-12  c    0%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  k  100%   91    0    0   0   68
   1    9,-11  gr 100%   85    0    0   0   57
@@ -7403,7 +7402,7 @@ own   sect        eff  min gold fert oil uran
  10  -10,-10  c  100%  100  100  100 100  100
   1    4,-10  +    5%    0    0  100 100    0
   1    6,-10  +    3%    0    0  100 100    0
-  1   10,-10  +p  25%    0    0  100  98    0
+  1   10,-10  +p  22%    0    0  100  98    0
   8   20,-10  g    0%   78   46    0   0   45
   8   22,-10  -    0%    6    0   67  32    0
   8   24,-10  g    0%   67   37    0   0   25
@@ -7578,9 +7577,9 @@ command failed
 [0:632] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    8        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%   14        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%   19        0   1
    0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
    2,-2   +  100%     127 .. ..      769    0    0    0 100%  499        0   1
    4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
@@ -7588,20 +7587,20 @@ CENSUS                   del dst
   -1,-1   b  100%     127 .. ..      769    0    0    0 100%  294        0   1
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,-1   h  100%     127 .. ..     5180   29    0    0 100%  600        0   1
+   5,-1   h  100%     127 .. ..     5870   29    0    0 100%  600        0   1
    7,-1   =  100%     127 .. ..       77    0    0    0 100%   58        0   1
    9,-1   =   20%      60 .. ..       77    0    0    0 100%    0        0   1
-  11,-1   )  100%     127 .. 0.      769   28    1    0 100%  147        0   1
+  11,-1   )  100%     127 .. 0.   8   80   28    1    0 100%  146        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
-   2,0    m  100%     127 .. 5.      769    0  579    0 100%   11        0
-   4,0    k  100%     127 .. 8.      769    0  270    0 100%    1        0   1
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%   10        0
+   4,0    k  100%     127 .. 8.      769    0  269    0 100%    1        0   1
   -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    5,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    7,1    d  100%     127 .. ..      769    0    0    0 100%  474        0   1
-  -2,2    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,2    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    4,2    r  100%     127 .. ..      769    0    0    0 100%  474        0   1
@@ -7610,7 +7609,7 @@ CENSUS                   del dst
   10,2    !  100%     127 .. ..      769    0    0    0 100%  474        0   1
   -1,3    +   44%     127 .. ..      769    0    0    0 100%   39        0   1
    1,3    +   42%     127 .. ..      769    0    0    0 100%   39        0   1
-   5,3    p  100%     127 .. ..      769    0    0    0 100%  492        0   1
+   5,3    p  100%     127 .. ..      769    0    0    0 100%  493        0   1
 33 sectors
 
 [0:632] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
@@ -7636,36 +7635,36 @@ CENSUS                   del dst
 technological breakthroughs (11.47) produced in 4,-2
 a class of graduates (150.00) produced in 6,-2
   0 happiness, 150 education produced
-total pop was 22345, yielding 0.00 hap, 25.55 edu
-4.5193 tech, 0.0000 research produced
+total pop was 22285, yielding 0.00 hap, 25.59 edu
+4.5197 tech, 0.0000 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $3197 for this update
+money delta was $3153 for this update
 
 
 [0:632] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-   1,-3   o   5%   599   24o 0.79 $0                                       24
-  -4,-2   o   3%   599   14o 0.79 $0                                       14
-  -2,-2   o   1%   599    5o 0.79 $0                                        5
-   4,-2   t 100%   599 11.21 0.75 $4500   15d  75o 150l   37d 185o 370l 27.66
+   1,-3   o   5%   599   23o 0.79 $0                                       23
+  -4,-2   o   3%   599   13o 0.79 $0                                       13
+  -2,-2   o   2%   599    9o 0.79 $0                                        9
+   4,-2   t 100%   599 11.22 0.75 $4500   15d  75o 150l   37d 185o 370l 27.67
    6,-2   l 100%   599  250  1.00 $2250  250l            599l             599
-  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+  -1,-1   b 100%   599   60b 1.00 $600   300d            595d             119
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   j 100%   599  473l 0.79 $0     599i            599i             473
   -2,0    j 100%   599  473l 0.79 $0     599i            599i             473
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   998  998i 1.00 $0                                      998
-   4,0    k 100%   785  310h 0.79 $0     786i            786i             310
-  -1,1    k 100%   599  237h 0.79 $0     600i            600i             237
+   4,0    k 100%   784  309h 0.79 $0     784i            784i             309
+  -1,1    k 100%   599  236h 0.79 $0     598i            598i             236
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   599  599i 1.00 $0                                      599
    5,1    j 100%   599  473l 0.79 $0     599i            599i             473
    7,1    d 100%   599    4g 0.43 $300    10o  50l 100h   37o 185l 370h    16
-  -2,2    i 100%   599   85s 0.43 $600   400l 200h       400l 200h         85
+  -2,2    i 100%   599   85s 0.43 $597   398l 199h       398l 199h         85
    0,2    m 100%   599  599i 1.00 $0                                      599
-   2,2    k 100%   599  237h 0.79 $0     600i            600i             237
-   4,2    r 100%   599  7.48 0.75 $900    10d  50o 100l   37d 185o 370l 27.66
+   2,2    k 100%   599  236h 0.79 $0     598i            598i             236
+   4,2    r 100%   599  7.48 0.75 $900    10d  50o 100l   37d 185o 370l 27.67
    8,2    e 100%   599   33m 1.00 $99     33c             33c             498
    5,3    p 100%   599   75  1.00 $675    75l            599l             599
 23 sectors
@@ -7679,32 +7678,32 @@ Player 08 Turn 11 starting
        -=O=-
 You have a new telegram waiting ...
 
+[0:593] Command : 
 [0:592] Command : 
-[0:591] Command : 
-[0:590] Command : -1,-1 old threshold 1
+[0:591] Command : -1,-1 old threshold 1
 
-[0:589] Command : Looking for best path to 4,0
+[0:590] Command : Looking for best path to 4,0
 Using best path 'jjnh', movement cost 0.600
 Total movement cost = 3
 124 mob left in -1,-1
 
+[0:589] Command : 
 [0:588] Command : 
 [0:587] Command : 
 [0:586] Command : 
 [0:585] Command : 
-[0:584] Command : 
-[0:583] Command : 1,-3 old threshold 1
+[0:584] Command : 1,-3 old threshold 1
 
+[0:583] Command : 
 [0:582] Command : 
-[0:581] Command : 
-[0:580] Command : 6,-2 old threshold 1
+[0:581] Command : 6,-2 old threshold 1
 
+[0:580] Command : 
 [0:579] Command : 
 [0:578] Command : 
 [0:577] Command : 
 [0:576] Command : 
-[0:575] Command : 
-[0:574] Command :      --------00000000001
+[0:575] Command :      --------00000000001
      8765432101234567890
   -5  . . . . .          -5  
   -4 . o - . k . . .     -4  
@@ -7720,46 +7719,46 @@ Total movement cost = 3
      --------00000000001
      8765432101234567890
 
-[0:574] Command : Thu Jan  1 00:00:00 1970
+[0:575] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
-  -4,-4   -    0%     127 .. ..        2    0    0    0 100%    0        0   1
-   0,-4   k    0%     127 .. ..        2    0    0    0 100%    1        0   1
-  -5,-3   o    1%     127 .. ..        6    0    0    0 100%    2        0   1
-  -3,-3   -    2%     127 .. ..        6    0    0    0 100%    2        0   1
-  -1,-3   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   1,-3   gl 100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-  -2,-2   g    0%     127 .. ..        4    0    0    0 100%    1        0
-   0,-2   g    1%     127 .. ..        5    0    0    0 100%    1        0
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-4   -    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   0,-4   k    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -5,-3   o    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -3,-3   -    0%     127 .. ..        2    0    0    0 100%    0        0   1
+  -1,-3   g    3%     127 .. ..        7    0    0    0 100%    2        0   1
+   1,-3   gl 100%     127 .. ..      769    0    0    0 100%    4        0   1
+  -4,-2   g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -2,-2   g    0%     127 .. ..        2    0    0    0 100%    1        0
+   0,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
    2,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0   1
-   4,-2   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   6,-2   g   41%     127 .. ..      769    0    0    0 100%   42        0   1
+   4,-2   -    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   6,-2   g   39%     127 .. ..      769    0    0    0 100%   39        0   1
   -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -1,-1   gm 100%     124 .. ..      769    0    0    0 100%  599        0
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,-1   g    3%     127 .. ..        7    0    0    0 100%    2        0
-   7,-1   c    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -2,0    g    0%     127 .. ..        2    0    0    0 100%    0        0   1
-   0,0    m  100%     127 .. ..      769   55  350    0 100%    0        0
-   2,0    m  100%     127 .. ..      769   55  350    0 100%    0        0
-   4,0    b  100%     127 .. ..      350    0    0    0 100%    0        0   1
-   6,0    g    1%     127 .. ..      769    0    0    0 100%    2        0   1
-   8,0    -    0%     127 .. ..        1    0    0    0 100%    0        0   1
-  -3,1    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
-  -1,1    j    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   1,1    g    1%     127 .. ..        5    0    0    0 100%    1        0   1
-   3,1    w  100%     127 .. ..      561    0    0    0 100%    0        0   1
+   5,-1   g    0%     127 .. ..        2    0    0    0 100%    0        0
+   7,-1   c    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -2,0    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. ..      769   55  352    0 100%    0        0
+   2,0    m  100%     127 .. ..      769   55  348    0 100%    0        0
+   4,0    b  100%     127 .. ..      350    0    0    0 100%    3        0   1
+   6,0    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   8,0    -    1%     127 .. ..        6    0    0    0 100%    2        0   1
+  -3,1    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -1,1    j    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   1,1    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   3,1    w  100%     127 .. ..      549    0    0    0 100%    0        0   1
 29 sectors
 
-[0:574] Command :      --------00000000001
+[0:575] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . .      -5  
-  -4 . o - . k . . . .   -4  
+  -4 . o - . k . . .     -4  
   -3  ? o - g g . . . .  -3  
-  -2 . . g g g g - g . - -2  
+  -2 . . g g g g - g .   -2  
   -1  . . j g m m g c .  -1  
    0 ? . . g m m b g - . 0   
    1  . . g j g w . . .  1   
@@ -7770,31 +7769,31 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:574] Command : 
+[0:575] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 6658, yielding 0.00 hap, 0.00 edu
-2.2596 technology (0.0000 + 2.2596), 0.0000 research (0.0000 + 0.0000) produced
-money delta was $1178 for this update
+total pop was 6646, yielding 0.00 hap, 0.00 edu
+2.2598 technology (0.0000 + 2.2598), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $1200 for this update
 
 
-[0:574] Command : Thu Jan  1 00:00:00 1970
+[0:575] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -6,-4   o  44%   599  186o 0.70 $0                                      186
+  -6,-4   o  43%   599  181o 0.70 $0                                      181
    1,-3   l 100%   474  300  1.00 $2700  300l            474l             474
-   6,-2   g   5%   540   25d 1.00 $0                                       25
+   6,-2   g   5%   538   25d 1.00 $0                                       25
   -3,-1   j 100%   599  421l 0.70 $0     599i            599i             421
   -1,-1   m 100%   474  474i 1.00 $0                                      474
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
-   0,0    m 100%   853  853i 1.00 $0                                      853
-   2,0    m 100%   853  853i 1.00 $0                                      853
-   4,0    b 100%   273   55b 1.00 $550   275d            275d              55
-   6,0    g  10%   500   50d 1.00 $0                                       50
+   0,0    m 100%   855  855i 1.00 $0                                      855
+   2,0    m 100%   852  852i 1.00 $0                                      852
+   4,0    b 100%   273   54b 1.00 $540   270d            270d              54
+   6,0    g  10%   499   49d 1.00 $0                                       49
 11 sectors
 
-[0:574] Command : Bye-bye
+[0:575] Command : Bye-bye
 Exit: so long...
 Player 08 Turn 11 completed successfully
 Update Turn 12 starting
@@ -7806,34 +7805,34 @@ Update Turn 12 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33   94%  28K  83   46    0    0  9.2K 2.2K 836    0    1    0   23K
-   264.37
-        8  29   36% 8.7K 110    0    0    0  7.4K 2.1K 296    0    0    0   31K
-    52.79
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   33K
-    20.38
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   33K
-    20.30
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   33K
-    20.26
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   33K
-    20.11
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   33K
-    19.88
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   33K
-    19.51
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   33K
-    18.52
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   33K
-    18.35
+        1  33   94%  28K  83   46    0    0  9.2K 2.2K 817    0    1    0   22K
+   264.20
+        8  29   36% 8.6K 110    0    0    0  7.4K 2.1K 297    0    0    0   31K
+    52.73
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   33K
+    20.43
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   33K
+    20.32
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   33K
+    20.29
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   33K
+    20.15
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   33K
+    19.87
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   33K
+    19.49
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   33K
+    18.53
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   33K
+    18.42
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  86   76%  61K 1.1K  46    0    0   17K 6.4K 1.1K   0    1    0  314K
+worldwide  86   76%  61K 1.1K  46    0    0   17K 6.5K 1.1K   0    1    0  314K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 27.40        0.00       34.61        0.00     5,-15 
+ 1     1                 27.40        0.00       34.65        0.00     5,-15 
  2     2                 13.70        0.00        0.00        0.00    16,10  
  3     3                 13.70        0.00        0.00        0.00    -4,10  
  4     4                 13.70        0.00        0.00        0.00   -15,1   
@@ -7848,37 +7847,37 @@ worldwide  86   76%  61K 1.1K  46    0    0   17K 6.4K 1.1K   0    1    0  314K
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
-  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    8    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%   14    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%   19    0   1
   1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    7,-15  +  100%     127 .. ..      769    0    0    0 100%  499    0   1
   1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
   1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  449    0   1
-  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
-  8   19,-15  -    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  8   23,-15  k    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   19,-15  -    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   23,-15  k    0%     127 .. ..        4    0    0    0 100%    1    0   1
   1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  294    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
-  1   10,-14  h  100%     127 .. ..     5180   29    0    0 100%  600    0   1
+  1   10,-14  h  100%     127 .. ..     5870   29    0    0 100%  600    0   1
   1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   58    0   1
   1   14,-14  =   20%      60 .. ..       77    0    0    0 100%    0    0   1
-  1   16,-14  )  100%     127 .. 0.      769   28    1    0 100%  147    0   1
-  8   18,-14  o    1%     127 .. ..        6    0    0    0 100%    2    0   1
-  8   20,-14  -    2%     127 .. ..        6    0    0    0 100%    2    0   1
-  8   22,-14  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   24,-14  gl 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1   16,-14  )  100%     127 .. 0.   8   80   28    1    0 100%  146    0   1
+  8   18,-14  o    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   22,-14  g    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  8   24,-14  gl 100%     127 .. ..      769    0    0    0 100%    4    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%   11    0
-  1    9,-13  k  100%     127 .. 8.      769    0  270    0 100%    1    0   1
-  8   19,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   21,-13  g    0%     127 .. ..        4    0    0    0 100%    1    0
-  8   23,-13  g    1%     127 .. ..        5    0    0    0 100%    1    0
+  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%   10    0
+  1    9,-13  k  100%     127 .. 8.      769    0  269    0 100%    1    0   1
+  8   19,-13  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   21,-13  g    0%     127 .. ..        2    0    0    0 100%    1    0
+  8   23,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
   8   25,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
-  8   27,-13  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   29,-13  g   41%     127 .. ..      769    0    0    0 100%   42    0   1
+  8   27,-13  -    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   29,-13  g   39%     127 .. ..      769    0    0    0 100%   39    0   1
   1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
@@ -7888,52 +7887,52 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8   22,-12  gm 100%     124 .. ..      769    0    0    0 100%  599    0
   8   24,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  8   28,-12  g    3%     127 .. ..        7    0    0    0 100%    2    0
-  8   30,-12  c    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   28,-12  g    0%     127 .. ..        2    0    0    0 100%    0    0
+  8   30,-12  c    0%     127 .. ..        3    0    0    0 100%    1    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-11  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  474    0   1
   1   11,-11  w  100%     127 .. ..      769    0    0    0 100%  474    0   1
   1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  474    0   1
   1   15,-11  !  100%     127 .. ..      769    0    0    0 100%  474    0   1
-  8   21,-11  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  8   23,-11  m  100%     127 .. ..      769   55  350    0 100%    0    0
-  8   25,-11  m  100%     127 .. ..      769   55  350    0 100%    0    0
-  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%    0    0   1
-  8   29,-11  g    1%     127 .. ..      769    0    0    0 100%    2    0   1
-  8   31,-11  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  346    0 100%  820    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  347    0 100%  820    0   1
+  8   21,-11  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   23,-11  m  100%     127 .. ..      769   55  352    0 100%    0    0
+  8   25,-11  m  100%     127 .. ..      769   55  348    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%    3    0   1
+  8   29,-11  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   31,-11  -    1%     127 .. ..        6    0    0    0 100%    2    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  348    0 100%  822    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  350    0 100%  822    0   1
   1    4,-10  +   44%     127 .. ..      769    0    0    0 100%   39    0   1
   1    6,-10  +   42%     127 .. ..      769    0    0    0 100%   39    0   1
-  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  492    0   1
-  8   20,-10  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  8   22,-10  j    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   24,-10  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  8   26,-10  w  100%     127 .. ..      561    0    0    0 100%    0    0   1
+  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  493    0   1
+  8   20,-10  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-10  j    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   24,-10  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   26,-10  w  100%     127 .. ..      549    0    0    0 100%    0    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  351    0 100%  823    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  345    0 100%  820    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  349    0 100%  822    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  349    0 100%  822    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  6    2,-2   c  100%     127 .. ..     1000   55  350    0 100%  823    0
-  6    4,-2   c  100%     127 .. ..     1000   55  349    0 100%  822    0
+  6    2,-2   c  100%     127 .. ..     1000   55  350    0 100%  822    0
+  6    4,-2   c  100%     127 .. ..     1000   55  351    0 100%  823    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   7   24,0    c  100%     127 .. ..     1000   55  354    0 100%  825    0
-  7   26,0    c  100%     127 .. ..     1000   55  344    0 100%  819    0
-  4  -15,1    c  100%     127 .. ..     1000   55  348    0 100%  821    0
-  4  -13,1    c  100%     127 .. ..     1000   55  351    0 100%  823    0
+  7   26,0    c  100%     127 .. ..     1000   55  345    0 100%  820    0
+  4  -15,1    c  100%     127 .. ..     1000   55  350    0 100%  822    0
+  4  -13,1    c  100%     127 .. ..     1000   55  348    0 100%  822    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  346    0 100%  820    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  349    0 100%  822    0
+  5  -30,8    c  100%     127 .. ..     1000   55  347    0 100%  821    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  347    0 100%  821    0
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  352    0 100%  823    0
-  3   -2,10   c  100%     127 .. ..     1000   55  352    0 100%  823    0
-  2   16,10   c  100%     127 .. ..     1000   55  348    0 100%  821    0
-  2   18,10   c  100%     127 .. ..     1000   55  355    0 100%  825    0
+  3   -4,10   c  100%     127 .. ..     1000   55  351    0 100%  823    0
+  3   -2,10   c  100%     127 .. ..     1000   55  349    0 100%  822    0
+  2   16,10   c  100%     127 .. ..     1000   55  345    0 100%  820    0
+  2   18,10   c  100%     127 .. ..     1000   55  352    0 100%  823    0
 86 sectors
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -7949,10 +7948,10 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  17,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    0   0
-  1   4,-14  b .......... ....3.....   0   0    0    0  300 147    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 146    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
-  1  10,-14  h .......... ...00.022.   0   0    0 4047 1883   0  688 1190 1315   0
+  1  10,-14  h .......... ...00.022.   0   0    0 4047 1885   0  669 1191 1314   0
   1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -7981,7 +7980,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
   1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
@@ -7992,7 +7991,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  25,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  8  27,-11  b .......... ....3.....   0   0    0    0  301  66    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  301  65    0    0    0   0
   8  29,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  31,-11  - .......... .......63.   0   0    0    0    0   0    0    0    0   0
  10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -8003,24 +8002,24 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    0    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 4395 1833   0  294   23    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 4395 1835   0  295   23    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -8032,13 +8031,13 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
 own   sect        eff  min gold fert oil uran 
   1    6,-16  o  100%    0    0   82   5    0
   1    1,-15  o  100%    6    0   67   3    0
-  1    3,-15  o  100%   11    0   61   1    0
+  1    3,-15  o  100%   11    0   61   2    0
   1    5,-15  c  100%   28    5   37   0    0
   1    7,-15  +  100%    0    0   76  47    0
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
-  8   17,-15  o  100%    0    0  100  44    0
-  8   19,-15  -    0%    0    0  100 100    0
+  8   17,-15  o  100%    0    0  100  43    0
+  8   19,-15  -    1%    0    0  100 100    0
   8   23,-15  k    0%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
   1    6,-14  m  100%  100   69    0   0   97
@@ -8047,9 +8046,9 @@ own   sect        eff  min gold fert oil uran
   1   12,-14  =  100%    0    0   45  11    0
   1   14,-14  =   20%    0    0   63  46    0
   1   16,-14  )  100%    0    0  100  98    0
-  8   18,-14  o    1%    0    0   91  72    0
-  8   20,-14  -    2%    0    0   82  58    0
-  8   22,-14  g    0%   50   23    6   0    0
+  8   18,-14  o    0%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    3%   50   23    6   0    0
   8   24,-14  gl 100%   45    0   13   0    0
   1    3,-13  j  100%   23    1   43   0    0
   1    5,-13  m  100%  100    0  100 100  100
@@ -8057,23 +8056,23 @@ own   sect        eff  min gold fert oil uran
   1    9,-13  k  100%   17    0   52   7    0
   8   19,-13  g    0%   56   28    0   0    5
   8   21,-13  g    0%   96   60    0   0   77
-  8   23,-13  g    1%  100   65    0   0   88
+  8   23,-13  g    0%  100   65    0   0   88
   8   25,-13  g    0%   63   33    0   0   17
-  8   27,-13  -    0%    0    0   76  47    0
-  8   29,-13  g   41%   28    5   37   0    0
+  8   27,-13  -    1%    0    0   76  47    0
+  8   29,-13  g   39%   28    5   37   0    0
   1    4,-12  k  100%   74   42    0   0   37
   1    6,-12  m  100%  100    0    0   0  100
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  j  100%   50    0    6   0    0
   1   12,-12  d  100%   63    0    0   0   17
-  8   20,-12  j  100%   74    0    0   0   37
+  8   20,-12  j  100%   74    1    0   0   37
   8   22,-12  gm 100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
-  8   28,-12  g    3%   91   56    0   0   68
+  8   28,-12  g    0%   91   56    0   0   68
   8   30,-12  c    0%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  k  100%   91    0    0   0   68
   1    9,-11  r  100%   85    0    0   0   57
@@ -8084,8 +8083,8 @@ own   sect        eff  min gold fert oil uran
   8   23,-11  m  100%  100    0  100 100  100
   8   25,-11  m  100%  100    0  100 100  100
   8   27,-11  b  100%   39    3   21   0    0
-  8   29,-11  g    1%   34   10   28   0    0
-  8   31,-11  -    0%    0    0  100 100    0
+  8   29,-11  g    0%   34   10   28   0    0
+  8   31,-11  -    1%    0    0  100 100    0
  10  -12,-10  c  100%  100  100  100 100  100
  10  -10,-10  c  100%  100  100  100 100  100
   1    4,-10  +   44%    0    0  100 100    0
@@ -8093,7 +8092,7 @@ own   sect        eff  min gold fert oil uran
   1   10,-10  p  100%    0    0  100  98    0
   8   20,-10  g    0%   78   46    0   0   45
   8   22,-10  j    0%    6    0   67  32    0
-  8   24,-10  g    1%   67   37    0   0   25
+  8   24,-10  g    0%   67   37    0   0   25
   8   26,-10  w  100%   17    0   52   7    0
   9  -25,-7   g  100%   28    0   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
@@ -8169,9 +8168,9 @@ That just cost you $300.00
 [0:635] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%   19        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%   33        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%   49        0   1
    0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
    2,-2   +  100%     127 .. ..      769    0    0    0 100%  599        0   1
    4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
@@ -8182,7 +8181,7 @@ CENSUS                   del dst
    5,-1   h  100%      91 .. ..      769   29    0    0 100%  510        0   1
    7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
    9,-1   =   49%     120 .. ..       77    0    0    0 100%   30        0   1
-  11,-1   )  100%     127 .. 0.      769   28    1    0 100%  606        0   1
+  11,-1   )  100%     127 .. 0.   8  104   28    1    0 100%   70        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
@@ -8196,7 +8195,7 @@ CENSUS                   del dst
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,2    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
-   6,2    w  100%     127 .. ..     7934   33    0    0 100%  599        0   1
+   6,2    w  100%     127 .. ..     7702   33    0    0 100%  599        0   1
    8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
   10,2    !  100%     127 .. ..      769    0    0    0 100%  579        0   1
   -1,3    +  100%     127 .. ..      769    0    0    0 100%  543        0   1
@@ -8235,41 +8234,41 @@ CENSUS                   del dst
 
 [0:635] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
-technological breakthroughs (11.21) produced in 4,-2
+technological breakthroughs (11.22) produced in 4,-2
 a class of graduates (250.00) produced in 6,-2
 medical discoveries (7.48) produced in 4,2
 happy strollers (75.00) produced in 5,3
  75 happiness, 250 education produced
-total pop was 28404, yielding 12.93 hap, 30.77 edu
-4.4871 tech, 3.6996 research produced
+total pop was 28325, yielding 12.95 hap, 30.83 edu
+4.4876 tech, 3.7001 research produced
 Army delta $0, Navy delta $-36, Air force delta $0
-money delta was $5427 for this update
+money delta was $5384 for this update
 
 
 [0:635] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-   1,-3   o   2%   599   10o 0.81 $0                                       10
-  -4,-2   o   1%   599    5o 0.81 $0                                        5
+   1,-3   o   2%   599    9o 0.81 $0                                        9
+  -4,-2   o   2%   599    9o 0.81 $0                                        9
   -2,-2   o   0%   599    0o 0.81 $0                                        0
-   4,-2   t 100%   599 11.12 0.74 $4500   15d  75o 150l   37d 185o 370l 27.44
+   4,-2   t 100%   599 11.13 0.74 $4500   15d  75o 150l   37d 185o 370l 27.45
    6,-2   l 100%   599  300  1.00 $2700  300l            599l             599
-  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+  -1,-1   b 100%   599   60b 1.00 $600   300d            595d             119
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   j 100%   599  483l 0.81 $0     599i            599i             483
   -2,0    j 100%   599  483l 0.81 $0     599i            599i             483
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   998  998i 1.00 $0                                      998
-   4,0    k 100%   873  352h 0.81 $0     874i            874i             352
-  -1,1    k 100%   599  242h 0.81 $0     600i            600i             242
+   4,0    k 100%   873  352h 0.81 $0     872i            872i             352
+  -1,1    k 100%   599  241h 0.81 $0     598i            598i             241
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   599  599i 1.00 $0                                      599
    5,1    j 100%   599  483l 0.81 $0     599i            599i             483
    7,1    d 100%   599    5g 0.54 $300    10o  50l 100h   37o 185l 370h    20
-  -2,2    i 100%   599  108s 0.54 $600   400l 200h       400l 200h        108
+  -2,2    i 100%   599  107s 0.54 $597   398l 199h       398l 199h        107
    0,2    m 100%   599  599i 1.00 $0                                      599
-   2,2    k 100%   599  242h 0.81 $0     600i            600i             242
-   4,2    r 100%   599  7.42 0.74 $900    10d  50o 100l   37d 185o 370l 27.44
+   2,2    k 100%   599  241h 0.81 $0     598i            598i             241
+   4,2    r 100%   599  7.42 0.74 $900    10d  50o 100l   37d 185o 370l 27.45
    8,2    e 100%   599   33m 1.00 $99     33c             33c             498
    5,3    p 100%   599   75  1.00 $675    75l            599l             599
 23 sectors
@@ -8283,26 +8282,26 @@ Player 08 Turn 12 starting
        -=O=-
 You have a new telegram waiting ...
 
+[0:575] Command : 
 [0:574] Command : 
-[0:573] Command : 
-[0:572] Command : 6,0 old threshold 1
+[0:573] Command : 6,0 old threshold 1
 
+[0:572] Command : 
 [0:571] Command : 
 [0:570] Command : 
 [0:569] Command : 
-[0:568] Command : 
-[0:567] Command : 4,0 old threshold 350
+[0:568] Command : 4,0 old threshold 350
 
+[0:567] Command : 
 [0:566] Command : 
 [0:565] Command : 
 [0:564] Command : 
-[0:563] Command : 
-[0:562] Command :      --------00000000001
+[0:563] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . .      -5  
-  -4 . o - . k . . . .   -4  
+  -4 . o - . k . . .     -4  
   -3  ) o - g g . . . .  -3  
-  -2 . . g g g g j g . - -2  
+  -2 . . g g g g j g .   -2  
   -1  . . j g m m g c .  -1  
    0 ? . . g m m b g i . 0   
    1  . . g j g w . . .  1   
@@ -8313,41 +8312,41 @@ You have a new telegram waiting ...
      --------00000000001
      8765432101234567890
 
-[0:562] Command : Thu Jan  1 00:00:00 1970
+[0:563] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-4   -    0%     127 .. ..        2    0    0    0 100%    1        0   1
-   0,-4   k    0%     127 .. ..      769    0    0    0 100%    1        0   1
-  -5,-3   o    3%     127 .. ..        8    0    0    0 100%    2        0   1
-  -3,-3   -    4%     127 .. ..        8    0    0    0 100%    2        0   1
-  -1,-3   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    2        0   1
+  -4,-4   -    3%     127 .. ..        7    0    0    0 100%    2        0   1
+   0,-4   k    1%     127 .. ..      769    0    0    0 100%    1        0   1
+  -5,-3   o    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -3,-3   -    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -1,-3   g    5%     127 .. ..        9    0    0    0 100%    3        0   1
    1,-3   l  100%     127 .. ..      769    0    0    0 100%  174        0   1
-  -4,-2   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
-  -2,-2   g    1%     127 .. ..        5    0    0    0 100%    1        0
-   0,-2   g    3%     127 .. ..        7    0    0    0 100%    2        0
+  -4,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -2,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0
+   0,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
    2,-2   g    0%     127 .. ..        2    0    0    0 100%    0        0   1
-   4,-2   j    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   6,-2   gt 100%     127 .. ..      769    0    0    0 100%   40        0   1
+   4,-2   j    0%     127 .. ..        7    0    0    0 100%    2        0   1
+   6,-2   gt 100%     127 .. ..      769    0    0    0 100%   38        0   1
   -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
-   5,-1   g    5%     127 .. ..       10    0    0    0 100%    3        0
-   7,-1   c    0%     127 .. ..        2    0    0    0 100%    0        0   1
-  -2,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   0,0    m  100%     127 .. ..      769   55  402    0 100%    0        0
-   2,0    m  100%     127 .. ..      769   55  403    0 100%    0        0
-   4,0    b  100%     127 .. ..      350    0    0    0 100%    0        0   1
-   6,0    gh 100%     127 .. ..      769    0    0    0 100%    0        0   1
-   8,0    i    0%     127 .. ..      769    0    0    0 100%    0        0   1
-  -3,1    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
-  -1,1    j    1%     127 .. ..      769    0    0    0 100%    1        0   1
-   1,1    g    2%     127 .. ..        6    0    0    0 100%    2        0   1
-   3,1    w  100%     127 .. ..       81    0    0    0 100%  437        0   1
+   5,-1   g    0%     127 .. ..        3    0    0    0 100%    1        0
+   7,-1   c    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -2,0    g    1%     127 .. ..        6    0    0    0 100%    2        0   1
+   0,0    m  100%     127 .. ..      769   55  405    0 100%    0        0
+   2,0    m  100%     127 .. ..      769   55  400    0 100%    0        0
+   4,0    b  100%     127 .. ..      350    0    0    0 100%    3        0   1
+   6,0    gh 100%     127 .. ..      769    0    0    0 100%    9        0   1
+   8,0    i    0%     127 .. ..      769    0    0    0 100%    2        0   1
+  -3,1    g    0%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,1    j    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   1,1    g    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   3,1    w  100%     127 .. ..       67    0    0    0 100%  428        0   1
 29 sectors
 
-[0:562] Command :      --------00000000001
+[0:563] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -8363,35 +8362,35 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:562] Command : 
+[0:563] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
 a class of graduates (300.00) produced in 1,-3
   0 happiness, 300 education produced
-total pop was 8658, yielding 0.00 hap, 85.99 edu
-2.2436 technology (0.0000 + 2.2436), 1.8498 research (0.0000 + 1.8498) produced
-money delta was $478 for this update
+total pop was 8642, yielding 0.00 hap, 86.11 edu
+2.2438 technology (0.0000 + 2.2438), 1.8500 research (0.0000 + 1.8500) produced
+money delta was $457 for this update
 
 
-[0:562] Command : Thu Jan  1 00:00:00 1970
+[0:563] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -6,-4   o  18%   599   78o 0.72 $0                                       78
-   0,-4   k 100%   499  180h 0.72 $0     500i            500i             180
+  -6,-4   o  18%   599   77o 0.72 $0                                       77
+   0,-4   k 100%   500  180h 0.72 $0     500i            500i             180
    1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
-   6,-2   t 100%   474  8.50 0.61 $4200   14d  70o 140l   30d 150o 300l 18.22
+   6,-2   t 100%   474  8.51 0.61 $4200   14d  70o 140l   29d 145o 290l 17.63
   -3,-1   j 100%   599  432l 0.72 $0     599i            599i             432
   -1,-1   m 100%   599  599i 1.00 $0                                      599
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
-   0,0    m 100%   889  889i 1.00 $0                                      889
-   2,0    m 100%   890  890i 1.00 $0                                      890
-   4,0    b 100%   273   55b 1.00 $550   275d            275d              55
+   0,0    m 100%   891  891i 1.00 $0                                      891
+   2,0    m 100%   888  888i 1.00 $0                                      888
+   4,0    b 100%   273   54b 1.00 $540   270d            270d              54
    8,0    i 100%   499    0s 0.00 $0       0l   0h         0l   0h          0
-  -3,1    g  46%   499  230d 1.00 $0                                      230
-  -1,1    j 100%   500  360l 0.72 $0     500i            500i             360
+  -3,1    g  46%   499  229d 1.00 $0                                      229
+  -1,1    j 100%   499  360l 0.72 $0     499i            499i             360
 14 sectors
 
-[0:562] Command : Bye-bye
+[0:563] Command : Bye-bye
 Exit: so long...
 Player 08 Turn 12 completed successfully
 Update Turn 13 starting
@@ -8403,41 +8402,41 @@ Update Turn 13 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33   98%  31K 116  131    4    0  9.5K 1.9K 744    0    4    5   27K
-   336.04
-        8  29   42%  11K 110    0    0    0   10K 1.9K 482    0    0    0   32K
-    72.32
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   33K
-    23.86
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   33K
-    23.76
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   33K
-    23.72
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   33K
-    23.55
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   33K
-    23.28
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   33K
-    22.85
-        2   3  100% 3.0K 110    0    0    0    0   50    0    0    0    0   33K
-    21.71
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   33K
-    21.51
+        1  33   98%  30K 116  131    4    0  9.5K 1.9K 727    0    4    5   27K
+   330.15
+        8  29   42%  11K 110    0    0    0   10K 2.0K 478    0    0    0   32K
+    72.18
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   33K
+    23.91
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   33K
+    23.78
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   33K
+    23.75
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   33K
+    23.59
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   33K
+    23.27
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   33K
+    22.82
+        2   3  100% 3.0K 110    0    0    0    0   52    0    0    0    0   33K
+    21.72
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   33K
+    21.59
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide  86   80%  66K 1.1K 131    4    0   20K 5.9K 1.2K   0    4    5  327K
+worldwide  86   80%  65K 1.1K 131    4    0   20K 5.9K 1.2K   0    4    5  327K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 31.68        3.68       33.70        7.18     5,-15 
+ 1     1                 31.68        3.68       33.74        7.19     5,-15 
  2     2                 15.84        1.84        0.00        0.00    16,10  
  3     3                 15.84        1.84        0.00        0.00    -4,10  
  4     4                 15.84        1.84        0.00        0.00   -15,1   
  5     5                 15.84        1.84        0.00        0.00   -30,8   
  6     6                 15.84        1.84        0.00        0.00     2,-2  
  7     7                 15.84        1.84        0.00        0.00    24,0   
- 8     8                 15.84        1.84       20.47        0.00    30,-12 
+ 8     8                 15.84        1.84       20.50        0.00    30,-12 
  9     9                 15.84        1.84        0.00        0.00   -26,-6  
  10    10                15.84        1.84        0.00        0.00   -12,-10 
  11    visitor            0.00        0.00        0.00        0.00     0,0   
@@ -8445,37 +8444,37 @@ worldwide  86   80%  66K 1.1K 131    4    0   20K 5.9K 1.2K   0    4    5  327K
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
-  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%   19    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%   33    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%   49    0   1
   1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    7,-15  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
   1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  349    0   1
-  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   19,-15  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
-  8   23,-15  k    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   19,-15  -    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  8   23,-15  k    1%     127 .. ..      769    0    0    0 100%    1    0   1
   1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
   1   10,-14  h  100%      91 .. ..      769   29    0    0 100%  510    0   1
   1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
   1   14,-14  =   49%     120 .. ..       77    0    0    0 100%   30    0   1
-  1   16,-14  )  100%     127 .. 0.      769   28    1    0 100%  606    0   1
-  8   18,-14  o    3%     127 .. ..        8    0    0    0 100%    2    0   1
-  8   20,-14  -    4%     127 .. ..        8    0    0    0 100%    2    0   1
-  8   22,-14  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   16,-14  )  100%     127 .. 0.   8  104   28    1    0 100%   70    0   1
+  8   18,-14  o    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   22,-14  g    5%     127 .. ..        9    0    0    0 100%    3    0   1
   8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  174    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
   1    9,-13  k  100%     127 .. 8.      769    0  397    0 100%    0    0   1
-  8   19,-13  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   21,-13  g    1%     127 .. ..        5    0    0    0 100%    1    0
-  8   23,-13  g    3%     127 .. ..        7    0    0    0 100%    2    0
+  8   19,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   21,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0
+  8   23,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
   8   25,-13  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  8   27,-13  j    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   29,-13  gt 100%     127 .. ..      769    0    0    0 100%   40    0   1
+  8   27,-13  j    0%     127 .. ..        7    0    0    0 100%    2    0   1
+  8   29,-13  gt 100%     127 .. ..      769    0    0    0 100%   38    0   1
   1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
@@ -8485,52 +8484,52 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8   22,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   24,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  8   28,-12  g    5%     127 .. ..       10    0    0    0 100%    3    0
-  8   30,-12  c    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   28,-12  g    0%     127 .. ..        3    0    0    0 100%    1    0
+  8   30,-12  c    0%     127 .. ..        4    0    0    0 100%    1    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
   1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-11  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
-  1   11,-11  w  100%     127 .. ..     7934   33    0    0 100%  599    0   1
+  1   11,-11  w  100%     127 .. ..     7702   33    0    0 100%  599    0   1
   1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
   1   15,-11  !  100%     127 .. ..      769    0    0    0 100%  579    0   1
-  8   21,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   23,-11  m  100%     127 .. ..      769   55  402    0 100%    0    0
-  8   25,-11  m  100%     127 .. ..      769   55  403    0 100%    0    0
-  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%    0    0   1
-  8   29,-11  gh 100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   31,-11  i    0%     127 .. ..      769    0    0    0 100%    0    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  398    0 100%  851    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  399    0 100%  852    0   1
+  8   21,-11  g    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   23,-11  m  100%     127 .. ..      769   55  405    0 100%    0    0
+  8   25,-11  m  100%     127 .. ..      769   55  400    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%    3    0   1
+  8   29,-11  gh 100%     127 .. ..      769    0    0    0 100%    9    0   1
+  8   31,-11  i    0%     127 .. ..      769    0    0    0 100%    2    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  400    0 100%  853    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  402    0 100%  854    0   1
   1    4,-10  +  100%     127 .. ..      769    0    0    0 100%  543    0   1
   1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  541    0   1
   1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
-  8   20,-10  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
-  8   22,-10  j    1%     127 .. ..      769    0    0    0 100%    1    0   1
-  8   24,-10  g    2%     127 .. ..        6    0    0    0 100%    2    0   1
-  8   26,-10  w  100%     127 .. ..       81    0    0    0 100%  437    0   1
+  8   20,-10  g    0%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-10  j    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   24,-10  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   26,-10  w  100%     127 .. ..       67    0    0    0 100%  428    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  404    0 100%  854    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  397    0 100%  851    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  402    0 100%  853    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  402    0 100%  853    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   6    2,-2   c  100%     127 .. ..     1000   55  402    0 100%  854    0
-  6    4,-2   c  100%     127 .. ..     1000   55  401    0 100%  853    0
+  6    4,-2   c  100%     127 .. ..     1000   55  404    0 100%  854    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   7   24,0    c  100%     127 .. ..     1000   55  407    0 100%  856    0
-  7   26,0    c  100%     127 .. ..     1000   55  396    0 100%  850    0
-  4  -15,1    c  100%     127 .. ..     1000   55  400    0 100%  853    0
-  4  -13,1    c  100%     127 .. ..     1000   55  404    0 100%  854    0
+  7   26,0    c  100%     127 .. ..     1000   55  397    0 100%  851    0
+  4  -15,1    c  100%     127 .. ..     1000   55  402    0 100%  854    0
+  4  -13,1    c  100%     127 .. ..     1000   55  400    0 100%  853    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  398    0 100%  851    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  401    0 100%  853    0
+  5  -30,8    c  100%     127 .. ..     1000   55  399    0 100%  852    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  399    0 100%  852    0
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  405    0 100%  855    0
-  3   -2,10   c  100%     127 .. ..     1000   55  404    0 100%  855    0
-  2   16,10   c  100%     127 .. ..     1000   55  400    0 100%  853    0
-  2   18,10   c  100%     127 .. ..     1000   55  408    0 100%  857    0
+  3   -4,10   c  100%     127 .. ..     1000   55  403    0 100%  854    0
+  3   -2,10   c  100%     127 .. ..     1000   55  401    0 100%  853    0
+  2   16,10   c  100%     127 .. ..     1000   55  397    0 100%  851    0
+  2   18,10   c  100%     127 .. ..     1000   55  404    0 100%  855    0
 86 sectors
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -8546,7 +8545,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  17,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    0   0
-  1   4,-14  b .......... ....3.....   0   0    0    0  300 207    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 206    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
   1  10,-14  h .......... ...00.022.   0   0    0    1    1   0    1  164  176   0
@@ -8566,7 +8565,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  25,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  27,-13  j .......... ...9......   0   0    0    0    0   0    0    0    0   0
-  8  29,-13  g .......... ....0.13..   0   0    0    0   30   0  150  144    0   0
+  8  29,-13  g .......... ....0.13..   0   0    0    0   30   0  150  145    0   0
   1   4,-12  k .......... ........0.   0   0    0  603    0   0    0    0    1   0
   1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
@@ -8578,18 +8577,18 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
   1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   7,-11  k .......... ........0.   0   0    0  601    0   0    0    0    1   0
   1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
-  1  11,-11  w .......... ..........   0   0    0 4258 1557   0  595 1333 1598   0
+  1  11,-11  w .......... ..........   0   0    0 4260 1559   0  578 1335 1596   0
   1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1  15,-11  ! .......... 20.....22. 130   3    0    0    0   0    0  195  197   0
+  1  15,-11  ! .......... 20.....22. 130   3    0    0    0   0    0  195  198   0
   8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  25,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  8  27,-11  b .......... ....3.....   0   0    0    0  300 121    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 119    0    0    0   0
   8  29,-11  g .......... .......22.   0   0    0    0    1   0    0    0    0   0
   8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0    0    0   0
  10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -8600,24 +8599,24 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
   8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    0    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 7173 1605   0  330    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 7173 1611   0  326    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
-  2  17,9    g .......... ..........   0   0    0    0   50   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -8628,15 +8627,15 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
     RESOURCE
 own   sect        eff  min gold fert oil uran 
   1    6,-16  o  100%    0    0   82   2    0
-  1    1,-15  o  100%    6    0   67   1    0
+  1    1,-15  o  100%    6    0   67   2    0
   1    3,-15  o  100%   11    0   61   0    0
   1    5,-15  c  100%   28    5   37   0    0
   1    7,-15  +  100%    0    0   76  47    0
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
   8   17,-15  o  100%    0    0  100  18    0
-  8   19,-15  -    0%    0    0  100 100    0
-  8   23,-15  k    0%   11    0   61  21    0
+  8   19,-15  -    3%    0    0  100 100    0
+  8   23,-15  k    1%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
   1    6,-14  m  100%  100   69    0   0   97
   1    8,-14  j  100%   96   60    0   0   77
@@ -8644,17 +8643,17 @@ own   sect        eff  min gold fert oil uran
   1   12,-14  =  100%    0    0   45  11    0
   1   14,-14  =   49%    0    0   63  46    0
   1   16,-14  )  100%    0    0  100  98    0
-  8   18,-14  o    3%    0    0   91  72    0
-  8   20,-14  -    4%    0    0   82  58    0
-  8   22,-14  g    0%   50   23    6   0    0
+  8   18,-14  o    1%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    5%   50   23    6   0    0
   8   24,-14  l  100%   45    0   13   0    0
   1    3,-13  j  100%   23    1   43   0    0
   1    5,-13  m  100%  100    0  100 100  100
   1    7,-13  m  100%  100  100  100 100  100
   1    9,-13  k  100%   17    0   52   7    0
   8   19,-13  g    0%   56   28    0   0    5
-  8   21,-13  g    1%   96   60    0   0   77
-  8   23,-13  g    3%  100   65    0   0   88
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
   8   25,-13  g    0%   63   33    0   0   17
   8   27,-13  j    0%    0    0   76  47    0
   8   29,-13  gt 100%   28    0   37   0    0
@@ -8663,21 +8662,21 @@ own   sect        eff  min gold fert oil uran
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  j  100%   50    0    6   0    0
   1   12,-12  d  100%   63    0    0   0   17
-  8   20,-12  j  100%   74    0    0   0   37
+  8   20,-12  j  100%   74    1    0   0   37
   8   22,-12  m  100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
-  8   28,-12  g    5%   91   56    0   0   68
+  8   28,-12  g    0%   91   56    0   0   68
   8   30,-12  c    0%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  k  100%   91    0    0   0   68
   1    9,-11  r  100%   85    0    0   0   57
   1   11,-11  w  100%   78    0    0   0   45
   1   13,-11  e  100%   67    0    0   0   25
   1   15,-11  !  100%   56    0    0   0    5
-  8   21,-11  g    0%   85   51    0   0   57
+  8   21,-11  g    1%   85   51    0   0   57
   8   23,-11  m  100%  100    0  100 100  100
   8   25,-11  m  100%  100    0  100 100  100
   8   27,-11  b  100%   39    3   21   0    0
@@ -8689,8 +8688,8 @@ own   sect        eff  min gold fert oil uran
   1    6,-10  +  100%    0    0  100 100    0
   1   10,-10  p  100%    0    0  100  98    0
   8   20,-10  g    0%   78   46    0   0   45
-  8   22,-10  j    1%    6    0   67  32    0
-  8   24,-10  g    2%   67   37    0   0   25
+  8   22,-10  j    0%    6    0   67  32    0
+  8   24,-10  g    0%   67   37    0   0   25
   8   26,-10  w  100%   17    0   52   7    0
   9  -25,-7   g  100%   28    0   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
@@ -8878,8 +8877,8 @@ COMMODITIES deliver--  distribute
 [0:587] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-   1,-3   oj 100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-2   ok 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,-3   oj 100%     127 .. ..      769    0    0    0 100%   49        0   1
+  -4,-2   ok 100%     127 .. ..      769    0    0    0 100%   49        0   1
   -2,-2   oj 100%     127 .. ..      769    0    0    0 100%  599        0   1
    0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
    2,-2   +  100%     127 .. ..      769    0    0    0 100%  599        0   1
@@ -8891,11 +8890,11 @@ CENSUS                   del dst
    5,-1   h  100%     127 .. ..      459    5    0    0 100%  222        0   1
    7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
    9,-1   =   78%     127 .. ..       77    0    0    0 100%   30        0   1
-  11,-1   )  100%     127 .. 0.      769   28    1    0 100%  607        0   1
+  11,-1   )  100%     127 .. 0.   8  135   28    1    0 100%   87        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
-   4,0    k  100%     127 .. 8.      769    0  545    0 100%    1        0   1
+   4,0    k  100%     127 .. 8.      769    0  544    0 100%    1        0   1
   -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
@@ -8903,9 +8902,9 @@ CENSUS                   del dst
    7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
   -2,2    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
-   2,2    k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   2,2    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
-   6,2    w  100%     127 .. ..     7936   41    0    0 100%  607        0   1
+   6,2    w  100%     127 .. ..     7700   41    0    0 100%  607        0   1
    8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
   10,2    !  100%     127 .. ..      769    2    0    0 100%  413        0   1
   -1,3    +o 100%     127 .. ..      769    0    0    0 100%  599        0   1
@@ -8941,15 +8940,15 @@ CENSUS                   del dst
 
 [0:587] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
-technological breakthroughs (11.12) produced in 4,-2
+technological breakthroughs (11.13) produced in 4,-2
 a class of graduates (300.00) produced in 6,-2
 medical discoveries (7.42) produced in 4,2
 happy strollers (75.00) produced in 5,3
  75 happiness, 300 education produced
-total pop was 31158, yielding 12.21 hap, 32.77 edu
-6.5196 technology (4.4756 + 2.0441), 3.6884 research (3.6884 + 0.0000) produced
+total pop was 30157, yielding 12.47 hap, 33.54 edu
+6.5208 technology (4.4761 + 2.0446), 3.6890 research (3.6890 + 0.0000) produced
 Army delta $-2400, Navy delta $-1326, Air force delta $0
-money delta was $3977 for this update
+money delta was $3476 for this update
 
 
 [0:587] Command : Thu Jan  1 00:00:00 1970
@@ -8958,24 +8957,24 @@ PRODUCTION SIMULATION
    1,-3   j 100%   474  392l 0.83 $0     474i            474i             392
   -4,-2   k 100%   474  196h 0.83 $0     474i            474i             196
   -2,-2   j 100%   474  392l 0.83 $0     474i            474i             392
-   4,-2   t 100%   599 11.10 0.74 $4500   15d  75o 150l   37d 185o 370l 27.38
+   4,-2   t 100%   599 11.12 0.74 $4500   15d  75o 150l   37d 185o 370l 27.44
    6,-2   l 100%   599  300  1.00 $2700  300l            599l             599
-  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+  -1,-1   b 100%   599   60b 1.00 $600   300d            595d             119
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m  96%   474  455i 1.00 $0                                      455
   -2,0    j 100%   599  496l 0.83 $0     599i            599i             496
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   998  998i 1.00 $0                                      998
-   4,0    k 100%   975  404h 0.83 $0     976i            976i             404
-  -1,1    k 100%   599  248h 0.83 $0     600i            600i             248
+   4,0    k 100%   974  403h 0.83 $0     974i            974i             403
+  -1,1    k 100%   599  247h 0.83 $0     598i            598i             247
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   599  599i 1.00 $0                                      599
    5,1    j 100%   599  496l 0.83 $0     599i            599i             496
    7,1    d 100%   599    6g 0.64 $300    10o  50l 100h   37o 185l 370h    24
-  -2,2    i 100%   599  128s 0.64 $600   400l 200h       400l 200h        128
+  -2,2    i 100%   599  128s 0.64 $597   398l 199h       398l 199h        128
    0,2    m 100%   599  599i 1.00 $0                                      599
-   2,2    k 100%   599  248h 0.83 $0     600i            600i             248
-   4,2    r 100%   599  7.40 0.74 $900    10d  50o 100l   37d 185o 370l 27.38
+   2,2    k 100%   599  247h 0.83 $0     598i            598i             247
+   4,2    r 100%   599  7.42 0.74 $900    10d  50o 100l   37d 185o 370l 27.44
    8,2    e 100%   599   33m 1.00 $99     33c             33c             498
   -1,3    o 100%   474  392o 0.83 $0                                      392
    5,3    p 100%   599   75  1.00 $675    75l            599l             599
@@ -8990,54 +8989,54 @@ Player 02 Turn 13 starting
        -=O=-
 You have thirteen new telegrams waiting ...
 
-[0:640] Command : No mobility used, 127 mob left in 2,0
+[0:640] Command : Total movement cost = 1, 126 mob left in 2,0
 Sector 3,-1 is now yours.
 
-[0:639] Command : No mobility used, 127 mob left in 2,0
+[0:639] Command : Total movement cost = 1, 125 mob left in 2,0
 Sector 4,0 is now yours.
 
-[0:638] Command : No mobility used, 127 mob left in 2,0
+[0:638] Command : No mobility used, 125 mob left in 2,0
 Sector 1,1 is now yours.
 
-[0:637] Command : Total movement cost = 1, 126 mob left in 2,0
+[0:637] Command : No mobility used, 125 mob left in 2,0
 Sector 3,1 is now yours.
 
 [0:636] Command : 
-[0:635] Command : No mobility used, 126 mob left in 2,0
+[0:635] Command : No mobility used, 125 mob left in 2,0
 Sector 2,-2 is now yours.
 
-[0:634] Command : Total movement cost = 1, 125 mob left in 2,0
+[0:634] Command : No mobility used, 125 mob left in 2,0
 Sector -1,-1 is now yours.
 
 [0:633] Command : Total movement cost = 1, 124 mob left in 2,0
 Sector 5,-1 is now yours.
 
-[0:632] Command : No mobility used, 124 mob left in 2,0
+[0:632] Command : Total movement cost = 1, 123 mob left in 2,0
 Sector -2,0 is now yours.
 
-[0:631] Command : No mobility used, 124 mob left in 2,0
+[0:631] Command : Total movement cost = 1, 122 mob left in 2,0
 Sector -1,1 is now yours.
 
-[0:630] Command : Total movement cost = 1, 123 mob left in 2,0
+[0:630] Command : Total movement cost = 1, 121 mob left in 2,0
 Sector 0,2 is now yours.
 
-[0:629] Command : Total movement cost = 1, 122 mob left in 2,0
+[0:629] Command : Total movement cost = 1, 120 mob left in 2,0
 Sector 2,2 is now yours.
 
 [0:628] Command : 
-[0:627] Command : Total movement cost = 2, 120 mob left in 2,0
+[0:627] Command : Total movement cost = 1, 119 mob left in 2,0
 Sector 7,-1 is now yours.
 
-[0:626] Command : Total movement cost = 1, 119 mob left in 2,0
+[0:626] Command : Total movement cost = 1, 118 mob left in 2,0
 Sector -4,0 is now yours.
 
-[0:625] Command : Total movement cost = 1, 118 mob left in 2,0
+[0:625] Command : Total movement cost = 1, 117 mob left in 2,0
 Sector -3,1 is now yours.
 
-[0:624] Command : Total movement cost = 1, 117 mob left in 2,0
+[0:624] Command : Total movement cost = 1, 116 mob left in 2,0
 Sector -2,2 is now yours.
 
-[0:623] Command : Total movement cost = 2, 115 mob left in 2,0
+[0:623] Command : Total movement cost = 1, 115 mob left in 2,0
 Sector -1,3 is now yours.
 
 [0:622] Command : Total movement cost = 1, 114 mob left in 2,0
@@ -9053,78 +9052,78 @@ Sector -5,-1 is now yours.
 [0:618] Command : Total movement cost = 1, 111 mob left in 2,0
 Sector -6,0 is now yours.
 
-[0:617] Command : Total movement cost = 1, 110 mob left in 2,0
+[0:617] Command : Total movement cost = 2, 109 mob left in 2,0
 Sector -5,1 is now yours.
 
-[0:616] Command : Total movement cost = 2, 108 mob left in 2,0
+[0:616] Command : Total movement cost = 2, 107 mob left in 2,0
 Sector -4,2 is now yours.
 
-[0:615] Command : Total movement cost = 1, 107 mob left in 2,0
+[0:615] Command : Total movement cost = 2, 105 mob left in 2,0
 Sector -3,3 is now yours.
 
 [0:614] Command : 
-[0:613] Command : Total movement cost = 2, 105 mob left in 2,0
+[0:613] Command : Total movement cost = 2, 103 mob left in 2,0
 Sector -4,-2 is now yours.
 
 [0:612] Command : 
 [0:611] Command : Total movement cost = 1, 126 mob left in 0,0
 
-[0:610] Command : No mobility used, 126 mob left in 0,0
+[0:610] Command : Total movement cost = 1, 125 mob left in 0,0
 
-[0:609] Command : No mobility used, 126 mob left in 0,0
+[0:609] Command : No mobility used, 125 mob left in 0,0
 
-[0:608] Command : Total movement cost = 1, 125 mob left in 0,0
+[0:608] Command : Total movement cost = 1, 124 mob left in 0,0
 
 [0:607] Command : 
-[0:606] Command : No mobility used, 125 mob left in 0,0
+[0:606] Command : No mobility used, 124 mob left in 0,0
 
-[0:605] Command : No mobility used, 125 mob left in 0,0
+[0:605] Command : No mobility used, 124 mob left in 0,0
 
-[0:604] Command : Total movement cost = 1, 124 mob left in 0,0
+[0:604] Command : No mobility used, 124 mob left in 0,0
 
-[0:603] Command : No mobility used, 124 mob left in 0,0
+[0:603] Command : Total movement cost = 1, 123 mob left in 0,0
 
-[0:602] Command : Total movement cost = 1, 123 mob left in 0,0
+[0:602] Command : Total movement cost = 1, 122 mob left in 0,0
 
-[0:601] Command : No mobility used, 123 mob left in 0,0
+[0:601] Command : Total movement cost = 1, 121 mob left in 0,0
 
-[0:600] Command : Total movement cost = 1, 122 mob left in 0,0
+[0:600] Command : Total movement cost = 1, 120 mob left in 0,0
 
-[0:599] Command : Total movement cost = 1, 121 mob left in 0,0
+[0:599] Command : Total movement cost = 1, 119 mob left in 0,0
 
-[0:598] Command : Total movement cost = 1, 120 mob left in 0,0
+[0:598] Command : Total movement cost = 1, 118 mob left in 0,0
 
 [0:597] Command : 
-[0:596] Command : Total movement cost = 1, 119 mob left in 0,0
+[0:596] Command : Total movement cost = 1, 117 mob left in 0,0
 
-[0:595] Command : Total movement cost = 1, 118 mob left in 0,0
+[0:595] Command : Total movement cost = 1, 116 mob left in 0,0
 
-[0:594] Command : Total movement cost = 1, 117 mob left in 0,0
+[0:594] Command : Total movement cost = 1, 115 mob left in 0,0
 
-[0:593] Command : Total movement cost = 1, 116 mob left in 0,0
+[0:593] Command : Total movement cost = 2, 113 mob left in 0,0
 
-[0:592] Command : Total movement cost = 2, 114 mob left in 0,0
+[0:592] Command : Total movement cost = 2, 111 mob left in 0,0
 
-[0:591] Command : Total movement cost = 1, 113 mob left in 0,0
+[0:591] Command : Total movement cost = 1, 110 mob left in 0,0
 
-[0:590] Command : Total movement cost = 1, 112 mob left in 0,0
+[0:590] Command : Total movement cost = 1, 109 mob left in 0,0
 
-[0:589] Command : Total movement cost = 1, 111 mob left in 0,0
+[0:589] Command : Total movement cost = 1, 108 mob left in 0,0
 
-[0:588] Command : Total movement cost = 2, 109 mob left in 0,0
+[0:588] Command : Total movement cost = 1, 107 mob left in 0,0
 
 [0:587] Command : 
-[0:586] Command : Total movement cost = 1, 108 mob left in 0,0
+[0:586] Command : Total movement cost = 2, 105 mob left in 0,0
 Sector -6,-2 is now yours.
 
-[0:585] Command : Total movement cost = 2, 106 mob left in 0,0
+[0:585] Command : Total movement cost = 2, 103 mob left in 0,0
 
-[0:584] Command : Total movement cost = 2, 104 mob left in 0,0
+[0:584] Command : Total movement cost = 2, 101 mob left in 0,0
 Sector -7,-1 is now yours.
 
-[0:583] Command : Total movement cost = 2, 102 mob left in 0,0
+[0:583] Command : Total movement cost = 1, 100 mob left in 0,0
 
-[0:582] Command : Total movement cost = 2, 100 mob left in 0,0
+[0:582] Command : Total movement cost = 2, 98 mob left in 0,0
 Sector -7,1 is now yours.
 
 [0:581] Command : 
@@ -9251,17 +9250,17 @@ That just cost you $550.00
 [0:564] Command : Looking for best path to 3,-1
 Using best path 'juh', movement cost 0.600
 Total movement cost = 15
-85 mob left in 0,0
+83 mob left in 0,0
 
 [0:563] Command : Looking for best path to 3,-1
 Using best path 'uh', movement cost 0.400
-Total movement cost = 7
-98 mob left in 2,0
+Total movement cost = 6
+97 mob left in 2,0
 
 [0:562] Command : Looking for best path to 5,-1
 Using best path 'ujh', movement cost 0.800
 Total movement cost = 8
-90 mob left in 2,0
+89 mob left in 2,0
 
 [0:561] Command : 
 [0:560] Command : 
@@ -9297,8 +9296,8 @@ CENSUS                   del dst
   -6,0    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
   -4,0    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
   -2,0    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
-   0,0    cg 100%      85 .. 5.      768    0  460    0 100%  889        0
-   2,0    cg 100%      90 .. 5.      766    0  469    0 100%  894        0
+   0,0    cg 100%      83 .. 5.      768    0  456    0 100%  886        0
+   2,0    cg 100%      89 .. 5.      766    0  464    0 100%  891        0
    4,0    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
   -7,1    +    0%       0 .. ..        1    0    0    0 100%    0        0   1
   -5,1    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
@@ -9390,26 +9389,26 @@ money delta was $881 for this update
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
 total pop was 3000, yielding 0.00 hap, 0.00 edu
-2.2702 technology (0.0000 + 2.2702), 0.0000 research (0.0000 + 0.0000) produced
-money delta was $889 for this update
+2.2704 technology (0.0000 + 2.2704), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $888 for this update
 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
 total pop was 3000, yielding 0.00 hap, 0.00 edu
-2.2596 technology (0.0000 + 2.2596), 0.0000 research (0.0000 + 0.0000) produced
+2.2598 technology (0.0000 + 2.2598), 0.0000 research (0.0000 + 0.0000) produced
 money delta was $897 for this update
 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
 total pop was 3000, yielding 0.00 hap, 0.00 edu
-2.2436 technology (0.0000 + 2.2436), 1.8498 research (0.0000 + 1.8498) produced
+2.2438 technology (0.0000 + 2.2438), 1.8500 research (0.0000 + 1.8500) produced
 money delta was $907 for this update
 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
 total pop was 3000, yielding 0.00 hap, 0.00 edu
-2.1409 technology (0.0000 + 2.1409), 1.8442 research (0.0000 + 1.8442) produced
-money delta was $919 for this update
+2.1413 technology (0.0000 + 2.1413), 1.8445 research (0.0000 + 1.8445) produced
+money delta was $917 for this update
 
 
 [0:559] Command : Thu Jan  1 00:00:00 1970
@@ -9417,8 +9416,8 @@ PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    1,-1   b 100%   475   10b 1.00 $100    50d            475d              95
    3,-1   g  46%   233  107d 1.00 $0                                      107
-   0,0    g 100%   791  500d 1.00 $0                                      500
-   2,0    g 100%   795  500d 1.00 $0                                      500
+   0,0    g 100%   788  500d 1.00 $0                                      500
+   2,0    g 100%   791  500d 1.00 $0                                      500
 4 sectors
 
 [0:559] Command : Bye-bye
@@ -9430,6 +9429,7 @@ Player 08 Turn 13 starting
        -=O=-
 You have a new telegram waiting ...
 
+[0:563] Command : 
 [0:562] Command : 
 [0:561] Command : 
 [0:560] Command : 
@@ -9437,15 +9437,14 @@ You have a new telegram waiting ...
 [0:558] Command : 
 [0:557] Command : 
 [0:556] Command : 
-[0:555] Command : 
-[0:554] Command : -3,1 old threshold 1
+[0:555] Command : -3,1 old threshold 1
 
+[0:554] Command : 
 [0:553] Command : 
 [0:552] Command : 
 [0:551] Command : 
 [0:550] Command : 
-[0:549] Command : 
-[0:548] Command :      --------00000000001
+[0:549] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -9461,41 +9460,41 @@ You have a new telegram waiting ...
      --------00000000001
      8765432101234567890
 
-[0:548] Command : Thu Jan  1 00:00:00 1970
+[0:549] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-4   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    5        0   1
+  -4,-4   -    5%     127 .. ..        9    0    0    0 100%    3        0   1
    0,-4   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -5,-3   o    5%     127 .. ..       10    0    0    0 100%    3        0   1
-  -3,-3   -    6%     127 .. ..       10    0    0    0 100%    3        0   1
-  -1,-3   g    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -5,-3   o    3%     127 .. ..        7    0    0    0 100%    2        0   1
+  -3,-3   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -1,-3   g    8%     127 .. ..       12    0    0    0 100%    3        0   1
    1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
-  -4,-2   g    1%     127 .. ..        5    0    0    0 100%    1        0   1
-  -2,-2   g    3%     127 .. ..      769    0    0    0 100%    2        0
-   0,-2   g    5%     127 .. ..      769    0    0    0 100%    3        0
+  -4,-2   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -2,-2   g    0%     127 .. ..      769    0    0    0 100%    1        0
+   0,-2   g    0%     127 .. ..      769    0    0    0 100%    0        0
    2,-2   k    0%     127 .. ..      769    0    0    0 100%    1        0   1
-   4,-2   j    1%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,-2   j    2%     127 .. ..      769    0    0    0 100%    3        0   1
    6,-2   t  100%     127 .. ..      769    0    0    0 100%  250        0   1
   -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
    1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
-   5,-1   g    8%     127 .. ..       13    0    0    0 100%    4        0
-   7,-1   c    0%     127 .. ..        2    0    0    0 100%    1        0   1
-  -2,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
-   0,0    m  100%     127 .. 5.      769   55  463    0 100%    0        0
-   2,0    m  100%     127 .. 5.      769   55  464    0 100%    0        0
-   4,0    b  100%     127 .. ..      400    0    0    0 100%    0        0   1
+   5,-1   g    0%     127 .. ..        4    0    0    0 100%    1        0
+   7,-1   c    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -2,0    g    3%     127 .. ..        8    0    0    0 100%    2        0   1
+   0,0    m  100%     127 .. 5.      769   55  466    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769   55  460    0 100%    0        0
+   4,0    b  100%     127 .. ..      400    0    0    0 100%    3        0   1
    6,0    h  100%     127 .. ..      769    0    0    0 100%  474        0   1
    8,0    i  100%     127 .. ..      769    0    0    0 100%  499        0   1
-  -3,1    gj 100%     127 .. ..      769    0    0    0 100%    2        0   1
+  -3,1    gj 100%     127 .. ..      769    0    0    0 100%    1        0   1
   -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-   1,1    g    4%     127 .. ..        8    0    0    0 100%    2        0   1
-   3,1    w  100%     127 .. ..      340    0    0    0 100%   62        0   1
+   1,1    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   3,1    w  100%     127 .. ..      312    0    0    0 100%   52        0   1
 29 sectors
 
-[0:548] Command :      --------00000000001
+[0:549] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -9511,40 +9510,40 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:548] Command : 
+[0:549] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
 a class of graduates (300.00) produced in 1,-3
-technological breakthroughs (8.50) produced in 6,-2
+technological breakthroughs (8.51) produced in 6,-2
   0 happiness, 300 education produced
-total pop was 11262, yielding 0.00 hap, 69.92 edu
-6.3259 technology (4.0882 + 2.2378), 1.8442 research (0.0000 + 1.8442) produced
-money delta was $-2761 for this update
+total pop was 11237, yielding 0.00 hap, 70.04 edu
+6.3273 technology (4.0893 + 2.2381), 1.8445 research (0.0000 + 1.8445) produced
+money delta was $-2784 for this update
 
 
-[0:548] Command : Thu Jan  1 00:00:00 1970
+[0:549] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -6,-4   o   7%   599   32o 0.76 $0                                       32
-   0,-4   k 100%   599  229h 0.76 $0     600i            600i             229
+  -6,-4   o   7%   599   31o 0.76 $0                                       31
+   0,-4   k 100%   599  228h 0.76 $0     598i            598i             228
    1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
-  -2,-2   g  60%   502  300d 1.00 $0                                      300
-   0,-2   g  65%   504  325d 1.00 $0                                      325
-   2,-2   k 100%   499    0h 0.76 $0       0i            500i             191
-   4,-2   j 100%   500  381l 0.76 $0     500i            500i             381
-   6,-2   t 100%   599 21.95 0.73 $9000   30d 150o 300l   37d 185o 370l 27.07
+  -2,-2   g  60%   499  299d 1.00 $0                                      299
+   0,-2   g  65%   499  324d 1.00 $0                                      324
+   2,-2   k 100%   499    0h 0.76 $0       0i            498i             190
+   4,-2   j 100%   501  382l 0.76 $0     501i            501i             382
+   6,-2   t 100%   599 21.96 0.73 $9000   30d 150o 300l   37d 185o 370l 27.08
   -3,-1   j 100%   599  456l 0.76 $0     599i            599i             456
   -1,-1   m 100%   599  599i 1.00 $0                                      599
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
-   0,0    m 100%   931  931i 1.00 $0                                      931
-   2,0    m 100%   932  932i 1.00 $0                                      932
+   0,0    m 100%   933  933i 1.00 $0                                      933
+   2,0    m 100%   930  930i 1.00 $0                                      930
    4,0    b 100%   312   60b 1.00 $600   300d            310d              62
-   8,0    i 100%   599    0s 0.17 $0       0l   0h       400l 200h         34
+   8,0    i 100%   599    0s 0.17 $0       0l   0h       398l 199h         34
   -3,1    j 100%   474  361l 0.76 $0     474i            474i             361
   -1,1    j 100%   599  456l 0.76 $0     599i            599i             456
 18 sectors
 
-[0:548] Command : Bye-bye
+[0:549] Command : Bye-bye
 Exit: so long...
 Player 08 Turn 13 completed successfully
 Update Turn 14 starting
@@ -9556,41 +9555,41 @@ Update Turn 14 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33   99%  31K 148  238    9    0  9.6K 1.6K 624    0    2    4   31K
-   415.34
-        8  29   56%  15K 110    0    0    0   12K 1.9K 490    0    0    0   29K
-   122.00
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   34K
-    27.24
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   34K
-    27.14
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   34K
-    27.09
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   34K
-    26.89
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   34K
-    26.59
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   34K
-    26.11
-        2  30   10% 3.1K   0    0    0    0    0   50    0    0    0    0   34K
-    24.62
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   34K
-    24.59
+        1  33   99%  30K 148  238   10    0  9.6K 1.6K 610    0    2    4   31K
+   408.17
+        8  29   56%  15K 110    0    0    0   12K 1.9K 485    0    0    0   29K
+   121.76
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   34K
+    27.30
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   34K
+    27.16
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   34K
+    27.12
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   34K
+    26.94
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   34K
+    26.57
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   34K
+    26.08
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   34K
+    24.68
+        2  30   10% 3.1K   0    0    0    0    0   52    0    0    0    0   34K
+    24.64
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide 113   65%  70K 1.0K 238    9    0   22K 5.5K 1.1K   0    2    4  335K
+worldwide 113   65%  69K 1.0K 238   10    0   22K 5.6K 1.1K   0    2    4  334K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 37.96        7.32       33.48        9.97     5,-15 
+ 1     1                 37.97        7.32       33.69       10.12     5,-15 
  2     2                 17.87        3.66        0.00        0.00    18,8   
  3     3                 17.87        3.66        0.00        0.00    -4,10  
  4     4                 17.87        3.66        0.00        0.00   -15,1   
  5     5                 17.87        3.66        0.00        0.00   -30,8   
  6     6                 17.87        3.66        0.00        0.00     2,-2  
  7     7                 17.87        3.66        0.00        0.00    24,0   
- 8     8                 22.03        3.66       32.25        0.00    30,-12 
+ 8     8                 22.03        3.66       32.30        0.00    30,-12 
  9     9                 17.87        3.66        0.00        0.00   -26,-6  
  10    10                17.87        3.66        0.00        0.00   -12,-10 
  11    visitor            0.00        0.00        0.00        0.00     0,0   
@@ -9598,15 +9597,15 @@ worldwide 113   65%  70K 1.0K 238    9    0   22K 5.5K 1.1K   0    2    4  335K
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
-  1    6,-16  oj 100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    1,-15  ok 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-16  oj 100%     127 .. ..      769    0    0    0 100%   49    0   1
+  1    1,-15  ok 100%     127 .. ..      769    0    0    0 100%   49    0   1
   1    3,-15  oj 100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    7,-15  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
   1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
-  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   19,-15  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    5    0   1
+  8   19,-15  -    5%     127 .. ..        9    0    0    0 100%    3    0   1
   8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
@@ -9614,20 +9613,20 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   10,-14  h  100%     127 .. ..      459    5    0    0 100%  222    0   1
   1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
   1   14,-14  =   78%     127 .. ..       77    0    0    0 100%   30    0   1
-  1   16,-14  )  100%     127 .. 0.      769   28    1    0 100%  607    0   1
-  8   18,-14  o    5%     127 .. ..       10    0    0    0 100%    3    0   1
-  8   20,-14  -    6%     127 .. ..       10    0    0    0 100%    3    0   1
-  8   22,-14  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  1   16,-14  )  100%     127 .. 0.   8  135   28    1    0 100%   87    0   1
+  8   18,-14  o    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  8   20,-14  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   22,-14  g    8%     127 .. ..       12    0    0    0 100%    3    0   1
   8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
-  1    9,-13  k  100%     127 .. 8.      769    0  545    0 100%    1    0   1
-  8   19,-13  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  8   21,-13  g    3%     127 .. ..      769    0    0    0 100%    2    0
-  8   23,-13  g    5%     127 .. ..      769    0    0    0 100%    3    0
+  1    9,-13  k  100%     127 .. 8.      769    0  544    0 100%    1    0   1
+  8   19,-13  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   21,-13  g    0%     127 .. ..      769    0    0    0 100%    1    0
+  8   23,-13  g    0%     127 .. ..      769    0    0    0 100%    0    0
   8   25,-13  k    0%     127 .. ..      769    0    0    0 100%    1    0   1
-  8   27,-13  j    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   27,-13  j    2%     127 .. ..      769    0    0    0 100%    3    0   1
   8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  250    0   1
   1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
@@ -9638,46 +9637,46 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8   22,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
-  8   28,-12  g    8%     127 .. ..       13    0    0    0 100%    4    0
-  8   30,-12  c    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   28,-12  g    0%     127 .. ..        4    0    0    0 100%    1    0
+  8   30,-12  c    1%     127 .. ..        5    0    0    0 100%    1    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
   1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  1    7,-11  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    7,-11  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
-  1   11,-11  w  100%     127 .. ..     7936   41    0    0 100%  607    0   1
+  1   11,-11  w  100%     127 .. ..     7700   41    0    0 100%  607    0   1
   1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
   1   15,-11  !  100%     127 .. ..      769    2    0    0 100%  413    0   1
-  8   21,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  8   23,-11  m  100%     127 .. 5.      769   55  463    0 100%    0    0
-  8   25,-11  m  100%     127 .. 5.      769   55  464    0 100%    0    0
-  8   27,-11  b  100%     127 .. ..      400    0    0    0 100%    0    0   1
+  8   21,-11  g    3%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   23,-11  m  100%     127 .. 5.      769   55  466    0 100%    0    0
+  8   25,-11  m  100%     127 .. 5.      769   55  460    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      400    0    0    0 100%    3    0   1
   8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  474    0   1
   8   31,-11  i  100%     127 .. ..      769    0    0    0 100%  499    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  458    0 100%  888    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  459    0 100%  888    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  460    0 100%  889    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  462    0 100%  890    0   1
   1    4,-10  +o 100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
-  8   20,-10  gj 100%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   20,-10  gj 100%     127 .. ..      769    0    0    0 100%    1    0   1
   8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   24,-10  g    4%     127 .. ..        8    0    0    0 100%    2    0   1
-  8   26,-10  w  100%     127 .. ..      340    0    0    0 100%   62    0   1
+  8   24,-10  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   26,-10  w  100%     127 .. ..      312    0    0    0 100%   52    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  465    0 100%  891    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  457    0 100%  887    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  462    0 100%  890    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  462    0 100%  890    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   6    2,-2   c  100%     127 .. ..     1000   55  462    0 100%  890    0
-  6    4,-2   c  100%     127 .. ..     1000   55  462    0 100%  889    0
+  6    4,-2   c  100%     127 .. ..     1000   55  464    0 100%  891    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   7   24,0    c  100%     127 .. ..     1000   55  468    0 100%  893    0
-  7   26,0    c  100%     127 .. ..     1000   55  455    0 100%  885    0
-  4  -15,1    c  100%     127 .. ..     1000   55  460    0 100%  889    0
-  4  -13,1    c  100%     127 .. ..     1000   55  465    0 100%  891    0
+  7   26,0    c  100%     127 .. ..     1000   55  456    0 100%  886    0
+  4  -15,1    c  100%     127 .. ..     1000   55  462    0 100%  890    0
+  4  -13,1    c  100%     127 .. ..     1000   55  460    0 100%  889    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  458    0 100%  888    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  461    0 100%  889    0
+  5  -30,8    c  100%     127 .. ..     1000   55  459    0 100%  888    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  459    0 100%  888    0
   2   10,8    +    0%       0 .. ..        1    0    0    0 100%    0    0   1
   2   12,8    w    0%       0 .. ..        2    0    0    0 100%    0    0   1
   2   18,8    c    0%       0 .. ..        2    0    0    0 100%    0    0   1
@@ -9689,13 +9688,13 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   2   19,9    g    0%       0 .. ..      427    0    0    0 100%    0    0   1
   2   21,9    g    0%       0 .. ..      102    0    0    0 100%    0    0   1
   2   23,9    g    0%       0 .. ..        2    0    0    0 100%    0    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  466    0 100%  892    0
-  3   -2,10   c  100%     127 .. ..     1000   55  465    0 100%  891    0
+  3   -4,10   c  100%     127 .. ..     1000   55  463    0 100%  891    0
+  3   -2,10   c  100%     127 .. ..     1000   55  462    0 100%  889    0
   2   10,10   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
   2   12,10   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
   2   14,10   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
-  2   16,10   cg 100%      85 .. 5.      768    0  460    0 100%  889    0
-  2   18,10   cg 100%      90 .. 5.      766    0  469    0 100%  894    0
+  2   16,10   cg 100%      83 .. 5.      768    0  456    0 100%  886    0
+  2   18,10   cg 100%      89 .. 5.      766    0  464    0 100%  891    0
   2   20,10   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
   2    9,11   +    0%       0 .. ..        1    0    0    0 100%    0    0   1
   2   11,11   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
@@ -9726,7 +9725,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  17,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
-  1   4,-14  b .......... ....3.....   0   0    0    0  300 267    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 266    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  j .......... ...0......   0   0    0  999    0   0    0    1    0   0
   1  10,-14  h .......... .......22.   0   0    0    1    1   0    1  146  129   0
@@ -9758,19 +9757,19 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
   1   5,-11  m .......... ...0......   0   0    0    0    0   0    0    0    0   0
-  1   7,-11  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
+  1   7,-11  k .......... ........0.   0   0    0  602    0   0    0    0    1   0
   1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
-  1  11,-11  w .......... ..........  37   0    0 1387 1232   0  475 1479 1987   0
+  1  11,-11  w .......... ..........  37   0    0 1389 1234   0  461 1481 1986   0
   1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1  15,-11  ! .......... 20.....22. 200   8    0    0    0   0    0  198  199   0
+  1  15,-11  ! .......... 20.....22. 200   9    0    0    0   0    0  198  199   0
   8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  8  25,-11  m .......... ...0......   0   0    0  753    0   0    0    0    0   0
-  8  27,-11  b .......... ....3.....   0   0    0    0  300 176    0    0    0   0
-  8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  195  179   0
+  8  25,-11  m .......... ...0......   0   0    0  752    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 173    0    0    0   0
+  8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  196  179   0
   8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0    0    0   0
  10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
  10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -9780,30 +9779,30 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  g .......... ...9...0..   0   0    0  999    1   0    0    0    0   0
   8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 6402 1545   0  338    0    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 6403 1556   0  333    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  12,8    w .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
   2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  11,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   2  15,9    o .......... ......0...   0   0    0    0    0   0    0    0    0   0
-  2  17,9    g .......... ....3.....   0   0    0    0   50   0    0    0    0   0
+  2  17,9    g .......... ....3.....   0   0    0    0   52   0    0    0    0   0
   2  19,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   2  21,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
   2  23,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
@@ -9842,7 +9841,7 @@ own   sect        eff  min gold fert oil uran
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
   8   17,-15  o  100%    0    0  100   7    0
-  8   19,-15  -    0%    0    0  100 100    0
+  8   19,-15  -    5%    0    0  100 100    0
   8   23,-15  k  100%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
   1    6,-14  m  100%  100   69    0   0   97
@@ -9851,40 +9850,40 @@ own   sect        eff  min gold fert oil uran
   1   12,-14  =  100%    0    0   45  11    0
   1   14,-14  =   78%    0    0   63  46    0
   1   16,-14  )  100%    0    0  100  98    0
-  8   18,-14  o    5%    0    0   91  72    0
-  8   20,-14  -    6%    0    0   82  58    0
-  8   22,-14  g    1%   50   23    6   0    0
+  8   18,-14  o    3%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    8%   50   23    6   0    0
   8   24,-14  l  100%   45    0   13   0    0
   1    3,-13  j  100%   23    1   43   0    0
   1    5,-13  m  100%  100    0  100 100  100
   1    7,-13  m  100%  100  100  100 100  100
   1    9,-13  k  100%   17    0   52   7    0
-  8   19,-13  g    1%   56   28    0   0    5
-  8   21,-13  g    3%   96   60    0   0   77
-  8   23,-13  g    5%  100   65    0   0   88
+  8   19,-13  g    0%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
   8   25,-13  k    0%   63   33    0   0   17
-  8   27,-13  j    1%    0    0   76  47    0
+  8   27,-13  j    2%    0    0   76  47    0
   8   29,-13  t  100%   28    0   37   0    0
   1    4,-12  k  100%   74   42    0   0   37
   1    6,-12  m  100%  100    0    0   0  100
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  j  100%   50    0    6   0    0
   1   12,-12  d  100%   63    0    0   0   17
-  8   20,-12  j  100%   74    0    0   0   37
+  8   20,-12  j  100%   74    1    0   0   37
   8   22,-12  m  100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
-  8   28,-12  g    8%   91   56    0   0   68
-  8   30,-12  c    0%   23    1   43   0    0
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    1%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  k  100%   91    0    0   0   68
   1    9,-11  r  100%   85    0    0   0   57
   1   11,-11  w  100%   78    0    0   0   45
   1   13,-11  e  100%   67    0    0   0   25
   1   15,-11  !  100%   56    0    0   0    5
-  8   21,-11  g    0%   85   51    0   0   57
+  8   21,-11  g    3%   85   51    0   0   57
   8   23,-11  m  100%  100    0  100 100  100
   8   25,-11  m  100%  100    0  100 100  100
   8   27,-11  b  100%   39    3   21   0    0
@@ -9897,7 +9896,7 @@ own   sect        eff  min gold fert oil uran
   1   10,-10  p  100%    0    0  100  98    0
   8   20,-10  gj 100%   78    0    0   0   45
   8   22,-10  j  100%    6    0   67  32    0
-  8   24,-10  g    4%   67   37    0   0   25
+  8   24,-10  g    0%   67   37    0   0   25
   8   26,-10  w  100%   17    0   52   7    0
   9  -25,-7   g  100%   28    0   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
@@ -10038,21 +10037,21 @@ CENSUS                   del dst
    5,-1   h  100%     127 .. ..      739    5    0    0 100%  326        0   1
    7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
    9,-1   =  100%     127 .. ..       77    0    0    0 100%   37        0   1
-  11,-1   )  100%     127 .. 0.      769   28    1    0 100%  606        0   1
+  11,-1   )  100%     127 .. 0.      769   28    1    0 100%  112        0   1
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
-   4,0    k  100%     127 .. 8.      769    0  713    0 100%    1        0   1
-  -1,1    k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   4,0    k  100%     127 .. 8.      769    0  713    0 100%    0        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    m  100%     127 .. 5.      769    0    0    0 100%    0        0
    5,1    j  100%     127 .. 5.      769    0    0    0 100%    0        0   1
    7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
-  -2,2    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,2    k* 100%     127 .. ..      769    0    0    0 100%    1        0   1
    4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
-   6,2    w  100%     127 .. ..     7531   51    0    0 100%  609        0   1
+   6,2    w  100%     127 .. ..     6703   51    0    0 100%  609        0   1
    8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
   10,2    !  100%     127 .. ..      769   15    0    0 100%  545        0   1
   -1,3    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
@@ -10092,43 +10091,44 @@ command failed
 
 [0:622] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
-technological breakthroughs (11.10) produced in 4,-2
+Sector 11,-1 is now fully yours
+technological breakthroughs (11.12) produced in 4,-2
 a class of graduates (300.00) produced in 6,-2
-medical discoveries (7.40) produced in 4,2
+medical discoveries (7.42) produced in 4,2
 happy strollers (75.00) produced in 5,3
  75 happiness, 300 education produced
-total pop was 31150, yielding 12.22 hap, 32.78 edu
-7.2006 technology (4.4727 + 2.7279), 3.6856 research (3.6856 + 0.0000) produced
+total pop was 30280, yielding 12.44 hap, 33.44 edu
+7.2038 technology (4.4755 + 2.7283), 3.6884 research (3.6884 + 0.0000) produced
 Army delta $-858, Navy delta $-66, Air force delta $0
-money delta was $6772 for this update
+money delta was $6326 for this update
 
 
 [0:622] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    1,-3   j 100%   599  507l 0.85 $0     599i            599i             507
-  -4,-2   k 100%   599  254h 0.85 $0     600i            600i             254
+  -4,-2   k 100%   599  253h 0.85 $0     598i            598i             253
   -2,-2   j 100%   599  507l 0.85 $0     599i            599i             507
-   2,-2   o  47%   474  189o 0.85 $0                                      189
-   4,-2   t 100%   599 11.08 0.74 $4500   15d  75o 150l   37d 185o 370l 27.34
+   2,-2   o  47%   474  188o 0.85 $0                                      188
+   4,-2   t 100%   599 11.12 0.74 $4500   15d  75o 150l   37d 185o 370l 27.42
    6,-2   l 100%   599  400  1.00 $3600  400l            599l             599
-  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+  -1,-1   b 100%   599   60b 1.00 $600   300d            595d             119
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m  96%   599  575i 1.00 $0                                      575
   -2,0    j 100%   599  507l 0.85 $0     599i            599i             507
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   998  998i 1.00 $0                                      998
    4,0    k 100%  1090  461h 0.85 $0    1090i           1090i             461
-  -1,1    k 100%   599  254h 0.85 $0     600i            600i             254
+  -1,1    k 100%   599  253h 0.85 $0     598i            598i             253
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   599  599i 1.00 $0                                      599
    5,1    j 100%   599  507l 0.85 $0     599i            599i             507
    7,1    d 100%   599    7g 0.71 $300    10o  50l 100h   37o 185l 370h    26
-  -2,2    i 100%   599  143s 0.71 $600   400l 200h       400l 200h        143
+  -2,2    i 100%   599  142s 0.71 $597   398l 199h       398l 199h        142
    0,2    m 100%   599  599i 1.00 $0                                      599
-   4,2    r 100%   599  7.39 0.74 $900    10d  50o 100l   37d 185o 370l 27.34
+   4,2    r 100%   599  7.41 0.74 $900    10d  50o 100l   37d 185o 370l 27.42
    8,2    e 100%   599   33m 1.00 $99     33c             33c             498
-  -1,3    o  52%   599  263o 0.85 $0                                      263
+  -1,3    o  53%   599  268o 0.85 $0                                      268
    5,3    p 100%   599   75  1.00 $675    75l            599l             599
 24 sectors
 
@@ -10141,10 +10141,10 @@ Player 02 Turn 14 starting
        -=O=-
 You have three new telegrams waiting ...
 
-[0:561] Command : 
 [0:560] Command : 
 [0:559] Command : 
-[0:558] Command : highway at -6,-2 distributes to 1,-1. 
+[0:558] Command : 
+[0:557] Command : highway at -6,-2 distributes to 1,-1. 
 highway -6,-2 now distributes to -4,-2 (cost 0.400)
 
 warehouse at -4,-2 distributes to 1,-1. 
@@ -10235,31 +10235,31 @@ gold mine at 3,3 distributes to 1,-1.
 gold mine 3,3 now distributes to -4,-2 (cost 2.600)
 
 
-[0:557] Command : 
-[0:556] Command : > > 
-[0:556] Command : Congratulations!
+[0:556] Command : 
+[0:555] Command : > > 
+[0:555] Command : Congratulations!
 Diplomatic relations with 1 upgraded to "Allied".
 
-[0:554] Command : Another cold war...
+[0:553] Command : Another cold war...
 Diplomatic relations with 8 downgraded to "Hostile".
 
-[0:552] Command : No announcements for you at the moment...
+[0:551] Command : No announcements for you at the moment...
 
-[0:552] Command : Enter telegram for everybody
+[0:551] Command : Enter telegram for everybody
 undo last line with ~u, print with ~p, abort with ~q, end with .
 1024 left: 1012 left: 
 You have a new announcement waiting ...
 
-[0:552] Command : 
+[0:551] Command : 
 Announcements since Thu Jan  1 00:00:00 1970
 
 > Announcement from 2, (#2)  dated Thu Jan  1 00:00:00 1970
 Hello World
 
 
-[0:552] Command : 1 is not logged on
+[0:551] Command : 1 is not logged on
 
-[0:552] Command :      --------00000000001
+[0:551] Command :      --------00000000001
      8765432101234567890
   -5                     -5  
   -4       - . . .       -4  
@@ -10275,42 +10275,42 @@ Hello World
      --------00000000001
      8765432101234567890
 
-[0:552] Command : Thu Jan  1 00:00:00 1970
+[0:551] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-2   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -6,-2   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -4,-2   w    0%      60 .. ..      230    0    0    0 100%    1        0   1
    2,-2   c    0%      60 .. ..       50    0    0    0 100%    1        0   1
   -7,-1   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
   -5,-1   g    0%      60 .. 5.      769    0    0    0 100%    1        0   1
-  -1,-1   o    0%      60 .. ..      418    0    0    0 100%    1        0   1
+  -1,-1   o    0%      60 .. ..      416    0    0    0 100%    1        0   1
    1,-1   b  100%     127 .. ..        1    0    0    0 100%  425        0   1
-   3,-1   g  100%      60 .. ..      556    0    0    0 100%    1        0   1
+   3,-1   g  100%      60 .. ..      555    0    0    0 100%    2        0   1
    5,-1   g   39%      60 .. ..      132    0    0    0 100%   40        0   1
    7,-1   g    0%      60 .. ..        2    0    0    0 100%    1        0   1
   -6,0    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
-  -4,0    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
+  -4,0    g    0%      60 .. ..        3    0    0    0 100%    1        0   1
   -2,0    g    0%      60 .. ..        3    0    0    0 100%    1        0   1
-   0,0    gm 100%      96 .. 5.      769    0  529    0 100%  290        0
-   2,0    gm 100%     101 .. 5.      769    0  540    0 100%  296        0
-   4,0    +    0%      60 .. ..        2    0    0    0 100%    1        0   1
+   0,0    gm 100%      94 .. 5.      769    0  524    0 100%  287        0
+   2,0    gm 100%     100 .. 5.      769    0  534    0 100%  293        0
+   4,0    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
   -7,1    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
-  -5,1    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -5,1    +    0%      60 .. ..        2    0    0    0 100%    1        0   1
   -3,1    g    0%      60 .. ..        3    0    0    0 100%    1        0
-  -1,1    g    0%      60 .. ..        2    0    0    0 100%    1        0
-   1,1    g    0%      60 .. ..        2    0    0    0 100%    1        0
-   3,1    +    0%      60 .. ..        2    0    0    0 100%    1        0   1
+  -1,1    g    0%      60 .. ..        3    0    0    0 100%    1        0
+   1,1    g    0%      60 .. ..        3    0    0    0 100%    1        0
+   3,1    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
   -4,2    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
-  -2,2    g    0%      60 .. ..        3    0    0    0 100%    1        0
+  -2,2    g    0%      60 .. ..        2    0    0    0 100%    1        0
    0,2    g    0%      60 .. ..        3    0    0    0 100%    1        0
    2,2    g    0%      60 .. ..        3    0    0    0 100%    1        0   1
   -3,3    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
   -1,3    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
    1,3    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
-   3,3    g    0%      60 .. ..        3    0    0    0 100%    1        0   1
+   3,3    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
 30 sectors
 
-[0:552] Command :      --------00000000001
+[0:551] Command :      --------00000000001
      8765432101234567890
   -5                     -5  
   -4       - . . . .     -4  
@@ -10326,12 +10326,12 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:552] Command : 
+[0:551] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
 total pop was 3110, yielding 0.00 hap, 0.00 edu
-2.4821 technology (0.0000 + 2.4821), 1.8428 research (0.0000 + 1.8428) produced
-money delta was $518 for this update
+2.4830 technology (0.0000 + 2.4830), 1.8442 research (0.0000 + 1.8442) produced
+money delta was $517 for this update
 
 > Telegram from 1, (#1)  dated Thu Jan  1 00:00:00 1970
 Want an alliance?
@@ -10340,19 +10340,19 @@ Want an alliance?
 Country 1 (#1) has upgraded their relations with you to "Allied"!
 
 
-[0:552] Command : Thu Jan  1 00:00:00 1970
+[0:551] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -5,-1   g  28%   499  140d 1.00 $0                                      140
-  -1,-1   o 100%   225  169o 0.75 $0                                      169
+  -5,-1   g  28%   499  139d 1.00 $0                                      139
+  -1,-1   o 100%   224  168o 0.75 $0                                      168
    1,-1   b 100%     0    0b 1.00 $0       0d              0d               0
-   3,-1   g  25%   433  108d 1.00 $0                                      108
+   3,-1   g  25%   432  108d 1.00 $0                                      108
    5,-1   g  38%    51   19d 1.00 $0                                       19
-   0,0    m 100%   839  839i 1.00 $0                                      839
-   2,0    m 100%   847  847i 1.00 $0                                      847
+   0,0    m 100%   835  835i 1.00 $0                                      835
+   2,0    m 100%   842  842i 1.00 $0                                      842
 7 sectors
 
-[0:552] Command : Bye-bye
+[0:551] Command : Bye-bye
 Exit: so long...
 Player 02 Turn 14 completed successfully
 Player 08 Turn 14 starting
@@ -10362,7 +10362,7 @@ Player 08 Turn 14 starting
 You have two new telegrams waiting ...
 You have a new announcement waiting ...
 
-[0:548] Command : -6,-4 threshold unchanged (left at 769)
+[0:550] Command : -6,-4 threshold unchanged (left at 769)
 0,-4 threshold unchanged (left at 769)
 -5,-3 threshold unchanged (left at 769)
 -1,-3 threshold unchanged (left at 769)
@@ -10388,30 +10388,30 @@ You have a new announcement waiting ...
 -1,1 threshold unchanged (left at 769)
 1,1 threshold unchanged (left at 769)
 
-[0:547] Command : 
-[0:546] Command : 
-[0:545] Command : -2,-2 old threshold 1
+[0:549] Command : 
+[0:548] Command : 
+[0:547] Command : -2,-2 old threshold 1
 0,-2 old threshold 1
 2,-2 old threshold 1
 
+[0:546] Command : 
+[0:545] Command : 
 [0:544] Command : 
 [0:543] Command : 
-[0:542] Command : 
-[0:541] Command : 
-[0:540] Command : Declaration made (give 'em hell).
+[0:542] Command : Declaration made (give 'em hell).
 Diplomatic relations with 1 downgraded to "At War".
 
-[0:538] Command : Another cold war...
+[0:540] Command : Another cold war...
 Diplomatic relations with 2 downgraded to "Hostile".
 
-[0:536] Command : 
+[0:538] Command : 
 Announcements since Thu Jan  1 00:00:00 1970
 
 > Announcement from 2, (#2)  dated Thu Jan  1 00:00:00 1970
 Hello World
 
 
-[0:536] Command :      --------00000000001
+[0:538] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -10427,29 +10427,29 @@ Hello World
      --------00000000001
      8765432101234567890
 
-[0:536] Command : Thu Jan  1 00:00:00 1970
+[0:538] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-4   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
-   0,-4   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -5,-3   o    8%     127 .. ..      769    0    0    0 100%    4        0   1
-  -3,-3   -    9%     127 .. ..       13    0    0    0 100%    4        0   1
-  -1,-3   g    3%     127 .. ..      769    0    0    0 100%    2        0   1
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%   14        0   1
+  -4,-4   -    8%     127 .. ..       11    0    0    0 100%    3        0   1
+   0,-4   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -5,-3   o    5%     127 .. ..      769    0    0    0 100%    3        0   1
+  -3,-3   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -1,-3   g   12%     127 .. ..      769    0    0    0 100%    4        0   1
    1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
-  -4,-2   g    3%     127 .. ..      769    0    0    0 100%    2        0   1
-  -2,-2   gm 100%     127 .. ..      769    0    0    0 100%    2        0
-   0,-2   gm 100%     127 .. ..      769    0    0    0 100%    4        0
+  -4,-2   g    1%     127 .. ..      769    0    0    0 100%    2        0   1
+  -2,-2   gm 100%     127 .. ..      769    0    0    0 100%    1        0
+   0,-2   gm 100%     127 .. ..      769    0    0    0 100%    1        0
    2,-2   k  100%     127 .. ..      769    0    0    0 100%  499        0   1
    4,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    6,-2   t  100%     127 .. ..      769    0    0    0 100%  119        0   1
   -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -1,-1   m  100%     127 .. 5.      769    0   43    0 100%    0        0
+  -1,-1   m  100%     127 .. 5.      769    0   41    0 100%    0        0
    1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
-   5,-1   g   12%     127 .. ..      769    0    0    0 100%    5        0
-   7,-1   c    0%     127 .. ..        3    0    0    0 100%    1        0   1
-  -2,0    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   5,-1   g    1%     127 .. ..      769    0    0    0 100%    1        0
+   7,-1   c    2%     127 .. ..        6    0    0    0 100%    2        0   1
+  -2,0    g    5%     127 .. ..      769    0    0    0 100%    3        0   1
    0,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
    2,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
    4,0    b  100%     127 .. ..      400    0    0    0 100%   12        0   1
@@ -10457,11 +10457,11 @@ CENSUS                   del dst
    8,0    i  100%     127 .. ..      769    0    0    0 100%  599        0   1
   -3,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-   1,1    g    6%     127 .. ..      769    0    0    0 100%    3        0   1
-   3,1    w  100%     109 .. ..      157    0    0    0 100%  265        0   1
+   1,1    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   3,1    w  100%     109 .. ..      112    0    0    0 100%  243        0   1
 29 sectors
 
-[0:536] Command :      --------00000000001
+[0:538] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -10477,50 +10477,50 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:536] Command : 
+[0:538] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
 a class of graduates (300.00) produced in 1,-3
-technological breakthroughs (21.95) produced in 6,-2
+technological breakthroughs (21.96) produced in 6,-2
   0 happiness, 300 education produced
-total pop was 14641, yielding 0.00 hap, 57.11 edu
-7.6922 technology (5.4559 + 2.2363), 1.8428 research (0.0000 + 1.8428) produced
-money delta was $-4917 for this update
+total pop was 14609, yielding 0.00 hap, 57.21 edu
+7.6943 technology (5.4566 + 2.2377), 1.8442 research (0.0000 + 1.8442) produced
+money delta was $-5008 for this update
 
 > BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
 Country 1 (#1) has downgraded their relations with you to "At War"!
 Country 2 (#2) has downgraded their relations with you to "Hostile"!
 
 
-[0:536] Command : Thu Jan  1 00:00:00 1970
+[0:538] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
   -6,-4   o   3%   599   14o 0.80 $0                                       14
-   0,-4   k 100%   599  239h 0.80 $0     600i            600i             239
-  -5,-3   o  72%   507  291o 0.80 $0                                      291
-  -1,-3   g  23%   502  115d 1.00 $0                                      115
+   0,-4   k 100%   599  239h 0.80 $0     598i            598i             239
+  -5,-3   o  72%   504  289o 0.80 $0                                      289
+  -1,-3   g  23%   511  115d 1.00 $0                                      115
    1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
-  -4,-2   g  28%   502  140d 1.00 $0                                      140
+  -4,-2   g  28%   500  140d 1.00 $0                                      140
   -2,-2   m  96%   474  455i 1.00 $0                                      455
    0,-2   m 100%   474  474i 1.00 $0                                      474
-   2,-2   k 100%   599  239h 0.80 $0     600i            600i             239
+   2,-2   k 100%   599  239h 0.80 $0     598i            598i             239
    4,-2   j 100%   599  478l 0.80 $0     599i            599i             478
-   6,-2   t 100%   599 23.05 0.77 $9000   30d 150o 300l   37d 185o 370l 28.43
+   6,-2   t 100%   599 23.06 0.77 $9000   30d 150o 300l   37d 185o 370l 28.44
   -3,-1   j 100%   599  478l 0.80 $0     599i            599i             478
-  -1,-1   m 100%   628  628i 1.00 $0                                      628
+  -1,-1   m 100%   627  627i 1.00 $0                                      627
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
-   5,-1   g  56%   511  280d 1.00 $0                                      280
-  -2,0    g  51%   499  254d 1.00 $0                                      254
+   5,-1   g  56%   500  280d 1.00 $0                                      280
+  -2,0    g  51%   504  255d 1.00 $0                                      255
    0,0    m 100%   965  965i 1.00 $0                                      965
    2,0    m 100%   965  965i 1.00 $0                                      965
    4,0    b 100%   312   60b 1.00 $600   300d            310d              62
-   8,0    i 100%   599   98s 0.49 $600   400l 200h       400l 200h         98
+   8,0    i 100%   599   97s 0.49 $597   398l 199h       398l 199h         97
   -3,1    j 100%   599  478l 0.80 $0     599i            599i             478
   -1,1    j 100%   599  478l 0.80 $0     599i            599i             478
-   1,1    g  37%   505  185d 1.00 $0                                      185
+   1,1    g  37%   499  184d 1.00 $0                                      184
 24 sectors
 
-[0:536] Command : Bye-bye
+[0:538] Command : Bye-bye
 Exit: so long...
 Player 08 Turn 14 completed successfully
 Update Turn 15 starting
@@ -10533,43 +10533,43 @@ You have a new announcement waiting ...
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33  100%  31K 181  366   15    0  9.2K 1.2K 881    0    3    4   38K
-   520.14
-        8  29   70%  19K 110    0    0    0   13K 2.2K 372    0    0    0   24K
-   204.82
+        1  33  100%  30K 181  366   16    0  9.2K 1.2K 867    0    3    4   37K
+   511.70
+        8  29   70%  19K 110    0    0    0   13K 2.2K 367    0    0    0   24K
+   204.37
         2  30   15% 3.7K   0    0    0    0    0  1.1K   0    0    0    0   34K
     40.16
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   35K
-    31.21
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   35K
-    31.09
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   35K
-    31.04
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   35K
-    30.81
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   35K
-    30.47
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   35K
-    29.93
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   35K
-    28.21
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   35K
+    31.28
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   35K
+    31.11
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   35K
+    31.07
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   35K
+    30.86
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   35K
+    30.45
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   35K
+    29.89
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   35K
+    28.31
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide 113   70%  75K 1.1K 366   15    0   22K 6.5K 1.3K   0    3    4  343K
+worldwide 113   70%  74K 1.1K 366   16    0   22K 6.6K 1.2K   0    3    4  342K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 44.88       10.94       33.31       11.22     5,-15 
- 2     2                 20.22        5.47        0.00        0.00    18,8   
- 3     3                 20.22        5.47        0.00        0.00    -4,10  
- 4     4                 20.22        5.47        0.00        0.00   -15,1   
- 5     5                 20.22        5.47        0.00        0.00   -30,8   
- 6     6                 20.22        5.47        0.00        0.00     2,-2  
- 7     7                 20.22        5.47        0.00        0.00    24,0   
- 8     8                 29.54        5.47       38.17        0.00    30,-12 
- 9     9                 20.22        5.47        0.00        0.00   -26,-6  
- 10    10                20.22        5.47        0.00        0.00   -12,-10 
+ 1     1                 44.89       10.94       33.63       11.41     5,-15 
+ 2     2                 20.23        5.47        0.00        0.00    18,8   
+ 3     3                 20.23        5.47        0.00        0.00    -4,10  
+ 4     4                 20.23        5.47        0.00        0.00   -15,1   
+ 5     5                 20.23        5.47        0.00        0.00   -30,8   
+ 6     6                 20.23        5.47        0.00        0.00     2,-2  
+ 7     7                 20.23        5.47        0.00        0.00    24,0   
+ 8     8                 29.54        5.47       38.23        0.00    30,-12 
+ 9     9                 20.23        5.47        0.00        0.00   -26,-6  
+ 10    10                20.23        5.47        0.00        0.00   -12,-10 
  11    visitor            0.00        0.00        0.00        0.00     0,0   
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -10582,112 +10582,112 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    7,-15  +o 100%     127 .. ..      769    0    0    0 100%  599    0   1
   1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
   1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
-  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   19,-15  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%   14    0   1
+  8   19,-15  -    8%     127 .. ..       11    0    0    0 100%    3    0   1
+  8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-14  m  100%     127 .. ..      769    0    0    0 100%    1    0
   1   10,-14  h  100%     127 .. ..      739    5    0    0 100%  326    0   1
   1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
   1   14,-14  =  100%     127 .. ..       77    0    0    0 100%   37    0   1
-  1   16,-14  )  100%     127 .. 0.      769   28    1    0 100%  606    0   1
-  8   18,-14  o    8%     127 .. ..      769    0    0    0 100%    4    0   1
-  8   20,-14  -    9%     127 .. ..       13    0    0    0 100%    4    0   1
-  8   22,-14  g    3%     127 .. ..      769    0    0    0 100%    2    0   1
+  1   16,-14  )  100%     127 .. 0.      769   28    1    0 100%  112    0   1
+  8   18,-14  o    5%     127 .. ..      769    0    0    0 100%    3    0   1
+  8   20,-14  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   22,-14  g   12%     127 .. ..      769    0    0    0 100%    4    0   1
   8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
-  1    9,-13  k  100%     127 .. 8.      769    0  713    0 100%    1    0   1
-  8   19,-13  g    3%     127 .. ..      769    0    0    0 100%    2    0   1
-  8   21,-13  gm 100%     127 .. ..      769    0    0    0 100%    2    0
-  8   23,-13  gm 100%     127 .. ..      769    0    0    0 100%    4    0
+  1    9,-13  k  100%     127 .. 8.      769    0  713    0 100%    0    0   1
+  8   19,-13  g    1%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   21,-13  gm 100%     127 .. ..      769    0    0    0 100%    1    0
+  8   23,-13  gm 100%     127 .. ..      769    0    0    0 100%    1    0
   8   25,-13  k  100%     127 .. ..      769    0    0    0 100%  499    0   1
   8   27,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  119    0   1
-  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    8,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   1   10,-12  j  100%     127 .. 5.      769    0    0    0 100%    0    0   1
   1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  439    0   1
   8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   22,-12  m  100%     127 .. 5.      769    0   43    0 100%    0    0
+  8   22,-12  m  100%     127 .. 5.      769    0   41    0 100%    0    0
   8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
-  8   28,-12  g   12%     127 .. ..      769    0    0    0 100%    5    0
-  8   30,-12  c    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   28,-12  g    1%     127 .. ..      769    0    0    0 100%    1    0
+  8   30,-12  c    2%     127 .. ..        6    0    0    0 100%    2    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-11  k* 100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
-  1   11,-11  w  100%     127 .. ..     7531   51    0    0 100%  609    0   1
+  1   11,-11  w  100%     127 .. ..     6703   51    0    0 100%  609    0   1
   1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
   1   15,-11  !  100%     127 .. ..      769   15    0    0 100%  545    0   1
-  8   21,-11  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   21,-11  g    5%     127 .. ..      769    0    0    0 100%    3    0   1
   8   23,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
   8   25,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
   8   27,-11  b  100%     127 .. ..      400    0    0    0 100%   12    0   1
   8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  599    0   1
   8   31,-11  i  100%     127 .. ..      769    0    0    0 100%  599    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  527    0 100%  929    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  528    0 100%  929    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  529    0 100%  930    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  531    0 100%  931    0   1
   1    4,-10  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
   8   20,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   24,-10  g    6%     127 .. ..      769    0    0    0 100%    3    0   1
-  8   26,-10  w  100%     109 .. ..      157    0    0    0 100%  265    0   1
+  8   24,-10  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   26,-10  w  100%     109 .. ..      112    0    0    0 100%  243    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  535    0 100%  934    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  526    0 100%  928    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  531    0 100%  931    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  532    0 100%  932    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   6    2,-2   c  100%     127 .. ..     1000   55  532    0 100%  932    0
-  6    4,-2   c  100%     127 .. ..     1000   55  531    0 100%  931    0
+  6    4,-2   c  100%     127 .. ..     1000   55  534    0 100%  933    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  7   24,0    c  100%     127 .. ..     1000   55  538    0 100%  936    0
-  7   26,0    c  100%     127 .. ..     1000   55  523    0 100%  926    0
-  4  -15,1    c  100%     127 .. ..     1000   55  529    0 100%  930    0
-  4  -13,1    c  100%     127 .. ..     1000   55  534    0 100%  933    0
+  7   24,0    c  100%     127 .. ..     1000   55  539    0 100%  936    0
+  7   26,0    c  100%     127 .. ..     1000   55  524    0 100%  926    0
+  4  -15,1    c  100%     127 .. ..     1000   55  532    0 100%  932    0
+  4  -13,1    c  100%     127 .. ..     1000   55  529    0 100%  930    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  527    0 100%  929    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  530    0 100%  930    0
-  2   10,8    +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  5  -30,8    c  100%     127 .. ..     1000   55  528    0 100%  929    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  528    0 100%  929    0
+  2   10,8    +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   2   12,8    w    0%      60 .. ..      230    0    0    0 100%    1    0   1
   2   18,8    c    0%      60 .. ..       50    0    0    0 100%    1    0   1
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
   2    9,9    +    0%      60 .. ..        1    0    0    0 100%    0    0   1
   2   11,9    g    0%      60 .. 5.      769    0    0    0 100%    1    0   1
-  2   15,9    o    0%      60 .. ..      418    0    0    0 100%    1    0   1
+  2   15,9    o    0%      60 .. ..      416    0    0    0 100%    1    0   1
   2   17,9    b  100%     127 .. ..        1    0    0    0 100%  425    0   1
-  2   19,9    g  100%      60 .. ..      556    0    0    0 100%    1    0   1
+  2   19,9    g  100%      60 .. ..      555    0    0    0 100%    2    0   1
   2   21,9    g   39%      60 .. ..      132    0    0    0 100%   40    0   1
   2   23,9    g    0%      60 .. ..        2    0    0    0 100%    1    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  536    0 100%  934    0
-  3   -2,10   c  100%     127 .. ..     1000   55  535    0 100%  934    0
+  3   -4,10   c  100%     127 .. ..     1000   55  532    0 100%  932    0
+  3   -2,10   c  100%     127 .. ..     1000   55  531    0 100%  931    0
   2   10,10   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
-  2   12,10   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   12,10   g    0%      60 .. ..        3    0    0    0 100%    1    0   1
   2   14,10   g    0%      60 .. ..        3    0    0    0 100%    1    0   1
-  2   16,10   gm 100%      96 .. 5.      769    0  529    0 100%  290    0
-  2   18,10   gm 100%     101 .. 5.      769    0  540    0 100%  296    0
-  2   20,10   +    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   16,10   gm 100%      94 .. 5.      769    0  524    0 100%  287    0
+  2   18,10   gm 100%     100 .. 5.      769    0  534    0 100%  293    0
+  2   20,10   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
   2    9,11   +    0%      60 .. ..        1    0    0    0 100%    0    0   1
-  2   11,11   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2   11,11   +    0%      60 .. ..        2    0    0    0 100%    1    0   1
   2   13,11   g    0%      60 .. ..        3    0    0    0 100%    1    0
-  2   15,11   g    0%      60 .. ..        2    0    0    0 100%    1    0
-  2   17,11   g    0%      60 .. ..        2    0    0    0 100%    1    0
-  2   19,11   +    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   15,11   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   17,11   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   19,11   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
   2   12,12   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
-  2   14,12   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   14,12   g    0%      60 .. ..        2    0    0    0 100%    1    0
   2   16,12   g    0%      60 .. ..        3    0    0    0 100%    1    0
   2   18,12   g    0%      60 .. ..        3    0    0    0 100%    1    0   1
   2   13,13   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
   2   15,13   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
   2   17,13   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
-  2   19,13   g    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2   19,13   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
 113 sectors
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
@@ -10703,7 +10703,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  17,-15  o .......... ......0.1.   0   0    0    0    0   0    1    0    0   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
-  1   4,-14  b .......... ....3.....   0   0    0    0  300 327    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 326    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  m .......... ...0......   0   0    0    1    0   0    0    1    0   0
   1  10,-14  h .......... .......22.   0   0    0    1    1   0    1  188  192   0
@@ -10724,7 +10724,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  25,-13  k .......... ...9....0.   0   0    0  999    1   0    0    0    1   0
   8  27,-13  j .......... ...9......   0   0    0  999    0   0    0  381    0   0
   8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
-  1   4,-12  k .......... ........0.   0   0    0  603    0   0    0    0    1   0
+  1   4,-12  k .......... ........0.   0   0    0  605    0   0    0    0    1   0
   1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
@@ -10735,20 +10735,20 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  g .......... ....0.001.   0   0    0    0    1   0    0    0    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
   1   5,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  1   7,-11  k .......... ..2....22.   0   0    0    2    0   0    0    0    1   0
+  1   7,-11  k .......... ..2....22.   0   0    0    4    0   0    0    0    1   0
   1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
-  1  11,-11  w .......... .......... 165   0    0 2639  907   0  731 2002 2700   0
+  1  11,-11  w .......... .......... 165   0    0 2641  909   0  717 2009 2698   0
   1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1  15,-11  ! .......... 20.....22. 160   4    0    0    0   0    0  200  200   0
+  1  15,-11  ! .......... 20.....22. 160   5    0    0    0   0    0  200  200   0
   8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  8  25,-11  m .......... ...0......   0   0    0  818    0   0    0    0    0   0
-  8  27,-11  b .......... ....3.....   0   0    0    0  300 236    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0  816    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 233    0    0    0   0
   8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  200  200   0
-  8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0  600  207   0
+  8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0  600  206   0
  10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
  10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   4,-10  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
@@ -10757,31 +10757,31 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  j .......... ...9...0..   0   0    0  999    1   0    0    1    0   0
   8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
   8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 6228 1840   0  220   68    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 6229 1849   0  215   69    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  12,8    w .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
   2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  11,9    g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
   2  15,9    o .......... ......0...   0   0    0    0    0   0    0    0    0   0
-  2  17,9    b .......... ....3.....   0   0    0    0  984  10    0    0    0   0
-  2  19,9    g .......... ....0.....   0   0    0    0  107   0    0    0    0   0
+  2  17,9    b .......... ....3.....   0   0    0    0  986  10    0    0    0   0
+  2  19,9    g .......... ....0.....   0   0    0    0  106   0    0    0    0   0
   2  21,9    g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   2  23,9    g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
   3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -10819,7 +10819,7 @@ own   sect        eff  min gold fert oil uran
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
   8   17,-15  o  100%    0    0  100   3    0
-  8   19,-15  -    0%    0    0  100 100    0
+  8   19,-15  -    8%    0    0  100 100    0
   8   23,-15  k  100%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
   1    6,-14  m  100%  100   69    0   0   97
@@ -10828,15 +10828,15 @@ own   sect        eff  min gold fert oil uran
   1   12,-14  =  100%    0    0   45  11    0
   1   14,-14  =  100%    0    0   63  46    0
   1   16,-14  )  100%    0    0  100  98    0
-  8   18,-14  o    8%    0    0   91  72    0
-  8   20,-14  -    9%    0    0   82  58    0
-  8   22,-14  g    3%   50   23    6   0    0
+  8   18,-14  o    5%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g   12%   50   23    6   0    0
   8   24,-14  l  100%   45    0   13   0    0
   1    3,-13  j  100%   23    1   43   0    0
   1    5,-13  m  100%  100    0  100 100  100
   1    7,-13  m  100%  100  100  100 100  100
   1    9,-13  k  100%   17    0   52   7    0
-  8   19,-13  g    3%   56   28    0   0    5
+  8   19,-13  g    1%   56   28    0   0    5
   8   21,-13  gm 100%   96    0    0   0   77
   8   23,-13  gm 100%  100    0    0   0   88
   8   25,-13  k  100%   63   33    0   0   17
@@ -10847,21 +10847,21 @@ own   sect        eff  min gold fert oil uran
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  j  100%   50    0    6   0    0
   1   12,-12  d  100%   63    0    0   0   17
-  8   20,-12  j  100%   74    0    0   0   37
+  8   20,-12  j  100%   74    1    0   0   37
   8   22,-12  m  100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
-  8   28,-12  g   12%   91   56    0   0   68
-  8   30,-12  c    0%   23    1   43   0    0
+  8   28,-12  g    1%   91   56    0   0   68
+  8   30,-12  c    2%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  k* 100%   91    0    0   0   68
   1    9,-11  r  100%   85    0    0   0   57
   1   11,-11  w  100%   78    0    0   0   45
   1   13,-11  e  100%   67    0    0   0   25
   1   15,-11  !  100%   56    0    0   0    5
-  8   21,-11  g    0%   85   51    0   0   57
+  8   21,-11  g    5%   85   51    0   0   57
   8   23,-11  m  100%  100    0  100 100  100
   8   25,-11  m  100%  100    0  100 100  100
   8   27,-11  b  100%   39    3   21   0    0
@@ -10869,12 +10869,12 @@ own   sect        eff  min gold fert oil uran
   8   31,-11  i  100%    0    0  100 100    0
  10  -12,-10  c  100%  100  100  100 100  100
  10  -10,-10  c  100%  100  100  100 100  100
-  1    4,-10  o  100%    0    0  100  52    0
+  1    4,-10  o  100%    0    0  100  53    0
   1    6,-10  +  100%    0    0  100 100    0
   1   10,-10  p  100%    0    0  100  98    0
   8   20,-10  j  100%   78    0    0   0   45
   8   22,-10  j  100%    6    0   67  32    0
-  8   24,-10  g    6%   67   37    0   0   25
+  8   24,-10  g    0%   67   37    0   0   25
   8   26,-10  w  100%   17    0   52   7    0
   9  -25,-7   g  100%   28    0   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
@@ -11027,15 +11027,15 @@ That just cost you $300.00
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
    1,-3   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -4,-2   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
   -2,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
-   2,-2   o% 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   2,-2   o% 100%     127 .. ..      769    0    0    0 100%    2        0   1
    4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
    6,-2   l  100%     127 .. ..      769    0    0    0 100%  199        0   1
   -1,-1   b  100%     127 .. ..      769    0    0    0 100%  299        0   1
    1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
-   3,-1   m  100%     127 .. ..      769    0    0    0 100%    1        0
+   3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
    5,-1   h  100%     127 .. ..      369    5    0    0 100%  402        0   1
    7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
    9,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
@@ -11043,20 +11043,20 @@ CENSUS                   del dst
   -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
-   4,0    k  100%     127 .. 8.      769    0  869    0 100%    0        0   1
+   4,0    k  100%     127 .. 8.      769    0  869    0 100%    1        0   1
   -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
    3,1    m  100%     127 .. 5.      769    0   38    0 100%    0        0
    5,1    j  100%     127 .. 5.      769    0    0    0 100%    0        0   1
    7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
-  -2,2    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
    0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,2    *  100%     127 .. ..      769   27    0    0 100%  462        0   1
    4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
-   6,2    w  100%     127 .. ..     7896   44    0    0 100%  612        0   1
+   6,2    w  100%     127 .. ..     7894   44    0    0 100%  612        0   1
    8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
   10,2    !  100%     127 .. ..      769   25    0    0 100%  603        0   1
-  -1,3    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,3    o  100%     127 .. ..      769    0    0    0 100%    1        0   1
    1,3    +  100%     127 .. ..      769    0    0    0 100%  599        0   1
    5,3    p  100%     127 .. ..      769    0    0    0 100%  524        0   1
 33 sectors
@@ -11102,43 +11102,43 @@ Country 2 (#2) has upgraded their relations with you to "Allied"!
 Country 8 (#8) has downgraded their relations with you to "At War"!
 
 > Production Report   dated Thu Jan  1 00:00:00 1970
-technological breakthroughs (11.08) produced in 4,-2
+technological breakthroughs (11.12) produced in 4,-2
 a class of graduates (400.00) produced in 6,-2
-medical discoveries (7.39) produced in 4,2
+medical discoveries (7.41) produced in 4,2
 happy strollers (75.00) produced in 5,3
  75 happiness, 400 education produced
-total pop was 31055, yielding 12.25 hap, 40.38 edu
-7.2338 technology (4.4705 + 2.7634), 3.6835 research (3.6835 + 0.0000) produced
+total pop was 30227, yielding 12.45 hap, 41.19 edu
+7.2384 technology (4.4747 + 2.7637), 3.6876 research (3.6876 + 0.0000) produced
 Army delta $-138, Navy delta $-582, Air force delta $0
-money delta was $7172 for this update
+money delta was $6746 for this update
 
 
 [0:625] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
    1,-3   j 100%   599  516l 0.86 $0     599i            599i             516
-  -4,-2   k 100%   599  258h 0.86 $0     600i            600i             258
+  -4,-2   k 100%   599  257h 0.86 $0     598i            598i             257
   -2,-2   j 100%   599  516l 0.86 $0     599i            599i             516
    2,-2   % 100%   474  999p 7.61 $131   131o            131o             999
-   4,-2   t 100%   599 11.25 0.75 $4500   15d  75o 150l   37d 185o 370l 27.75
+   4,-2   t 100%   599 11.29 0.75 $4500   15d  75o 150l   37d 185o 370l 27.85
    6,-2   l 100%   599  450  1.00 $4050  450l            599l             599
-  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+  -1,-1   b 100%   599   60b 1.00 $600   300d            595d             119
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m  96%   599  575i 1.00 $0                                      575
   -2,0    j 100%   599  516l 0.86 $0     599i            599i             516
    0,0    m 100%   599  599i 1.00 $0                                      599
    2,0    m 100%   998  998i 1.00 $0                                      998
    4,0    k 100%  1198  516h 0.86 $0    1198i           1198i             516
-  -1,1    k 100%   599  258h 0.86 $0     600i            600i             258
+  -1,1    k 100%   599  257h 0.86 $0     598i            598i             257
    1,1    m 100%   599  599i 1.00 $0                                      599
    3,1    m 100%   625  625i 1.00 $0                                      625
    5,1    j 100%   599  516l 0.86 $0     599i            599i             516
    7,1    d 100%   599    8g 0.76 $300    10o  50l 100h   37o 185l 370h    28
-  -2,2    i 100%   599  152s 0.76 $600   400l 200h       400l 200h        152
+  -2,2    i 100%   599  151s 0.76 $597   398l 199h       398l 199h        151
    0,2    m 100%   599  599i 1.00 $0                                      599
-   4,2    r 100%   599  7.50 0.75 $900    10d  50o 100l   37d 185o 370l 27.75
+   4,2    r 100%   599  7.53 0.75 $900    10d  50o 100l   37d 185o 370l 27.85
    8,2    e 100%   599   33m 1.00 $99     33c             33c             498
-  -1,3    o  20%   599  103o 0.86 $0                                      103
+  -1,3    o  21%   599  108o 0.86 $0                                      108
    5,3    p 100%   599   75  1.00 $675    75l            599l             599
 24 sectors
 
@@ -11178,34 +11178,34 @@ You have two new telegrams waiting ...
 [0:614] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-2   +    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -6,-2   +    0%     120 .. ..        1    0    0    0 100%    0        0   1
   -4,-2   w   89%      96 .. ..        1    0    0    0 100%   90        0   1
    2,-2   c   19%     120 .. ..       50    0    0    0 100%   20        0   1
-  -7,-1   +    0%     120 .. ..        1    0    0    0 100%    0        0   1
-  -5,-1   gj 100%     119 .. 5.      769    0   71    0 100%    0        0   1
+  -7,-1   +    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -5,-1   gj 100%     119 .. 5.      769    0   58    0 100%    2        0   1
   -1,-1   o  100%     118 .. ..      769    0    0    0 100%    0        0   1
    1,-1   b  100%     127 .. ..      385    0    0    0 100%    0        0   1
-   3,-1   g  100%      97 .. ..      300    0    0    0 100%    0        0   1
-   5,-1   g   90%     119 .. ..      600    0    0    0 100%    2        0   1
-   7,-1   g    0%     120 .. ..      394    0    0    0 100%    1        0   1
+   3,-1   g  100%      97 .. ..      300    0    0    0 100%    1        0   1
+   5,-1   g   90%     119 .. ..      600    0    0    0 100%    0        0   1
+   7,-1   g    0%     120 .. ..      388    0    0    0 100%    1        0   1
   -6,0    g    0%     120 .. ..        3    0    0    0 100%    1        0   1
-  -4,0    g    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -4,0    g    0%     120 .. ..        4    0    0    0 100%    1        0   1
   -2,0    g    0%     120 .. ..        4    0    0    0 100%    1        0   1
    0,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
    2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
    4,0    +    0%     120 .. ..        3    0    0    0 100%    1        0   1
-  -7,1    +    0%     120 .. ..        1    0    0    0 100%    0        0   1
-  -5,1    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
+  -7,1    +    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -5,1    +    0%     120 .. ..        3    0    0    0 100%    1        0   1
   -3,1    g    0%     120 .. ..        4    0    0    0 100%    1        0
-  -1,1    g    0%     120 .. ..        3    0    0    0 100%    1        0
-   1,1    g    0%     120 .. ..        3    0    0    0 100%    1        0
-   3,1    +    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -1,1    g    0%     120 .. ..        4    0    0    0 100%    1        0
+   1,1    g    0%     120 .. ..        4    0    0    0 100%    1        0
+   3,1    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
   -4,2    g    0%     120 .. ..        3    0    0    0 100%    1        0   1
-  -2,2    g    0%     120 .. ..        4    0    0    0 100%    1        0
+  -2,2    g    0%     120 .. ..        2    0    0    0 100%    1        0
    0,2    g    0%     120 .. ..        4    0    0    0 100%    1        0
    2,2    g    0%     120 .. ..        4    0    0    0 100%    1        0   1
   -3,3    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
-  -1,3    +    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -1,3    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
    1,3    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
    3,3    g    0%     120 .. ..        3    0    0    0 100%    1        0   1
 30 sectors
@@ -11232,20 +11232,20 @@ Country 8 (#8) has downgraded their relations with you to "Hostile"!
 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 3744, yielding 0.00 hap, 0.00 edu
-2.4993 technology (0.0000 + 2.4993), 1.8418 research (0.0000 + 1.8418) produced
-money delta was $614 for this update
+total pop was 3742, yielding 0.00 hap, 0.00 edu
+2.5005 technology (0.0000 + 2.5005), 1.8438 research (0.0000 + 1.8438) produced
+money delta was $612 for this update
 
 
 [0:614] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -5,-1   j 100%   523  400l 0.77 $0     523i            523i             400
-  -1,-1   o  77%   599  353o 0.77 $0                                      353
+  -5,-1   j 100%   514  393l 0.77 $0     514i            514i             393
+  -1,-1   o  78%   599  357o 0.77 $0                                      357
    1,-1   b 100%   300   60b 1.00 $600   300d            300d              60
-   3,-1   g   4%   234    9d 1.00 $0                                        9
+   3,-1   g   3%   234    7d 1.00 $0                                        7
    5,-1   g  38%   458  174d 1.00 $0                                      174
-   7,-1   g  14%   207   29d 1.00 $0                                       29
+   7,-1   g  14%   202   28d 1.00 $0                                       28
    0,0    m 100%   998  998i 1.00 $0                                      998
    2,0    m 100%   998  998i 1.00 $0                                      998
 8 sectors
@@ -11259,39 +11259,39 @@ Player 08 Turn 15 starting
        -=O=-
 You have a new telegram waiting ...
 
-[0:564] Command : 
-[0:563] Command : 
-[0:562] Command : 
-[0:561] Command : 
-[0:560] Command : 
-[0:559] Command : 
-[0:558] Command : 
-[0:557] Command : 
-[0:556] Command : 
-[0:555] Command : -4,-2 old threshold 1
+[0:640] Command : 
+[0:639] Command : 
+[0:638] Command : 
+[0:637] Command : 
+[0:636] Command : 
+[0:635] Command : 
+[0:634] Command : 
+[0:633] Command : 
+[0:632] Command : 
+[0:631] Command : -4,-2 old threshold 1
 
-[0:554] Command : 
-[0:553] Command : 
-[0:552] Command : 
-[0:551] Command : 
-[0:550] Command : 
-[0:549] Command : -1,-3 old threshold 1
+[0:630] Command : 
+[0:629] Command : 
+[0:628] Command : 
+[0:627] Command : 
+[0:626] Command : 
+[0:625] Command : -1,-3 old threshold 1
 
-[0:548] Command : 
-[0:547] Command : -2,0 old threshold 1
+[0:624] Command : 
+[0:623] Command : -2,0 old threshold 1
 
-[0:546] Command : 
-[0:545] Command : 
-[0:544] Command : 
-[0:543] Command : 
-[0:542] Command : 1,-3 old threshold 300
+[0:622] Command : 
+[0:621] Command : 
+[0:620] Command : 
+[0:619] Command : 
+[0:618] Command : 1,-3 old threshold 300
 
-[0:541] Command : Looking for best path to -6,-4
+[0:617] Command : Looking for best path to -6,-4
 Using best path 'ygyyyh', movement cost 1.000
 Total movement cost = 55
 72 mob left in 0,0
 
-[0:540] Command :      --------00000000001
+[0:616] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -11307,41 +11307,41 @@ Total movement cost = 55
      --------00000000001
      8765432101234567890
 
-[0:540] Command : Thu Jan  1 00:00:00 1970
+[0:616] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   of 100%     127 .. ..      769   55    0    0 100%    0        0   1
-  -4,-4   -    1%     127 .. ..      769    0    0    0 100%    1        0   1
+  -6,-4   of 100%     127 .. ..      769   55    0    0 100%   33        0   1
+  -4,-4   -   11%     127 .. ..      769    0    0    0 100%    4        0   1
    0,-4   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
   -5,-3   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
-  -3,-3   -   13%     127 .. ..      769    0    0    0 100%    5        0   1
-  -1,-3   g! 100%     127 .. ..      769    0    0    0 100%    2        0   1
+  -3,-3   -    1%     127 .. ..      769    0    0    0 100%    1        0   1
+  -1,-3   g! 100%     127 .. ..      769    0    0    0 100%   11        0   1
    1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
-  -4,-2   g* 100%     127 .. ..      769    0    0    0 100%    3        0   1
-  -2,-2   m  100%     127 .. ..      769    0    0    0 100%    1        0
+  -4,-2   g* 100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   m  100%     127 .. ..      769    0    0    0 100%    0        0
    0,-2   m  100%     127 .. ..      769    0    0    0 100%    0        0
-   2,-2   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   2,-2   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    4,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    6,-2   t  100%     127 .. ..      769    0    0    0 100%  119        0   1
   -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -1,-1   m  100%     127 .. 5.      769    0  203    0 100%    0        0
+  -1,-1   m  100%     127 .. 5.      769    0  201    0 100%    0        0
    1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
-   5,-1   gd 100%     127 .. ..      769    0    0    0 100%   12        0
-   7,-1   c    0%     127 .. ..      769    0    0    0 100%    1        0   1
-  -2,0    gp 100%     127 .. ..      769    0    0    0 100%    1        0   1
+   5,-1   gd 100%     127 .. ..      769    0    0    0 100%    0        0
+   7,-1   c    4%     127 .. ..      769    0    0    0 100%    2        0   1
+  -2,0    gp 100%     127 .. ..      769    0    0    0 100%    4        0   1
    0,0    m  100%      72 .. 5.      769    0  512    0 100%    0        0
    2,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
    4,0    b  100%     127 .. ..      769    0    0    0 100%   12        0   1
    6,0    h  100%     127 .. ..      769    0    0    0 100%  599        0   1
-   8,0    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   8,0    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
   -3,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-   1,1    gk 100%     127 .. ..      769    0    0    0 100%    5        0   1
-   3,1    w  100%     103 .. ..     3208    0    0    0 100%  122        0   1
+   1,1    gk 100%     127 .. ..      769    0    0    0 100%    2        0   1
+   3,1    w  100%     103 .. ..     3152    0    0    0 100%   86        0   1
 29 sectors
 
-[0:540] Command :      --------00000000001
+[0:616] Command :      --------00000000001
      8765432101234567890
   -5  . . . . . . . . .  -5  
   -4 . o - . k . . . . - -4  
@@ -11357,43 +11357,43 @@ CENSUS                   del dst
      --------00000000001
      8765432101234567890
 
-[0:540] Command : 
+[0:616] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
 a class of graduates (300.00) produced in 1,-3
-technological breakthroughs (23.05) produced in 6,-2
+technological breakthroughs (23.06) produced in 6,-2
   0 happiness, 300 education produced
-total pop was 19033, yielding 0.00 hap, 46.86 edu
-7.7619 technology (5.5267 + 2.2352), 1.8418 research (0.0000 + 1.8418) produced
-money delta was $-3356 for this update
+total pop was 18989, yielding 0.00 hap, 46.94 edu
+7.7647 technology (5.5273 + 2.2374), 1.8438 research (0.0000 + 1.8438) produced
+money delta was $-3464 for this update
 
 
-[0:540] Command : Thu Jan  1 00:00:00 1970
+[0:616] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-   0,-4   k 100%   599  247h 0.82 $0     600i            600i             247
-  -5,-3   o  35%   599  173o 0.82 $0                                      173
+   0,-4   k 100%   599  247h 0.82 $0     598i            598i             247
+  -5,-3   o  36%   599  177o 0.82 $0                                      177
    1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
   -2,-2   m  96%   599  575i 1.00 $0                                      575
    0,-2   m 100%   599  599i 1.00 $0                                      599
-   2,-2   k 100%   599  247h 0.82 $0     600i            600i             247
+   2,-2   k 100%   599  247h 0.82 $0     598i            598i             247
    4,-2   j 100%   599  494l 0.82 $0     599i            599i             494
-   6,-2   t 100%   599 23.37 0.78 $9000   30d 150o 300l   37d 185o 370l 28.82
+   6,-2   t 100%   599 23.38 0.78 $9000   30d 150o 300l   37d 185o 370l 28.83
   -3,-1   j 100%   599  494l 0.82 $0     599i            599i             494
-  -1,-1   m 100%   739  739i 1.00 $0                                      739
+  -1,-1   m 100%   738  738i 1.00 $0                                      738
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
-   5,-1   d 100%   474    6g 0.63 $300    10o  50l 100h   30o 150l 300h    19
+   5,-1   d 100%   474    6g 0.63 $300    10o  50l 100h   29o 145l 290h    18
   -2,0    p 100%   474    0  1.00 $0       0l            474l             474
    0,0    m 100%   952  952i 1.00 $0                                      952
    2,0    m 100%   965  965i 1.00 $0                                      965
-   4,0    b 100%   599   60b 1.00 $600   300d            600d             120
-   8,0    i 100%   599  126s 0.63 $600   400l 200h       400l 200h        126
+   4,0    b 100%   599   60b 1.00 $600   300d            595d             119
+   8,0    i 100%   599  125s 0.63 $597   398l 199h       398l 199h        125
   -3,1    j 100%   599  494l 0.82 $0     599i            599i             494
   -1,1    j 100%   599  494l 0.82 $0     599i            599i             494
    1,1    k 100%   474    0h 0.82 $0       0i            474i             195
 21 sectors
 
-[0:540] Command : Bye-bye
+[0:616] Command : Bye-bye
 Exit: so long...
 Player 08 Turn 15 completed successfully
 Update Turn 16 starting
@@ -11405,77 +11405,77 @@ Update Turn 16 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33  100%  31K 211  509   23    0  9.1K 908  1.2K   3    5    4   45K
-   639.07
-        8  29   90%  25K 110   98    0    0   14K 2.8K 529    0    0    0   21K
-   328.54
-        2  30   27% 4.9K   0    0    0    0  1.7K 1.4K 169    0    0    0   35K
-    55.75
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   36K
-    35.27
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   36K
-    35.14
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   36K
-    35.08
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   36K
-    34.83
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   36K
-    34.45
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   36K
-    33.84
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   36K
-    31.92
+        1  33  100%  31K 211  508   23    0  9.1K 910  1.2K   3    5    4   43K
+   637.51
+        8  29   90%  25K 110   97    0    0   14K 2.8K 520    0    0    0   21K
+   327.88
+        2  30   27% 4.9K   0    0    0    0  1.7K 1.4K 168    0    0    0   35K
+    55.74
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   36K
+    35.35
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   36K
+    35.17
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   36K
+    35.12
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   36K
+    34.89
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   36K
+    34.43
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   36K
+    33.80
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   36K
+    32.04
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide 113   78%  82K 1.1K 607   23    0   25K 7.1K 1.9K   3    5    4  354K
+worldwide 113   78%  82K 1.1K 605   23    0   25K 7.2K 1.9K   3    5    4  352K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 51.79       14.53       34.99       11.79     5,-15 
- 2     2                 22.58        7.26        0.00        0.00    18,8   
- 3     3                 22.58        7.26        0.00        0.00    -4,10  
- 4     4                 22.58        7.26        0.00        0.00   -15,1   
- 5     5                 22.58        7.26        0.00        0.00   -30,8   
- 6     6                 22.58        7.26        0.00        0.00     2,-2  
- 7     7                 22.58        7.26        0.00        0.00    24,0   
- 8     8                 37.06        7.26       40.24        0.00    30,-12 
- 9     9                 22.58        7.26        0.00        0.00   -26,-6  
- 10    10                22.58        7.26        0.00        0.00   -12,-10 
+ 1     1                 51.80       14.54       35.43       11.99     5,-15 
+ 2     2                 22.59        7.27        0.00        0.00    18,8   
+ 3     3                 22.59        7.27        0.00        0.00    -4,10  
+ 4     4                 22.59        7.27        0.00        0.00   -15,1   
+ 5     5                 22.59        7.27        0.00        0.00   -30,8   
+ 6     6                 22.59        7.27        0.00        0.00     2,-2  
+ 7     7                 22.59        7.27        0.00        0.00    24,0   
+ 8     8                 37.07        7.27       40.30        0.00    30,-12 
+ 9     9                 22.59        7.27        0.00        0.00   -26,-6  
+ 10    10                22.59        7.27        0.00        0.00   -12,-10 
  11    visitor            0.00        0.00        0.00        0.00     0,0   
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    6,-16  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  1    1,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    3,-15  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
-  1    7,-15  o% 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    7,-15  o% 100%     127 .. ..      769    0    0    0 100%    2    0   1
   1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
   1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  199    0   1
-  8   17,-15  of 100%     127 .. ..      769   55    0    0 100%    0    0   1
-  8   19,-15  -    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   17,-15  of 100%     127 .. ..      769   55    0    0 100%   33    0   1
+  8   19,-15  -   11%     127 .. ..      769    0    0    0 100%    4    0   1
   8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  1    8,-14  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  1    8,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1   10,-14  h  100%     127 .. ..      369    5    0    0 100%  402    0   1
   1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
   1   14,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
   1   16,-14  )  100%     127 .. 0.      769   28    1    0 100%  606    0   1
   8   18,-14  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
-  8   20,-14  -   13%     127 .. ..      769    0    0    0 100%    5    0   1
-  8   22,-14  g! 100%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   20,-14  -    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   22,-14  g! 100%     127 .. ..      769    0    0    0 100%   11    0   1
   8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
   1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
-  1    9,-13  k  100%     127 .. 8.      769    0  869    0 100%    0    0   1
-  8   19,-13  g* 100%     127 .. ..      769    0    0    0 100%    3    0   1
-  8   21,-13  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  1    9,-13  k  100%     127 .. 8.      769    0  869    0 100%    1    0   1
+  8   19,-13  g* 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   21,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   23,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
-  8   25,-13  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   25,-13  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   8   27,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  119    0   1
   1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
@@ -11484,80 +11484,80 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   10,-12  j  100%     127 .. 5.      769    0    0    0 100%    0    0   1
   1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  439    0   1
   8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   22,-12  m  100%     127 .. 5.      769    0  203    0 100%    0    0
+  8   22,-12  m  100%     127 .. 5.      769    0  201    0 100%    0    0
   8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
-  8   28,-12  gd 100%     127 .. ..      769    0    0    0 100%   12    0
-  8   30,-12  c    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   28,-12  gd 100%     127 .. ..      769    0    0    0 100%    0    0
+  8   30,-12  c    4%     127 .. ..      769    0    0    0 100%    2    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
   1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
   1    7,-11  *  100%     127 .. ..      769   27    0    0 100%  462    0   1
   1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
-  1   11,-11  w  100%     127 .. ..     7896   44    0    0 100%  612    0   1
+  1   11,-11  w  100%     127 .. ..     7894   44    0    0 100%  612    0   1
   1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
   1   15,-11  !  100%     127 .. ..      769   25    0    0 100%  603    0   1
-  8   21,-11  gp 100%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   21,-11  gp 100%     127 .. ..      769    0    0    0 100%    4    0   1
   8   23,-11  m  100%      72 .. 5.      769    0  512    0 100%    0    0
   8   25,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
   8   27,-11  b  100%     127 .. ..      769    0    0    0 100%   12    0   1
   8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  599    0   1
-  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  606    0 100%  976    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  607    0 100%  977    0   1
-  1    4,-10  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  608    0 100%  977    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  611    0 100%  979    0   1
+  1    4,-10  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
   1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
   8   20,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   24,-10  gk 100%     127 .. ..      769    0    0    0 100%    5    0   1
-  8   26,-10  w  100%     103 .. ..     3208    0    0    0 100%  122    0   1
+  8   24,-10  gk 100%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   26,-10  w  100%     103 .. ..     3152    0    0    0 100%   86    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  615    0 100%  982    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  605    0 100%  975    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  611    0 100%  979    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  611    0 100%  979    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  6    2,-2   c  100%     127 .. ..     1000   55  612    0 100%  980    0
-  6    4,-2   c  100%     127 .. ..     1000   55  610    0 100%  978    0
+  6    2,-2   c  100%     127 .. ..     1000   55  611    0 100%  979    0
+  6    4,-2   c  100%     127 .. ..     1000   55  614    0 100%  981    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  7   24,0    c  100%     127 .. ..     1000   55  619    0 100%  984    0
-  7   26,0    c  100%     127 .. ..     1000   55  601    0 100%  973    0
-  4  -15,1    c  100%     127 .. ..     1000   55  608    0 100%  977    0
-  4  -13,1    c  100%     127 .. ..     1000   55  614    0 100%  981    0
+  7   24,0    c  100%     127 .. ..     1000   55  620    0 100%  984    0
+  7   26,0    c  100%     127 .. ..     1000   55  603    0 100%  974    0
+  4  -15,1    c  100%     127 .. ..     1000   55  612    0 100%  980    0
+  4  -13,1    c  100%     127 .. ..     1000   55  608    0 100%  977    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  606    0 100%  976    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  610    0 100%  979    0
-  2   10,8    +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  5  -30,8    c  100%     127 .. ..     1000   55  607    0 100%  977    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  607    0 100%  977    0
+  2   10,8    +    0%     120 .. ..        1    0    0    0 100%    0    0   1
   2   12,8    w   89%      96 .. ..        1    0    0    0 100%   90    0   1
   2   18,8    c   19%     120 .. ..       50    0    0    0 100%   20    0   1
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  2    9,9    +    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  2   11,9    gj 100%     119 .. 5.      769    0   71    0 100%    0    0   1
+  2    9,9    +    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  2   11,9    gj 100%     119 .. 5.      769    0   58    0 100%    2    0   1
   2   15,9    o  100%     118 .. ..      769    0    0    0 100%    0    0   1
   2   17,9    b  100%     127 .. ..      385    0    0    0 100%    0    0   1
-  2   19,9    g  100%      97 .. ..      300    0    0    0 100%    0    0   1
-  2   21,9    g   90%     119 .. ..      600    0    0    0 100%    2    0   1
-  2   23,9    g    0%     120 .. ..      394    0    0    0 100%    1    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  616    0 100%  982    0
-  3   -2,10   c  100%     127 .. ..     1000   55  615    0 100%  982    0
+  2   19,9    g  100%      97 .. ..      300    0    0    0 100%    1    0   1
+  2   21,9    g   90%     119 .. ..      600    0    0    0 100%    0    0   1
+  2   23,9    g    0%     120 .. ..      388    0    0    0 100%    1    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  612    0 100%  980    0
+  3   -2,10   c  100%     127 .. ..     1000   55  611    0 100%  979    0
   2   10,10   g    0%     120 .. ..        3    0    0    0 100%    1    0   1
-  2   12,10   g    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   12,10   g    0%     120 .. ..        4    0    0    0 100%    1    0   1
   2   14,10   g    0%     120 .. ..        4    0    0    0 100%    1    0   1
   2   16,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
   2   18,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
   2   20,10   +    0%     120 .. ..        3    0    0    0 100%    1    0   1
-  2    9,11   +    0%     120 .. ..        1    0    0    0 100%    0    0   1
-  2   11,11   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
+  2    9,11   +    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  2   11,11   +    0%     120 .. ..        3    0    0    0 100%    1    0   1
   2   13,11   g    0%     120 .. ..        4    0    0    0 100%    1    0
-  2   15,11   g    0%     120 .. ..        3    0    0    0 100%    1    0
-  2   17,11   g    0%     120 .. ..        3    0    0    0 100%    1    0
-  2   19,11   +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   15,11   g    0%     120 .. ..        4    0    0    0 100%    1    0
+  2   17,11   g    0%     120 .. ..        4    0    0    0 100%    1    0
+  2   19,11   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
   2   12,12   g    0%     120 .. ..        3    0    0    0 100%    1    0   1
-  2   14,12   g    0%     120 .. ..        4    0    0    0 100%    1    0
+  2   14,12   g    0%     120 .. ..        2    0    0    0 100%    1    0
   2   16,12   g    0%     120 .. ..        4    0    0    0 100%    1    0
   2   18,12   g    0%     120 .. ..        4    0    0    0 100%    1    0   1
   2   13,13   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
-  2   15,13   +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  2   15,13   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
   2   17,13   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
   2   19,13   g    0%     120 .. ..        3    0    0    0 100%    1    0   1
 113 sectors
@@ -11569,13 +11569,13 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   1,-15  k .......... ...9....0.   0   0    0  999    0   0    1    0    1   0
   1   3,-15  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
   1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1   7,-15  o .......... ..0.......   0   0    0    0    0   0  189    0    0   0
+  1   7,-15  o .......... ..0.......   0   0    0    0    0   0  188    0    0   0
   1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
   1  11,-15  l .......... .......4..   0   0    0    0    0   0    0  450    0   0
   8  17,-15  o .......... 20....0.1.   0   0    0    0    0   0    1    0  100   0
   8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
   8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
-  1   4,-14  b .......... ..........   0   0    0    0  300 387    0    0    0   0
+  1   4,-14  b .......... ..........   0   0    0    0  300 386    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  m .......... ...0......   0   0    0    1    0   0    0    1    0   0
   1  10,-14  h .......... 20.....22.   0   0    0    1    1   0    1  183  185   0
@@ -11596,7 +11596,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  25,-13  k .......... ...9....0.   0   0    0  999    1   0    0    0    1   0
   8  27,-13  j .......... ...9......   0   0    0  999    0   0    0  859    0   0
   8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
-  1   4,-12  k .......... ........0.   0   0    0  604    0   0    0    0    1   0
+  1   4,-12  k .......... ........0.   0   0    0  606    0   0    0    0    1   0
   1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
@@ -11607,20 +11607,20 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  g .......... .0..0.001.   0   0    0    0    1   0   10   50  100   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
   1   5,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  1   7,-11  * .......... 1.2....22.   0   0    0    2    0   0    0  197  199   0
+  1   7,-11  * .......... 1.2....22.   0   0    0    4    0   0    0  198  200   0
   1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
-  1  11,-11  w .......... .......... 268   0    0 2520  582   0  859 2544 3130   0
+  1  11,-11  w .......... .......... 267   0    0 2526  584   0  850 2552 3127   0
   1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  15,-11  ! .......... 20.....22. 200  12    0    0    0   0    0  200  200   0
   8  21,-11  g .......... .......0..   0   0    0    0    1   0    0    0    0   0
   8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  8  25,-11  m .......... ...0......   0   0    0 1731    0   0    0    0    0   0
-  8  27,-11  b .......... ....3.....   0   0    0    0  300 296    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0 1729    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 293    0    0    0   0
   8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  200  200   0
-  8  31,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  286   0
+  8  31,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  285   0
  10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
  10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
   1   4,-10  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
@@ -11629,26 +11629,26 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  j .......... ...9...0..   0   0    0  999    1   0    0    1    0   0
   8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
   8  24,-10  g .......... ...90...0.   0   0    0    0    1   0    0    0    0   0
-  8  26,-10  w .......... ..........  97   0    0 6405 2484   0  367  452    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........  96   0    0 6407 2493   0  358  455    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  2  12,8    w .......... ..........   0   0    0  685 1058   0  167    0    0   0
+  2  12,8    w .......... ..........   0   0    0  676 1057   0  166    0    0   0
   2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
   2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  11,9    g .......... ...90..0..   0   0    0  999    1   0    0    0    0   0
   2  15,9    o .......... ......0...   0   0    0    0    0   0    1    0    0   0
@@ -11687,11 +11687,11 @@ own   sect        eff  min gold fert oil uran
   1    1,-15  k  100%    6    0   67   1    0
   1    3,-15  j  100%   11    0   61   0    0
   1    5,-15  c  100%   28    5   37   0    0
-  1    7,-15  o% 100%    0    0   76  24    0
+  1    7,-15  o% 100%    0    0   76  25    0
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
   8   17,-15  of 100%    0    0  100   1    0
-  8   19,-15  -    1%    0    0  100 100    0
+  8   19,-15  -   11%    0    0  100 100    0
   8   23,-15  k  100%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
   1    6,-14  m  100%  100   69    0   0   97
@@ -11700,8 +11700,8 @@ own   sect        eff  min gold fert oil uran
   1   12,-14  =  100%    0    0   45  11    0
   1   14,-14  =  100%    0    0   63  46    0
   1   16,-14  )  100%    0    0  100  98    0
-  8   18,-14  o  100%    0    0   91  35    0
-  8   20,-14  -   13%    0    0   82  58    0
+  8   18,-14  o  100%    0    0   91  36    0
+  8   20,-14  -    1%    0    0   82  58    0
   8   22,-14  g! 100%   50    0    6   0    0
   8   24,-14  l  100%   45    0   13   0    0
   1    3,-13  j  100%   23    1   43   0    0
@@ -11719,14 +11719,14 @@ own   sect        eff  min gold fert oil uran
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  j  100%   50    0    6   0    0
   1   12,-12  d  100%   63    0    0   0   17
-  8   20,-12  j  100%   74    0    0   0   37
+  8   20,-12  j  100%   74    1    0   0   37
   8   22,-12  m  100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
   8   28,-12  gd 100%   91    0    0   0   68
-  8   30,-12  c    0%   23    1   43   0    0
+  8   30,-12  c    4%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  *  100%   91    0    0   0   68
   1    9,-11  r  100%   85    0    0   0   57
@@ -11741,12 +11741,12 @@ own   sect        eff  min gold fert oil uran
   8   31,-11  i  100%    0    0  100 100    0
  10  -12,-10  c  100%  100  100  100 100  100
  10  -10,-10  c  100%  100  100  100 100  100
-  1    4,-10  o  100%    0    0  100  20    0
+  1    4,-10  o  100%    0    0  100  21    0
   1    6,-10  +  100%    0    0  100 100    0
   1   10,-10  p  100%    0    0  100  98    0
   8   20,-10  j  100%   78    0    0   0   45
   8   22,-10  j  100%    6    0   67  32    0
-  8   24,-10  gk 100%   67    0    0   0   25
+  8   24,-10  gk 100%   67    1    0   0   25
   8   26,-10  w  100%   17    0   52   7    0
   9  -25,-7   g  100%   28    0   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
@@ -11769,9 +11769,9 @@ own   sect        eff  min gold fert oil uran
   3   -3,9    g  100%  100    0    0   0  100
   2    9,9    +    0%    6    0   67  32    0
   2   11,9    gj 100%   56    0    0   0    5
-  2   15,9    o  100%    0    0  100  77    0
+  2   15,9    o  100%    0    0  100  78    0
   2   17,9    b  100%   34    0   28   0    0
-  2   19,9    g  100%   78    4    0   0   45
+  2   19,9    g  100%   78    3    0   0   45
   2   21,9    g   90%   74   38    0   0   37
   2   23,9    g    0%   39   14   21   0    0
   3   -4,10   c  100%  100  100  100 100  100
@@ -11809,11 +11809,11 @@ Player 01 Turn 16 starting
        -=O=-
 You have a new telegram waiting ...
 
-[0:640] Command : Total movement cost = 10
-117 mob left in 1,-1
+[0:640] Command : Total movement cost = 9
+118 mob left in 1,-1
 
-[0:639] Command : Total movement cost = 5
-122 mob left in 3,-1
+[0:639] Command : Total movement cost = 4
+123 mob left in 3,-1
 
 [0:638] Command : Total movement cost = 9
 118 mob left in 2,-2
@@ -11866,13 +11866,13 @@ f1   Sopwith Camel #0 equipped
 
 Reconnaissance report
 Thu Jan  1 00:00:00 1970
-Your radar installation 100% efficient with 1000 civ with 28 mil @ 11,-1
+Your radar installation 100% efficient with 999 civ with 28 mil @ 11,-1
 8 (#8) fortress 100% efficient with approx 775 civ with approx 50 mil @ 12,-2
-firing 5 flak guns in 12,-2...
-    f1   Sopwith Camel #0 takes 11.
+firing 4 flak guns in 12,-2...
+    f1   Sopwith Camel #0 takes 7.
 8 (#8) wilderness 100% efficient with approx 775 civ @ 14,-2
 8 (#8) oil field 100% efficient with approx 775 civ @ 13,-1
-Your radar installation 100% efficient with 1000 civ with 28 mil @ 11,-1
+Your radar installation 100% efficient with 999 civ with 28 mil @ 11,-1
 
 [0:622] Command : No escorts...
 target sector is 14,-2
@@ -11882,7 +11882,7 @@ f1   Sopwith Camel #1 equipped
 flying over radar installation at 11,-1
 flying over fortress at 12,-2
 firing 4 flak guns in 12,-2...
-    f1   Sopwith Camel #1 takes 8.
+    f1   Sopwith Camel #1 takes 4.
 flying over wilderness at 14,-2
 Blam
 did 9 damage in 14,-2
@@ -11890,45 +11890,45 @@ did 9 damage in 14,-2
 [0:620] Command : f1   Sopwith Camel #2 on an offensive support mission, centered on 11,-1, radius 2
 1 plane
 
-[0:618] Command : range is 2.00 (1.47)
+[0:618] Command : range is 1.00 (1.47)
 \aKaboom!!!
-Shells hit sector 12,-2 for 39 damage.
+Shells hit sector 12,-2 for 38 damage.
 \a
 Defenders fire back!
-Return fire hit sector 11,-1 for 34 damage.
-       cav  cavalry #4 takes 4
-       art  artillery #5 takes 4
+Return fire hit sector 11,-1 for 25 damage.
+       cav  cavalry #4 takes 3
+       art  artillery #5 takes 3
 
 [0:617] Command : 12,-2 is a 90% 8 fortress with approximately 50 military.
-Number of mil from radar installation at 11,-1 (max 22) : cav  cavalry #4 has a base attack value of 6
-attack with cav  cavalry #4 in 11,-1 (~ 96%) [ynYNq?] No troops for attack...
+Number of mil from radar installation at 11,-1 (max 23) : cav  cavalry #4 has a base attack value of 6
+attack with cav  cavalry #4 in 11,-1 (~ 97%) [ynYNq?] No troops for attack...
 Attack aborted
 No troops for attack...
 
 [0:614] Command : 12,-2 is a 90% 8 fortress with approximately 50 military.
-Number of mil from radar installation at 11,-1 (max 22) : cav  cavalry #4 has a base attack value of 6
-attack with cav  cavalry #4 in 11,-1 (~ 96%) [ynYNq?] art  artillery #5 has no offensive strength
+Number of mil from radar installation at 11,-1 (max 23) : cav  cavalry #4 has a base attack value of 6
+attack with cav  cavalry #4 in 11,-1 (~ 97%) [ynYNq?] art  artillery #5 has no offensive strength
 
              Initial attack strength:        7
 flying over radar installation at 11,-1
 flying over fortress at 12,-2
-firing 5 flak guns in 12,-2...
-    f1   Sopwith Camel #2 takes 7.
+firing 4 flak guns in 12,-2...
+    f1   Sopwith Camel #2 takes 5.
 blam
 
                support values
                forts   ships   units   planes
-attacker       0.00    0.00    0.38    0.08
-               Final attack strength:       10
-              Final defense strength:      187
-                          Final odds:        5%
-@@@@@@
+attacker       0.00    0.00    0.21    0.12
+               Final attack strength:        9
+              Final defense strength:      190
+                          Final odds:        4%
+@@!@@@@
 - Casualties -
      Yours: 6
-    Theirs: 0
-Papershuffling ... 0.9 B.T.U
+    Theirs: 1
+Papershuffling ... 1.1 B.T.U
 You have been defeated!
-cav  cavalry #4 damaged from 96% to 71%
+cav  cavalry #4 damaged from 97% to 72%
 You have a new telegram waiting ...
 
 [0:611] Command :      1111111---------0000000000111111111122222
@@ -11957,36 +11957,36 @@ You have a new telegram waiting ...
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
    1,-3   j  100%     127 .. ..      999    0    0    0 100%    0        0   1
-  -4,-2   k  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+  -4,-2   k  100%     127 .. ..     1000    0    0    0 100%    1        0   1
   -2,-2   j  100%     127 .. ..     1000    0    0    0 100%    0        0   1
    0,-2   c  100%     127 .. ..     1000    0    0    0 100%  599        0   1
    2,-2   %  100%     118 .. ..      770    0    0    0 100%  343        0   1
-   4,-2   t  100%     122 .. ..      770    0    0    0 100%  359        0   1
+   4,-2   t  100%     122 .. ..      769    0    0    0 100%  359        0   1
    6,-2   l  100%     122 .. ..      770    0    0    0 100%  149        0   1
   -1,-1   b  100%     127 .. ..     1000    0    0    0 100%  299        0   1
-   1,-1   m  100%     117 .. ..      770    0    0    0 100%    0        0
-   3,-1   m  100%     122 .. ..      770    0    0    0 100%    1        0
+   1,-1   m  100%     118 .. ..      769    0    0    0 100%    0        0
+   3,-1   m  100%     123 .. ..      770    0    0    0 100%    0        0
    5,-1   h  100%     127 .. ..      740    5    0    0 100%  188        0   1
    7,-1   =  100%     127 .. ..      100    0    0    0 100%   59        0   1
    9,-1   =  100%     127 .. ..      100    0    0    0 100%   59        0   1
-  11,-1   )   82%      99 .. 0.      820   22    1    0 100%  497        0   1
-  -2,0    j  100%     127 .. ..      999    0    0    0 100%    0        0   1
+  11,-1   )   86%     104 .. 0.      859   23    1    0 100%  521        0   1
+  -2,0    j  100%     127 .. ..     1000    0    0    0 100%    0        0   1
    0,0    m  100%     127 .. ..      999    0    0    0 100%    0        0
-   2,0    m  100%     127 .. 5.      999    0  579    0 100%    0        0
+   2,0    m  100%     127 .. 5.     1000    0  579    0 100%    0        0
    4,0    k  100%     127 .. 8.      999    0  869    0 100%    0        0   1
-  -1,1    k  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+  -1,1    k  100%     127 .. ..     1000    0    0    0 100%    1        0   1
    1,1    m  100%     127 .. ..     1000    0    0    0 100%    0        0
    3,1    m  100%     127 .. 5.     1000    0  260    0 100%    0        0
-   5,1    j  100%     127 .. 5.      999    0    0    0 100%    0        0   1
-   7,1    d  100%     127 .. ..     1000    0    0    0 100%  439        0   1
-  -2,2    i  100%     127 .. ..     1000    0    0    0 100%    0        0   1
-   0,2    m  100%     127 .. ..      999    0    0    0 100%    0        0
+   5,1    j  100%     127 .. 5.     1000    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..      999    0    0    0 100%  439        0   1
+  -2,2    i  100%     127 .. ..     1000    0    0    0 100%    2        0   1
+   0,2    m  100%     127 .. ..     1000    0    0    0 100%    0        0
    2,2    *  100%      98 .. ..     1000   30    0    0 100%  518        0   1
-   4,2    r  100%     127 .. ..     1000    0    0    0 100%  439        0   1
-   6,2    w  100%     127 .. ..     1000   71    0    0 100%  610        0   1
-   8,2    e  100%     127 .. ..      966    1    0    0 100%  599        0   1
-  10,2    !  100%     127 .. ..     1000   25    0    0 100%  605        0   1
-  -1,3    o  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+   4,2    r  100%     127 .. ..      999    0    0    0 100%  439        0   1
+   6,2    w  100%     127 .. ..     1000   72    0    0 100%  610        0   1
+   8,2    e  100%     127 .. ..      967    1    0    0 100%  599        0   1
+  10,2    !  100%     127 .. ..      999   25    0    0 100%  605        0   1
+  -1,3    o  100%     127 .. ..      999    0    0    0 100%    3        0   1
    1,3    +  100%     127 .. ..     1000    0    0    0 100%  599        0   1
    5,3    p  100%     127 .. ..     1000    0    0    0 100%  524        0   1
 33 sectors
@@ -12002,14 +12002,14 @@ CENSUS                   del dst
 [0:611] Command :    # unit type          x,y   a   eff mil frt  mu  fd tch retr xl ln carry
    0 cav  cavalry       5,-1     100%  20   0 127   0  31  42%  0  0    1S
    3 cav  cavalry       5,-1     100%   1  57 127   0  31  42%  0  0
-   4 cav  cavalry      11,-1      71%   0   0  94   0  31  42%  0  0
-   5 art  artillery    11,-1      96%   5   0  57   0  37  42%  0  0
+   4 cav  cavalry      11,-1      72%   0   0  95   0  31  42%  0  0
+   5 art  artillery    11,-1      97%   5   0  58   0  37  42%  0  0
 4 units
 
 [0:611] Command :    #    type                x,y    w   eff  mu def tech ran hard carry special
-   0 f1   Sopwith Camel    11,-1       89%  30   1   51   4    0      
-   1 f1   Sopwith Camel    11,-1       92%  31   1   51   4    0      
-   2 f1   Sopwith Camel    11,-1       93%  42   1   51   4    0      
+   0 f1   Sopwith Camel    11,-1       93%  32   1   51   4    0      
+   1 f1   Sopwith Camel    11,-1       96%  33   1   51   4    0      
+   2 f1   Sopwith Camel    11,-1       95%  43   1   51   4    0      
 3 planes
 
 [0:611] Command :      --------00000000001111111
@@ -12028,20 +12028,20 @@ CENSUS                   del dst
 
 [0:611] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
-technological breakthroughs (11.25) produced in 4,-2
+technological breakthroughs (11.29) produced in 4,-2
 a class of graduates (450.00) produced in 6,-2
-medical discoveries (7.50) produced in 4,2
+medical discoveries (7.53) produced in 4,2
 happy strollers (75.00) produced in 5,3
  75 happiness, 450 education produced
-total pop was 31450, yielding 12.08 hap, 43.62 edu
-7.2650 technology (4.4918 + 2.7732), 3.7041 research (3.7041 + 0.0000) produced
+total pop was 31448, yielding 12.07 hap, 43.62 edu
+7.2705 technology (4.4970 + 2.7735), 3.7091 research (3.7091 + 0.0000) produced
 Army delta $-138, Navy delta $-1650, Air force delta $-1227
-money delta was $5191 for this update
+money delta was $5179 for this update
 
 > BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
 Flying a support mission from 11,-1 to 12,-2
        f1   Sopwith Camel #2 pinbombing 8  in 12,-2
-               hit 8  for 8 damage
+               hit 8  for 12 damage
 
 
 [0:611] Command : Thu Jan  1 00:00:00 1970
@@ -12050,26 +12050,26 @@ PRODUCTION SIMULATION
    1,-3   j 100%   600  524l 0.87 $0     600i            600i             524
   -4,-2   k 100%   600  262h 0.87 $0     600i            600i             262
   -2,-2   j 100%   600  524l 0.87 $0     600i            600i             524
-   2,-2   % 100%   600  461p 7.95 $58     58o            126o             999
-   4,-2   t 100%   600 11.43 0.76 $4500   15d  75o 150l   38d 190o 380l 28.96
+   2,-2   % 100%   600  453p 7.95 $57     57o            126o             999
+   4,-2   t 100%   599 11.46 0.76 $4500   15d  75o 150l   37d 185o 370l 28.27
    6,-2   l 100%   600  450  1.00 $4050  450l            600l             600
   -1,-1   b 100%   600    0b 1.00 $0       0d            600d             120
-   1,-1   m 100%   600  600i 1.00 $0                                      600
+   1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m  96%   600  576i 1.00 $0                                      576
   -2,0    j 100%   600  523l 0.87 $0     599i            600i             524
    0,0    m 100%   600  600i 1.00 $0                                      600
    2,0    m 100%   999  999i 1.00 $0                                      999
-   4,0    k 100%  1199  524h 0.87 $0    1200i           1200i             524
+   4,0    k 100%  1199  523h 0.87 $0    1198i           1198i             523
   -1,1    k 100%   600  262h 0.87 $0     600i            600i             262
    1,1    m 100%   600  600i 1.00 $0                                      600
    3,1    m 100%   779  779i 1.00 $0                                      779
    5,1    j 100%   600  524l 0.87 $0     600i            600i             524
-   7,1    d 100%   600    8g 0.79 $300    10o  50l 100h   38o 190l 380h    30
+   7,1    d 100%   600    8g 0.79 $300    10o  50l 100h   37o 185l 370h    29
   -2,2    i 100%   600  159s 0.79 $600   400l 200h       400l 200h        159
    0,2    m 100%   600  600i 1.00 $0                                      600
-   4,2    r 100%   600  7.62 0.76 $900    10d  50o 100l   38d 190o 380l 28.96
+   4,2    r 100%   600  7.64 0.76 $900    10d  50o 100l   37d 185o 370l 28.27
    8,2    e 100%   600   33m 1.00 $99     33c             33c             499
-  -1,3    o   8%   600   42o 0.87 $0                                       42
+  -1,3    o   9%   600   47o 0.87 $0                                       47
    5,3    p 100%   600   75  1.00 $675    75l            600l             600
 24 sectors
 
@@ -12117,34 +12117,34 @@ You have a new telegram waiting ...
 [0:629] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-2   +    0%     127 .. ..        3    0    0    0 100%    1        0   1
-  -4,-2   w   89%     104 .. ..        1    0    0    0 100%    0        0   1
+  -6,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -4,-2   w   89%     105 .. ..        1    0    0    0 100%    0        0   1
    2,-2   c   38%     127 .. ..       50    0    0    0 100%   20        0   1
-  -7,-1   +    0%     127 .. ..        2    0    0    0 100%    0        0   1
-  -5,-1   j  100%     127 .. 5.      769    0  254    0 100%    0        0   1
-  -1,-1   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -7,-1   +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -5,-1   j  100%     127 .. 5.      769    0  240    0 100%    0        0   1
+  -1,-1   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
    1,-1   b  100%     127 .. ..      385    0    0    0 100%    0        0   1
    3,-1   gl 100%     127 .. ..      300    0    0    0 100%    0        0   1
-   5,-1   gk 100%     127 .. ..      769    0    0    0 100%    1        0   1
-   7,-1   g  100%     127 .. ..      400    0    0    0 100%    0        0   1
+   5,-1   gk 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   7,-1   g  100%     127 .. ..      400    0    0    0 100%    1        0   1
   -6,0    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
-  -4,0    g    0%     127 .. ..      504    0    0    0 100%    1        0   1
+  -4,0    g    1%     127 .. ..      498    0    0    0 100%    1        0   1
   -2,0    g    1%     127 .. ..        5    0    0    0 100%    1        0   1
    0,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
    2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
-   4,0    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
-  -7,1    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
-  -5,1    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
-  -3,1    g    1%     127 .. ..        6    0    0    0 100%    2        0
-  -1,1    g    0%     127 .. ..        4    0    0    0 100%    1        0
-   1,1    g    0%     127 .. ..        4    0    0    0 100%    1        0
-   3,1    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   4,0    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -7,1    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -5,1    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -3,1    g    1%     127 .. ..        5    0    0    0 100%    1        0
+  -1,1    g    1%     127 .. ..        5    0    0    0 100%    1        0
+   1,1    g    1%     127 .. ..        5    0    0    0 100%    1        0
+   3,1    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
   -4,2    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
-  -2,2    g    1%     127 .. ..        5    0    0    0 100%    1        0
+  -2,2    g    0%     127 .. ..        2    0    0    0 100%    1        0
    0,2    g    1%     127 .. ..        5    0    0    0 100%    1        0
    2,2    g    1%     127 .. ..        5    0    0    0 100%    1        0   1
   -3,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
-  -1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -1,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
    1,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
    3,3    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
 30 sectors
@@ -12168,22 +12168,22 @@ CENSUS                   del dst
 [0:629] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
   0 happiness,   0 education produced
-total pop was 4867, yielding 0.00 hap, 0.00 edu
-2.5096 technology (0.0000 + 2.5096), 1.8521 research (0.0000 + 1.8521) produced
-money delta was $1461 for this update
+total pop was 4866, yielding 0.00 hap, 0.00 edu
+2.5110 technology (0.0000 + 2.5110), 1.8546 research (0.0000 + 1.8546) produced
+money delta was $1456 for this update
 
 
 [0:629] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -5,-1   j 100%   774  602l 0.78 $0     774i            774i             602
-  -1,-1   o  31%   599  145o 0.78 $0                                      145
+  -5,-1   j 100%   765  595l 0.78 $0     765i            765i             595
+  -1,-1   o  32%   599  148o 0.78 $0                                      148
    1,-1   b 100%   300   60b 1.00 $600   300d            300d              60
-   3,-1   l  92%   117  108  1.00 $972   108l            108l             108
+   3,-1   l  92%   117  107  1.00 $963   107l            107l             107
    5,-1   k 100%   474  184h 0.78 $0     474i            474i             184
-   7,-1   g   8%   312   25d 1.00 $0                                       25
-  -6,0    g  19%   499   95d 1.00 $0                                       95
-  -4,0    g  33%   293   97d 1.00 $0                                       97
+   7,-1   g   8%   312   24d 1.00 $0                                       24
+  -6,0    g  19%   499   94d 1.00 $0                                       94
+  -4,0    g  33%   289   95d 1.00 $0                                       95
    0,0    m 100%   998  998i 1.00 $0                                      998
    2,0    m 100%   998  998i 1.00 $0                                      998
 10 sectors
@@ -12220,35 +12220,35 @@ You have two new telegrams waiting ...
 [0:637] Command : Thu Jan  1 00:00:00 1970
 CENSUS                   del dst
   sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
-  -6,-4   f   91%     116 .. ..      700   50    0    0 100%  444        0   1
-  -4,-4   -o  96%     122 .. ..      738    0    0    0 100%  480        0   1
+  -6,-4   f   91%     115 .. ..      700   50    0    0 100%  443        0   1
+  -4,-4   -o  95%     121 .. ..      730    0    0    0 100%  485        0   1
    0,-4   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
-  -5,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -3,-3   -  100%     127 .. ..      769    0    0    0 100%  512        0   1
+  -5,-3   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -3,-3   -  100%     127 .. ..      769    0    0    0 100%  500        0   1
   -1,-3   !  100%     127 .. ..      769    0    0    0 100%  474        0   1
    1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
   -4,-2   *  100%     127 .. ..      769    0    0    0 100%  474        0   1
-  -2,-2   m  100%     127 .. ..      769    0    0    0 100%    1        0
+  -2,-2   m  100%     127 .. ..      769    0    0    0 100%    0        0
    0,-2   m  100%     127 .. ..      769    0    0    0 100%    0        0
    2,-2   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
    4,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    6,-2   t  100%     127 .. ..      769    0    0    0 100%  119        0   1
   -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
-  -1,-1   m  100%     127 .. 5.      769    0  387    0 100%    0        0
+  -1,-1   m  100%     127 .. 5.      769    0  385    0 100%    0        0
    1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
    3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
    5,-1   d  100%     127 .. ..      769    0    0    0 100%  314        0
-   7,-1   c  100%     127 .. ..      769    0    0    0 100%  499        0   1
+   7,-1   c  100%     127 .. ..      769    0    0    0 100%  503        0   1
   -2,0    p  100%     127 .. ..      769    0    0    0 100%  474        0   1
    0,0    m  100%     127 .. 5.      769    0  512    0 100%    0        0
    2,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
    4,0    b  100%     127 .. ..      769    0    0    0 100%  299        0   1
    6,0    h  100%     127 .. ..      769    0    0    0 100%  599        0   1
-   8,0    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   8,0    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
   -3,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
   -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
    1,1    k  100%     127 .. ..      769    0    0    0 100%  474        0   1
-   3,1    w  100%     116 .. ..     7459    0    0    0 100%  600        0   1
+   3,1    w  100%     116 .. ..     7460    0    0    0 100%  600        0   1
 29 sectors
 
 [0:637] Command :      --------00000000001
@@ -12270,64 +12270,64 @@ CENSUS                   del dst
 [0:637] Command : 
 > Production Report   dated Thu Jan  1 00:00:00 1970
 a class of graduates (300.00) produced in 1,-3
-technological breakthroughs (23.37) produced in 6,-2
+technological breakthroughs (23.38) produced in 6,-2
   0 happiness, 300 education produced
-total pop was 24740, yielding 0.00 hap, 38.65 edu
-7.7924 technology (5.5465 + 2.2459), 1.8521 research (0.0000 + 1.8521) produced
-money delta was $772 for this update
+total pop was 24684, yielding 0.00 hap, 38.71 edu
+7.7956 technology (5.5471 + 2.2485), 1.8546 research (0.0000 + 1.8546) produced
+money delta was $712 for this update
 
 > BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
 1 planes spotted over -6,-4
-firing 5 flak guns in -6,-4...
+firing 4 flak guns in -6,-4...
 1 planes spotted over -4,-4
 1 planes spotted over -5,-3
 1 planes spotted over -6,-4
 firing 4 flak guns in -6,-4...
 1 planes spotted over -4,-4
 1 bombing raid did 9 damage in -4,-4
-Country #1 shelled sector -6,-4 for 39 damage.
-Return fire hit sector -7,-3 for 34 damage.
+Country #1 shelled sector -6,-4 for 38 damage.
+Return fire hit sector -7,-3 for 25 damage.
 1 (#1) considered attacking you @-6,-4
 1 (#1) considered attacking you @-6,-4
-Scouts report attacking unit: cav  cavalry #4 (eff 95, mil 10, tech 28)
+Scouts report attacking unit: cav  cavalry #4 (eff 95, mil 10, tech 12)
 1 planes spotted over -6,-4
-firing 5 flak guns in -6,-4...
+firing 4 flak guns in -6,-4...
 
 Odds are good for us...support cancelled.
 
 
                support values
                forts   ships   units   planes
-attacker       0.00    0.00    0.38    0.08
+attacker       0.00    0.00    0.21    0.12
 1 (#1) lost 6 troops attacking -6,-4
-We lost 0 troops defending
+We lost 1 troops defending
 
 
 [0:637] Command : Thu Jan  1 00:00:00 1970
 PRODUCTION SIMULATION
    sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
-  -4,-4   o 100%   451  381o 0.85 $0                                      381
-   0,-4   k 100%   599  254h 0.85 $0     600i            600i             254
-  -5,-3   o  14%   599   71o 0.85 $0                                       71
+  -4,-4   o 100%   445  376o 0.85 $0                                      376
+   0,-4   k 100%   599  253h 0.85 $0     598i            598i             253
+  -5,-3   o  14%   599   70o 0.85 $0                                       70
    1,-3   l 100%   599  400  1.00 $3600  400l            599l             599
   -2,-2   m  96%   599  575i 1.00 $0                                      575
    0,-2   m 100%   599  599i 1.00 $0                                      599
-   2,-2   k 100%   599  254h 0.85 $0     600i            600i             254
+   2,-2   k 100%   599  253h 0.85 $0     598i            598i             253
    4,-2   j 100%   599  506l 0.85 $0     599i            599i             506
-   6,-2   t 100%   599 23.31 0.78 $9000   30d 150o 300l   37d 185o 370l 28.75
+   6,-2   t 100%   599 23.32 0.78 $9000   30d 150o 300l   37d 185o 370l 28.76
   -3,-1   j 100%   599  506l 0.85 $0     599i            599i             506
-  -1,-1   m 100%   866  866i 1.00 $0                                      866
+  -1,-1   m 100%   864  864i 1.00 $0                                      864
    1,-1   m 100%   599  599i 1.00 $0                                      599
    3,-1   m 100%   599  599i 1.00 $0                                      599
    5,-1   d 100%   599    0g 0.71 $0       0o   0l   0h   37o 185l 370h    26
   -2,0    p 100%   599   75  1.00 $675    75l            599l             599
    0,0    m 100%   952  952i 1.00 $0                                      952
    2,0    m 100%   965  965i 1.00 $0                                      965
-   4,0    b 100%   599   60b 1.00 $600   300d            600d             120
-   8,0    i 100%   599   61s 0.71 $258   172l  86h       400l 200h        142
+   4,0    b 100%   599   60b 1.00 $600   300d            595d             119
+   8,0    i 100%   599   61s 0.71 $258   172l  86h       398l 199h        141
   -3,1    j 100%   599  506l 0.85 $0     599i            599i             506
   -1,1    j 100%   599  506l 0.85 $0     599i            599i             506
-   1,1    k 100%   599  254h 0.85 $0     600i            600i             254
+   1,1    k 100%   599  253h 0.85 $0     598i            598i             253
 22 sectors
 
 [0:637] Command : Bye-bye
@@ -12342,159 +12342,159 @@ Update Turn 99 starting
       as of Thu Jan  1 00:00:00 1970
 
          sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
-        1  33   99%  31K 230  650   29  993  8.9K 583  1.0K   3    5    4   50K
-   754.30
-        8  29  100%  29K 105  205    7    0   16K 2.5K 543    0    0    0   22K
-   446.86
-        2  30   31% 6.3K   0    0    0    0  3.2K 1.3K 522    0    0    0   36K
-    76.87
-        6   3  100% 3.0K 110    0    0    0    0  389    0    0    0    0   37K
-    39.43
-        3   3  100% 3.0K 110    0    0    0    0  374    0    0    0    0   37K
-    39.28
-        5   3  100% 3.0K 110    0    0    0    0  368    0    0    0    0   37K
-    39.21
-        7   3  100% 3.0K 110    0    0    0    0  340    0    0    0    0   37K
-    38.94
-        4   3  100% 3.0K 110    0    0    0    0  298    0    0    0    0   37K
-    38.52
-       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   37K
-    37.85
-        9   3  100% 3.0K 110    0    0    0    0   18    0    0    0    0   37K
-    35.73
+        1  33  100%  31K 232  649   30  993  8.9K 585  1.0K   3    5    4   48K
+   753.29
+        8  29  100%  29K 105  203    6    0   16K 2.5K 537    0    0    0   21K
+   446.48
+        2  30   31% 6.3K   0    0    0    0  3.2K 1.3K 526    0    0    0   36K
+    76.80
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   37K
+    39.51
+        3   3  100% 3.0K 110    0    0    0    0  377    0    0    0    0   37K
+    39.32
+        5   3  100% 3.0K 110    0    0    0    0  372    0    0    0    0   37K
+    39.26
+        7   3  100% 3.0K 110    0    0    0    0  346    0    0    0    0   37K
+    39.01
+        4   3  100% 3.0K 110    0    0    0    0  295    0    0    0    0   37K
+    38.50
+       10   3  100% 3.0K 110    0    0    0    0  226    0    0    0    0   37K
+    37.80
+        9   3  100% 3.0K 110    0    0    0    0   31    0    0    0    0   37K
+    35.86
           ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
-worldwide 113   81%  87K 1.1K 855   36  993   28K 6.4K 2.1K   3    5    4  368K
+worldwide 113   82%  87K 1.1K 852   36  993   28K 6.4K 2.1K   3    5    4  366K
 
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
  #    name                tech      research   education   happiness capital
  0     POGO               0.00        0.00        0.00        0.00     0,0   
- 1     1                 58.69       18.12       37.05       11.95     5,-15 
- 2     2                 24.93        9.06        0.00        0.00    18,8   
- 3     3                 24.93        9.06        0.00        0.00    -4,10  
- 4     4                 24.93        9.06        0.00        0.00   -15,1   
- 5     5                 24.93        9.06        0.00        0.00   -30,8   
- 6     6                 24.93        9.06        0.00        0.00     2,-2  
- 7     7                 24.93        9.06        0.00        0.00    24,0   
- 8     8                 44.58        9.06       39.86        0.00    30,-12 
- 9     9                 24.93        9.06        0.00        0.00   -26,-6  
- 10    10                24.93        9.06        0.00        0.00   -12,-10 
+ 1     1                 58.70       18.13       37.38       12.03     5,-15 
+ 2     2                 24.94        9.07        0.00        0.00    18,8   
+ 3     3                 24.94        9.07        0.00        0.00    -4,10  
+ 4     4                 24.94        9.07        0.00        0.00   -15,1   
+ 5     5                 24.94        9.07        0.00        0.00   -30,8   
+ 6     6                 24.94        9.07        0.00        0.00     2,-2  
+ 7     7                 24.94        9.07        0.00        0.00    24,0   
+ 8     8                 44.59        9.07       39.92        0.00    30,-12 
+ 9     9                 24.94        9.07        0.00        0.00   -26,-6  
+ 10    10                24.94        9.07        0.00        0.00   -12,-10 
  11    visitor            0.00        0.00        0.00        0.00     0,0   
 
 [0:630] Command : Thu Jan  1 00:00:00 1970
     CENSUS                   del dst
 own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1    6,-16  j  100%     127 .. ..      999    0    0    0 100%    0    0   1
-  1    1,-15  k  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    1,-15  k  100%     127 .. ..     1000    0    0    0 100%    1    0   1
   1    3,-15  j  100%     127 .. ..     1000    0    0    0 100%    0    0   1
   1    5,-15  c  100%     127 .. ..     1000    0    0    0 100%  599    0   1
   1    7,-15  %  100%     118 .. ..      770    0    0    0 100%  343    0   1
-  1    9,-15  t  100%     122 .. ..      770    0    0    0 100%  359    0   1
+  1    9,-15  t  100%     122 .. ..      769    0    0    0 100%  359    0   1
   1   11,-15  l  100%     122 .. ..      770    0    0    0 100%  149    0   1
-  8   17,-15  f   91%     116 .. ..      700   50    0    0 100%  444    0   1
-  8   19,-15  -o  96%     122 .. ..      738    0    0    0 100%  480    0   1
+  8   17,-15  f   91%     115 .. ..      700   50    0    0 100%  443    0   1
+  8   19,-15  -o  95%     121 .. ..      730    0    0    0 100%  485    0   1
   8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   1    4,-14  b  100%     127 .. ..     1000    0    0    0 100%  299    0   1
-  1    6,-14  m  100%     117 .. ..      770    0    0    0 100%    0    0
-  1    8,-14  m  100%     122 .. ..      770    0    0    0 100%    1    0
+  1    6,-14  m  100%     118 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  m  100%     123 .. ..      770    0    0    0 100%    0    0
   1   10,-14  h  100%     127 .. ..      740    5    0    0 100%  188    0   1
   1   12,-14  =  100%     127 .. ..      100    0    0    0 100%   59    0   1
   1   14,-14  =  100%     127 .. ..      100    0    0    0 100%   59    0   1
-  1   16,-14  )   82%      99 .. 0.      820   22    1    0 100%  497    0   1
-  8   18,-14  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   20,-14  -  100%     127 .. ..      769    0    0    0 100%  512    0   1
+  1   16,-14  )   86%     104 .. 0.      859   23    1    0 100%  521    0   1
+  8   18,-14  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   20,-14  -  100%     127 .. ..      769    0    0    0 100%  500    0   1
   8   22,-14  !  100%     127 .. ..      769    0    0    0 100%  474    0   1
   8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
-  1    3,-13  j  100%     127 .. ..      999    0    0    0 100%    0    0   1
+  1    3,-13  j  100%     127 .. ..     1000    0    0    0 100%    0    0   1
   1    5,-13  m  100%     127 .. ..      999    0    0    0 100%    0    0
-  1    7,-13  m  100%     127 .. 5.      999    0  579    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.     1000    0  579    0 100%    0    0
   1    9,-13  k  100%     127 .. 8.      999    0  869    0 100%    0    0   1
   8   19,-13  *  100%     127 .. ..      769    0    0    0 100%  474    0   1
-  8   21,-13  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  8   21,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   23,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
   8   25,-13  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
   8   27,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  119    0   1
-  1    4,-12  k  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    4,-12  k  100%     127 .. ..     1000    0    0    0 100%    1    0   1
   1    6,-12  m  100%     127 .. ..     1000    0    0    0 100%    0    0
   1    8,-12  m  100%     127 .. 5.     1000    0  260    0 100%    0    0
-  1   10,-12  j  100%     127 .. 5.      999    0    0    0 100%    0    0   1
-  1   12,-12  d  100%     127 .. ..     1000    0    0    0 100%  439    0   1
+  1   10,-12  j  100%     127 .. 5.     1000    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..      999    0    0    0 100%  439    0   1
   8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
-  8   22,-12  m  100%     127 .. 5.      769    0  387    0 100%    0    0
+  8   22,-12  m  100%     127 .. 5.      769    0  385    0 100%    0    0
   8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
   8   28,-12  d  100%     127 .. ..      769    0    0    0 100%  314    0
-  8   30,-12  c  100%     127 .. ..      769    0    0    0 100%  499    0   1
+  8   30,-12  c  100%     127 .. ..      769    0    0    0 100%  503    0   1
  10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  1    3,-11  i  100%     127 .. ..     1000    0    0    0 100%    0    0   1
-  1    5,-11  m  100%     127 .. ..      999    0    0    0 100%    0    0
+  1    3,-11  i  100%     127 .. ..     1000    0    0    0 100%    2    0   1
+  1    5,-11  m  100%     127 .. ..     1000    0    0    0 100%    0    0
   1    7,-11  *  100%      98 .. ..     1000   30    0    0 100%  518    0   1
-  1    9,-11  r  100%     127 .. ..     1000    0    0    0 100%  439    0   1
-  1   11,-11  w  100%     127 .. ..     1000   71    0    0 100%  610    0   1
-  1   13,-11  e  100%     127 .. ..      966    1    0    0 100%  599    0   1
-  1   15,-11  !  100%     127 .. ..     1000   25    0    0 100%  605    0   1
+  1    9,-11  r  100%     127 .. ..      999    0    0    0 100%  439    0   1
+  1   11,-11  w  100%     127 .. ..     1000   72    0    0 100%  610    0   1
+  1   13,-11  e  100%     127 .. ..      967    1    0    0 100%  599    0   1
+  1   15,-11  !  100%     127 .. ..      999   25    0    0 100%  605    0   1
   8   21,-11  p  100%     127 .. ..      769    0    0    0 100%  474    0   1
   8   23,-11  m  100%     127 .. 5.      769    0  512    0 100%    0    0
   8   25,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
   8   27,-11  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
   8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  599    0   1
-  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
- 10  -12,-10  c  100%     127 .. ..     1000   55  697    0 100% 1030    0
- 10  -10,-10  c  100%     127 .. ..     1000   55  698    0 100% 1031    0   1
-  1    4,-10  o  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  699    0 100% 1032    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  703    0 100% 1034    0   1
+  1    4,-10  o  100%     127 .. ..      999    0    0    0 100%    3    0   1
   1    6,-10  +  100%     127 .. ..     1000    0    0    0 100%  599    0   1
   1   10,-10  p  100%     127 .. ..     1000    0    0    0 100%  524    0   1
   8   20,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
   8   24,-10  k  100%     127 .. ..      769    0    0    0 100%  474    0   1
-  8   26,-10  w  100%     116 .. ..     7459    0    0    0 100%  600    0   1
+  8   26,-10  w  100%     116 .. ..     7460    0    0    0 100%  600    0   1
   9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
-  9  -26,-6   c  100%     127 .. ..     1000   55  707    0 100% 1037    0
-  9  -24,-6   c  100%     127 .. ..     1000   55  696    0 100% 1030    0
+  9  -26,-6   c  100%     127 .. ..     1000   55  703    0 100% 1034    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  702    0 100% 1033    0
   6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  6    2,-2   c  100%     127 .. ..     1000   55  704    0 100% 1035    0
-  6    4,-2   c  100%     127 .. ..     1000   55  702    0 100% 1034    0
+  6    2,-2   c  100%     127 .. ..     1000   55  702    0 100% 1033    0
+  6    4,-2   c  100%     127 .. ..     1000   55  706    0 100% 1036    0
   7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
   4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  7   24,0    c  100%     127 .. ..     1000   55  712    0 100% 1039    0
-  7   26,0    c  100%     127 .. ..     1000   55  691    0 100% 1027    0
-  4  -15,1    c  100%     127 .. ..     1000   55  699    0 100% 1032    0
-  4  -13,1    c  100%     127 .. ..     1000   55  706    0 100% 1036    0
+  7   24,0    c  100%     127 .. ..     1000   55  713    0 100% 1040    0
+  7   26,0    c  100%     127 .. ..     1000   55  694    0 100% 1029    0
+  4  -15,1    c  100%     127 .. ..     1000   55  704    0 100% 1035    0
+  4  -13,1    c  100%     127 .. ..     1000   55  700    0 100% 1033    0
   5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  5  -30,8    c  100%     127 .. ..     1000   55  696    0 100% 1030    0   1
-  5  -28,8    c  100%     127 .. ..     1000   55  702    0 100% 1034    0
-  2   10,8    +    0%     127 .. ..        3    0    0    0 100%    1    0   1
-  2   12,8    w   89%     104 .. ..        1    0    0    0 100%    0    0   1
+  5  -30,8    c  100%     127 .. ..     1000   55  698    0 100% 1031    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  698    0 100% 1031    0
+  2   10,8    +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  2   12,8    w   89%     105 .. ..        1    0    0    0 100%    0    0   1
   2   18,8    c   38%     127 .. ..       50    0    0    0 100%   20    0   1
   3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
-  2    9,9    +    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  2   11,9    j  100%     127 .. 5.      769    0  254    0 100%    0    0   1
-  2   15,9    o  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  2    9,9    +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  2   11,9    j  100%     127 .. 5.      769    0  240    0 100%    0    0   1
+  2   15,9    o  100%     127 .. ..      769    0    0    0 100%    0    0   1
   2   17,9    b  100%     127 .. ..      385    0    0    0 100%    0    0   1
   2   19,9    gl 100%     127 .. ..      300    0    0    0 100%    0    0   1
-  2   21,9    gk 100%     127 .. ..      769    0    0    0 100%    1    0   1
-  2   23,9    g  100%     127 .. ..      400    0    0    0 100%    0    0   1
-  3   -4,10   c  100%     127 .. ..     1000   55  708    0 100% 1037    0
-  3   -2,10   c  100%     127 .. ..     1000   55  707    0 100% 1037    0
+  2   21,9    gk 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  2   23,9    g  100%     127 .. ..      400    0    0    0 100%    1    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  704    0 100% 1035    0
+  3   -2,10   c  100%     127 .. ..     1000   55  703    0 100% 1034    0
   2   10,10   g    0%     127 .. ..      769    0    0    0 100%    1    0   1
-  2   12,10   g    0%     127 .. ..      504    0    0    0 100%    1    0   1
+  2   12,10   g    1%     127 .. ..      498    0    0    0 100%    1    0   1
   2   14,10   g    1%     127 .. ..        5    0    0    0 100%    1    0   1
   2   16,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
   2   18,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
-  2   20,10   +    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  2    9,11   +    0%     127 .. ..        2    0    0    0 100%    0    0   1
-  2   11,11   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  2   13,11   g    1%     127 .. ..        6    0    0    0 100%    2    0
-  2   15,11   g    0%     127 .. ..        4    0    0    0 100%    1    0
-  2   17,11   g    0%     127 .. ..        4    0    0    0 100%    1    0
-  2   19,11   +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  2   20,10   +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  2    9,11   +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  2   11,11   +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  2   13,11   g    1%     127 .. ..        5    0    0    0 100%    1    0
+  2   15,11   g    1%     127 .. ..        5    0    0    0 100%    1    0
+  2   17,11   g    1%     127 .. ..        5    0    0    0 100%    1    0
+  2   19,11   +    1%     127 .. ..        6    0    0    0 100%    2    0   1
   2   12,12   g    0%     127 .. ..        4    0    0    0 100%    1    0   1
-  2   14,12   g    1%     127 .. ..        5    0    0    0 100%    1    0
+  2   14,12   g    0%     127 .. ..        2    0    0    0 100%    1    0
   2   16,12   g    1%     127 .. ..        5    0    0    0 100%    1    0
   2   18,12   g    1%     127 .. ..        5    0    0    0 100%    1    0   1
   2   13,13   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
-  2   15,13   +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  2   15,13   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
   2   17,13   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
   2   19,13   g    0%     127 .. ..        4    0    0    0 100%    1    0   1
 113 sectors
@@ -12506,13 +12506,13 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1   1,-15  k .......... ...9....0.   0   0    0  999    0   0    1    0    1   0
   1   3,-15  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
   1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  1   7,-15  % .......... ..0.......   0   0    1    0    0   0   58    0    0   0
+  1   7,-15  % .......... ..0.......   0   0    1    0    0   0   57    0    0   0
   1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
   1  11,-15  l .......... .......4..   0   0    0    0    0   0    0  450    0   0
-  8  17,-15  f .......... 20....0.1. 181   6    0    0    0   0    1    0   91   0
+  8  17,-15  f .......... 20....0.1. 181   5    0    0    0   0    1    0   91   0
   8  19,-15  - .......... ......0...   0   0    0    0    0   0    0    0    0   0
   8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
-  1   4,-14  b .......... ..........   0   0    0    0    0 447    0    0    0   0
+  1   4,-14  b .......... ..........   0   0    0    0    0 446    0    0    0   0
   1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-14  m .......... ...0......   0   0    0    1    0   0    0    1    0   0
   1  10,-14  h .......... 20.....22. 200   7    0    1    1   0    1  200  200   0
@@ -12521,7 +12521,7 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   1  16,-14  ) .......... 0.0.......  15   0   14    0    0   0    0    0    0   0
   8  18,-14  o .......... ..........   0   0    0    0    0   0    1    0    0   0
   8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
-  8  22,-14  ! .......... 20.....22.  23   0    0    0    1   0    0  200  200   0
+  8  22,-14  ! .......... 20.....22.  21   0    0    0    1   0    0  200  200   0
   8  24,-14  l .......... .......4..   0   0    0    0    1   0    0  400    0   0
   1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
   1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
@@ -12531,9 +12531,9 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  21,-13  m .......... ...0......   0   0    0    1    1   0    0    0    0   0
   8  23,-13  m .......... ...0......   0   0    0    1    1   0    0    0    0   0
   8  25,-13  k .......... ...9....0.   0   0    0  999    1   0    0    0    1   0
-  8  27,-13  j .......... ...9......   0   0    0  999    0   0    0 1353    0   0
+  8  27,-13  j .......... ...9......   0   0    0  999    0   0    0 1354    0   0
   8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
-  1   4,-12  k .......... ........0.   0   0    0  603    0   0    0    0    1   0
+  1   4,-12  k .......... ........0.   0   0    0  607    0   0    0    0    1   0
   1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
   1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
   1  10,-12  j .......... .......0..   0   0    0 1225    0   0    0    1    0   0
@@ -12544,18 +12544,18 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
   8  28,-12  d .......... .0..0.001.   0   1    0    0    1   0   10   50    0   0
   8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
- 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  226   0    0    0    0   0
   1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
   1   5,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
-  1   7,-11  * .......... 1.2....22. 180   0  200    2    0   0    0  200  200   0
+  1   7,-11  * .......... 1.2....22. 180   0  200    4    0   0    0  200  200   0
   1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
-  1  11,-11  w .......... ..........  20   0  778 2294  557   0  827 3272 3781   0
+  1  11,-11  w .......... ..........  19   0  778 2303  559   0  823 3283 3779   0
   1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
   1  15,-11  ! .......... 20.....22. 200  12    0    0    0   0    0  200  200   0
   8  21,-11  p .......... .......0..   0   0    0    0    1   0    0   75    0   0
-  8  23,-11  m .......... ...0......   0   0    0  470    0   0    0    0    0   0
-  8  25,-11  m .......... ...0......   0   0    0 2696    0   0    0    0    0   0
-  8  27,-11  b .......... ....3.....   0   0    0    0  300 356    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0  471    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0 2694    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 353    0    0    0   0
   8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  200  200   0
   8  31,-11  i .......... 0......63.   1   0    0    0    0   0    0  600   86   0
  10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
@@ -12566,26 +12566,26 @@ own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
   8  20,-10  j .......... ...9...0..   0   0    0  999    1   0    0    1    0   0
   8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
   8  24,-10  k .......... ...90...0.   0   0    0  999    1   0    0    0    0   0
-  8  26,-10  w .......... ..........   0   0    0 5408 2154   0  381  309    0   0
-  9 -25,-7   g .......... ..........   0   0    0    0   18   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 5408 2163   0  375  314    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   31   0    0    0    0   0
   9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  6   3,-3   g .......... ..........   0   0    0    0  389   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
   6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
   6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  7  25,-1   g .......... ..........   0   0    0    0  340   0    0    0    0   0
-  4 -14,0    g .......... ..........   0   0    0    0  298   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  346   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  295   0    0    0    0   0
   7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  5 -29,7    g .......... ..........   0   0    0    0  368   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  372   0    0    0    0   0
   5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
-  2  12,8    w .......... ..........   0   0    0 1159  971   0  520   99    0   0
+  2  12,8    w .......... ..........   0   0    0 1159  966   0  524   92    0   0
   2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
-  3  -3,9    g .......... ..........   0   0    0    0  374   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  377   0    0    0    0   0
   2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
   2  11,9    j .......... ...90..0..   0   0    0  999    1   0    0    1    0   0
   2  15,9    o .......... ......0...   0   0    0    0    0   0    1    0    0   0
@@ -12624,11 +12624,11 @@ own   sect        eff  min gold fert oil uran
   1    1,-15  k  100%    6    0   67   1    0
   1    3,-15  j  100%   11    0   61   0    0
   1    5,-15  c  100%   28    5   37   0    0
-  1    7,-15  %  100%    0    0   76  24    0
+  1    7,-15  %  100%    0    0   76  25    0
   1    9,-15  t  100%   39   14   21   0    0
   1   11,-15  l  100%    0    0   91  72    0
   8   17,-15  f   91%    0    0  100   1    0
-  8   19,-15  -o  96%    0    0  100 100    0
+  8   19,-15  -o  95%    0    0  100 100    0
   8   23,-15  k  100%   11    0   61  21    0
   1    4,-14  b  100%   34    0   28   0    0
   1    6,-14  m  100%  100   69    0   0   97
@@ -12636,7 +12636,7 @@ own   sect        eff  min gold fert oil uran
   1   10,-14  h  100%   45   19   13   0    0
   1   12,-14  =  100%    0    0   45  11    0
   1   14,-14  =  100%    0    0   63  46    0
-  1   16,-14  )   82%    0    0  100  98    0
+  1   16,-14  )   86%    0    0  100  98    0
   8   18,-14  o  100%    0    0   91  14    0
   8   20,-14  -  100%    0    0   82  58    0
   8   22,-14  !  100%   50    0    6   0    0
@@ -12656,14 +12656,14 @@ own   sect        eff  min gold fert oil uran
   1    8,-12  m  100%  100    0    0   0   88
   1   10,-12  j  100%   50    0    6   0    0
   1   12,-12  d  100%   63    0    0   0   17
-  8   20,-12  j  100%   74    0    0   0   37
+  8   20,-12  j  100%   74    1    0   0   37
   8   22,-12  m  100%  100    0    0   0   97
   8   24,-12  m  100%  100    0    0   0  100
   8   26,-12  m  100%  100    0    0   0  100
   8   28,-12  d  100%   91    0    0   0   68
   8   30,-12  c  100%   23    1   43   0    0
  10  -11,-11  g  100%   78    0    0   0   45
-  1    3,-11  i  100%    0    0  100   2    0
+  1    3,-11  i  100%    0    0  100   3    0
   1    5,-11  m  100%  100    0    0   0  100
   1    7,-11  *  100%   91    0    0   0   68
   1    9,-11  r  100%   85    0    0   0   57
@@ -12678,12 +12678,12 @@ own   sect        eff  min gold fert oil uran
   8   31,-11  i  100%    0    0  100 100    0
  10  -12,-10  c  100%  100  100  100 100  100
  10  -10,-10  c  100%  100  100  100 100  100
-  1    4,-10  o  100%    0    0  100   8    0
+  1    4,-10  o  100%    0    0  100   9    0
   1    6,-10  +  100%    0    0  100 100    0
   1   10,-10  p  100%    0    0  100  98    0
   8   20,-10  j  100%   78    0    0   0   45
   8   22,-10  j  100%    6    0   67  32    0
-  8   24,-10  k  100%   67    0    0   0   25
+  8   24,-10  k  100%   67    1    0   0   25
   8   26,-10  w  100%   17    0   52   7    0
   9  -25,-7   g  100%   28    0   37   0    0
   9  -26,-6   c  100%  100  100  100 100  100
@@ -12706,31 +12706,31 @@ own   sect        eff  min gold fert oil uran
   3   -3,9    g  100%  100    0    0   0  100
   2    9,9    +    0%    6    0   67  32    0
   2   11,9    j  100%   56    0    0   0    5
-  2   15,9    o  100%    0    0  100  31    0
+  2   15,9    o  100%    0    0  100  32    0
   2   17,9    b  100%   34    0   28   0    0
   2   19,9    gl 100%   78    2    0   0   45
-  2   21,9    gk 100%   74    4    0   0   37
+  2   21,9    gk 100%   74    3    0   0   37
   2   23,9    g  100%   39    8   21   0    0
   3   -4,10   c  100%  100  100  100 100  100
   3   -2,10   c  100%  100  100  100 100  100
   2   10,10   g    0%   45   19   13   0    0
-  2   12,10   g    0%   63   33    0   0   17
+  2   12,10   g    1%   63   33    0   0   17
   2   14,10   g    1%   91   56    0   0   68
   2   16,10   m  100%  100    0  100 100  100
   2   18,10   m  100%  100    0  100 100  100
   2   20,10   +    0%    0    0  100 100    0
   2    9,11   +    0%    0    0   82  58    0
-  2   11,11   +    1%   11    0   61  21    0
+  2   11,11   +    0%   11    0   61  21    0
   2   13,11   g    1%  100   69    0   0   97
-  2   15,11   g    0%  100   74    0   0  100
-  2   17,11   g    0%  100   80    0   0  100
-  2   19,11   +    0%    0    0  100  98    0
+  2   15,11   g    1%  100   74    0   0  100
+  2   17,11   g    1%  100   80    0   0  100
+  2   19,11   +    1%    0    0  100  98    0
   2   12,12   g    0%   67   37    0   0   25
-  2   14,12   g    1%  100   65    0   0   88
+  2   14,12   g    0%  100   65    0   0   88
   2   16,12   g    1%   96   60    0   0   77
   2   18,12   g    1%   85   51    0   0   57
   2   13,13   +    1%    0    0   91  72    0
-  2   15,13   +    0%   28    5   37   0    0
+  2   15,13   +    1%   28    5   37   0    0
   2   17,13   +    1%    0    0   76  47    0
   2   19,13   g    0%   50   23    6   0    0
 113 sectors
@@ -12746,7 +12746,7 @@ Player 00 Turn 99 starting
        -=O=-
 
 [0:640] Command : XDUMP sect 0
-0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 61 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 0 0 0 0 0 0 0 0 0
+0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 66 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 0 0 0 0 0 0 0 0 0
 /1
 
 [0:640] Command : XDUMP ship 0
@@ -12758,16 +12758,16 @@ Player 00 Turn 99 starting
 /5
 
 [0:640] Command : XDUMP plane 0
-0 1 16 -14 0 89 90 0 51 0 0 0 0 "" 4 0 -1 -1 0 0 0.00000
-1 1 16 -14 0 92 91 0 51 0 0 0 0 "" 4 0 -1 -1 0 0 0.00000
-2 1 16 -14 0 93 102 0 51 16 -14 8 2 "" 4 0 -1 -1 0 0 0.00000
+0 1 16 -14 0 93 92 0 51 0 0 0 0 "" 4 0 -1 -1 0 0 0.00000
+1 1 16 -14 0 96 93 0 51 0 0 0 0 "" 4 0 -1 -1 0 0 0.00000
+2 1 16 -14 0 95 103 0 51 16 -14 8 2 "" 4 0 -1 -1 0 0 0.00000
 /3
 
 [0:640] Command : XDUMP land 0
 0 1 10 -14 0 100 127 0 31 0 0 0 0 "" 1 0 42 0 "" 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
 3 1 10 -14 0 100 127 0 31 0 0 0 0 "" -1 117 42 0 "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
-4 1 16 -14 0 71 127 0 31 0 0 0 0 "" -1 27 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
-5 1 16 -14 11 96 117 0 37 0 0 0 0 "" -1 0 42 0 "" 0 5 34 9 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+4 1 16 -14 0 72 127 0 31 0 0 0 0 "" -1 28 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+5 1 16 -14 11 97 118 0 37 0 0 0 0 "" -1 0 42 0 "" 0 5 34 10 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
 /4
 
 [0:640] Command : XDUMP nuke 0
@@ -12809,16 +12809,16 @@ Player 00 Turn 99 starting
 
 [0:640] Command : XDUMP nat 0
 0 5 62 "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 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 1 0 255 640 0 27 58505 0 0 0 0 65.5603 21.7082 38.6764 12.0197 2 2 4 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 100 37892 0 0 0 0 27.2779 10.8541 11.8405 0.00000 2 4 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38171 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38168 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38154 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38160 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38163 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 26617 0 0 0 0 52.0493 10.8541 40.5059 6.99394 2 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38161 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38148 0 0 0 0 27.2779 10.8541 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 1 0 255 640 0 27 57009 0 0 0 0 65.5795 21.7243 38.9213 12.0428 2 2 4 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 100 37892 0 0 0 0 27.2834 10.8621 11.7679 0.00000 2 4 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38163 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38166 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38153 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38161 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38163 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 26278 0 0 0 0 52.0616 10.8621 40.5579 6.99378 2 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38159 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 62 "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38154 0 0 0 0 27.2834 10.8621 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 2 62 "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 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
 /12
 
@@ -13426,16 +13426,16 @@ You have a new telegram waiting ...
 /5
 
 [0:640] Command : XDUMP plane 0
-0 1 11 -1 0 89 90 0 51 -5 13 0 0 "" 4 0 -1 -1 0 0 0.00000
-1 1 11 -1 0 92 91 0 51 -5 13 0 0 "" 4 0 -1 -1 0 0 0.00000
-2 1 11 -1 0 93 102 0 51 11 -1 8 2 "" 4 0 -1 -1 0 0 0.00000
+0 1 11 -1 0 93 92 0 51 -5 13 0 0 "" 4 0 -1 -1 0 0 0.00000
+1 1 11 -1 0 96 93 0 51 -5 13 0 0 "" 4 0 -1 -1 0 0 0.00000
+2 1 11 -1 0 95 103 0 51 11 -1 8 2 "" 4 0 -1 -1 0 0 0.00000
 /3
 
 [0:640] Command : XDUMP land 0
 0 1 5 -1 0 100 127 0 31 -5 13 0 0 "" 1 0 42 0 "" 0 20 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
 3 1 5 -1 0 100 127 0 31 -5 13 0 0 "" -1 117 42 0 "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
-4 1 11 -1 0 71 127 0 31 -5 13 0 0 "" -1 27 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
-5 1 11 -1 11 96 117 0 37 -5 13 0 0 "" -1 0 42 0 "" 0 5 34 9 0 0 0 0 0 0 0 0 0 0 -1 0
+4 1 11 -1 0 72 127 0 31 -5 13 0 0 "" -1 28 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+5 1 11 -1 11 97 118 0 37 -5 13 0 0 "" -1 0 42 0 "" 0 5 34 10 0 0 0 0 0 0 0 0 0 0 -1 0
 /4
 
 [0:640] Command : XDUMP nuke 0
@@ -14046,7 +14046,7 @@ You have a new telegram waiting ...
 /11
 
 [0:640] Command : XDUMP country 0
-1 62 "127.0.0.1" "" "tester" 0 -2 0 0 0 255 640 0 27 58505 0 0 0 0 65.5603 21.7082 38.6764 12.0197
+1 62 "127.0.0.1" "" "tester" 0 -2 0 0 0 255 640 0 27 57009 0 0 0 0 65.5795 21.7243 38.9213 12.0428
 /1
 
 [0:640] Command : Bye-bye
index 67cd2a322a3dd418983644094975da2a40a576ed..14247ec61bcdb56c43349cd37d76c64522df8924 100644 (file)
@@ -1,6 +1,6 @@
 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
-0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 61 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 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 66 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 2 0 4 0 0 0 0 0 0 0 0 0 2 0 0 43 0 1 4 34 10 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 4 0 0 0 0 0 0 0 0 0 4 0 0 64 0 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 6 0 4 0 0 0 0 0 0 0 0 0 6 0 0 25 0 1 4 6 0 67 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
@@ -12,8 +12,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 18 0 0 0 0 0 0 0 0 0 0 0 18 0 0 -19 0 1 0 0 0 60 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 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 4 0 0 0 0 0 0 0 0 0 20 0 0 7 0 1 4 0 0 100 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 22 0 4 0 0 0 0 0 0 0 0 0 22 0 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 24 0 5 100 127 0 0 0 0 0 0 0 24 0 1103 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 818 0 0 0 0 0 0 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 26 0 5 100 127 0 0 0 0 0 0 0 26 0 1088 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 794 0 0 0 0 0 0 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 24 0 5 100 127 0 0 0 0 0 0 0 24 0 1105 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 820 0 0 0 0 0 0 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 26 0 5 100 127 0 0 0 0 0 0 0 26 0 1091 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 798 0 0 0 0 0 0 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 0 4 0 0 0 0 0 0 0 0 0 28 0 0 50 0 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 30 0 4 0 0 0 0 0 0 0 0 0 30 0 0 28 0 1 4 11 0 61 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 healthy 0 0 0 0 0 0 0 0
 0 -32 0 0 0 0 0 0 0 0 0 0 0 -32 0 0 -36 0 1 0 0 0 77 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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
@@ -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 0 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 0 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 0 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 600 82 100 0 11 96 0 0 0 77 4 1000 0 0 0 0 0 298 0 0 0 0 0 0 0 0 0 0 0 0 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 600 82 100 0 11 96 0 0 0 77 4 1000 0 0 0 0 0 295 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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
@@ -56,8 +56,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -21 1 0 0 0 0 0 0 0 0 0 0 -21 1 0 -50 0 1 0 0 0 91 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 -19 1 0 0 0 0 0 0 0 0 0 0 -19 1 0 -10 0 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 -17 1 4 0 0 0 0 0 0 0 0 0 -17 1 0 39 0 1 4 28 5 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -15 1 5 100 127 0 0 0 0 0 0 0 -15 1 1095 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 804 0 0 0 0 0 0 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 -13 1 5 100 127 0 0 0 0 0 0 0 -13 1 1099 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 812 0 0 0 0 0 0 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 -15 1 5 100 127 0 0 0 0 0 0 0 -15 1 1098 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 809 0 0 0 0 0 0 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 -13 1 5 100 127 0 0 0 0 0 0 0 -13 1 1096 36 100 0 5 100 100 100 100 100 4 1000 55 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
 0 -11 1 4 0 0 0 0 0 0 0 0 0 -11 1 0 93 0 0 4 100 74 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 -9 1 4 0 0 0 0 0 0 0 0 0 -9 1 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 1 4 0 0 0 0 0 0 0 0 0 -7 1 0 10 0 1 4 0 0 100 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
@@ -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 0 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 0 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 0 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 600 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 600 93 100 0 11 100 0 0 0 100 5 1000 0 0 0 0 0 372 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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
@@ -261,8 +261,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 4 8 0 0 0 0 0 0 0 0 0 0 4 8 0 -39 0 1 0 0 0 80 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 127 0 0 0 0 0 0 0 12 8 1 10 100 1 24 0 0 100 87 0 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 89 99 0 0 0 0 0 0 0 12 8 0 32 100 1 13 17 0 52 7 0 2 1 0 0 0 0 908 857 0 0 514 293 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 10 8 24 0 127 0 0 0 0 0 0 0 12 8 0 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 89 101 0 0 0 0 0 0 0 12 8 0 32 100 1 13 17 0 52 7 0 2 1 0 0 0 0 917 850 0 0 522 280 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
 0 14 8 0 0 0 0 0 0 0 0 0 0 14 8 0 -39 0 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 0 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 57 127 0 0 0 0 0 0 0 12 8 20 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
@@ -273,8 +273,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 28 8 0 0 0 0 0 0 0 0 0 0 28 8 0 -25 0 1 0 0 0 66 52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 8 0 0 0 0 0 0 0 0 0 0 30 8 0 -1 0 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 -32 8 0 0 0 0 0 0 0 0 0 0 -32 8 0 -36 0 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
-5 -30 8 5 100 127 0 0 0 0 0 0 0 -30 8 1092 36 100 1 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 800 0 0 0 0 0 0 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 -28 8 5 100 127 0 0 0 0 0 0 0 -28 8 1097 36 100 0 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 807 0 0 0 0 0 0 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 -30 8 5 100 127 0 0 0 0 0 0 0 -30 8 1094 36 100 1 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 802 0 0 0 0 0 0 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 -28 8 5 100 127 0 0 0 0 0 0 0 -28 8 1095 36 100 0 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 803 0 0 0 0 0 0 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 -26 8 4 0 0 0 0 0 0 0 0 0 -26 8 0 97 0 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 -24 8 4 0 0 0 0 0 0 0 0 0 -24 8 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -22 8 4 0 0 0 0 0 0 0 0 0 -22 8 0 46 0 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
@@ -292,14 +292,14 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 3 9 0 0 0 0 0 0 0 0 0 0 3 9 0 -16 0 1 0 0 0 57 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 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 0 0 0 0 0 0 0 0 0 0 5 9 0 -33 0 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 -28 0 1 0 0 0 69 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 9 9 24 0 127 0 0 0 0 0 0 0 12 8 1 25 100 1 24 6 0 67 32 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 9 17 100 127 0 0 0 0 0 0 0 12 8 0 57 100 1 17 56 0 0 0 5 2 769 0 0 0 0 999 1 0 0 0 1 0 466 0 769 0 0 0 0 999 1 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 2 0 0 0 0 0
+2 9 9 24 0 127 0 0 0 0 0 0 0 12 8 1 25 100 1 24 6 0 67 32 0 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 9 17 100 127 0 0 0 0 0 0 0 12 8 0 57 100 1 17 56 0 0 0 5 2 769 0 0 0 0 999 1 0 0 0 1 0 449 0 769 0 0 0 0 999 1 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 2 0 0 0 0 0
 0 13 9 0 0 0 0 0 0 0 0 0 0 13 9 0 -19 0 1 0 0 0 60 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 15 9 16 100 127 0 0 0 0 0 0 0 12 8 0 1 100 1 16 0 0 100 13 0 2 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 2 0 0 0 0 0
+2 15 9 16 100 127 0 0 0 0 0 0 0 12 8 2 1 100 1 16 0 0 100 13 0 2 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 2 0 0 0 0 0
 2 17 9 29 100 127 0 0 0 0 0 0 0 12 8 0 43 100 1 29 34 0 28 0 0 2 385 0 0 0 0 0 300 130 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 2 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 0 68 100 1 18 74 4 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 19 9 23 92 127 0 0 0 0 0 0 0 12 8 1 71 100 1 23 78 2 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 0 68 100 1 18 74 3 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 12 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
 0 25 9 0 0 0 0 0 0 0 0 0 0 25 9 0 -41 0 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 0 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 0 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,19 +318,19 @@ 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 0 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 0 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 0 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 600 93 100 0 11 100 0 0 0 100 3 1000 0 0 0 0 0 374 0 0 0 0 0 0 0 0 0 0 0 0 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 600 93 100 0 11 100 0 0 0 100 3 1000 0 0 0 0 0 377 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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 4 10 0 0 0 0 0 0 0 0 0 0 4 10 0 -46 0 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 6 10 0 0 0 0 0 0 0 0 0 0 6 10 0 -46 0 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 8 10 0 0 0 0 0 0 0 0 0 0 8 10 0 -3 0 1 0 0 0 44 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 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 10 11 100 127 0 0 0 0 0 0 0 12 8 5 50 100 1 11 45 0 13 0 0 2 400 0 0 0 0 0 30 0 0 150 300 0 0 0 400 0 0 0 0 0 30 0 0 150 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 12 10 11 100 127 0 0 0 0 0 0 0 12 8 2 61 100 1 11 63 14 0 0 17 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
-2 14 10 11 2 127 0 0 0 0 0 0 0 12 8 2 79 100 1 11 91 56 0 0 68 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
+2 10 10 11 100 127 0 0 0 0 0 0 0 12 8 4 50 100 1 11 45 0 13 0 0 2 400 0 0 0 0 0 30 0 0 150 300 0 0 0 400 0 0 0 0 0 30 0 0 150 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 12 10 11 100 127 0 0 0 0 0 0 0 12 8 0 61 100 1 11 63 14 0 0 17 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
+2 14 10 11 3 127 0 0 0 0 0 0 0 12 8 2 79 100 1 11 91 56 0 0 68 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
 2 16 10 10 100 127 0 0 0 0 0 0 0 12 8 0 36 100 0 10 100 0 100 100 100 2 769 0 0 0 0 1 1 0 0 0 0 0 579 0 769 0 0 0 0 1 1 0 0 0 0 0 579 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 10 10 100 127 0 0 0 0 0 0 0 12 8 0 36 100 0 10 100 0 100 100 100 2 769 0 0 0 0 1 1 0 0 0 0 0 579 0 769 0 0 0 0 1 1 0 0 0 0 0 579 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 20 10 24 1 127 0 0 0 0 0 0 0 12 8 1 3 100 1 24 0 0 100 100 0 2 5 0 0 0 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 0 0 healthy 0 0 2 0 0 0 0 0
+2 20 10 24 0 127 0 0 0 0 0 0 0 12 8 1 3 100 1 24 0 0 100 100 0 2 4 0 0 0 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 0 0 healthy 0 0 2 0 0 0 0 0
 0 22 10 0 0 0 0 0 0 0 0 0 0 22 10 0 -42 0 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 24 10 0 0 0 0 0 0 0 0 0 0 24 10 0 -35 0 1 0 0 0 76 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 26 10 0 0 0 0 0 0 0 0 0 0 26 10 0 -17 0 1 0 0 0 58 36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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
@@ -350,18 +350,18 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -10 10 0 0 0 0 0 0 0 0 0 0 -10 10 0 -21 0 1 0 0 0 62 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 10 0 0 0 0 0 0 0 0 0 0 -8 10 0 -1 0 1 0 0 0 42 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 10 4 0 0 0 0 0 0 0 0 0 -6 10 0 43 0 1 4 34 10 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -4 10 5 100 127 0 0 0 0 0 0 0 -4 10 1101 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 814 0 0 0 0 0 0 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 -2 10 5 100 127 0 0 0 0 0 0 0 -2 10 1100 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 813 0 0 0 0 0 0 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 -4 10 5 100 127 0 0 0 0 0 0 0 -4 10 1098 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 809 0 0 0 0 0 0 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 -2 10 5 100 127 0 0 0 0 0 0 0 -2 10 1098 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 808 0 0 0 0 0 0 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 11 4 0 0 0 0 0 0 0 0 0 1 11 0 75 0 1 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 3 11 0 0 0 0 0 0 0 0 0 0 3 11 0 -5 0 1 0 0 0 46 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 5 11 0 -12 0 1 0 0 0 53 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 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 -40 0 1 0 0 0 81 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 9 11 24 0 127 0 0 0 0 0 0 0 12 8 1 18 100 1 24 0 0 82 58 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 11 24 3 127 0 0 0 0 0 0 0 12 8 2 28 100 1 24 11 0 61 21 0 2 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 healthy 0 0 2 0 0 0 0 0
+2 9 11 24 0 127 0 0 0 0 0 0 0 12 8 1 18 100 1 24 0 0 82 58 0 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 11 24 0 127 0 0 0 0 0 0 0 12 8 1 28 100 1 24 11 0 61 21 0 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 13 11 11 3 127 0 0 0 0 0 0 0 12 8 2 89 100 0 11 100 69 0 0 97 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
-2 15 11 11 1 127 0 0 0 0 0 0 0 12 8 1 93 100 0 11 100 74 0 0 100 2 91 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
-2 17 11 11 1 127 0 0 0 0 0 0 0 12 8 1 97 100 0 11 100 80 0 0 100 2 5 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
-2 19 11 24 0 127 0 0 0 0 0 0 0 12 8 1 7 100 1 24 0 0 100 98 0 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 15 11 11 2 127 0 0 0 0 0 0 0 12 8 2 93 100 0 11 100 74 0 0 100 2 85 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
+2 17 11 11 2 127 0 0 0 0 0 0 0 12 8 2 97 100 0 11 100 80 0 0 100 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
+2 19 11 24 2 127 0 0 0 0 0 0 0 12 8 2 7 100 1 24 0 0 100 98 0 2 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 healthy 0 0 2 0 0 0 0 0
 0 21 11 0 0 0 0 0 0 0 0 0 0 21 11 0 -11 0 1 0 0 0 52 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 0 0 0 0 0 0 0 0 0 0 23 11 0 -21 0 1 0 0 0 62 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 0 0 0 0 0 0 0 0 0 0 25 11 0 -33 0 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
@@ -391,7 +391,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 8 12 0 0 0 0 0 0 0 0 0 0 8 12 0 -41 0 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 10 12 0 0 0 0 0 0 0 0 0 0 10 12 0 -33 0 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
 2 12 12 11 1 127 0 0 0 0 0 0 0 12 8 1 64 100 1 11 67 37 0 0 25 2 5 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
-2 14 12 11 2 127 0 0 0 0 0 0 0 12 8 2 86 100 0 11 100 65 0 0 88 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
+2 14 12 11 0 127 0 0 0 0 0 0 0 12 8 1 86 100 0 11 100 65 0 0 88 2 2 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
 2 16 12 11 2 127 0 0 0 0 0 0 0 12 8 2 82 100 0 11 96 60 0 0 77 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
 2 18 12 11 3 127 0 0 0 0 0 0 0 12 8 2 75 100 1 11 85 51 0 0 57 2 7 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
 0 20 12 0 0 0 0 0 0 0 0 0 0 20 12 0 -37 0 1 0 0 0 78 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
@@ -423,9 +423,9 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 9 13 0 0 0 0 0 0 0 0 0 0 9 13 0 -32 0 1 0 0 0 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 11 13 0 0 0 0 0 0 0 0 0 0 11 13 0 -4 0 1 0 0 0 45 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 13 13 24 2 127 0 0 0 0 0 0 0 12 8 2 14 100 1 24 0 0 91 72 0 2 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 healthy 0 0 2 0 0 0 0 0
-2 15 13 24 1 127 0 0 0 0 0 0 0 12 8 1 39 100 1 24 28 5 37 0 0 2 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 healthy 0 0 2 0 0 0 0 0
+2 15 13 24 3 127 0 0 0 0 0 0 0 12 8 2 39 100 1 24 28 5 37 0 0 2 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 healthy 0 0 2 0 0 0 0 0
 2 17 13 24 3 127 0 0 0 0 0 0 0 12 8 2 21 100 1 24 0 0 76 47 0 2 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 healthy 0 0 2 0 0 0 0 0
-2 19 13 11 1 127 0 0 0 0 0 0 0 12 8 2 53 100 1 11 50 23 6 0 0 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
+2 19 13 11 1 127 0 0 0 0 0 0 0 12 8 1 53 100 1 11 50 23 6 0 0 2 5 0 0 0 0 0 1 0 0 0 0 0 0 0 769 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 healthy 0 0 2 0 0 0 0 0
 0 21 13 0 0 0 0 0 0 0 0 0 0 21 13 0 -28 0 1 0 0 0 69 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 13 4 0 0 0 0 0 0 0 0 0 23 13 0 36 0 1 4 23 1 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 13 4 0 0 0 0 0 0 0 0 0 25 13 0 44 0 1 4 36 11 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 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
@@ -547,15 +547,15 @@ 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 0 25 100 1 18 6 0 67 1 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 5 -15 5 100 127 0 0 0 0 0 0 0 11 -11 600 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 542 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 15 0 0 0 0 0 11 -11 360 46 100 1 20 39 14 21 0 0 1 1000 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 7 -15 30 100 127 0 0 0 0 0 0 0 11 -11 543 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 9 -15 20 100 127 0 0 0 0 0 0 0 11 -11 359 46 100 1 20 39 14 21 0 0 1 1000 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 150 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 0 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 0 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 17 0 0 0 0 0 26 -10 549 10 100 1 19 0 0 100 1 0 8 769 50 200 6 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 26 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 17 -15 19 100 127 0 12 0 0 0 0 0 26 -10 549 10 100 1 19 0 0 100 1 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 19 -15 16 100 127 0 23 0 0 0 0 0 26 -10 0 3 100 1 16 0 0 100 56 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 0 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 1 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 1 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
 0 25 -15 0 0 0 0 0 0 0 0 0 0 25 -15 0 -44 0 1 0 0 0 85 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 27 -15 0 0 0 0 0 0 0 0 0 0 27 -15 0 -30 0 1 0 0 0 71 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -15 0 0 0 0 0 0 0 0 0 0 29 -15 0 -57 0 1 0 0 0 98 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
@@ -578,17 +578,17 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -1 -15 0 0 0 0 0 0 0 0 0 0 -1 -15 0 -34 0 1 0 0 0 75 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -14 0 0 0 0 0 0 0 0 0 0 0 -14 0 -4 0 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 2 -14 0 0 0 0 0 0 0 0 0 0 2 -14 0 -19 0 1 0 0 0 60 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -14 29 100 127 0 24 0 0 0 0 0 11 -11 600 43 100 1 29 34 0 28 0 0 1 1000 0 0 0 0 0 0 447 0 0 0 0 0 0 0 0 0 0 0 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 6 -14 10 100 127 0 0 0 0 0 0 0 11 -11 0 89 100 0 10 100 69 0 0 97 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 2 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
+1 4 -14 29 100 127 0 0 0 0 0 0 0 11 -11 600 43 100 1 29 34 0 28 0 0 1 1000 0 0 0 0 0 0 446 0 0 0 0 0 0 0 0 0 0 0 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 6 -14 10 100 127 0 0 0 0 0 0 0 11 -11 0 89 100 0 10 100 69 0 0 97 1 999 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
 1 8 -14 10 100 127 0 0 0 0 0 0 0 11 -11 0 82 100 0 10 96 60 0 0 77 1 1000 0 0 0 0 1 0 0 0 0 1 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 10 -14 12 100 127 0 0 0 0 0 0 0 11 -11 578 50 100 1 12 45 19 13 0 0 1 962 5 200 10 0 1 1 0 870 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 60 -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 60 -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 587 7 100 1 25 0 0 100 98 0 1 1000 22 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 0 14 100 1 16 0 0 91 6 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
+1 14 -14 28 100 127 0 35 0 0 0 0 0 11 -11 60 -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 591 7 100 1 25 0 0 100 98 0 1 1000 23 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 6 14 100 1 16 0 0 91 5 0 8 769 0 0 0 0 0 0 0 0 71 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 599 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 30 0 0 0 0 0 26 -10 599 53 100 1 26 50 0 6 0 0 8 769 0 65 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 24 -14 23 100 127 0 13 0 0 0 0 0 26 -10 199 50 100 1 23 45 0 13 0 0 8 769 0 0 0 0 0 1 0 0 0 400 0 0 0 769 0 0 0 0 0 0 0 0 0 400 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 7 0 0 0 0 0 26 -10 599 53 100 1 26 50 0 6 0 0 8 769 0 64 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 24 -14 23 100 127 0 20 0 0 0 0 0 26 -10 199 50 100 1 23 45 0 13 0 0 8 769 0 0 0 0 0 1 0 0 0 400 0 0 0 769 0 0 0 0 0 0 0 0 0 400 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 26 -14 0 0 0 0 0 0 0 0 0 0 26 -14 0 -14 0 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 28 -14 0 0 0 0 0 0 0 0 0 0 28 -14 0 -20 0 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 30 -14 0 0 0 0 0 0 0 0 0 0 30 -14 0 -30 0 1 0 0 0 71 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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
@@ -609,20 +609,20 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -4 -14 4 0 0 0 0 0 0 0 0 0 -4 -14 0 32 0 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 -2 -14 4 0 0 0 0 0 0 0 0 0 -2 -14 0 19 0 1 4 0 0 80 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -13 0 0 0 0 0 0 0 0 0 0 1 -13 0 -37 0 1 0 0 0 78 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
-1 3 -13 17 100 127 0 0 0 0 0 0 0 11 -11 0 36 100 1 17 23 1 43 0 0 1 1000 0 0 0 0 599 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 healthy 0 0 1 0 0 0 0 0
+1 3 -13 17 100 127 0 0 0 0 0 0 0 11 -11 1 36 100 1 17 23 1 43 0 0 1 1000 0 0 0 0 599 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 healthy 0 0 1 0 0 0 0 0
 1 5 -13 10 100 127 0 0 0 0 0 0 0 11 -11 0 36 100 0 10 100 0 100 100 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 0 0 0 0 0 0
 1 7 -13 10 100 127 0 0 0 0 0 0 0 11 -11 0 36 100 0 10 100 100 100 100 100 1 1000 0 0 0 0 0 0 0 0 0 0 0 579 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 0 0 0 0 0 0
-1 9 -13 18 100 127 0 12 0 0 0 0 0 11 -11 0 32 100 1 18 17 0 52 7 0 1 1000 0 0 0 0 1200 0 0 0 0 0 1 869 0 0 0 0 0 0 1200 0 0 0 0 0 1 869 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 -13 18 100 127 0 0 0 0 0 0 0 11 -11 0 32 100 1 18 17 0 52 7 0 1 1000 0 0 0 0 1200 0 0 0 0 0 1 869 0 0 0 0 0 0 1200 0 0 0 0 0 1 869 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 11 -13 0 0 0 0 0 0 0 0 0 0 11 -13 0 -43 0 1 0 0 0 84 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -13 0 0 0 0 0 0 0 0 0 0 13 -13 0 -32 0 1 0 0 0 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -13 0 0 0 0 0 0 0 0 0 0 15 -13 0 -37 0 1 0 0 0 78 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 17 -13 0 0 0 0 0 0 0 0 0 0 17 -13 0 -11 0 1 0 0 0 52 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 19 -13 14 100 127 0 0 0 0 0 0 0 26 -10 599 57 100 1 14 56 0 0 0 5 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 200 0 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 21 -13 10 100 127 0 0 0 0 0 0 0 26 -10 1 82 100 0 10 96 0 0 0 77 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 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 8 0 0 0 0 0
+8 19 -13 14 100 127 0 4 0 0 0 0 0 26 -10 599 57 100 1 14 56 0 0 0 5 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 200 0 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 21 -13 10 100 127 0 0 0 0 0 0 0 26 -10 0 82 100 0 10 96 0 0 0 77 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 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 8 0 0 0 0 0
 8 23 -13 10 100 127 0 0 0 0 0 0 0 26 -10 0 86 100 0 10 100 0 0 0 88 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 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 8 0 0 0 0 0
 8 25 -13 18 100 127 0 0 0 0 0 0 0 26 -10 1 61 100 1 18 63 33 0 0 17 8 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 8 0 0 0 0 0
-8 27 -13 17 100 127 0 5 0 0 0 0 0 26 -10 0 21 100 1 17 0 0 76 47 0 8 769 0 0 0 0 999 0 0 0 0 1859 0 0 0 769 0 0 0 0 999 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 29 -13 20 100 127 0 12 0 0 0 0 0 26 -10 119 39 100 1 20 28 0 37 0 0 8 769 0 0 0 0 0 30 0 0 150 300 0 0 0 769 0 0 0 0 0 30 0 0 150 300 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 27 -13 17 100 127 0 0 0 0 0 0 0 26 -10 0 21 100 1 17 0 0 76 47 0 8 769 0 0 0 0 999 0 0 0 0 1860 0 0 0 769 0 0 0 0 999 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 29 -13 20 100 127 0 0 0 0 0 0 0 26 -10 119 39 100 1 20 28 0 37 0 0 8 769 0 0 0 0 0 30 0 0 150 300 0 0 0 769 0 0 0 0 0 30 0 0 150 300 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 31 -13 0 0 0 0 0 0 0 0 0 0 31 -13 0 -38 0 1 0 0 0 79 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -13 4 0 0 0 0 0 0 0 0 0 -31 -13 0 19 0 1 4 0 0 80 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -13 4 0 0 0 0 0 0 0 0 0 -29 -13 0 77 0 0 4 88 54 0 0 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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
@@ -642,20 +642,20 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -1 -13 4 0 0 0 0 0 0 0 0 0 -1 -13 0 84 0 1 4 99 63 0 0 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -12 4 0 0 0 0 0 0 0 0 0 0 -12 0 90 0 1 4 100 70 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 2 -12 0 0 0 0 0 0 0 0 0 0 2 -12 0 -38 0 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 9 0 0 0 0 0 11 -11 0 68 100 1 18 74 42 0 0 37 1 1000 0 0 0 0 603 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 0 68 100 1 18 74 42 0 0 37 1 1000 0 0 0 0 607 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 0 0 0 0 0 0 11 -11 0 97 100 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 516 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 22 0 0 0 0 0 11 -11 0 53 100 1 17 50 0 6 0 0 1 1000 0 0 0 0 1405 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 8 0 0 0 0 0 11 -11 440 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 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 515 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 1404 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 439 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 0 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 16 -12 0 0 0 0 0 0 0 0 0 0 16 -12 0 -44 0 1 0 0 0 85 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 18 -12 0 0 0 0 0 0 0 0 0 0 18 -12 0 -21 0 1 0 0 0 62 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 20 -12 17 100 127 0 0 0 0 0 0 0 26 -10 0 68 100 1 17 74 0 0 0 37 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 20 -12 17 100 127 0 0 0 0 0 0 0 26 -10 0 68 100 1 17 74 1 0 0 37 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 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 89 100 0 10 100 0 0 0 97 8 769 0 0 0 0 1 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 97 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 87 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 97 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 83 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 93 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 28 -12 8 100 127 0 18 0 0 0 0 0 26 -10 599 79 100 0 8 91 0 0 0 68 8 769 0 0 1 0 0 1 0 0 10 50 100 0 0 769 0 0 1 0 0 1 0 0 10 50 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 30 -12 5 100 127 0 0 0 0 0 0 0 26 -10 599 36 100 1 5 23 1 43 0 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 28 -12 8 100 127 0 0 0 0 0 0 0 26 -10 599 79 100 0 8 91 0 0 0 68 8 769 0 0 1 0 0 1 0 0 10 50 100 0 0 769 0 0 1 0 0 1 0 0 10 50 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 30 -12 5 100 127 0 21 0 0 0 0 0 26 -10 599 36 100 1 5 23 1 43 0 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
 0 -32 -12 0 0 0 0 0 0 0 0 0 0 -32 -12 0 -29 0 1 0 0 0 70 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -12 4 0 0 0 0 0 0 0 0 0 -30 -12 0 32 0 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 -28 -12 4 0 0 0 0 0 0 0 0 0 -28 -12 0 38 0 1 4 26 3 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 0 healthy 0 0 0 0 0 0 0 0
@@ -673,21 +673,21 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -4 -12 4 0 0 0 0 0 0 0 0 0 -4 -12 0 71 0 1 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 4 0 0 0 0 0 0 0 0 0 -2 -12 0 97 0 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 1 -11 0 0 0 0 0 0 0 0 0 0 1 -11 0 -31 0 1 0 0 0 72 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 3 -11 9 100 127 0 0 0 0 0 0 0 11 -11 0 10 100 1 9 0 0 100 2 0 1 1000 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 1 0 0 0 0 0 0 0 600 300 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 -11 9 100 127 0 0 0 0 0 0 0 11 -11 0 10 100 1 9 0 0 100 3 0 1 1000 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 1 0 0 0 0 0 0 0 600 300 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 607 79 100 1 14 91 0 0 0 68 1 1000 30 180 0 200 2 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 440 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 617 71 100 1 13 78 0 0 0 45 1 1000 104 174 0 1233 2070 532 0 0 734 4139 4528 0 0 0 0 0 0 0 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 -11 14 100 127 0 0 0 0 0 0 0 11 -11 607 79 100 1 14 91 0 0 0 68 1 1000 30 180 0 200 4 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 439 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 617 71 100 1 13 78 0 0 0 45 1 1000 105 173 0 1225 2079 534 0 0 734 4150 4526 0 0 0 0 0 0 0 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 599 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 606 57 100 1 26 56 0 0 0 5 1 1000 25 200 17 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 9 0 0 0 0 0 11 -11 605 57 100 1 26 56 0 0 0 5 1 1000 25 200 17 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 0 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 19 -11 0 0 0 0 0 0 0 0 0 0 19 -11 0 -43 0 1 0 0 0 84 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 0 healthy 0 0 0 0 0 0 0 0
-8 21 -11 7 100 127 0 14 0 0 0 0 0 26 -10 524 75 100 1 7 85 0 0 0 57 8 769 0 0 0 0 0 1 0 0 0 75 0 0 0 769 0 0 0 0 0 0 0 0 0 75 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 23 -11 10 100 127 0 42 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 0 0 0 0 69 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 25 -11 10 100 127 0 0 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 55 0 0 0 3661 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 27 -11 29 100 127 0 0 0 0 0 0 0 26 -10 299 46 100 1 29 39 3 21 0 0 8 769 0 0 0 0 0 300 416 0 0 0 0 0 0 769 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 8 0 0 0 0 0
-8 29 -11 12 100 127 0 0 0 0 0 0 0 26 -10 599 43 100 1 12 34 0 28 0 0 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 0 0 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 31 -11 9 100 127 0 9 0 0 0 0 0 26 -10 341 1 100 1 9 0 0 100 100 0 8 769 0 1 0 0 0 0 0 0 0 600 300 0 0 769 0 1 0 0 0 0 0 0 0 600 300 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 21 -11 7 100 127 0 34 0 0 0 0 0 26 -10 524 75 100 1 7 85 0 0 0 57 8 769 0 0 0 0 0 1 0 0 0 75 0 0 0 769 0 0 0 0 0 0 0 0 0 75 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 23 -11 10 100 127 0 0 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 0 0 0 0 67 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 25 -11 10 100 127 0 0 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 55 0 0 0 3659 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 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 27 -11 29 100 127 0 2 0 0 0 0 0 26 -10 299 46 100 1 29 39 3 21 0 0 8 769 0 0 0 0 0 300 413 0 0 0 0 0 0 769 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 8 0 0 0 0 0
+8 29 -11 12 100 127 0 3 0 0 0 0 0 26 -10 599 43 100 1 12 34 0 28 0 0 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 0 0 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 31 -11 9 100 127 0 11 0 0 0 0 0 26 -10 341 1 100 1 9 0 0 100 100 0 8 769 0 1 0 0 0 0 0 0 0 600 300 0 0 769 0 1 0 0 0 0 0 0 0 600 300 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 -31 -11 0 0 0 0 0 0 0 0 0 0 -31 -11 0 -29 0 1 0 0 0 70 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -11 0 0 0 0 0 0 0 0 0 0 -29 -11 0 -6 0 1 0 0 0 47 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 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 -11 0 0 0 0 0 0 0 0 0 0 -27 -11 0 -23 0 1 0 0 0 64 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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 600 71 100 1 11 78 0 0 0 45 10 1000 0 0 0 0 0 231 0 0 0 0 0 0 0 0 0 0 0 0 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 600 71 100 1 11 78 0 0 0 45 10 1000 0 0 0 0 0 226 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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
@@ -706,18 +706,18 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -1 -11 4 0 0 0 0 0 0 0 0 0 -1 -11 0 64 0 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 0 -10 4 0 0 0 0 0 0 0 0 0 0 -10 0 58 0 1 4 58 29 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 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 0 0 0 0 0 0 0 0 0 0 2 -10 0 -9 0 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
-1 4 -10 16 100 127 0 0 0 0 0 0 0 11 -11 0 1 100 1 16 0 0 100 3 0 1 1000 0 0 0 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 0 0 healthy 0 0 1 0 0 0 0 0
-1 6 -10 24 100 127 0 12 0 0 0 0 0 11 -11 600 3 100 1 24 0 0 100 100 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 4 -10 16 100 127 0 0 0 0 0 0 0 11 -11 10 1 100 1 16 0 0 100 4 0 1 1000 0 0 0 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 0 0 healthy 0 0 1 0 0 0 0 0
+1 6 -10 24 100 127 0 0 0 0 0 0 0 11 -11 600 3 100 1 24 0 0 100 100 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
 0 8 -10 0 0 0 0 0 0 0 0 0 0 8 -10 0 -35 0 1 0 0 0 76 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -10 7 100 127 0 0 0 0 0 0 0 11 -11 525 7 100 1 7 0 0 100 98 0 1 1000 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 75 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 12 -10 0 0 0 0 0 0 0 0 0 0 12 -10 0 -34 0 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 14 -10 0 0 0 0 0 0 0 0 0 0 14 -10 0 -26 0 1 0 0 0 67 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -10 0 0 0 0 0 0 0 0 0 0 16 -10 0 -8 0 1 0 0 0 49 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 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
 0 18 -10 0 0 0 0 0 0 0 0 0 0 18 -10 0 -33 0 1 0 0 0 74 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 0 healthy 0 0 0 0 0 0 0 0
-8 20 -10 17 100 127 0 16 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 22 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 1 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 12 0 0 0 0 0 26 -10 600 32 100 1 13 17 0 52 7 0 8 7331 0 0 0 0 5807 1824 0 0 611 880 335 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 -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 20 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 1 64 100 1 18 67 1 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 15 0 0 0 0 0 26 -10 600 32 100 1 13 17 0 52 7 0 8 7320 0 0 0 0 5809 1833 0 0 601 887 332 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 0 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 0 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 0 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
@@ -730,8 +730,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -18 -10 0 0 0 0 0 0 0 0 0 0 -18 -10 0 -27 0 1 0 0 0 68 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -10 4 0 0 0 0 0 0 0 0 0 -16 -10 0 39 0 1 4 28 5 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -10 4 0 0 0 0 0 0 0 0 0 -14 -10 0 79 0 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
-10 -12 -10 5 100 127 0 0 0 0 0 0 0 -12 -10 1093 36 100 0 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 801 0 0 0 0 0 0 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 -10 -10 5 100 127 0 0 0 0 0 0 0 -10 -10 1095 36 100 1 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 803 0 0 0 0 0 0 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 -12 -10 5 100 127 0 0 0 0 0 0 0 -12 -10 1095 36 100 0 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 804 0 0 0 0 0 0 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 -10 -10 5 100 127 0 0 0 0 0 0 0 -10 -10 1098 36 100 1 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 809 0 0 0 0 0 0 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 -10 0 0 0 0 0 0 0 0 0 0 -8 -10 0 -30 0 1 0 0 0 71 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -10 0 0 0 0 0 0 0 0 0 0 -6 -10 0 -6 0 1 0 0 0 47 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -10 0 0 0 0 0 0 0 0 0 0 -4 -10 0 -45 0 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
@@ -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 0 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 0 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 0 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 600 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
+9 -25 -7 11 100 127 0 0 0 0 0 0 0 -25 -7 600 39 100 1 11 28 0 37 0 0 9 1000 0 0 0 0 0 31 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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
@@ -851,8 +851,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -32 -6 0 0 0 0 0 0 0 0 0 0 -32 -6 0 -47 0 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 -30 -6 0 0 0 0 0 0 0 0 0 0 -30 -6 0 -30 0 1 0 0 0 71 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -6 4 0 0 0 0 0 0 0 0 0 -28 -6 0 46 0 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
-9 -26 -6 5 100 127 0 0 0 0 0 0 0 -26 -6 1100 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 813 0 0 0 0 0 0 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 -24 -6 5 100 127 0 0 0 0 0 0 0 -24 -6 1092 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 800 0 0 0 0 0 0 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 -26 -6 5 100 127 0 0 0 0 0 0 0 -26 -6 1098 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 808 0 0 0 0 0 0 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 -24 -6 5 100 127 0 0 0 0 0 0 0 -24 -6 1097 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 807 0 0 0 0 0 0 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 -22 -6 4 0 0 0 0 0 0 0 0 0 -22 -6 0 93 0 0 4 100 74 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 -20 -6 4 0 0 0 0 0 0 0 0 0 -20 -6 0 71 0 1 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -6 0 0 0 0 0 0 0 0 0 0 -18 -6 0 -33 0 1 0 0 0 74 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 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 0 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 0 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 0 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 600 97 100 0 11 100 0 0 0 100 6 1000 0 0 0 0 0 389 0 0 0 0 0 0 0 0 0 0 0 0 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 600 97 100 0 11 100 0 0 0 100 6 1000 0 0 0 0 0 397 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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
@@ -961,8 +961,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
 0 -3 -3 0 0 0 0 0 0 0 0 0 0 -3 -3 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 53 0 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 0 -2 4 0 0 0 0 0 0 0 0 0 0 -2 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -2 5 100 127 0 0 0 0 0 0 0 2 -2 1098 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 810 0 0 0 0 0 0 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 -2 5 100 127 0 0 0 0 0 0 0 4 -2 1097 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 807 0 0 0 0 0 0 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 -2 5 100 127 0 0 0 0 0 0 0 2 -2 1097 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 807 0 0 0 0 0 0 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 -2 5 100 127 0 0 0 0 0 0 0 4 -2 1099 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 812 0 0 0 0 0 0 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 -2 4 0 0 0 0 0 0 0 0 0 6 -2 0 71 0 0 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -2 4 0 0 0 0 0 0 0 0 0 8 -2 0 7 0 1 4 0 0 100 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 -2 0 0 0 0 0 0 0 0 0 0 10 -2 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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 600 89 100 0 11 100 0 0 0 97 7 1000 0 0 0 0 0 340 0 0 0 0 0 0 0 0 0 0 0 0 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 600 89 100 0 11 100 0 0 0 97 7 1000 0 0 0 0 0 346 0 0 0 0 0 0 0 0 0 0 0 0 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 0 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 0 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 0 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
@@ -1080,9 +1080,9 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet xstar
 /config
 config plane
 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
-1 1 16 -14 0 92 91 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
-2 1 16 -14 0 93 102 0 51 16 -14 offensive\040support 2 "" 4 0 -1 -1 () 0 0.00000
+0 1 16 -14 0 93 92 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
+1 1 16 -14 0 96 93 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
 3 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
 4 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
 5 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
@@ -1137,8 +1137,8 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius army ship h
 1 0 11 -13 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
-4 1 16 -14 0 71 127 0 31 0 0 none 0 "" -1 27 42 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
-5 1 16 -14 11 96 117 0 37 0 0 none 0 "" -1 0 42 () "" 0 5 34 9 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
+4 1 16 -14 0 72 127 0 31 0 0 none 0 "" -1 28 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 37 0 0 none 0 "" -1 0 42 () "" 0 5 34 10 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
 6 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
 7 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
 8 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
@@ -1224,16 +1224,16 @@ uid owner type unitid price maxbidder markettime xloc yloc
 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)
 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 27 58505 0 0 0 0 65.5603 21.7082 38.6764 12.0197 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 100 37892 0 0 0 0 27.2779 10.8541 11.8405 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 38171 0 0 0 0 27.2779 10.8541 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 38168 0 0 0 0 27.2779 10.8541 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 38154 0 0 0 0 27.2779 10.8541 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 38160 0 0 0 0 27.2779 10.8541 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 38163 0 0 0 0 27.2779 10.8541 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 26617 0 0 0 0 52.0493 10.8541 40.5059 6.99394 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 38161 0 0 0 0 27.2779 10.8541 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 38148 0 0 0 0 27.2779 10.8541 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 27 57009 0 0 0 0 65.5795 21.7243 38.9213 12.0428 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 100 37892 0 0 0 0 27.2834 10.8621 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 38163 0 0 0 0 27.2834 10.8621 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 38166 0 0 0 0 27.2834 10.8621 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 38153 0 0 0 0 27.2834 10.8621 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 38161 0 0 0 0 27.2834 10.8621 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 38163 0 0 0 0 27.2834 10.8621 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 26278 0 0 0 0 52.0616 10.8621 40.5579 6.99378 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 38159 0 0 0 0 27.2834 10.8621 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 38154 0 0 0 0 27.2834 10.8621 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 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
 12 unused () "" "" "" "" "" 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
 13 unused () "" "" "" "" "" 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()