Run 12: knowledge system, mortality, and the North's generational soul

SPEC §5 built: three skill domains (forage/woodcraft/masonry) that pay
off and grow by practice; proximity diffusion soul-calibrated by
absorption x teaching-drive; and mortality - the piece that makes
knowledge generational. Elders die (~150-230 days), everything unshared
dies with them, a youth comes of age near knowing nothing. North soul
(absorption 1.6, teaching 0.9) vs South (1.0, 0.3); East teaches no one.

Two findings: (1) headless soaks were contaminated by orphaned child
processes writing later runs' CSVs - fixed with StopAfterDays clean
self-terminate; (2) passive diffusion barely helped - the North's real
culture is the young seeking elders on purpose, so added deliberate
teacher-seeking and youths now cradle beside the wisest elder. North
now leads knowledge at every checkpoint, but a stable town approaches
the ceiling regardless, so teaching is a recovery advantage not an
equilibrium one. The crisis-recovery experiment is the real test, noted
in FINDINGS as next.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-21 16:27:28 -04:00
parent 3ffde3d9e9
commit 3e4e44c623
15 changed files with 7059 additions and 7171 deletions
+37
View File
@@ -236,6 +236,43 @@ real stockpiles.
--- ---
## Run 12 — Knowledge, mortality, and the North's soul (SPEC §5)
**Built:** three skill domains (forage/woodcraft/masonry) that pay off
(skilled hands harvest more, masons waste less) and grow by practice;
proximity diffusion soul-calibrated by absorption × teaching-drive;
**mortality** — the piece that makes knowledge *generational*: elders die
at ~150230 days, everything unshared dies with them, and a youth comes
of age knowing almost nothing. The North's whole identity is two numbers
(absorption 1.6, teaching 0.9) vs the South's (1.0, 0.3); the East
teaches no one, ever.
**First finding (instrumentation):** headless soaks were being
contaminated by orphaned Godot child processes writing to later runs'
CSVs — two files disagreeing on the final day was the tell. Fixed with a
`StopAfterDays` clean self-terminate (no external kill, no race).
**Second finding (design):** passive-only diffusion barely helped the
North — youths spawned at the empty town centroid and worked solo, so a
death reset a villager to roughly what they'd have self-taught anyway.
The missing mechanic was the North's actual culture: **the young must
seek out elders on purpose.** Added deliberate teacher-seeking for
high-absorption souls, and youths now cradle beside the town's wisest
elder instead of in a void.
**Result:** the North leads at every checkpoint (day 150: 0.586 vs 0.477;
final 0.972 vs 0.951) and both towns reach far higher knowledge than
before. But the gap is modest **because a stable town approaches the
knowledge ceiling regardless of teaching speed** — everyone eventually
maxes out; the North just arrives sooner. Teaching culture is a
*recovery* advantage, not an equilibrium one.
**Next experiment (the real test):** a shock that kills the experts, then
measure which town rebuilds its knowledge — the North's thesis stated as
a falsifiable claim.
---
Soul layer: done and validated (runs 56). The expansion phase begins: Soul layer: done and validated (runs 56). The expansion phase begins:
1. **Towns as spatial structure**: multiple settlements with their own 1. **Towns as spatial structure**: multiple settlements with their own
+1
View File
@@ -6,6 +6,7 @@
[node name="Main" type="Node2D" unique_id=1549676286] [node name="Main" type="Node2D" unique_id=1549676286]
script = ExtResource("1_gm") script = ExtResource("1_gm")
TicksPerRealSecond = 1500.0 TicksPerRealSecond = 1500.0
StopAfterDays = 240
[node name="Visualization" type="Node2D" parent="." unique_id=1946930493] [node name="Visualization" type="Node2D" parent="." unique_id=1946930493]
script = ExtResource("2_viz") script = ExtResource("2_viz")
+6 -2
View File
@@ -151,9 +151,13 @@ public class Building
if (!npc.Inventory.TryGetValue(stage.Material, out float have) || have <= 0f) if (!npc.Inventory.TryGetValue(stage.Material, out float have) || have <= 0f)
return false; return false;
float take = Mathf.Min(have, stage.Cost - Delivered); // A practiced mason wastes less: the same materials go further
// in skilled hands — and the building is the teacher.
float masonry = npc.Know[KnowledgeDomain.Masonry];
float take = Mathf.Min(have, (stage.Cost - Delivered) / (1f + masonry * 0.5f));
npc.Inventory[stage.Material] = have - take; npc.Inventory[stage.Material] = have - take;
Delivered += take; Delivered += take * (1f + masonry * 0.5f);
npc.Know.Gain(KnowledgeDomain.Masonry, 0.002f);
if (Delivered >= stage.Cost) if (Delivered >= stage.Cost)
{ {
+79 -2
View File
@@ -36,6 +36,11 @@ public partial class GameManager : Node2D
[Export(PropertyHint.Range, "1,2000,1")] [Export(PropertyHint.Range, "1,2000,1")]
public float TicksPerRealSecond = 20f; // sim speed; ~1500 ≈ one day/sec for soaks public float TicksPerRealSecond = 20f; // sim speed; ~1500 ≈ one day/sec for soaks
/// <summary>Auto-quit after this many days (0 = run forever). Set for
/// headless soaks so runs self-terminate cleanly — no external kill, no
/// orphaned process racing the next run's CSV writes.</summary>
[Export] public int StopAfterDays = 0;
public World World { get; private set; } = null!; public World World { get; private set; } = null!;
public List<Npc> Npcs { get; } = new(); public List<Npc> Npcs { get; } = new();
public List<Building> Buildings { get; } = new(); public List<Building> Buildings { get; } = new();
@@ -91,14 +96,20 @@ public partial class GameManager : Node2D
{ {
for (int i = 0; i < count; i++) for (int i = 0; i < count; i++)
{ {
Npcs.Add(new Npc var npc = new Npc
{ {
Name = $"{prefix}_{(char)('A' + Npcs.Count % 26)}{(Npcs.Count >= 26 ? Npcs.Count.ToString() : "")}", Name = $"{prefix}_{(char)('A' + Npcs.Count % 26)}{(Npcs.Count >= 26 ? Npcs.Count.ToString() : "")}",
HomeTown = town, HomeTown = town,
Soul = soul, Soul = soul,
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2), PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
Position = center + new Vector2(rng.Next(-12, 13), rng.Next(-12, 13)), Position = center + new Vector2(rng.Next(-12, 13), rng.Next(-12, 13)),
}); // Staggered ages so the founding generation doesn't die
// in one terrible week.
AgeDays = rng.Next(0, 100),
LifeExpectancyDays = 150 + rng.Next(0, 80),
};
npc.Know.Capacity = 1.0f + (float)rng.NextDouble();
Npcs.Add(npc);
} }
} }
@@ -198,6 +209,65 @@ public partial class GameManager : Node2D
} }
} }
// --- Mortality: generations end, and what wasn't passed on ends too --
public int DeathsToday { get; set; }
private int _bornCount;
private void TickMortality()
{
var dying = new List<Npc>();
foreach (var npc in Npcs)
{
npc.AgeDays += 1f;
if (npc.AgeDays >= npc.LifeExpectancyDays)
dying.Add(npc);
}
var rng = new System.Random(Seed + (int)TotalTicks);
foreach (var dead in Npcs.ToArray())
{
if (!dying.Contains(dead)) continue;
Npcs.Remove(dead);
DeathsToday++;
// Everything unshared dies with them: skills, memories, echoes.
// What survives is what they taught, built, and stored.
foreach (var other in Npcs)
other.ForgetPerson(dead);
// A youth comes of age in the same town, same culture, knowing
// almost nothing — but raised among the living, not in a void.
// They spawn beside the town's wisest elder, so the young begin
// life within reach of what the community still remembers. The
// town's knowledge is only what its living carry — but the young
// start where that knowledge is.
_bornCount++;
Npc? elder = null;
float bestKnow = -1f;
foreach (var other in Npcs)
if (other.HomeTown == dead.HomeTown && other.Know.Total > bestKnow)
{ bestKnow = other.Know.Total; elder = other; }
Vector2 cradle = elder?.Position ?? TownCentroid(dead.HomeTown);
var youth = new Npc
{
Name = $"{dead.HomeTown}_{(char)('A' + _bornCount % 26)}{_bornCount + 25}",
HomeTown = dead.HomeTown,
Soul = dead.Soul, // raised in the culture that raised them
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
Position = cradle + new Vector2(rng.Next(-4, 5), rng.Next(-4, 5)),
AgeDays = 0f,
LifeExpectancyDays = 150 + rng.Next(0, 80),
};
youth.Know.Capacity = 1.0f + (float)rng.NextDouble();
Npcs.Add(youth);
GD.Print($"[Passing] day {Day}: {dead.Name} dies at {dead.AgeDays:0} days " +
$"(knowledge {dead.Know.Total:0.00} lost); {youth.Name} comes of age.");
}
}
/// <summary>Where the community's feet actually are — new communal /// <summary>Where the community's feet actually are — new communal
/// buildings are founded here, not at a scripted town center.</summary> /// buildings are founded here, not at a scripted town center.</summary>
public Vector2 CommunityCentroid() public Vector2 CommunityCentroid()
@@ -224,9 +294,16 @@ public partial class GameManager : Node2D
building.DailyUpkeep(); building.DailyUpkeep();
foreach (var npc in Npcs) foreach (var npc in Npcs)
npc.FadeEchoes(0.005f); npc.FadeEchoes(0.005f);
TickMortality();
StatsLogger.LogDay(this); StatsLogger.LogDay(this);
if (Day % 10 == 0) if (Day % 10 == 0)
GD.Print($"[WorldSim] Day {Day} complete."); GD.Print($"[WorldSim] Day {Day} complete.");
if (StopAfterDays > 0 && Day >= StopAfterDays)
{
GD.Print($"[WorldSim] Reached day {Day} — stopping.");
GetTree().Quit();
}
} }
} }
} }
+47
View File
@@ -0,0 +1,47 @@
using Godot;
namespace WorldSim;
/// <summary>Domains of practical knowledge (SPEC §5 — deliberately few).</summary>
public enum KnowledgeDomain { Forage, Woodcraft, Masonry }
/// <summary>
/// What a person knows how to do (SPEC §5). Not an object in the world —
/// it lives in people, spreads by proximity, grows by practice, and dies
/// with its holder unless it was passed on. Every death is a small library
/// burning; a teaching culture is a culture of copies.
///
/// Capacity is personal and randomized: some people can hold more than
/// others, and what fills first is what they lived.
/// </summary>
public class Knowledge
{
public const int DomainCount = 3;
/// <summary>01 per domain.</summary>
public float[] Skill = new float[DomainCount];
/// <summary>Total learning this mind can hold, across all domains.</summary>
public float Capacity = 1.5f;
public float Total => Skill[0] + Skill[1] + Skill[2];
public float Headroom => Mathf.Max(0f, Capacity - Total);
public float this[KnowledgeDomain d] => Skill[(int)d];
/// <summary>Learn, limited by personal capacity.</summary>
public void Gain(KnowledgeDomain d, float amount)
{
if (amount <= 0f || Headroom <= 0f) return;
float a = Mathf.Min(amount, Headroom);
Skill[(int)d] = Mathf.Clamp(Skill[(int)d] + a, 0f, 1f);
}
/// <summary>Which domain a material teaches and benefits from.</summary>
public static KnowledgeDomain DomainFor(MaterialKind kind) => kind switch
{
MaterialKind.Food => KnowledgeDomain.Forage,
MaterialKind.Wood => KnowledgeDomain.Woodcraft,
_ => KnowledgeDomain.Masonry, // stone, clay — builder's craft
};
}
+1
View File
@@ -0,0 +1 @@
uid://f5ki6rajbww1
+80 -3
View File
@@ -33,6 +33,13 @@ public class Npc
public float Health = 100f; // forced rest below 30 public float Health = 100f; // forced rest below 30
public float Nourishment = 1f; // 1 = fed; drains daily, eats from pack public float Nourishment = 1f; // 1 = fed; drains daily, eats from pack
// --- Mortality: knowledge is generational only if generations end ----
public float AgeDays;
public float LifeExpectancyDays = 180f;
// --- Knowledge (SPEC §5) ----------------------------------------------
public Knowledge Know = new();
// --- State ----------------------------------------------------------- // --- State -----------------------------------------------------------
public NpcState State = NpcState.Gathering; public NpcState State = NpcState.Gathering;
@@ -78,6 +85,33 @@ public class Npc
/// who they are becoming. Indexed by (int)NpcState.</summary> /// who they are becoming. Indexed by (int)NpcState.</summary>
public int[] StateTicksToday = new int[5]; public int[] StateTicksToday = new int[5];
/// <summary>
/// Learn from another by proximity (SPEC §5). Rate scales with your own
/// absorption and their drive to teach. Returns true if anything passed.
/// </summary>
private bool LearnFrom(Npc other)
{
bool learned = false;
float rate = 0.0016f * Soul.Absorption * (1f + other.Soul.TeachingDrive * 2.5f);
for (int d = 0; d < Knowledge.DomainCount; d++)
{
float gap = other.Know.Skill[d] - Know.Skill[d];
if (gap > 0.03f)
{
Know.Gain((KnowledgeDomain)d, gap * rate);
learned = true;
}
}
return learned;
}
/// <summary>Clear live references to someone who has died.</summary>
public void ForgetPerson(Npc dead)
{
if (_targetNpc == dead) _targetNpc = null;
if (_giftSource == dead) _giftSource = null;
}
// --- Diagnostics (read-only views for the stats logger) --------------- // --- Diagnostics (read-only views for the stats logger) ---------------
public MaterialKind CurrentDemand(GameManager gm) => PickGatherTarget(gm); public MaterialKind CurrentDemand(GameManager gm) => PickGatherTarget(gm);
public int RoughNights => _unshelteredRests; public int RoughNights => _unshelteredRests;
@@ -426,8 +460,12 @@ public class Npc
else else
{ {
Activity = $"harvesting {_targetNode.Kind.ToString().ToLower()}"; Activity = $"harvesting {_targetNode.Kind.ToString().ToLower()}";
float taken = world.Harvest(_targetNode, requested: 2f, this); // Skill pays: a practiced hand takes more per reach — and the
// work itself is the teacher.
var domain = Knowledge.DomainFor(_targetNode.Kind);
float taken = world.Harvest(_targetNode, requested: 2f * (1f + Know[domain]), this);
if (taken <= 0f) { _targetNode = null; return; } // node at its floor — re-seek if (taken <= 0f) { _targetNode = null; return; } // node at its floor — re-seek
Know.Gain(domain, 0.0006f);
Inventory.TryGetValue(_targetNode.Kind, out float have); Inventory.TryGetValue(_targetNode.Kind, out float have);
Inventory[_targetNode.Kind] = have + taken; Inventory[_targetNode.Kind] = have + taken;
@@ -645,9 +683,42 @@ public class Npc
private void TickSocializing(GameManager gm) private void TickSocializing(GameManager gm)
{ {
// Drift toward the nearest neighbor — community forms where feet do. // The young seek a teacher. A soul that still has much to learn and
// the drive to learn it looks for the wisest elder in town rather
// than drifting to whoever's closest. This is the North's culture in
// motion: the young sitting at the feet of the old, on purpose.
Npc? nearest = null; Npc? nearest = null;
float bestDist = float.MaxValue; float bestDist = float.MaxValue;
if (Soul.Absorption > 1.2f && Know.Total < Know.Capacity * 0.6f)
{
Npc? teacher = null;
float bestWorth = 0.15f; // must actually know more than us
foreach (var other in gm.Npcs)
{
if (other == this || other.HomeTown != HomeTown) continue;
float worth = (other.Know.Total - Know.Total) * (1f + other.Soul.TeachingDrive);
if (worth > bestWorth) { bestWorth = worth; teacher = other; }
}
if (teacher != null)
{
if (Position.DistanceTo(teacher.Position) > 3f)
{
Activity = $"seeking out {teacher.Name} to learn";
MoveToward(teacher.Position);
}
else
{
LearnFrom(teacher);
Activity = $"learning from {teacher.Name}";
}
if (!gm.IsNight && _stateTimer > 15f) Enter(NpcState.Gathering);
return;
}
}
// Otherwise: drift toward the nearest neighbor — community forms
// where feet do.
foreach (var other in gm.Npcs) foreach (var other in gm.Npcs)
{ {
if (other == this) continue; if (other == this) continue;
@@ -659,9 +730,15 @@ public class Npc
Activity = $"walking over to {nearest.Name}"; Activity = $"walking over to {nearest.Name}";
MoveToward(nearest.Position); MoveToward(nearest.Position);
} }
else if (nearest != null)
{
Activity = LearnFrom(nearest)
? $"learning from {nearest.Name}"
: $"chatting with {nearest.Name}";
}
else else
{ {
Activity = nearest != null ? $"chatting with {nearest.Name}" : "idling"; Activity = "idling";
} }
// TODO(Week 3): bonds + Generosity-weighted spontaneous help. // TODO(Week 3): bonds + Generosity-weighted spontaneous help.
+12
View File
@@ -53,6 +53,12 @@ public class SoulProfile
public float StatusBias; // West: visible-wealth preference (unused in MVP) public float StatusBias; // West: visible-wealth preference (unused in MVP)
public float Accumulation; // East: hoarding pressure (unused in MVP) public float Accumulation; // East: hoarding pressure (unused in MVP)
// Knowledge culture (SPEC §5): how readily this soul absorbs from
// others, and how deliberately it passes on what it knows. The North's
// whole identity lives in these two numbers.
public float Absorption = 1f; // learning rate multiplier
public float TeachingDrive = 0f; // how much being near this soul teaches
public static SoulProfile NatureSoul() => new() public static SoulProfile NatureSoul() => new()
{ {
Type = SoulType.Nature, Type = SoulType.Nature,
@@ -61,6 +67,8 @@ public class SoulProfile
CommunityBias = 0.8f, CommunityBias = 0.8f,
StatusBias = 0.1f, StatusBias = 0.1f,
Accumulation = 0.1f, Accumulation = 0.1f,
Absorption = 1.0f,
TeachingDrive = 0.3f, // knowledge passes casually, by living together
}; };
/// <summary> /// <summary>
@@ -77,6 +85,8 @@ public class SoulProfile
CommunityBias = 0.95f, CommunityBias = 0.95f,
StatusBias = 0.15f, StatusBias = 0.15f,
Accumulation = 0.2f, Accumulation = 0.2f,
Absorption = 1.6f, // raised to receive what elders hand down
TeachingDrive = 0.9f, // and to hand it down in turn — the whole culture
}; };
/// <summary> /// <summary>
@@ -92,5 +102,7 @@ public class SoulProfile
CommunityBias = 0.1f, CommunityBias = 0.1f,
StatusBias = 0.5f, StatusBias = 0.5f,
Accumulation = 0.9f, Accumulation = 0.9f,
Absorption = 0.7f, // they take, but rarely sit still to learn
TeachingDrive = 0.0f, // and teach no one anything, ever
}; };
} }
+15 -4
View File
@@ -21,11 +21,12 @@ public static class StatsLogger
"avg_fatigue,avg_nourish,avg_health,carried," + "avg_fatigue,avg_nourish,avg_health,carried," +
"gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," + "gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," +
"shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food," + "shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food," +
"avg_debris,refusals,incomplete_sites"; "avg_debris,refusals,incomplete_sites,avg_knowledge,deaths";
private const string NpcHeader = private const string NpcHeader =
"day,npc,name,soul,town,dominant,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," + "day,npc,name,soul,town,dominant,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks," +
"nourish,health,debris,demand,rough_nights,hunger_mem"; "nourish,health,debris,demand,rough_nights,hunger_mem," +
"age,know_forage,know_wood,know_masonry";
private const string GiftHeader = private const string GiftHeader =
"day,giver,giver_soul,receiver,receiver_soul,material,amount"; "day,giver,giver_soul,receiver,receiver_soul,material,amount";
@@ -143,7 +144,12 @@ public static class StatsLogger
int incomplete = 0; int incomplete = 0;
foreach (var b in gm.Buildings) if (!b.IsComplete) incomplete++; foreach (var b in gm.Buildings) if (!b.IsComplete) incomplete++;
row.Append(incomplete); row.Append(incomplete).Append(',');
float knowSum = 0f;
foreach (var npc in gm.Npcs) knowSum += npc.Know.Total;
row.Append((knowSum / count).ToString("0.000", ci)).Append(',');
row.Append(gm.DeathsToday);
File.AppendAllText(_path, row + "\n"); File.AppendAllText(_path, row + "\n");
@@ -170,7 +176,11 @@ public static class StatsLogger
.Append(npc.Imprint.Total.ToString("0.0000", ci)).Append(',') .Append(npc.Imprint.Total.ToString("0.0000", ci)).Append(',')
.Append(npc.CurrentDemand(gm)).Append(',') .Append(npc.CurrentDemand(gm)).Append(',')
.Append(npc.RoughNights).Append(',') .Append(npc.RoughNights).Append(',')
.Append(npc.HungerMemory ? 1 : 0).Append('\n'); .Append(npc.HungerMemory ? 1 : 0).Append(',')
.Append(npc.AgeDays.ToString("0", ci)).Append(',')
.Append(npc.Know[KnowledgeDomain.Forage].ToString("0.000", ci)).Append(',')
.Append(npc.Know[KnowledgeDomain.Woodcraft].ToString("0.000", ci)).Append(',')
.Append(npc.Know[KnowledgeDomain.Masonry].ToString("0.000", ci)).Append('\n');
System.Array.Clear(npc.StateTicksToday, 0, npc.StateTicksToday.Length); System.Array.Clear(npc.StateTicksToday, 0, npc.StateTicksToday.Length);
} }
File.AppendAllText(_npcPath, npcRows.ToString()); File.AppendAllText(_npcPath, npcRows.ToString());
@@ -179,5 +189,6 @@ public static class StatsLogger
gm.World.HarvestedToday = 0f; gm.World.HarvestedToday = 0f;
TradeSystem.TradesToday = 0; TradeSystem.TradesToday = 0;
TradeSystem.RefusalsToday = 0; TradeSystem.RefusalsToday = 0;
gm.DeathsToday = 0;
} }
} }
+4 -3
View File
@@ -135,9 +135,10 @@ public partial class Visualization : Node2D
DrawString(font, new Vector2(PanelX + 36, y), DrawString(font, new Vector2(PanelX + 36, y),
$"{i + 1,2} {npc.State,-11} {npc.Activity}", $"{i + 1,2} {npc.State,-11} {npc.Activity}",
fontSize: 13, modulate: TextMain); fontSize: 13, modulate: TextMain);
DrawString(font, new Vector2(PanelX + 400, y), DrawString(font, new Vector2(PanelX + 390, y),
$"F {npc.Fatigue,3:0} N {npc.Nourishment * 100,3:0} D {npc.Imprint.Total * 100,2:0}" + $"N {npc.Nourishment * 100,3:0} D {npc.Imprint.Total * 100,2:0}" +
$" C {npc.TotalCarried(),4:0.0} {npc.DominantStateToday().ToString().ToLower()[..4]}", $" K {npc.Know.Total,4:0.00} A {npc.AgeDays,3:0}" +
$" {npc.DominantStateToday().ToString().ToLower()[..4]}",
fontSize: 12, modulate: TextDim); fontSize: 12, modulate: TextDim);
} }
+531 -391
View File
@@ -1,394 +1,534 @@
day,giver,giver_soul,receiver,receiver_soul,material,amount day,giver,giver_soul,receiver,receiver_soul,material,amount
3,North_Q,Generational,North_V,Generational,Stone,3.0 3,North_V,Generational,North_R,Generational,Stone,3.0
3,North_S,Generational,South_E,Nature,Stone,3.0 3,North_S,Generational,South_A,Nature,Stone,3.0
4,North_Y,Generational,South_F,Nature,Stone,3.0 3,North_T,Generational,South_N,Selfish,Stone,3.0
4,North_U,Generational,South_K,Nature,Stone,3.0 4,North_W,Generational,South_H,Nature,Stone,3.0
4,North_W,Generational,South_L,Nature,Stone,3.0 4,North_P,Generational,South_M,Selfish,Stone,3.0
5,North_R,Generational,North_W,Generational,Stone,3.0 12,South_D,Nature,South_G,Nature,Stone,3.0
99,South_N,Selfish,South_A,Nature,Refusal,0.0 17,South_L,Nature,North_S,Generational,Stone,3.0
99,South_N,Selfish,North_Q,Generational,Refusal,0.0 18,South_I,Nature,South_D,Nature,Stone,3.0
99,South_N,Selfish,North_Y,Generational,Refusal,0.0 20,South_J,Nature,South_I,Nature,Stone,3.0
99,South_O,Selfish,South_A,Nature,Refusal,0.0 25,North_W,Generational,North_V,Generational,Stone,3.0
99,South_O,Selfish,North_Q,Generational,Refusal,0.0 101,South_M,Selfish,South_F,Nature,Refusal,0.0
99,South_O,Selfish,North_Y,Generational,Refusal,0.0
99,South_M,Selfish,South_A,Nature,Refusal,0.0
99,South_M,Selfish,North_Q,Generational,Refusal,0.0
99,South_M,Selfish,North_Y,Generational,Refusal,0.0
99,South_M,Selfish,South_A,Nature,Refusal,0.0
99,South_M,Selfish,North_Q,Generational,Refusal,0.0
99,South_M,Selfish,North_Y,Generational,Refusal,0.0
99,South_N,Selfish,South_A,Nature,Refusal,0.0
99,South_O,Selfish,South_A,Nature,Refusal,0.0
99,South_N,Selfish,North_Q,Generational,Refusal,0.0
99,South_N,Selfish,North_Y,Generational,Refusal,0.0
99,South_O,Selfish,North_Q,Generational,Refusal,0.0
99,South_O,Selfish,North_Y,Generational,Refusal,0.0
99,South_N,Selfish,South_L,Nature,Refusal,0.0
99,South_N,Selfish,North_P,Generational,Refusal,0.0
99,South_N,Selfish,North_V,Generational,Refusal,0.0
99,South_O,Selfish,South_L,Nature,Refusal,0.0
99,South_O,Selfish,North_P,Generational,Refusal,0.0
99,South_O,Selfish,North_V,Generational,Refusal,0.0
99,South_M,Selfish,South_L,Nature,Refusal,0.0
99,South_M,Selfish,North_P,Generational,Refusal,0.0
99,South_M,Selfish,North_V,Generational,Refusal,0.0
99,South_N,Selfish,South_L,Nature,Refusal,0.0
99,South_N,Selfish,North_P,Generational,Refusal,0.0
99,South_N,Selfish,North_V,Generational,Refusal,0.0
99,South_O,Selfish,South_L,Nature,Refusal,0.0
99,South_O,Selfish,North_P,Generational,Refusal,0.0
99,South_O,Selfish,North_V,Generational,Refusal,0.0
99,South_M,Selfish,South_L,Nature,Refusal,0.0
99,South_M,Selfish,North_P,Generational,Refusal,0.0
99,South_M,Selfish,North_V,Generational,Refusal,0.0
99,South_M,Selfish,South_B,Nature,Refusal,0.0
99,South_M,Selfish,South_I,Nature,Refusal,0.0
99,South_M,Selfish,South_E,Nature,Refusal,0.0
99,South_M,Selfish,South_K,Nature,Refusal,0.0
99,South_N,Selfish,South_B,Nature,Refusal,0.0
99,South_N,Selfish,South_I,Nature,Refusal,0.0
99,South_N,Selfish,South_B,Nature,Refusal,0.0
99,South_N,Selfish,South_E,Nature,Refusal,0.0
99,South_N,Selfish,South_I,Nature,Refusal,0.0
99,South_N,Selfish,South_K,Nature,Refusal,0.0
99,South_M,Selfish,South_E,Nature,Refusal,0.0
99,South_M,Selfish,South_K,Nature,Refusal,0.0
99,South_M,Selfish,South_B,Nature,Refusal,0.0
99,South_M,Selfish,South_I,Nature,Refusal,0.0
99,South_N,Selfish,South_E,Nature,Refusal,0.0
99,South_N,Selfish,South_K,Nature,Refusal,0.0
99,South_O,Selfish,South_B,Nature,Refusal,0.0
99,South_O,Selfish,South_I,Nature,Refusal,0.0
99,South_O,Selfish,South_E,Nature,Refusal,0.0
99,South_O,Selfish,South_K,Nature,Refusal,0.0
99,South_O,Selfish,South_B,Nature,Refusal,0.0
99,South_O,Selfish,South_I,Nature,Refusal,0.0
99,South_O,Selfish,South_E,Nature,Refusal,0.0
99,South_O,Selfish,South_K,Nature,Refusal,0.0
99,South_M,Selfish,South_F,Nature,Refusal,0.0
99,South_M,Selfish,South_J,Nature,Refusal,0.0
99,South_O,Selfish,South_F,Nature,Refusal,0.0
99,South_O,Selfish,South_J,Nature,Refusal,0.0
99,South_O,Selfish,South_F,Nature,Refusal,0.0
99,South_O,Selfish,South_J,Nature,Refusal,0.0
99,South_M,Selfish,South_F,Nature,Refusal,0.0
99,South_M,Selfish,South_J,Nature,Refusal,0.0
99,South_N,Selfish,South_F,Nature,Refusal,0.0
99,South_N,Selfish,South_J,Nature,Refusal,0.0
99,South_N,Selfish,South_F,Nature,Refusal,0.0
99,South_N,Selfish,South_J,Nature,Refusal,0.0
100,South_M,Selfish,North_W,Generational,Refusal,0.0
100,South_O,Selfish,South_D,Nature,Refusal,0.0
100,South_O,Selfish,North_W,Generational,Refusal,0.0
100,South_O,Selfish,North_W,Generational,Refusal,0.0
100,South_M,Selfish,South_D,Nature,Refusal,0.0
100,South_M,Selfish,North_W,Generational,Refusal,0.0
100,South_M,Selfish,South_D,Nature,Refusal,0.0
100,South_O,Selfish,South_D,Nature,Refusal,0.0
100,South_N,Selfish,North_W,Generational,Refusal,0.0
100,South_N,Selfish,North_W,Generational,Refusal,0.0
100,South_N,Selfish,South_D,Nature,Refusal,0.0
100,South_N,Selfish,South_D,Nature,Refusal,0.0
100,South_A,Nature,South_G,Nature,Stone,3.0
100,South_D,Nature,North_T,Generational,Stone,3.0
100,South_E,Nature,South_C,Nature,Stone,3.0
100,South_A,Nature,North_R,Generational,Stone,3.0
100,South_I,Nature,South_O,Selfish,Stone,3.0
100,South_E,Nature,South_I,Nature,Stone,3.0
100,South_B,Nature,South_E,Nature,Stone,3.0
100,South_F,Nature,South_J,Nature,Stone,3.0
100,South_K,Nature,South_H,Nature,Stone,3.0
100,South_J,Nature,South_B,Nature,Stone,3.0
100,South_I,Nature,South_F,Nature,Stone,3.0
100,South_E,Nature,South_I,Nature,Stone,3.0
100,South_F,Nature,South_E,Nature,Stone,3.0
100,South_B,Nature,South_J,Nature,Stone,3.0
100,South_K,Nature,South_B,Nature,Stone,3.0
100,South_L,Nature,South_F,Nature,Stone,3.0
100,South_J,Nature,South_K,Nature,Stone,3.0
100,South_I,Nature,South_J,Nature,Stone,3.0
100,South_A,Nature,South_I,Nature,Stone,3.0
100,South_E,Nature,South_A,Nature,Stone,3.0
100,South_F,Nature,South_E,Nature,Stone,3.0
100,South_B,Nature,South_F,Nature,Stone,3.0
100,South_D,Nature,South_B,Nature,Stone,3.0
100,South_L,Nature,South_D,Nature,Stone,3.0
100,South_J,Nature,South_L,Nature,Stone,3.0
100,South_I,Nature,South_J,Nature,Stone,3.0
100,South_A,Nature,South_I,Nature,Stone,3.0
100,South_E,Nature,South_A,Nature,Stone,3.0
100,South_F,Nature,South_E,Nature,Stone,3.0
100,South_B,Nature,South_F,Nature,Stone,3.0
100,South_D,Nature,South_B,Nature,Stone,3.0
100,South_L,Nature,South_D,Nature,Stone,3.0
100,South_I,Nature,South_L,Nature,Stone,3.0
100,South_O,Selfish,South_G,Nature,Refusal,0.0
100,South_O,Selfish,South_G,Nature,Refusal,0.0
101,South_A,Nature,South_I,Nature,Stone,3.0
101,South_O,Selfish,South_H,Nature,Refusal,0.0
101,South_O,Selfish,North_T,Generational,Refusal,0.0
101,South_N,Selfish,North_X,Generational,Refusal,0.0
101,South_O,Selfish,South_H,Nature,Refusal,0.0
101,South_O,Selfish,North_T,Generational,Refusal,0.0
101,South_M,Selfish,North_S,Generational,Refusal,0.0
101,South_N,Selfish,North_S,Generational,Refusal,0.0
101,South_N,Selfish,North_S,Generational,Refusal,0.0
101,South_K,Nature,North_P,Generational,Stone,3.0
101,South_M,Selfish,North_X,Generational,Refusal,0.0
101,South_M,Selfish,North_X,Generational,Refusal,0.0
101,South_N,Selfish,South_G,Nature,Refusal,0.0
101,South_M,Selfish,North_T,Generational,Refusal,0.0
101,South_M,Selfish,South_H,Nature,Refusal,0.0
101,South_N,Selfish,South_G,Nature,Refusal,0.0
101,South_M,Selfish,North_T,Generational,Refusal,0.0
101,South_M,Selfish,South_H,Nature,Refusal,0.0
101,South_M,Selfish,North_S,Generational,Refusal,0.0
101,South_I,Nature,North_Y,Generational,Stone,3.0
101,South_O,Selfish,North_X,Generational,Refusal,0.0
101,South_O,Selfish,North_X,Generational,Refusal,0.0
101,South_O,Selfish,North_S,Generational,Refusal,0.0
101,South_O,Selfish,North_S,Generational,Refusal,0.0
101,South_M,Selfish,South_G,Nature,Refusal,0.0 101,South_M,Selfish,South_G,Nature,Refusal,0.0
101,South_N,Selfish,North_T,Generational,Refusal,0.0 101,South_M,Selfish,South_B,Nature,Refusal,0.0
101,South_N,Selfish,South_H,Nature,Refusal,0.0 101,South_M,Selfish,South_F,Nature,Refusal,0.0
101,South_M,Selfish,South_G,Nature,Refusal,0.0 101,South_M,Selfish,South_G,Nature,Refusal,0.0
101,South_N,Selfish,North_T,Generational,Refusal,0.0 101,South_M,Selfish,South_B,Nature,Refusal,0.0
101,South_N,Selfish,South_H,Nature,Refusal,0.0 102,South_N,Selfish,South_D,Nature,Refusal,0.0
101,South_N,Selfish,North_X,Generational,Refusal,0.0 102,South_N,Selfish,North_P,Generational,Refusal,0.0
101,South_K,Nature,North_X,Generational,Stone,3.0 102,South_O,Selfish,South_D,Nature,Refusal,0.0
101,South_O,Selfish,North_R,Generational,Refusal,0.0 102,South_O,Selfish,North_P,Generational,Refusal,0.0
101,South_M,Selfish,South_C,Nature,Refusal,0.0 102,South_N,Selfish,South_D,Nature,Refusal,0.0
101,South_E,Nature,South_M,Selfish,Stone,3.0 102,South_N,Selfish,North_P,Generational,Refusal,0.0
101,South_O,Selfish,North_R,Generational,Refusal,0.0 102,South_O,Selfish,South_D,Nature,Refusal,0.0
101,South_N,Selfish,South_C,Nature,Refusal,0.0 102,South_O,Selfish,North_P,Generational,Refusal,0.0
101,South_N,Selfish,South_C,Nature,Refusal,0.0 102,South_N,Selfish,South_A,Nature,Refusal,0.0
101,South_M,Selfish,South_C,Nature,Refusal,0.0 102,South_N,Selfish,South_I,Nature,Refusal,0.0
101,South_O,Selfish,South_C,Nature,Refusal,0.0 102,South_O,Selfish,South_A,Nature,Refusal,0.0
101,South_O,Selfish,South_C,Nature,Refusal,0.0 102,South_O,Selfish,South_I,Nature,Refusal,0.0
101,South_M,Selfish,North_R,Generational,Refusal,0.0 102,South_N,Selfish,South_A,Nature,Refusal,0.0
101,South_N,Selfish,North_R,Generational,Refusal,0.0 102,South_N,Selfish,South_I,Nature,Refusal,0.0
101,South_A,Nature,South_N,Selfish,Stone,3.0 102,South_O,Selfish,South_A,Nature,Refusal,0.0
101,South_N,Selfish,North_R,Generational,Refusal,0.0 102,South_O,Selfish,South_I,Nature,Refusal,0.0
101,South_M,Selfish,North_R,Generational,Refusal,0.0 102,South_N,Selfish,South_B,Nature,Refusal,0.0
101,South_O,Selfish,North_U,Generational,Refusal,0.0 102,South_N,Selfish,South_F,Nature,Refusal,0.0
101,South_G,Nature,North_U,Generational,Stone,3.0 102,South_N,Selfish,South_G,Nature,Refusal,0.0
101,South_O,Selfish,North_U,Generational,Refusal,0.0 102,South_O,Selfish,South_B,Nature,Refusal,0.0
101,South_M,Selfish,North_U,Generational,Refusal,0.0 102,South_O,Selfish,South_F,Nature,Refusal,0.0
101,South_N,Selfish,North_U,Generational,Refusal,0.0 102,South_O,Selfish,South_G,Nature,Refusal,0.0
101,South_N,Selfish,North_U,Generational,Refusal,0.0 102,South_N,Selfish,South_B,Nature,Refusal,0.0
101,South_M,Selfish,North_U,Generational,Refusal,0.0 102,South_N,Selfish,South_F,Nature,Refusal,0.0
102,South_A,Nature,North_S,Generational,Stone,3.0 102,South_N,Selfish,South_G,Nature,Refusal,0.0
102,South_F,Nature,North_Q,Generational,Stone,3.0 102,South_O,Selfish,South_B,Nature,Refusal,0.0
103,South_B,Nature,North_X,Generational,Stone,3.0 102,South_O,Selfish,South_F,Nature,Refusal,0.0
104,South_A,Nature,North_P,Generational,Stone,3.0 102,South_O,Selfish,South_G,Nature,Refusal,0.0
104,South_F,Nature,North_T,Generational,Stone,3.0 102,South_M,Selfish,North_P,Generational,Refusal,0.0
109,South_H,Nature,North_X,Generational,Stone,3.0 102,South_M,Selfish,South_D,Nature,Refusal,0.0
110,North_P,Generational,North_R,Generational,Stone,3.0 102,South_M,Selfish,North_P,Generational,Refusal,0.0
110,North_Q,Generational,North_S,Generational,Stone,3.0 102,South_M,Selfish,South_D,Nature,Refusal,0.0
110,South_A,Nature,North_U,Generational,Stone,3.0 102,South_N,Selfish,North_V,Generational,Refusal,0.0
110,South_I,Nature,North_Y,Generational,Stone,3.0 102,South_O,Selfish,North_V,Generational,Refusal,0.0
110,South_B,Nature,North_W,Generational,Stone,3.0 102,South_N,Selfish,North_V,Generational,Refusal,0.0
110,South_C,Nature,North_V,Generational,Stone,3.0 102,South_O,Selfish,North_V,Generational,Refusal,0.0
110,South_D,Nature,North_T,Generational,Stone,3.0 102,South_M,Selfish,North_S,Generational,Refusal,0.0
114,South_B,Nature,South_J,Nature,Stone,3.0 102,South_M,Selfish,North_U,Generational,Refusal,0.0
114,South_C,Nature,South_B,Nature,Stone,3.0 102,South_M,Selfish,North_S,Generational,Refusal,0.0
114,South_D,Nature,South_K,Nature,Stone,3.0 102,South_M,Selfish,North_U,Generational,Refusal,0.0
114,South_E,Nature,South_L,Nature,Stone,3.0 102,South_M,Selfish,South_A,Nature,Refusal,0.0
114,South_A,Nature,South_C,Nature,Stone,3.0 102,South_M,Selfish,South_I,Nature,Refusal,0.0
114,South_G,Nature,South_A,Nature,Stone,3.0 102,South_M,Selfish,South_A,Nature,Refusal,0.0
114,South_H,Nature,South_D,Nature,Stone,3.0 102,South_M,Selfish,South_I,Nature,Refusal,0.0
114,South_I,Nature,South_E,Nature,Stone,3.0 102,South_M,Selfish,North_V,Generational,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 102,South_M,Selfish,North_V,Generational,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 102,South_N,Selfish,North_S,Generational,Refusal,0.0
114,South_K,Nature,South_H,Nature,Stone,3.0 102,South_N,Selfish,North_U,Generational,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 102,South_O,Selfish,North_S,Generational,Refusal,0.0
114,South_B,Nature,South_J,Nature,Stone,3.0 102,South_O,Selfish,North_U,Generational,Refusal,0.0
114,South_C,Nature,South_B,Nature,Stone,3.0 102,South_N,Selfish,North_S,Generational,Refusal,0.0
114,South_D,Nature,South_C,Nature,Stone,3.0 102,South_N,Selfish,North_U,Generational,Refusal,0.0
114,South_E,Nature,South_K,Nature,Stone,3.0 102,South_O,Selfish,North_S,Generational,Refusal,0.0
114,South_A,Nature,South_D,Nature,Stone,3.0 102,South_O,Selfish,North_U,Generational,Refusal,0.0
114,South_G,Nature,South_A,Nature,Stone,3.0 103,South_O,Selfish,South_H,Nature,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_O,Selfish,South_J,Nature,Refusal,0.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_O,Selfish,North_B26,Generational,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_N,Selfish,South_H,Nature,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_N,Selfish,South_J,Nature,Refusal,0.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_N,Selfish,North_B26,Generational,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_N,Selfish,South_H,Nature,Refusal,0.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_O,Selfish,South_J,Nature,Refusal,0.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,South_O,Selfish,North_B26,Generational,Refusal,0.0
114,South_D,Nature,South_C,Nature,Stone,3.0 103,South_O,Selfish,South_H,Nature,Refusal,0.0
114,South_E,Nature,South_K,Nature,Stone,3.0 103,South_N,Selfish,South_J,Nature,Refusal,0.0
114,South_A,Nature,South_D,Nature,Stone,3.0 103,South_N,Selfish,North_B26,Generational,Refusal,0.0
114,South_G,Nature,South_A,Nature,Stone,3.0 103,South_M,Selfish,North_Q,Generational,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_M,Selfish,North_W,Generational,Refusal,0.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_M,Selfish,North_Q,Generational,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_M,Selfish,North_W,Generational,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_M,Selfish,South_H,Nature,Refusal,0.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_M,Selfish,South_J,Nature,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_M,Selfish,North_B26,Generational,Refusal,0.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_M,Selfish,South_H,Nature,Refusal,0.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,South_M,Selfish,South_J,Nature,Refusal,0.0
114,South_D,Nature,South_C,Nature,Stone,3.0 103,South_M,Selfish,North_B26,Generational,Refusal,0.0
114,South_E,Nature,South_K,Nature,Stone,3.0 103,South_O,Selfish,North_Q,Generational,Refusal,0.0
114,South_A,Nature,South_D,Nature,Stone,3.0 103,South_O,Selfish,North_W,Generational,Refusal,0.0
114,South_G,Nature,South_A,Nature,Stone,3.0 103,South_N,Selfish,North_Q,Generational,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_N,Selfish,North_W,Generational,Refusal,0.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_O,Selfish,North_Q,Generational,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_N,Selfish,North_W,Generational,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_N,Selfish,North_Q,Generational,Refusal,0.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_O,Selfish,North_W,Generational,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_D,Nature,South_J,Nature,Stone,3.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_H,Nature,South_F,Nature,Stone,3.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,South_J,Nature,South_B,Nature,Stone,3.0
114,South_D,Nature,South_C,Nature,Stone,3.0 103,South_I,Nature,South_J,Nature,Stone,3.0
114,South_E,Nature,South_K,Nature,Stone,3.0 103,South_B,Nature,South_I,Nature,Stone,3.0
114,South_A,Nature,South_D,Nature,Stone,3.0 103,South_G,Nature,South_H,Nature,Stone,3.0
114,South_G,Nature,South_A,Nature,Stone,3.0 103,South_D,Nature,South_B,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_H,Nature,South_G,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_I,Nature,South_H,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_D,Nature,South_B,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_H,Nature,South_I,Nature,Stone,3.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,South_B,Nature,South_H,Nature,Stone,3.0
114,South_D,Nature,South_C,Nature,Stone,3.0 103,South_I,Nature,South_J,Nature,Stone,3.0
114,South_E,Nature,South_D,Nature,Stone,3.0 103,South_D,Nature,South_B,Nature,Stone,3.0
114,South_A,Nature,South_K,Nature,Stone,3.0 103,South_M,Selfish,North_E29,Generational,Refusal,0.0
114,South_G,Nature,South_A,Nature,Stone,3.0 103,South_M,Selfish,North_E29,Generational,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_H,Nature,South_I,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_B,Nature,South_H,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_I,Nature,South_B,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_D,Nature,South_I,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,South_I,Nature,South_B,Nature,Stone,3.0
114,South_D,Nature,South_C,Nature,Stone,3.0 103,South_D,Nature,South_I,Nature,Stone,3.0
114,South_A,Nature,South_K,Nature,Stone,3.0 103,South_F,Nature,North_B26,Generational,Stone,3.0
114,South_E,Nature,South_A,Nature,Stone,3.0 103,North_S,Generational,South_A,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 103,North_V,Generational,South_F,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_N,Selfish,North_E29,Generational,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_N,Selfish,North_E29,Generational,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_I,Nature,South_B,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_D,Nature,South_I,Nature,Stone,3.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,North_Q,Generational,South_G,Nature,Stone,3.0
114,South_A,Nature,South_K,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_D,Nature,South_C,Nature,Stone,3.0 103,South_I,Nature,South_B,Nature,Stone,3.0
114,South_E,Nature,South_A,Nature,Stone,3.0 103,South_D,Nature,South_I,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 103,South_H,Nature,South_L,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_I,Nature,South_B,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_D,Nature,South_I,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_J,Nature,South_D,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_N,Selfish,South_E,Nature,Refusal,0.0
114,South_B,Nature,South_J,Nature,Stone,3.0 103,South_N,Selfish,South_E,Nature,Refusal,0.0
114,South_A,Nature,South_K,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_C,Nature,South_B,Nature,Stone,3.0 103,South_I,Nature,South_B,Nature,Stone,3.0
114,South_D,Nature,South_A,Nature,Stone,3.0 103,South_J,Nature,South_I,Nature,Stone,3.0
114,South_E,Nature,South_C,Nature,Stone,3.0 103,South_O,Selfish,North_E29,Generational,Refusal,0.0
114,South_G,Nature,South_D,Nature,Stone,3.0 103,South_O,Selfish,North_E29,Generational,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_B,Nature,South_J,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_D,Nature,North_E29,Generational,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_A,Nature,South_B,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_I,Nature,South_A,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,North_Q,Generational,South_I,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,North_U,Generational,North_C27,Generational,Stone,3.0
114,South_A,Nature,South_J,Nature,Stone,3.0 103,South_M,Selfish,North_T,Generational,Refusal,0.0
114,South_B,Nature,South_K,Nature,Stone,3.0 103,South_M,Selfish,North_T,Generational,Refusal,0.0
114,South_C,Nature,South_A,Nature,Stone,3.0 103,South_O,Selfish,South_E,Nature,Refusal,0.0
114,South_D,Nature,South_B,Nature,Stone,3.0 103,South_O,Selfish,South_E,Nature,Refusal,0.0
114,South_E,Nature,South_C,Nature,Stone,3.0 103,North_S,Generational,South_D,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 103,South_M,Selfish,South_D28,Nature,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 103,South_M,Selfish,South_D28,Nature,Refusal,0.0
114,South_I,Nature,South_L,Nature,Stone,3.0 103,South_M,Selfish,South_K,Nature,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 103,South_M,Selfish,South_K,Nature,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 103,South_M,Selfish,South_E,Nature,Refusal,0.0
114,South_K,Nature,South_H,Nature,Stone,3.0 103,South_O,Selfish,North_T,Generational,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 103,South_M,Selfish,South_E,Nature,Refusal,0.0
114,South_A,Nature,South_J,Nature,Stone,3.0 103,South_O,Selfish,North_T,Generational,Refusal,0.0
114,South_B,Nature,South_K,Nature,Stone,3.0 103,North_B26,Generational,South_O,Selfish,Stone,3.0
114,South_C,Nature,South_A,Nature,Stone,3.0 103,South_O,Selfish,South_D28,Nature,Refusal,0.0
114,South_D,Nature,South_B,Nature,Stone,3.0 103,South_O,Selfish,South_D28,Nature,Refusal,0.0
114,South_E,Nature,South_C,Nature,Stone,3.0 103,South_O,Selfish,South_K,Nature,Refusal,0.0
114,South_G,Nature,South_D,Nature,Stone,3.0 103,South_O,Selfish,South_K,Nature,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 104,South_E,Nature,South_K,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 104,South_J,Nature,South_D28,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 104,South_O,Selfish,North_C27,Generational,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 104,South_M,Selfish,North_C27,Generational,Refusal,0.0
114,South_K,Nature,South_H,Nature,Stone,3.0 104,South_N,Selfish,South_D28,Nature,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 104,South_M,Selfish,North_C27,Generational,Refusal,0.0
114,South_A,Nature,South_J,Nature,Stone,3.0 104,South_N,Selfish,South_D28,Nature,Refusal,0.0
114,South_B,Nature,South_K,Nature,Stone,3.0 104,South_O,Selfish,North_C27,Generational,Refusal,0.0
114,South_C,Nature,South_A,Nature,Stone,3.0 104,South_N,Selfish,South_K,Nature,Refusal,0.0
114,South_D,Nature,South_B,Nature,Stone,3.0 104,South_N,Selfish,South_K,Nature,Refusal,0.0
114,South_E,Nature,South_C,Nature,Stone,3.0 104,South_N,Selfish,North_C27,Generational,Refusal,0.0
114,South_G,Nature,South_D,Nature,Stone,3.0 104,South_N,Selfish,North_C27,Generational,Refusal,0.0
114,South_H,Nature,South_E,Nature,Stone,3.0 104,South_F,Nature,North_F30,Generational,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 104,South_N,Selfish,South_L,Nature,Refusal,0.0
114,South_F,Nature,South_G,Nature,Stone,3.0 104,South_N,Selfish,South_L,Nature,Refusal,0.0
114,South_J,Nature,South_F,Nature,Stone,3.0 104,South_F,Nature,South_E,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 104,South_O,Selfish,South_L,Nature,Refusal,0.0
114,South_L,Nature,South_I,Nature,Stone,3.0 104,South_O,Selfish,South_L,Nature,Refusal,0.0
114,South_A,Nature,South_J,Nature,Stone,3.0 104,South_D28,Nature,South_J,Nature,Stone,3.0
114,South_B,Nature,South_K,Nature,Stone,3.0 104,South_A,Nature,South_K,Nature,Stone,3.0
114,South_C,Nature,South_A,Nature,Stone,3.0 104,South_E,Nature,South_A,Nature,Stone,3.0
114,South_D,Nature,South_B,Nature,Stone,3.0 104,South_D,Nature,South_E,Nature,Stone,3.0
114,South_E,Nature,South_C,Nature,Stone,3.0 104,South_K,Nature,South_D,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 104,South_D28,Nature,South_J,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 104,South_G,Nature,South_K,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 104,South_H,Nature,South_G,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 104,South_A,Nature,South_H,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 104,South_B,Nature,South_A,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 104,South_E,Nature,South_B,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 104,South_I,Nature,South_E,Nature,Stone,3.0
114,South_A,Nature,South_J,Nature,Stone,3.0 104,South_D,Nature,South_I,Nature,Stone,3.0
114,South_B,Nature,South_K,Nature,Stone,3.0 104,South_K,Nature,South_D,Nature,Stone,3.0
114,South_C,Nature,South_A,Nature,Stone,3.0 104,South_G,Nature,South_J,Nature,Stone,3.0
114,South_D,Nature,South_B,Nature,Stone,3.0 104,South_D28,Nature,South_K,Nature,Stone,3.0
114,South_E,Nature,South_C,Nature,Stone,3.0 104,South_H,Nature,South_G,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 104,South_A,Nature,South_H,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 104,South_B,Nature,South_A,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 104,South_E,Nature,South_B,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 104,South_I,Nature,South_E,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 104,South_D,Nature,South_I,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 104,South_J,Nature,South_D28,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 104,South_G,Nature,South_D,Nature,Stone,3.0
114,South_A,Nature,South_J,Nature,Stone,3.0 104,South_K,Nature,South_J,Nature,Stone,3.0
114,South_B,Nature,South_K,Nature,Stone,3.0 104,South_D28,Nature,South_G,Nature,Stone,3.0
114,South_C,Nature,South_A,Nature,Stone,3.0 104,South_H,Nature,South_K,Nature,Stone,3.0
114,South_D,Nature,South_B,Nature,Stone,3.0 104,South_A,Nature,South_H,Nature,Stone,3.0
114,South_E,Nature,South_C,Nature,Stone,3.0 104,South_B,Nature,South_A,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 104,South_E,Nature,South_B,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 104,South_I,Nature,South_E,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 104,South_F,Nature,South_D28,Nature,Stone,3.0
114,South_F,Nature,South_G,Nature,Stone,3.0 104,South_D,Nature,South_F,Nature,Stone,3.0
114,South_J,Nature,South_F,Nature,Stone,3.0 104,South_J,Nature,South_I,Nature,Stone,3.0
114,South_K,Nature,South_H,Nature,Stone,3.0 104,South_G,Nature,South_D,Nature,Stone,3.0
114,South_L,Nature,South_I,Nature,Stone,3.0 104,South_K,Nature,South_G,Nature,Stone,3.0
114,South_A,Nature,South_J,Nature,Stone,3.0 104,South_H,Nature,South_J,Nature,Stone,3.0
114,South_B,Nature,South_K,Nature,Stone,3.0 104,South_D28,Nature,South_K,Nature,Stone,3.0
114,South_C,Nature,South_A,Nature,Stone,3.0 104,South_A,Nature,South_H,Nature,Stone,3.0
114,South_D,Nature,South_B,Nature,Stone,3.0 104,South_B,Nature,South_A,Nature,Stone,3.0
114,South_E,Nature,South_C,Nature,Stone,3.0 104,South_E,Nature,South_D28,Nature,Stone,3.0
114,South_G,Nature,South_D,Nature,Stone,3.0 104,South_I,Nature,South_B,Nature,Stone,3.0
114,South_H,Nature,South_E,Nature,Stone,3.0 104,South_F,Nature,South_E,Nature,Stone,3.0
114,South_I,Nature,South_L,Nature,Stone,3.0 104,South_D,Nature,South_F,Nature,Stone,3.0
115,South_F,Nature,South_G,Nature,Stone,3.0 104,South_J,Nature,South_I,Nature,Stone,3.0
115,South_J,Nature,South_F,Nature,Stone,3.0 104,South_G,Nature,South_D,Nature,Stone,3.0
116,South_K,Nature,South_D,Nature,Stone,3.0 104,South_K,Nature,South_G,Nature,Stone,3.0
116,South_A,Nature,South_E,Nature,Stone,3.0 104,South_H,Nature,South_J,Nature,Stone,3.0
116,South_B,Nature,South_J,Nature,Stone,3.0 104,South_D28,Nature,South_H,Nature,Stone,3.0
116,South_G,Nature,South_K,Nature,Stone,3.0 104,South_A,Nature,South_K,Nature,Stone,3.0
116,South_C,Nature,South_A,Nature,Stone,3.0 104,South_B,Nature,South_A,Nature,Stone,3.0
116,South_H,Nature,South_B,Nature,Stone,3.0 104,South_E,Nature,South_D28,Nature,Stone,3.0
116,South_I,Nature,South_G,Nature,Stone,3.0 104,South_I,Nature,South_B,Nature,Stone,3.0
116,South_F,Nature,South_C,Nature,Stone,3.0 104,South_F,Nature,South_E,Nature,Stone,3.0
116,South_D,Nature,South_F,Nature,Stone,3.0 104,South_D,Nature,South_F,Nature,Stone,3.0
123,North_Q,Generational,North_U,Generational,Stone,3.0 104,South_J,Nature,South_I,Nature,Stone,3.0
127,North_Q,Generational,North_T,Generational,Stone,3.0 104,South_G,Nature,South_D,Nature,Stone,3.0
127,North_P,Generational,South_A,Nature,Stone,3.0 104,South_K,Nature,South_G,Nature,Stone,3.0
104,South_H,Nature,South_J,Nature,Stone,3.0
104,South_A,Nature,South_H,Nature,Stone,3.0
104,South_D28,Nature,South_K,Nature,Stone,3.0
104,South_B,Nature,South_A,Nature,Stone,3.0
104,South_E,Nature,South_D28,Nature,Stone,3.0
104,South_I,Nature,South_B,Nature,Stone,3.0
104,South_F,Nature,South_E,Nature,Stone,3.0
104,South_D,Nature,South_I,Nature,Stone,3.0
104,South_J,Nature,South_F,Nature,Stone,3.0
104,South_G,Nature,South_D,Nature,Stone,3.0
104,South_K,Nature,South_G,Nature,Stone,3.0
104,South_H,Nature,South_J,Nature,Stone,3.0
104,South_A,Nature,South_H,Nature,Stone,3.0
104,South_D28,Nature,South_A,Nature,Stone,3.0
104,South_B,Nature,South_K,Nature,Stone,3.0
104,South_E,Nature,South_D28,Nature,Stone,3.0
104,South_I,Nature,South_B,Nature,Stone,3.0
104,South_D,Nature,South_E,Nature,Stone,3.0
104,South_F,Nature,South_I,Nature,Stone,3.0
104,South_G,Nature,South_D,Nature,Stone,3.0
104,South_K,Nature,South_F,Nature,Stone,3.0
104,South_H,Nature,South_G,Nature,Stone,3.0
104,South_A,Nature,South_H,Nature,Stone,3.0
104,South_D28,Nature,South_A,Nature,Stone,3.0
104,South_M,Selfish,South_L,Nature,Refusal,0.0
104,South_M,Selfish,South_L,Nature,Refusal,0.0
104,South_B,Nature,South_K,Nature,Stone,3.0
104,South_E,Nature,South_D28,Nature,Stone,3.0
104,South_I,Nature,South_B,Nature,Stone,3.0
104,South_D,Nature,South_E,Nature,Stone,3.0
104,South_F,Nature,South_D,Nature,Stone,3.0
104,South_J,Nature,South_I,Nature,Stone,3.0
104,South_G,Nature,South_F,Nature,Stone,3.0
104,South_K,Nature,South_G,Nature,Stone,3.0
104,South_H,Nature,South_J,Nature,Stone,3.0
104,South_A,Nature,South_H,Nature,Stone,3.0
104,South_D28,Nature,South_A,Nature,Stone,3.0
104,South_B,Nature,South_K,Nature,Stone,3.0
104,South_E,Nature,South_D28,Nature,Stone,3.0
104,South_I,Nature,South_B,Nature,Stone,3.0
104,South_D,Nature,South_E,Nature,Stone,3.0
105,South_F,Nature,South_I,Nature,Stone,3.0
105,South_N,Selfish,North_F30,Generational,Refusal,0.0
105,South_G31,Selfish,North_F30,Generational,Refusal,0.0
105,South_G31,Selfish,North_F30,Generational,Refusal,0.0
105,South_G31,Selfish,South_E,Nature,Refusal,0.0
105,South_G31,Selfish,South_F,Nature,Refusal,0.0
105,South_G31,Selfish,South_G,Nature,Refusal,0.0
105,South_G31,Selfish,South_H,Nature,Refusal,0.0
105,South_G31,Selfish,South_I,Nature,Refusal,0.0
105,South_G31,Selfish,South_K,Nature,Refusal,0.0
105,South_G31,Selfish,South_L,Nature,Refusal,0.0
105,South_N,Selfish,North_F30,Generational,Refusal,0.0
105,South_G31,Selfish,South_A,Nature,Refusal,0.0
105,South_G31,Selfish,South_B,Nature,Refusal,0.0
105,South_G31,Selfish,South_F,Nature,Refusal,0.0
105,South_G31,Selfish,South_A,Nature,Refusal,0.0
105,South_G31,Selfish,South_B,Nature,Refusal,0.0
105,South_G31,Selfish,South_E,Nature,Refusal,0.0
105,South_G31,Selfish,South_G,Nature,Refusal,0.0
105,South_G31,Selfish,South_H,Nature,Refusal,0.0
105,South_G31,Selfish,South_I,Nature,Refusal,0.0
105,South_G31,Selfish,South_K,Nature,Refusal,0.0
105,South_G31,Selfish,South_L,Nature,Refusal,0.0
105,South_O,Selfish,North_F30,Generational,Refusal,0.0
105,South_O,Selfish,North_F30,Generational,Refusal,0.0
105,South_G31,Selfish,North_P,Generational,Refusal,0.0
105,South_G31,Selfish,North_P,Generational,Refusal,0.0
105,South_G31,Selfish,North_S,Generational,Refusal,0.0
105,South_G31,Selfish,North_W,Generational,Refusal,0.0
105,South_G31,Selfish,North_B26,Generational,Refusal,0.0
105,South_G31,Selfish,North_C27,Generational,Refusal,0.0
105,South_G31,Selfish,North_E29,Generational,Refusal,0.0
105,South_G31,Selfish,North_S,Generational,Refusal,0.0
105,South_G31,Selfish,North_W,Generational,Refusal,0.0
105,South_G31,Selfish,North_B26,Generational,Refusal,0.0
105,South_G31,Selfish,North_C27,Generational,Refusal,0.0
105,South_G31,Selfish,North_E29,Generational,Refusal,0.0
106,South_H,Nature,South_G31,Selfish,Stone,3.0
107,South_A,Nature,South_H32,Nature,Stone,3.0
108,North_Q,Generational,South_I33,Selfish,Stone,3.0
108,South_G31,Selfish,North_Q,Generational,Refusal,0.0
108,South_G31,Selfish,North_Q,Generational,Refusal,0.0
109,South_G31,Selfish,South_I33,Selfish,Refusal,0.0
109,South_O,Selfish,South_I33,Selfish,Refusal,0.0
109,South_G31,Selfish,South_I33,Selfish,Refusal,0.0
109,South_O,Selfish,South_I33,Selfish,Refusal,0.0
117,South_J,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_J,Nature,Stone,3.0
117,South_G,Nature,South_B,Nature,Stone,3.0
117,South_H,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_H,Nature,South_G,Nature,Stone,3.0
117,South_B,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_H,Nature,South_G,Nature,Stone,3.0
117,South_B,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_H,Nature,South_G,Nature,Stone,3.0
117,South_B,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_H,Nature,South_G,Nature,Stone,3.0
117,South_B,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_H,Nature,South_J,Nature,Stone,3.0
117,South_B,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_A,Nature,South_J,Nature,Stone,3.0
117,South_F,Nature,South_A,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_B,Nature,South_H,Nature,Stone,3.0
117,South_D,Nature,South_B,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_L,Nature,Stone,3.0
117,South_F,Nature,South_G,Nature,Stone,3.0
117,South_I,Nature,South_J,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_A,Nature,South_K,Nature,Stone,3.0
117,South_B,Nature,South_A,Nature,Stone,3.0
117,South_D28,Nature,South_B,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_H32,Nature,Stone,3.0
117,South_F,Nature,South_G,Nature,Stone,3.0
117,South_I,Nature,South_J,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_A,Nature,South_K,Nature,Stone,3.0
117,South_B,Nature,South_A,Nature,Stone,3.0
117,South_D28,Nature,South_B,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_H32,Nature,Stone,3.0
117,South_F,Nature,South_G,Nature,Stone,3.0
117,South_I,Nature,South_J,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_A,Nature,South_K,Nature,Stone,3.0
117,South_B,Nature,South_L,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_B,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_H32,Nature,Stone,3.0
117,South_F,Nature,South_G,Nature,Stone,3.0
117,South_I,Nature,South_J,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_L,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_B,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_H32,Nature,Stone,3.0
117,South_F,Nature,South_G,Nature,Stone,3.0
117,South_I,Nature,South_J,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_F,Nature,South_J,Nature,Stone,3.0
117,South_I,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_F,Nature,South_J,Nature,Stone,3.0
117,South_I,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_F,Nature,South_J,Nature,Stone,3.0
117,South_I,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_F,Nature,South_J,Nature,Stone,3.0
117,South_I,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_H32,Nature,South_L,Nature,Stone,3.0
117,South_D,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_F,Nature,South_J,Nature,Stone,3.0
117,South_I,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_D,Nature,South_L,Nature,Stone,3.0
117,South_H32,Nature,South_D28,Nature,Stone,3.0
117,South_G,Nature,South_D,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,South_F,Nature,South_J,Nature,Stone,3.0
117,South_I,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,South_K,Nature,South_H,Nature,Stone,3.0
117,South_L,Nature,South_I,Nature,Stone,3.0
117,South_B,Nature,South_K,Nature,Stone,3.0
117,South_A,Nature,South_B,Nature,Stone,3.0
117,South_D28,Nature,South_A,Nature,Stone,3.0
117,South_D,Nature,South_L,Nature,Stone,3.0
117,South_H32,Nature,South_D,Nature,Stone,3.0
117,South_G,Nature,South_D28,Nature,Stone,3.0
117,South_J,Nature,South_G,Nature,Stone,3.0
117,North_E29,Generational,South_J,Nature,Stone,3.0
117,South_F,Nature,South_H32,Nature,Stone,3.0
117,South_H,Nature,South_F,Nature,Stone,3.0
117,North_S,Generational,South_H,Nature,Stone,3.0
117,North_B26,Generational,South_I,Nature,Stone,3.0
118,North_V,Generational,South_J34,Nature,Stone,3.0
118,South_L,Nature,South_K,Nature,Stone,3.0
119,South_A,Nature,North_Q,Generational,Stone,3.0
121,South_D28,Nature,North_U,Generational,Stone,3.0
121,South_D28,Nature,North_C27,Generational,Stone,3.0
122,North_E29,Generational,North_P,Generational,Stone,3.0
122,South_A,Nature,South_K35,Nature,Stone,3.0
122,North_B26,Generational,North_F30,Generational,Stone,3.0
123,South_H32,Nature,North_W,Generational,Stone,3.0
123,South_L,Nature,North_L36,Generational,Stone,3.0
124,South_D,Nature,South_M37,Nature,Stone,3.0
125,South_L,Nature,North_U,Generational,Stone,3.0
127,South_G,Nature,South_N38,Nature,Food,3.0
148,South_J,Nature,North_U,Generational,Stone,3.0
152,South_H32,Nature,South_O39,Nature,Stone,3.0
155,South_A,Nature,North_Q41,Generational,Stone,3.0
157,South_J34,Nature,South_N38,Nature,Stone,3.0
1 day giver giver_soul receiver receiver_soul material amount
2 3 North_Q North_V Generational North_V North_R Generational Stone 3.0
3 3 North_S Generational South_E South_A Nature Stone 3.0
4 4 3 North_Y North_T Generational South_F South_N Nature Selfish Stone 3.0
5 4 North_U North_W Generational South_K South_H Nature Stone 3.0
6 4 North_W North_P Generational South_L South_M Nature Selfish Stone 3.0
7 5 12 North_R South_D Generational Nature North_W South_G Generational Nature Stone 3.0
8 99 17 South_N South_L Selfish Nature South_A North_S Nature Generational Refusal Stone 0.0 3.0
9 99 18 South_N South_I Selfish Nature North_Q South_D Generational Nature Refusal Stone 0.0 3.0
10 99 20 South_N South_J Selfish Nature North_Y South_I Generational Nature Refusal Stone 0.0 3.0
11 99 25 South_O North_W Selfish Generational South_A North_V Nature Generational Refusal Stone 0.0 3.0
12 99 101 South_O South_M Selfish North_Q South_F Generational Nature Refusal 0.0
99 South_O Selfish North_Y Generational Refusal 0.0
99 South_M Selfish South_A Nature Refusal 0.0
99 South_M Selfish North_Q Generational Refusal 0.0
99 South_M Selfish North_Y Generational Refusal 0.0
99 South_M Selfish South_A Nature Refusal 0.0
99 South_M Selfish North_Q Generational Refusal 0.0
99 South_M Selfish North_Y Generational Refusal 0.0
99 South_N Selfish South_A Nature Refusal 0.0
99 South_O Selfish South_A Nature Refusal 0.0
99 South_N Selfish North_Q Generational Refusal 0.0
99 South_N Selfish North_Y Generational Refusal 0.0
99 South_O Selfish North_Q Generational Refusal 0.0
99 South_O Selfish North_Y Generational Refusal 0.0
99 South_N Selfish South_L Nature Refusal 0.0
99 South_N Selfish North_P Generational Refusal 0.0
99 South_N Selfish North_V Generational Refusal 0.0
99 South_O Selfish South_L Nature Refusal 0.0
99 South_O Selfish North_P Generational Refusal 0.0
99 South_O Selfish North_V Generational Refusal 0.0
99 South_M Selfish South_L Nature Refusal 0.0
99 South_M Selfish North_P Generational Refusal 0.0
99 South_M Selfish North_V Generational Refusal 0.0
99 South_N Selfish South_L Nature Refusal 0.0
99 South_N Selfish North_P Generational Refusal 0.0
99 South_N Selfish North_V Generational Refusal 0.0
99 South_O Selfish South_L Nature Refusal 0.0
99 South_O Selfish North_P Generational Refusal 0.0
99 South_O Selfish North_V Generational Refusal 0.0
99 South_M Selfish South_L Nature Refusal 0.0
99 South_M Selfish North_P Generational Refusal 0.0
99 South_M Selfish North_V Generational Refusal 0.0
99 South_M Selfish South_B Nature Refusal 0.0
99 South_M Selfish South_I Nature Refusal 0.0
99 South_M Selfish South_E Nature Refusal 0.0
99 South_M Selfish South_K Nature Refusal 0.0
99 South_N Selfish South_B Nature Refusal 0.0
99 South_N Selfish South_I Nature Refusal 0.0
99 South_N Selfish South_B Nature Refusal 0.0
99 South_N Selfish South_E Nature Refusal 0.0
99 South_N Selfish South_I Nature Refusal 0.0
99 South_N Selfish South_K Nature Refusal 0.0
99 South_M Selfish South_E Nature Refusal 0.0
99 South_M Selfish South_K Nature Refusal 0.0
99 South_M Selfish South_B Nature Refusal 0.0
99 South_M Selfish South_I Nature Refusal 0.0
99 South_N Selfish South_E Nature Refusal 0.0
99 South_N Selfish South_K Nature Refusal 0.0
99 South_O Selfish South_B Nature Refusal 0.0
99 South_O Selfish South_I Nature Refusal 0.0
99 South_O Selfish South_E Nature Refusal 0.0
99 South_O Selfish South_K Nature Refusal 0.0
99 South_O Selfish South_B Nature Refusal 0.0
99 South_O Selfish South_I Nature Refusal 0.0
99 South_O Selfish South_E Nature Refusal 0.0
99 South_O Selfish South_K Nature Refusal 0.0
99 South_M Selfish South_F Nature Refusal 0.0
99 South_M Selfish South_J Nature Refusal 0.0
99 South_O Selfish South_F Nature Refusal 0.0
99 South_O Selfish South_J Nature Refusal 0.0
99 South_O Selfish South_F Nature Refusal 0.0
99 South_O Selfish South_J Nature Refusal 0.0
99 South_M Selfish South_F Nature Refusal 0.0
99 South_M Selfish South_J Nature Refusal 0.0
99 South_N Selfish South_F Nature Refusal 0.0
99 South_N Selfish South_J Nature Refusal 0.0
99 South_N Selfish South_F Nature Refusal 0.0
99 South_N Selfish South_J Nature Refusal 0.0
100 South_M Selfish North_W Generational Refusal 0.0
100 South_O Selfish South_D Nature Refusal 0.0
100 South_O Selfish North_W Generational Refusal 0.0
100 South_O Selfish North_W Generational Refusal 0.0
100 South_M Selfish South_D Nature Refusal 0.0
100 South_M Selfish North_W Generational Refusal 0.0
100 South_M Selfish South_D Nature Refusal 0.0
100 South_O Selfish South_D Nature Refusal 0.0
100 South_N Selfish North_W Generational Refusal 0.0
100 South_N Selfish North_W Generational Refusal 0.0
100 South_N Selfish South_D Nature Refusal 0.0
100 South_N Selfish South_D Nature Refusal 0.0
100 South_A Nature South_G Nature Stone 3.0
100 South_D Nature North_T Generational Stone 3.0
100 South_E Nature South_C Nature Stone 3.0
100 South_A Nature North_R Generational Stone 3.0
100 South_I Nature South_O Selfish Stone 3.0
100 South_E Nature South_I Nature Stone 3.0
100 South_B Nature South_E Nature Stone 3.0
100 South_F Nature South_J Nature Stone 3.0
100 South_K Nature South_H Nature Stone 3.0
100 South_J Nature South_B Nature Stone 3.0
100 South_I Nature South_F Nature Stone 3.0
100 South_E Nature South_I Nature Stone 3.0
100 South_F Nature South_E Nature Stone 3.0
100 South_B Nature South_J Nature Stone 3.0
100 South_K Nature South_B Nature Stone 3.0
100 South_L Nature South_F Nature Stone 3.0
100 South_J Nature South_K Nature Stone 3.0
100 South_I Nature South_J Nature Stone 3.0
100 South_A Nature South_I Nature Stone 3.0
100 South_E Nature South_A Nature Stone 3.0
100 South_F Nature South_E Nature Stone 3.0
100 South_B Nature South_F Nature Stone 3.0
100 South_D Nature South_B Nature Stone 3.0
100 South_L Nature South_D Nature Stone 3.0
100 South_J Nature South_L Nature Stone 3.0
100 South_I Nature South_J Nature Stone 3.0
100 South_A Nature South_I Nature Stone 3.0
100 South_E Nature South_A Nature Stone 3.0
100 South_F Nature South_E Nature Stone 3.0
100 South_B Nature South_F Nature Stone 3.0
100 South_D Nature South_B Nature Stone 3.0
100 South_L Nature South_D Nature Stone 3.0
100 South_I Nature South_L Nature Stone 3.0
100 South_O Selfish South_G Nature Refusal 0.0
100 South_O Selfish South_G Nature Refusal 0.0
101 South_A Nature South_I Nature Stone 3.0
101 South_O Selfish South_H Nature Refusal 0.0
101 South_O Selfish North_T Generational Refusal 0.0
101 South_N Selfish North_X Generational Refusal 0.0
101 South_O Selfish South_H Nature Refusal 0.0
101 South_O Selfish North_T Generational Refusal 0.0
101 South_M Selfish North_S Generational Refusal 0.0
101 South_N Selfish North_S Generational Refusal 0.0
101 South_N Selfish North_S Generational Refusal 0.0
101 South_K Nature North_P Generational Stone 3.0
101 South_M Selfish North_X Generational Refusal 0.0
101 South_M Selfish North_X Generational Refusal 0.0
101 South_N Selfish South_G Nature Refusal 0.0
101 South_M Selfish North_T Generational Refusal 0.0
101 South_M Selfish South_H Nature Refusal 0.0
101 South_N Selfish South_G Nature Refusal 0.0
101 South_M Selfish North_T Generational Refusal 0.0
101 South_M Selfish South_H Nature Refusal 0.0
101 South_M Selfish North_S Generational Refusal 0.0
101 South_I Nature North_Y Generational Stone 3.0
101 South_O Selfish North_X Generational Refusal 0.0
101 South_O Selfish North_X Generational Refusal 0.0
101 South_O Selfish North_S Generational Refusal 0.0
101 South_O Selfish North_S Generational Refusal 0.0
13 101 South_M Selfish South_G Nature Refusal 0.0
14 101 South_N South_M Selfish North_T South_B Generational Nature Refusal 0.0
15 101 South_N South_M Selfish South_H South_F Nature Refusal 0.0
16 101 South_M Selfish South_G Nature Refusal 0.0
17 101 South_N South_M Selfish North_T South_B Generational Nature Refusal 0.0
18 101 102 South_N Selfish South_H South_D Nature Refusal 0.0
19 101 102 South_N Selfish North_X North_P Generational Refusal 0.0
20 101 102 South_K South_O Nature Selfish North_X South_D Generational Nature Stone Refusal 3.0 0.0
21 101 102 South_O Selfish North_R North_P Generational Refusal 0.0
22 101 102 South_M South_N Selfish South_C South_D Nature Refusal 0.0
23 101 102 South_E South_N Nature Selfish South_M North_P Selfish Generational Stone Refusal 3.0 0.0
24 101 102 South_O Selfish North_R South_D Generational Nature Refusal 0.0
25 101 102 South_N South_O Selfish South_C North_P Nature Generational Refusal 0.0
26 101 102 South_N Selfish South_C South_A Nature Refusal 0.0
27 101 102 South_M South_N Selfish South_C South_I Nature Refusal 0.0
28 101 102 South_O Selfish South_C South_A Nature Refusal 0.0
29 101 102 South_O Selfish South_C South_I Nature Refusal 0.0
30 101 102 South_M South_N Selfish North_R South_A Generational Nature Refusal 0.0
31 101 102 South_N Selfish North_R South_I Generational Nature Refusal 0.0
32 101 102 South_A South_O Nature Selfish South_N South_A Selfish Nature Stone Refusal 3.0 0.0
33 101 102 South_N South_O Selfish North_R South_I Generational Nature Refusal 0.0
34 101 102 South_M South_N Selfish North_R South_B Generational Nature Refusal 0.0
35 101 102 South_O South_N Selfish North_U South_F Generational Nature Refusal 0.0
36 101 102 South_G South_N Nature Selfish North_U South_G Generational Nature Stone Refusal 3.0 0.0
37 101 102 South_O Selfish North_U South_B Generational Nature Refusal 0.0
38 101 102 South_M South_O Selfish North_U South_F Generational Nature Refusal 0.0
39 101 102 South_N South_O Selfish North_U South_G Generational Nature Refusal 0.0
40 101 102 South_N Selfish North_U South_B Generational Nature Refusal 0.0
41 101 102 South_M South_N Selfish North_U South_F Generational Nature Refusal 0.0
42 102 South_A South_N Nature Selfish North_S South_G Generational Nature Stone Refusal 3.0 0.0
43 102 South_F South_O Nature Selfish North_Q South_B Generational Nature Stone Refusal 3.0 0.0
44 103 102 South_B South_O Nature Selfish North_X South_F Generational Nature Stone Refusal 3.0 0.0
45 104 102 South_A South_O Nature Selfish North_P South_G Generational Nature Stone Refusal 3.0 0.0
46 104 102 South_F South_M Nature Selfish North_T North_P Generational Stone Refusal 3.0 0.0
47 109 102 South_H South_M Nature Selfish North_X South_D Generational Nature Stone Refusal 3.0 0.0
48 110 102 North_P South_M Generational Selfish North_R North_P Generational Stone Refusal 3.0 0.0
49 110 102 North_Q South_M Generational Selfish North_S South_D Generational Nature Stone Refusal 3.0 0.0
50 110 102 South_A South_N Nature Selfish North_U North_V Generational Stone Refusal 3.0 0.0
51 110 102 South_I South_O Nature Selfish North_Y North_V Generational Stone Refusal 3.0 0.0
52 110 102 South_B South_N Nature Selfish North_W North_V Generational Stone Refusal 3.0 0.0
53 110 102 South_C South_O Nature Selfish North_V Generational Stone Refusal 3.0 0.0
54 110 102 South_D South_M Nature Selfish North_T North_S Generational Stone Refusal 3.0 0.0
55 114 102 South_B South_M Nature Selfish South_J North_U Nature Generational Stone Refusal 3.0 0.0
56 114 102 South_C South_M Nature Selfish South_B North_S Nature Generational Stone Refusal 3.0 0.0
57 114 102 South_D South_M Nature Selfish South_K North_U Nature Generational Stone Refusal 3.0 0.0
58 114 102 South_E South_M Nature Selfish South_L South_A Nature Stone Refusal 3.0 0.0
59 114 102 South_A South_M Nature Selfish South_C South_I Nature Stone Refusal 3.0 0.0
60 114 102 South_G South_M Nature Selfish South_A Nature Stone Refusal 3.0 0.0
61 114 102 South_H South_M Nature Selfish South_D South_I Nature Stone Refusal 3.0 0.0
62 114 102 South_I South_M Nature Selfish South_E North_V Nature Generational Stone Refusal 3.0 0.0
63 114 102 South_F South_M Nature Selfish South_G North_V Nature Generational Stone Refusal 3.0 0.0
64 114 102 South_J South_N Nature Selfish South_F North_S Nature Generational Stone Refusal 3.0 0.0
65 114 102 South_K South_N Nature Selfish South_H North_U Nature Generational Stone Refusal 3.0 0.0
66 114 102 South_L South_O Nature Selfish South_I North_S Nature Generational Stone Refusal 3.0 0.0
67 114 102 South_B South_O Nature Selfish South_J North_U Nature Generational Stone Refusal 3.0 0.0
68 114 102 South_C South_N Nature Selfish South_B North_S Nature Generational Stone Refusal 3.0 0.0
69 114 102 South_D South_N Nature Selfish South_C North_U Nature Generational Stone Refusal 3.0 0.0
70 114 102 South_E South_O Nature Selfish South_K North_S Nature Generational Stone Refusal 3.0 0.0
71 114 102 South_A South_O Nature Selfish South_D North_U Nature Generational Stone Refusal 3.0 0.0
72 114 103 South_G South_O Nature Selfish South_A South_H Nature Stone Refusal 3.0 0.0
73 114 103 South_H South_O Nature Selfish South_E South_J Nature Stone Refusal 3.0 0.0
74 114 103 South_I South_O Nature Selfish South_L North_B26 Nature Generational Stone Refusal 3.0 0.0
75 114 103 South_F South_N Nature Selfish South_G South_H Nature Stone Refusal 3.0 0.0
76 114 103 South_J South_N Nature Selfish South_F South_J Nature Stone Refusal 3.0 0.0
77 114 103 South_K South_N Nature Selfish South_H North_B26 Nature Generational Stone Refusal 3.0 0.0
78 114 103 South_L South_N Nature Selfish South_I South_H Nature Stone Refusal 3.0 0.0
79 114 103 South_B South_O Nature Selfish South_J Nature Stone Refusal 3.0 0.0
80 114 103 South_C South_O Nature Selfish South_B North_B26 Nature Generational Stone Refusal 3.0 0.0
81 114 103 South_D South_O Nature Selfish South_C South_H Nature Stone Refusal 3.0 0.0
82 114 103 South_E South_N Nature Selfish South_K South_J Nature Stone Refusal 3.0 0.0
83 114 103 South_A South_N Nature Selfish South_D North_B26 Nature Generational Stone Refusal 3.0 0.0
84 114 103 South_G South_M Nature Selfish South_A North_Q Nature Generational Stone Refusal 3.0 0.0
85 114 103 South_H South_M Nature Selfish South_E North_W Nature Generational Stone Refusal 3.0 0.0
86 114 103 South_I South_M Nature Selfish South_L North_Q Nature Generational Stone Refusal 3.0 0.0
87 114 103 South_F South_M Nature Selfish South_G North_W Nature Generational Stone Refusal 3.0 0.0
88 114 103 South_J South_M Nature Selfish South_F South_H Nature Stone Refusal 3.0 0.0
89 114 103 South_K South_M Nature Selfish South_H South_J Nature Stone Refusal 3.0 0.0
90 114 103 South_L South_M Nature Selfish South_I North_B26 Nature Generational Stone Refusal 3.0 0.0
91 114 103 South_B South_M Nature Selfish South_J South_H Nature Stone Refusal 3.0 0.0
92 114 103 South_C South_M Nature Selfish South_B South_J Nature Stone Refusal 3.0 0.0
93 114 103 South_D South_M Nature Selfish South_C North_B26 Nature Generational Stone Refusal 3.0 0.0
94 114 103 South_E South_O Nature Selfish South_K North_Q Nature Generational Stone Refusal 3.0 0.0
95 114 103 South_A South_O Nature Selfish South_D North_W Nature Generational Stone Refusal 3.0 0.0
96 114 103 South_G South_N Nature Selfish South_A North_Q Nature Generational Stone Refusal 3.0 0.0
97 114 103 South_H South_N Nature Selfish South_E North_W Nature Generational Stone Refusal 3.0 0.0
98 114 103 South_I South_O Nature Selfish South_L North_Q Nature Generational Stone Refusal 3.0 0.0
99 114 103 South_F South_N Nature Selfish South_G North_W Nature Generational Stone Refusal 3.0 0.0
100 114 103 South_J South_N Nature Selfish South_F North_Q Nature Generational Stone Refusal 3.0 0.0
101 114 103 South_K South_O Nature Selfish South_H North_W Nature Generational Stone Refusal 3.0 0.0
102 114 103 South_L South_D Nature South_I South_J Nature Stone 3.0
103 114 103 South_B South_H Nature South_J South_F Nature Stone 3.0
104 114 103 South_C South_J Nature South_B Nature Stone 3.0
105 114 103 South_D South_I Nature South_C South_J Nature Stone 3.0
106 114 103 South_E South_B Nature South_K South_I Nature Stone 3.0
107 114 103 South_A South_G Nature South_D South_H Nature Stone 3.0
108 114 103 South_G South_D Nature South_A South_B Nature Stone 3.0
109 114 103 South_H South_J Nature South_E South_D Nature Stone 3.0
110 114 103 South_I South_H Nature South_L South_G Nature Stone 3.0
111 114 103 South_F South_I Nature South_G South_H Nature Stone 3.0
112 114 103 South_J South_B Nature South_F South_J Nature Stone 3.0
113 114 103 South_K South_D Nature South_H South_B Nature Stone 3.0
114 114 103 South_L South_J Nature South_I South_D Nature Stone 3.0
115 114 103 South_B South_H Nature South_J South_I Nature Stone 3.0
116 114 103 South_C South_B Nature South_B South_H Nature Stone 3.0
117 114 103 South_D South_I Nature South_C South_J Nature Stone 3.0
118 114 103 South_E South_D Nature South_D South_B Nature Stone 3.0
119 114 103 South_A South_M Nature Selfish South_K North_E29 Nature Generational Stone Refusal 3.0 0.0
120 114 103 South_G South_M Nature Selfish South_A North_E29 Nature Generational Stone Refusal 3.0 0.0
121 114 103 South_H South_J Nature South_E South_D Nature Stone 3.0
122 114 103 South_I South_H Nature South_L South_I Nature Stone 3.0
123 114 103 South_F South_B Nature South_G South_H Nature Stone 3.0
124 114 103 South_J South_I Nature South_F South_B Nature Stone 3.0
125 114 103 South_K South_D Nature South_H South_I Nature Stone 3.0
126 114 103 South_L South_J Nature South_I South_D Nature Stone 3.0
127 114 103 South_B Nature South_J Nature Stone 3.0
128 114 103 South_C South_I Nature South_B Nature Stone 3.0
129 114 103 South_D Nature South_C South_I Nature Stone 3.0
130 114 103 South_A South_F Nature South_K North_B26 Nature Generational Stone 3.0
131 114 103 South_E North_S Nature Generational South_A Nature Stone 3.0
132 114 103 South_G North_V Nature Generational South_D South_F Nature Stone 3.0
133 114 103 South_H South_J Nature South_E South_D Nature Stone 3.0
134 114 103 South_I South_N Nature Selfish South_L North_E29 Nature Generational Stone Refusal 3.0 0.0
135 114 103 South_F South_N Nature Selfish South_G North_E29 Nature Generational Stone Refusal 3.0 0.0
136 114 103 South_J South_B Nature South_F South_J Nature Stone 3.0
137 114 103 South_K South_I Nature South_H South_B Nature Stone 3.0
138 114 103 South_L South_D Nature South_I Nature Stone 3.0
139 114 103 South_B South_J Nature South_J South_D Nature Stone 3.0
140 114 103 South_C North_Q Nature Generational South_B South_G Nature Stone 3.0
141 114 103 South_A South_B Nature South_K South_J Nature Stone 3.0
142 114 103 South_D South_I Nature South_C South_B Nature Stone 3.0
143 114 103 South_E South_D Nature South_A South_I Nature Stone 3.0
144 114 103 South_G South_H Nature South_D South_L Nature Stone 3.0
145 114 103 South_H South_J Nature South_E South_D Nature Stone 3.0
146 114 103 South_I South_B Nature South_L South_J Nature Stone 3.0
147 114 103 South_F South_I Nature South_G South_B Nature Stone 3.0
148 114 103 South_J South_D Nature South_F South_I Nature Stone 3.0
149 114 103 South_K South_J Nature South_H South_D Nature Stone 3.0
150 114 103 South_L South_N Nature Selfish South_I South_E Nature Stone Refusal 3.0 0.0
151 114 103 South_B South_N Nature Selfish South_J South_E Nature Stone Refusal 3.0 0.0
152 114 103 South_A South_B Nature South_K South_J Nature Stone 3.0
153 114 103 South_C South_I Nature South_B Nature Stone 3.0
154 114 103 South_D South_J Nature South_A South_I Nature Stone 3.0
155 114 103 South_E South_O Nature Selfish South_C North_E29 Nature Generational Stone Refusal 3.0 0.0
156 114 103 South_G South_O Nature Selfish South_D North_E29 Nature Generational Stone Refusal 3.0 0.0
157 114 103 South_H South_B Nature South_E South_J Nature Stone 3.0
158 114 103 South_I South_D Nature South_L North_E29 Nature Generational Stone 3.0
159 114 103 South_F South_A Nature South_G South_B Nature Stone 3.0
160 114 103 South_J South_I Nature South_F South_A Nature Stone 3.0
161 114 103 South_K North_Q Nature Generational South_H South_I Nature Stone 3.0
162 114 103 South_L North_U Nature Generational South_I North_C27 Nature Generational Stone 3.0
163 114 103 South_A South_M Nature Selfish South_J North_T Nature Generational Stone Refusal 3.0 0.0
164 114 103 South_B South_M Nature Selfish South_K North_T Nature Generational Stone Refusal 3.0 0.0
165 114 103 South_C South_O Nature Selfish South_A South_E Nature Stone Refusal 3.0 0.0
166 114 103 South_D South_O Nature Selfish South_B South_E Nature Stone Refusal 3.0 0.0
167 114 103 South_E North_S Nature Generational South_C South_D Nature Stone 3.0
168 114 103 South_G South_M Nature Selfish South_D South_D28 Nature Stone Refusal 3.0 0.0
169 114 103 South_H South_M Nature Selfish South_E South_D28 Nature Stone Refusal 3.0 0.0
170 114 103 South_I South_M Nature Selfish South_L South_K Nature Stone Refusal 3.0 0.0
171 114 103 South_F South_M Nature Selfish South_G South_K Nature Stone Refusal 3.0 0.0
172 114 103 South_J South_M Nature Selfish South_F South_E Nature Stone Refusal 3.0 0.0
173 114 103 South_K South_O Nature Selfish South_H North_T Nature Generational Stone Refusal 3.0 0.0
174 114 103 South_L South_M Nature Selfish South_I South_E Nature Stone Refusal 3.0 0.0
175 114 103 South_A South_O Nature Selfish South_J North_T Nature Generational Stone Refusal 3.0 0.0
176 114 103 South_B North_B26 Nature Generational South_K South_O Nature Selfish Stone 3.0
177 114 103 South_C South_O Nature Selfish South_A South_D28 Nature Stone Refusal 3.0 0.0
178 114 103 South_D South_O Nature Selfish South_B South_D28 Nature Stone Refusal 3.0 0.0
179 114 103 South_E South_O Nature Selfish South_C South_K Nature Stone Refusal 3.0 0.0
180 114 103 South_G South_O Nature Selfish South_D South_K Nature Stone Refusal 3.0 0.0
181 114 104 South_H South_E Nature South_E South_K Nature Stone 3.0
182 114 104 South_I South_J Nature South_L South_D28 Nature Stone 3.0
183 114 104 South_F South_O Nature Selfish South_G North_C27 Nature Generational Stone Refusal 3.0 0.0
184 114 104 South_J South_M Nature Selfish South_F North_C27 Nature Generational Stone Refusal 3.0 0.0
185 114 104 South_K South_N Nature Selfish South_H South_D28 Nature Stone Refusal 3.0 0.0
186 114 104 South_L South_M Nature Selfish South_I North_C27 Nature Generational Stone Refusal 3.0 0.0
187 114 104 South_A South_N Nature Selfish South_J South_D28 Nature Stone Refusal 3.0 0.0
188 114 104 South_B South_O Nature Selfish South_K North_C27 Nature Generational Stone Refusal 3.0 0.0
189 114 104 South_C South_N Nature Selfish South_A South_K Nature Stone Refusal 3.0 0.0
190 114 104 South_D South_N Nature Selfish South_B South_K Nature Stone Refusal 3.0 0.0
191 114 104 South_E South_N Nature Selfish South_C North_C27 Nature Generational Stone Refusal 3.0 0.0
192 114 104 South_G South_N Nature Selfish South_D North_C27 Nature Generational Stone Refusal 3.0 0.0
193 114 104 South_H South_F Nature South_E North_F30 Nature Generational Stone 3.0
194 114 104 South_I South_N Nature Selfish South_L Nature Stone Refusal 3.0 0.0
195 114 104 South_F South_N Nature Selfish South_G South_L Nature Stone Refusal 3.0 0.0
196 114 104 South_J South_F Nature South_F South_E Nature Stone 3.0
197 114 104 South_K South_O Nature Selfish South_H South_L Nature Stone Refusal 3.0 0.0
198 114 104 South_L South_O Nature Selfish South_I South_L Nature Stone Refusal 3.0 0.0
199 114 104 South_A South_D28 Nature South_J Nature Stone 3.0
200 114 104 South_B South_A Nature South_K Nature Stone 3.0
201 114 104 South_C South_E Nature South_A Nature Stone 3.0
202 114 104 South_D Nature South_B South_E Nature Stone 3.0
203 114 104 South_E South_K Nature South_C South_D Nature Stone 3.0
204 114 104 South_G South_D28 Nature South_D South_J Nature Stone 3.0
205 114 104 South_H South_G Nature South_E South_K Nature Stone 3.0
206 114 104 South_I South_H Nature South_L South_G Nature Stone 3.0
207 114 104 South_F South_A Nature South_G South_H Nature Stone 3.0
208 114 104 South_J South_B Nature South_F South_A Nature Stone 3.0
209 114 104 South_K South_E Nature South_H South_B Nature Stone 3.0
210 114 104 South_L South_I Nature South_I South_E Nature Stone 3.0
211 114 104 South_A South_D Nature South_J South_I Nature Stone 3.0
212 114 104 South_B South_K Nature South_K South_D Nature Stone 3.0
213 114 104 South_C South_G Nature South_A South_J Nature Stone 3.0
214 114 104 South_D South_D28 Nature South_B South_K Nature Stone 3.0
215 114 104 South_E South_H Nature South_C South_G Nature Stone 3.0
216 114 104 South_G South_A Nature South_D South_H Nature Stone 3.0
217 114 104 South_H South_B Nature South_E South_A Nature Stone 3.0
218 114 104 South_I South_E Nature South_L South_B Nature Stone 3.0
219 114 104 South_F South_I Nature South_G South_E Nature Stone 3.0
220 114 104 South_J South_D Nature South_F South_I Nature Stone 3.0
221 114 104 South_K South_J Nature South_H South_D28 Nature Stone 3.0
222 114 104 South_L South_G Nature South_I South_D Nature Stone 3.0
223 114 104 South_A South_K Nature South_J Nature Stone 3.0
224 114 104 South_B South_D28 Nature South_K South_G Nature Stone 3.0
225 114 104 South_C South_H Nature South_A South_K Nature Stone 3.0
226 114 104 South_D South_A Nature South_B South_H Nature Stone 3.0
227 114 104 South_E South_B Nature South_C South_A Nature Stone 3.0
228 114 104 South_G South_E Nature South_D South_B Nature Stone 3.0
229 114 104 South_H South_I Nature South_E Nature Stone 3.0
230 114 104 South_I South_F Nature South_L South_D28 Nature Stone 3.0
231 114 104 South_F South_D Nature South_G South_F Nature Stone 3.0
232 114 104 South_J Nature South_F South_I Nature Stone 3.0
233 114 104 South_K South_G Nature South_H South_D Nature Stone 3.0
234 114 104 South_L South_K Nature South_I South_G Nature Stone 3.0
235 114 104 South_A South_H Nature South_J Nature Stone 3.0
236 114 104 South_B South_D28 Nature South_K Nature Stone 3.0
237 114 104 South_C South_A Nature South_A South_H Nature Stone 3.0
238 114 104 South_D South_B Nature South_B South_A Nature Stone 3.0
239 114 104 South_E Nature South_C South_D28 Nature Stone 3.0
240 114 104 South_G South_I Nature South_D South_B Nature Stone 3.0
241 114 104 South_H South_F Nature South_E Nature Stone 3.0
242 114 104 South_I South_D Nature South_L South_F Nature Stone 3.0
243 115 104 South_F South_J Nature South_G South_I Nature Stone 3.0
244 115 104 South_J South_G Nature South_F South_D Nature Stone 3.0
245 116 104 South_K Nature South_D South_G Nature Stone 3.0
246 116 104 South_A South_H Nature South_E South_J Nature Stone 3.0
247 116 104 South_B South_D28 Nature South_J South_H Nature Stone 3.0
248 116 104 South_G South_A Nature South_K Nature Stone 3.0
249 116 104 South_C South_B Nature South_A Nature Stone 3.0
250 116 104 South_H South_E Nature South_B South_D28 Nature Stone 3.0
251 116 104 South_I Nature South_G South_B Nature Stone 3.0
252 116 104 South_F Nature South_C South_E Nature Stone 3.0
253 116 104 South_D Nature South_F Nature Stone 3.0
254 123 104 North_Q South_J Generational Nature North_U South_I Generational Nature Stone 3.0
255 127 104 North_Q South_G Generational Nature North_T South_D Generational Nature Stone 3.0
256 127 104 North_P South_K Generational Nature South_A South_G Nature Stone 3.0
257 104 South_H Nature South_J Nature Stone 3.0
258 104 South_A Nature South_H Nature Stone 3.0
259 104 South_D28 Nature South_K Nature Stone 3.0
260 104 South_B Nature South_A Nature Stone 3.0
261 104 South_E Nature South_D28 Nature Stone 3.0
262 104 South_I Nature South_B Nature Stone 3.0
263 104 South_F Nature South_E Nature Stone 3.0
264 104 South_D Nature South_I Nature Stone 3.0
265 104 South_J Nature South_F Nature Stone 3.0
266 104 South_G Nature South_D Nature Stone 3.0
267 104 South_K Nature South_G Nature Stone 3.0
268 104 South_H Nature South_J Nature Stone 3.0
269 104 South_A Nature South_H Nature Stone 3.0
270 104 South_D28 Nature South_A Nature Stone 3.0
271 104 South_B Nature South_K Nature Stone 3.0
272 104 South_E Nature South_D28 Nature Stone 3.0
273 104 South_I Nature South_B Nature Stone 3.0
274 104 South_D Nature South_E Nature Stone 3.0
275 104 South_F Nature South_I Nature Stone 3.0
276 104 South_G Nature South_D Nature Stone 3.0
277 104 South_K Nature South_F Nature Stone 3.0
278 104 South_H Nature South_G Nature Stone 3.0
279 104 South_A Nature South_H Nature Stone 3.0
280 104 South_D28 Nature South_A Nature Stone 3.0
281 104 South_M Selfish South_L Nature Refusal 0.0
282 104 South_M Selfish South_L Nature Refusal 0.0
283 104 South_B Nature South_K Nature Stone 3.0
284 104 South_E Nature South_D28 Nature Stone 3.0
285 104 South_I Nature South_B Nature Stone 3.0
286 104 South_D Nature South_E Nature Stone 3.0
287 104 South_F Nature South_D Nature Stone 3.0
288 104 South_J Nature South_I Nature Stone 3.0
289 104 South_G Nature South_F Nature Stone 3.0
290 104 South_K Nature South_G Nature Stone 3.0
291 104 South_H Nature South_J Nature Stone 3.0
292 104 South_A Nature South_H Nature Stone 3.0
293 104 South_D28 Nature South_A Nature Stone 3.0
294 104 South_B Nature South_K Nature Stone 3.0
295 104 South_E Nature South_D28 Nature Stone 3.0
296 104 South_I Nature South_B Nature Stone 3.0
297 104 South_D Nature South_E Nature Stone 3.0
298 105 South_F Nature South_I Nature Stone 3.0
299 105 South_N Selfish North_F30 Generational Refusal 0.0
300 105 South_G31 Selfish North_F30 Generational Refusal 0.0
301 105 South_G31 Selfish North_F30 Generational Refusal 0.0
302 105 South_G31 Selfish South_E Nature Refusal 0.0
303 105 South_G31 Selfish South_F Nature Refusal 0.0
304 105 South_G31 Selfish South_G Nature Refusal 0.0
305 105 South_G31 Selfish South_H Nature Refusal 0.0
306 105 South_G31 Selfish South_I Nature Refusal 0.0
307 105 South_G31 Selfish South_K Nature Refusal 0.0
308 105 South_G31 Selfish South_L Nature Refusal 0.0
309 105 South_N Selfish North_F30 Generational Refusal 0.0
310 105 South_G31 Selfish South_A Nature Refusal 0.0
311 105 South_G31 Selfish South_B Nature Refusal 0.0
312 105 South_G31 Selfish South_F Nature Refusal 0.0
313 105 South_G31 Selfish South_A Nature Refusal 0.0
314 105 South_G31 Selfish South_B Nature Refusal 0.0
315 105 South_G31 Selfish South_E Nature Refusal 0.0
316 105 South_G31 Selfish South_G Nature Refusal 0.0
317 105 South_G31 Selfish South_H Nature Refusal 0.0
318 105 South_G31 Selfish South_I Nature Refusal 0.0
319 105 South_G31 Selfish South_K Nature Refusal 0.0
320 105 South_G31 Selfish South_L Nature Refusal 0.0
321 105 South_O Selfish North_F30 Generational Refusal 0.0
322 105 South_O Selfish North_F30 Generational Refusal 0.0
323 105 South_G31 Selfish North_P Generational Refusal 0.0
324 105 South_G31 Selfish North_P Generational Refusal 0.0
325 105 South_G31 Selfish North_S Generational Refusal 0.0
326 105 South_G31 Selfish North_W Generational Refusal 0.0
327 105 South_G31 Selfish North_B26 Generational Refusal 0.0
328 105 South_G31 Selfish North_C27 Generational Refusal 0.0
329 105 South_G31 Selfish North_E29 Generational Refusal 0.0
330 105 South_G31 Selfish North_S Generational Refusal 0.0
331 105 South_G31 Selfish North_W Generational Refusal 0.0
332 105 South_G31 Selfish North_B26 Generational Refusal 0.0
333 105 South_G31 Selfish North_C27 Generational Refusal 0.0
334 105 South_G31 Selfish North_E29 Generational Refusal 0.0
335 106 South_H Nature South_G31 Selfish Stone 3.0
336 107 South_A Nature South_H32 Nature Stone 3.0
337 108 North_Q Generational South_I33 Selfish Stone 3.0
338 108 South_G31 Selfish North_Q Generational Refusal 0.0
339 108 South_G31 Selfish North_Q Generational Refusal 0.0
340 109 South_G31 Selfish South_I33 Selfish Refusal 0.0
341 109 South_O Selfish South_I33 Selfish Refusal 0.0
342 109 South_G31 Selfish South_I33 Selfish Refusal 0.0
343 109 South_O Selfish South_I33 Selfish Refusal 0.0
344 117 South_J Nature South_H Nature Stone 3.0
345 117 South_D Nature South_J Nature Stone 3.0
346 117 South_G Nature South_B Nature Stone 3.0
347 117 South_H Nature South_D Nature Stone 3.0
348 117 South_J Nature South_H Nature Stone 3.0
349 117 South_D Nature South_B Nature Stone 3.0
350 117 South_G Nature South_D Nature Stone 3.0
351 117 South_H Nature South_G Nature Stone 3.0
352 117 South_B Nature South_H Nature Stone 3.0
353 117 South_D Nature South_B Nature Stone 3.0
354 117 South_G Nature South_D Nature Stone 3.0
355 117 South_H Nature South_G Nature Stone 3.0
356 117 South_B Nature South_H Nature Stone 3.0
357 117 South_D Nature South_B Nature Stone 3.0
358 117 South_G Nature South_D Nature Stone 3.0
359 117 South_H Nature South_G Nature Stone 3.0
360 117 South_B Nature South_H Nature Stone 3.0
361 117 South_D Nature South_B Nature Stone 3.0
362 117 South_G Nature South_D Nature Stone 3.0
363 117 South_H Nature South_G Nature Stone 3.0
364 117 South_B Nature South_H Nature Stone 3.0
365 117 South_D Nature South_B Nature Stone 3.0
366 117 South_G Nature South_D Nature Stone 3.0
367 117 South_J Nature South_G Nature Stone 3.0
368 117 South_H Nature South_J Nature Stone 3.0
369 117 South_B Nature South_H Nature Stone 3.0
370 117 South_D Nature South_B Nature Stone 3.0
371 117 South_G Nature South_D Nature Stone 3.0
372 117 South_J Nature South_G Nature Stone 3.0
373 117 South_A Nature South_J Nature Stone 3.0
374 117 South_F Nature South_A Nature Stone 3.0
375 117 South_L Nature South_I Nature Stone 3.0
376 117 South_H Nature South_F Nature Stone 3.0
377 117 South_B Nature South_H Nature Stone 3.0
378 117 South_D Nature South_B Nature Stone 3.0
379 117 South_G Nature South_D Nature Stone 3.0
380 117 South_J Nature South_L Nature Stone 3.0
381 117 South_F Nature South_G Nature Stone 3.0
382 117 South_I Nature South_J Nature Stone 3.0
383 117 South_H Nature South_F Nature Stone 3.0
384 117 South_K Nature South_H Nature Stone 3.0
385 117 South_L Nature South_I Nature Stone 3.0
386 117 South_A Nature South_K Nature Stone 3.0
387 117 South_B Nature South_A Nature Stone 3.0
388 117 South_D28 Nature South_B Nature Stone 3.0
389 117 South_H32 Nature South_L Nature Stone 3.0
390 117 South_D Nature South_D28 Nature Stone 3.0
391 117 South_G Nature South_D Nature Stone 3.0
392 117 South_J Nature South_H32 Nature Stone 3.0
393 117 South_F Nature South_G Nature Stone 3.0
394 117 South_I Nature South_J Nature Stone 3.0
395 117 South_H Nature South_F Nature Stone 3.0
396 117 South_K Nature South_H Nature Stone 3.0
397 117 South_L Nature South_I Nature Stone 3.0
398 117 South_A Nature South_K Nature Stone 3.0
399 117 South_B Nature South_A Nature Stone 3.0
400 117 South_D28 Nature South_B Nature Stone 3.0
401 117 South_H32 Nature South_L Nature Stone 3.0
402 117 South_D Nature South_D28 Nature Stone 3.0
403 117 South_G Nature South_D Nature Stone 3.0
404 117 South_J Nature South_H32 Nature Stone 3.0
405 117 South_F Nature South_G Nature Stone 3.0
406 117 South_I Nature South_J Nature Stone 3.0
407 117 South_H Nature South_F Nature Stone 3.0
408 117 South_K Nature South_H Nature Stone 3.0
409 117 South_L Nature South_I Nature Stone 3.0
410 117 South_A Nature South_K Nature Stone 3.0
411 117 South_B Nature South_L Nature Stone 3.0
412 117 South_D28 Nature South_A Nature Stone 3.0
413 117 South_H32 Nature South_B Nature Stone 3.0
414 117 South_D Nature South_D28 Nature Stone 3.0
415 117 South_G Nature South_D Nature Stone 3.0
416 117 South_J Nature South_H32 Nature Stone 3.0
417 117 South_F Nature South_G Nature Stone 3.0
418 117 South_I Nature South_J Nature Stone 3.0
419 117 South_H Nature South_F Nature Stone 3.0
420 117 South_K Nature South_H Nature Stone 3.0
421 117 South_L Nature South_I Nature Stone 3.0
422 117 South_B Nature South_K Nature Stone 3.0
423 117 South_A Nature South_L Nature Stone 3.0
424 117 South_D28 Nature South_A Nature Stone 3.0
425 117 South_H32 Nature South_B Nature Stone 3.0
426 117 South_D Nature South_D28 Nature Stone 3.0
427 117 South_G Nature South_D Nature Stone 3.0
428 117 South_J Nature South_H32 Nature Stone 3.0
429 117 South_F Nature South_G Nature Stone 3.0
430 117 South_I Nature South_J Nature Stone 3.0
431 117 South_H Nature South_F Nature Stone 3.0
432 117 South_K Nature South_H Nature Stone 3.0
433 117 South_L Nature South_I Nature Stone 3.0
434 117 South_B Nature South_K Nature Stone 3.0
435 117 South_A Nature South_B Nature Stone 3.0
436 117 South_D28 Nature South_A Nature Stone 3.0
437 117 South_H32 Nature South_L Nature Stone 3.0
438 117 South_D Nature South_D28 Nature Stone 3.0
439 117 South_G Nature South_D Nature Stone 3.0
440 117 South_J Nature South_G Nature Stone 3.0
441 117 South_F Nature South_J Nature Stone 3.0
442 117 South_I Nature South_H32 Nature Stone 3.0
443 117 South_H Nature South_F Nature Stone 3.0
444 117 South_K Nature South_H Nature Stone 3.0
445 117 South_L Nature South_I Nature Stone 3.0
446 117 South_B Nature South_K Nature Stone 3.0
447 117 South_A Nature South_B Nature Stone 3.0
448 117 South_D28 Nature South_A Nature Stone 3.0
449 117 South_H32 Nature South_L Nature Stone 3.0
450 117 South_D Nature South_D28 Nature Stone 3.0
451 117 South_G Nature South_D Nature Stone 3.0
452 117 South_J Nature South_G Nature Stone 3.0
453 117 South_F Nature South_J Nature Stone 3.0
454 117 South_I Nature South_H32 Nature Stone 3.0
455 117 South_H Nature South_F Nature Stone 3.0
456 117 South_K Nature South_H Nature Stone 3.0
457 117 South_L Nature South_I Nature Stone 3.0
458 117 South_B Nature South_K Nature Stone 3.0
459 117 South_A Nature South_B Nature Stone 3.0
460 117 South_D28 Nature South_A Nature Stone 3.0
461 117 South_H32 Nature South_L Nature Stone 3.0
462 117 South_D Nature South_D28 Nature Stone 3.0
463 117 South_G Nature South_D Nature Stone 3.0
464 117 South_J Nature South_G Nature Stone 3.0
465 117 South_F Nature South_J Nature Stone 3.0
466 117 South_I Nature South_H32 Nature Stone 3.0
467 117 South_H Nature South_F Nature Stone 3.0
468 117 South_K Nature South_H Nature Stone 3.0
469 117 South_L Nature South_I Nature Stone 3.0
470 117 South_B Nature South_K Nature Stone 3.0
471 117 South_A Nature South_B Nature Stone 3.0
472 117 South_D28 Nature South_A Nature Stone 3.0
473 117 South_H32 Nature South_L Nature Stone 3.0
474 117 South_D Nature South_D28 Nature Stone 3.0
475 117 South_G Nature South_D Nature Stone 3.0
476 117 South_J Nature South_G Nature Stone 3.0
477 117 South_F Nature South_J Nature Stone 3.0
478 117 South_I Nature South_H32 Nature Stone 3.0
479 117 South_H Nature South_F Nature Stone 3.0
480 117 South_K Nature South_H Nature Stone 3.0
481 117 South_L Nature South_I Nature Stone 3.0
482 117 South_B Nature South_K Nature Stone 3.0
483 117 South_A Nature South_B Nature Stone 3.0
484 117 South_D28 Nature South_A Nature Stone 3.0
485 117 South_H32 Nature South_L Nature Stone 3.0
486 117 South_D Nature South_D28 Nature Stone 3.0
487 117 South_G Nature South_D Nature Stone 3.0
488 117 South_J Nature South_G Nature Stone 3.0
489 117 South_F Nature South_J Nature Stone 3.0
490 117 South_I Nature South_H32 Nature Stone 3.0
491 117 South_H Nature South_F Nature Stone 3.0
492 117 South_K Nature South_H Nature Stone 3.0
493 117 South_L Nature South_I Nature Stone 3.0
494 117 South_B Nature South_K Nature Stone 3.0
495 117 South_A Nature South_B Nature Stone 3.0
496 117 South_D28 Nature South_A Nature Stone 3.0
497 117 South_D Nature South_L Nature Stone 3.0
498 117 South_H32 Nature South_D28 Nature Stone 3.0
499 117 South_G Nature South_D Nature Stone 3.0
500 117 South_J Nature South_G Nature Stone 3.0
501 117 South_F Nature South_J Nature Stone 3.0
502 117 South_I Nature South_H32 Nature Stone 3.0
503 117 South_H Nature South_F Nature Stone 3.0
504 117 South_K Nature South_H Nature Stone 3.0
505 117 South_L Nature South_I Nature Stone 3.0
506 117 South_B Nature South_K Nature Stone 3.0
507 117 South_A Nature South_B Nature Stone 3.0
508 117 South_D28 Nature South_A Nature Stone 3.0
509 117 South_D Nature South_L Nature Stone 3.0
510 117 South_H32 Nature South_D Nature Stone 3.0
511 117 South_G Nature South_D28 Nature Stone 3.0
512 117 South_J Nature South_G Nature Stone 3.0
513 117 North_E29 Generational South_J Nature Stone 3.0
514 117 South_F Nature South_H32 Nature Stone 3.0
515 117 South_H Nature South_F Nature Stone 3.0
516 117 North_S Generational South_H Nature Stone 3.0
517 117 North_B26 Generational South_I Nature Stone 3.0
518 118 North_V Generational South_J34 Nature Stone 3.0
519 118 South_L Nature South_K Nature Stone 3.0
520 119 South_A Nature North_Q Generational Stone 3.0
521 121 South_D28 Nature North_U Generational Stone 3.0
522 121 South_D28 Nature North_C27 Generational Stone 3.0
523 122 North_E29 Generational North_P Generational Stone 3.0
524 122 South_A Nature South_K35 Nature Stone 3.0
525 122 North_B26 Generational North_F30 Generational Stone 3.0
526 123 South_H32 Nature North_W Generational Stone 3.0
527 123 South_L Nature North_L36 Generational Stone 3.0
528 124 South_D Nature South_M37 Nature Stone 3.0
529 125 South_L Nature North_U Generational Stone 3.0
530 127 South_G Nature South_N38 Nature Food 3.0
531 148 South_J Nature North_U Generational Stone 3.0
532 152 South_H32 Nature South_O39 Nature Stone 3.0
533 155 South_A Nature North_Q41 Generational Stone 3.0
534 157 South_J34 Nature South_N38 Nature Stone 3.0
+6001 -6501
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -6,10 +6,10 @@ uid="uid://b1b2os1svftw2"
[deps] [deps]
files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation"] files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation", "res://soak_npc_days.age.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation"]
source_file="res://soak_npc_days.csv" source_file="res://soak_npc_days.csv"
dest_files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation"] dest_files=["res://soak_npc_days.npc.translation", "res://soak_npc_days.name.translation", "res://soak_npc_days.soul.translation", "res://soak_npc_days.town.translation", "res://soak_npc_days.dominant.translation", "res://soak_npc_days.gather.translation", "res://soak_npc_days.build.translation", "res://soak_npc_days.trade.translation", "res://soak_npc_days.rest.translation", "res://soak_npc_days.social.translation", "res://soak_npc_days.nourish.translation", "res://soak_npc_days.health.translation", "res://soak_npc_days.debris.translation", "res://soak_npc_days.demand.translation", "res://soak_npc_days.rough.translation", "res://soak_npc_days.hunger.translation", "res://soak_npc_days.age.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation", "res://soak_npc_days.know.translation"]
[params] [params]
+241 -261
View File
@@ -1,261 +1,241 @@
day,season,wood,stone,clay,food,harvested,trades,avg_fatigue,avg_nourish,avg_health,carried,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks,shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food,avg_debris,refusals,incomplete_sites day,season,wood,stone,clay,food,harvested,trades,avg_fatigue,avg_nourish,avg_health,carried,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks,shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food,avg_debris,refusals,incomplete_sites,avg_knowledge,deaths
1,spring,1579.9,960.0,400.0,654.0,564.5,0,0.0,0.766,100.0,564.5,7719,690,0,3081,12510,0,0,0.000,0.0,0.0,0,0.0,0.0023,0,0 1,spring,1572.9,960.0,400.0,649.9,572.0,0,0.0,0.766,100.0,572.0,7926,654,0,3486,11934,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.007,0
2,spring,1628.7,960.0,400.0,740.0,48.0,0,0.0,0.915,100.0,562.5,1471,1181,0,12000,21348,0,0,0.000,0.0,0.0,0,0.0,0.0023,0,0 2,spring,1624.2,960.0,400.0,732.8,46.2,0,0.0,0.914,100.0,568.2,1557,1177,0,12000,21266,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.008,0
3,spring,1670.7,960.0,400.0,775.0,42.0,0,0.0,0.814,100.0,579.5,1401,1185,0,12000,21414,0,0,0.000,0.0,0.0,0,0.0,0.0023,0,0 3,spring,1667.4,960.0,400.0,784.9,38.1,0,0.0,0.813,100.0,581.3,1365,1188,0,12000,21447,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.008,0
4,spring,1407.0,736.0,400.0,751.0,753.5,2,0.1,0.732,100.0,506.8,8983,5752,827,13977,6461,4,0,0.975,18.0,14.0,12,0.0,0.0023,0,0 4,spring,1447.2,653.5,400.0,730.7,761.6,3,0.4,0.741,100.0,507.3,9396,5333,920,14434,5917,3,0,1.000,19.5,10.5,9,0.0,0.0031,0,0,0.019,0
5,spring,1142.6,762.0,400.0,680.0,608.2,3,1.4,0.861,100.0,577.0,8272,2472,442,13144,11670,4,0,0.988,24.0,16.0,16,0.0,0.0023,0,0 5,spring,1173.7,750.5,400.0,592.5,763.4,2,3.9,0.859,100.0,507.9,13306,1508,796,14653,5737,3,0,1.000,18.0,12.0,12,0.0,0.0031,0,0,0.029,0
6,spring,1099.8,773.0,400.0,668.0,342.6,1,2.9,0.770,100.0,578.8,5676,902,60,12727,16635,4,0,1.000,24.0,16.0,16,0.0,0.0025,0,0 6,spring,1000.7,750.5,400.0,577.2,560.3,0,3.9,0.778,100.0,562.0,10070,728,0,13608,11594,3,0,1.000,18.0,12.0,12,0.0,0.0032,0,0,0.036,0
7,spring,1155.4,773.0,400.0,620.0,322.8,0,3.0,0.909,100.0,559.5,5022,932,0,12643,17403,4,0,1.000,24.0,16.0,16,0.0,0.0026,0,0 7,spring,1027.2,750.5,400.0,573.3,351.8,0,2.0,0.906,100.0,542.0,8876,644,0,13605,12875,3,0,1.000,18.0,12.0,12,0.0,0.0032,0,0,0.041,0
8,spring,1117.7,773.0,400.0,645.0,314.7,0,2.4,0.817,100.0,567.4,5959,955,0,12631,16455,4,0,1.000,24.0,16.0,16,0.0,0.0027,0,0 8,spring,1016.1,750.5,400.0,587.3,376.2,0,6.2,0.814,100.0,557.9,11121,509,0,13628,10742,3,0,1.000,18.0,12.0,12,0.0,0.0034,0,0,0.046,0
9,spring,1018.8,773.0,400.0,634.0,459.1,0,2.3,0.736,100.0,569.2,5240,1032,0,12645,17083,4,0,1.000,24.0,16.0,16,0.0,0.0027,0,0 9,spring,989.3,750.5,400.0,588.6,399.0,0,7.1,0.732,100.0,562.1,9166,932,20,13592,12290,3,0,1.000,18.0,12.0,12,0.0,0.0036,0,0,0.052,0
10,spring,1068.7,773.0,400.0,733.0,182.5,0,0.7,0.854,100.0,577.5,4062,1878,0,12162,17898,4,0,1.000,24.0,16.0,16,0.0,0.0029,0,0 10,spring,987.3,750.5,400.0,588.4,381.4,0,6.8,0.850,100.0,558.1,9941,666,0,13601,11792,3,0,1.000,18.0,12.0,12,0.0,0.0036,0,0,0.058,0
11,spring,1157.7,773.0,400.0,742.0,136.8,0,0.7,0.773,100.0,580.1,2768,1375,0,12162,19695,4,0,1.000,24.0,16.0,16,0.0,0.0029,0,0 11,spring,962.5,750.5,400.0,580.1,412.4,0,5.6,0.778,100.0,567.2,9466,1216,0,13613,11705,3,0,1.000,18.0,12.0,12,0.0,0.0037,0,0,0.074,0
12,spring,1273.9,773.0,400.0,717.0,161.8,0,0.7,0.901,100.0,561.9,2735,1210,0,12162,19893,4,0,1.000,24.0,16.0,16,0.0,0.0030,0,0 12,spring,1008.6,750.5,400.0,628.0,276.4,0,5.7,0.897,100.0,543.0,9298,704,0,13599,12399,3,0,1.000,18.0,12.0,12,0.0,0.0038,0,0,0.082,0
13,spring,1318.0,773.0,400.0,746.0,158.1,0,0.3,0.819,100.0,579.7,2951,1234,0,12162,19653,4,0,1.000,24.0,16.0,16,0.0,0.0033,0,0 13,spring,1008.3,750.5,400.0,607.7,381.7,1,4.9,0.824,100.0,555.2,9456,1209,144,13427,11764,3,0,1.000,18.0,12.0,12,0.0,0.0039,0,0,0.091,0
14,spring,1327.2,773.0,400.0,749.0,197.8,0,0.7,0.728,100.0,581.9,2565,1110,0,12162,20163,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0 14,spring,989.5,750.5,400.0,588.1,417.7,0,3.4,0.722,100.0,569.5,8338,694,0,13282,13686,3,0,1.000,18.0,12.0,12,0.0,0.0039,0,0,0.103,0
15,spring,1387.2,773.0,400.0,738.0,181.0,0,0.3,0.856,100.0,579.7,2800,1158,0,12162,19880,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0 15,spring,979.8,750.5,400.0,614.4,357.9,0,5.7,0.860,100.0,564.6,8260,699,16,13296,13729,3,0,1.000,18.0,12.0,12,0.0,0.0040,0,0,0.112,0
16,spring,1410.5,773.0,400.0,752.0,160.0,0,0.7,0.774,100.0,579.7,2523,1109,0,12162,20206,4,0,1.000,24.0,16.0,16,0.0,0.0034,0,0 16,spring,934.1,750.5,400.0,622.6,392.7,0,4.1,0.768,100.0,567.4,7997,717,0,13283,14003,3,0,1.000,18.0,12.0,12,0.0,0.0042,0,0,0.122,0
17,spring,1476.9,773.0,400.0,721.0,172.6,0,0.7,0.902,100.0,563.5,2752,1216,0,12162,19870,4,0,1.000,24.0,16.0,16,0.0,0.0036,0,0 17,spring,991.5,750.5,400.0,585.3,363.9,0,1.2,0.906,100.0,542.7,7778,715,0,13292,14215,3,0,1.000,18.0,12.0,12,0.0,0.0043,0,0,0.130,0
18,spring,1467.1,773.0,400.0,753.0,200.0,0,0.7,0.820,100.0,577.2,2882,1343,0,12162,19613,4,0,1.000,24.0,16.0,16,0.0,0.0037,0,0 18,spring,972.2,778.6,400.0,590.9,395.5,1,4.6,0.813,100.0,571.1,7761,963,86,12987,14203,3,0,1.000,18.0,12.0,12,0.0,0.0044,0,0,0.141,0
19,spring,1411.7,773.0,400.0,767.0,220.2,0,0.5,0.728,100.0,580.3,2635,1105,0,12162,20098,4,0,1.000,24.0,16.0,16,0.0,0.0037,0,0 19,spring,964.1,778.6,400.0,637.9,331.4,1,2.9,0.731,100.0,578.9,5712,1078,28,12891,16291,3,0,1.000,18.0,12.0,12,0.0,0.0046,0,0,0.149,0
20,spring,1342.2,773.0,400.0,755.0,257.9,0,0.0,0.866,100.0,580.2,2684,1375,0,12153,19788,4,0,1.000,24.0,16.0,16,0.0,0.0038,0,0 20,spring,975.5,778.6,400.0,620.7,367.7,0,1.7,0.859,100.0,575.4,5539,1166,0,12631,16664,3,0,1.000,18.0,12.0,12,0.0,0.0047,0,0,0.166,0
21,spring,1359.4,773.0,400.0,743.0,185.2,0,0.4,0.774,100.0,582.4,2500,1342,0,12159,19999,4,0,1.000,24.0,16.0,16,0.0,0.0042,0,0 21,spring,1021.6,786.7,400.0,678.8,250.3,1,1.1,0.776,100.0,590.0,5046,1226,50,12405,17273,3,0,1.000,18.0,12.0,12,0.0,0.0048,0,0,0.184,0
22,spring,1436.9,773.0,400.0,723.0,152.5,0,0.7,0.902,100.0,558.2,2634,1143,0,12162,20061,4,0,1.000,24.0,16.0,16,0.0,0.0043,0,0 22,spring,1098.2,786.7,400.0,704.0,194.3,0,1.5,0.903,100.0,567.6,3213,1140,0,12314,19333,3,0,1.000,18.0,12.0,12,0.0,0.0049,0,0,0.195,0
23,spring,1434.0,773.0,400.0,749.0,202.9,0,0.7,0.819,100.0,578.9,2892,1322,0,12162,19624,4,0,1.000,24.0,16.0,16,0.0,0.0043,0,0 23,spring,1187.3,799.7,400.0,727.3,145.1,0,0.6,0.821,100.0,585.8,2762,1271,0,12160,19807,3,0,1.000,18.0,12.0,12,0.0,0.0050,0,0,0.213,0
24,spring,1387.3,773.0,400.0,754.0,225.7,0,0.5,0.727,100.0,580.6,2521,1286,0,12162,20031,4,0,1.000,24.0,16.0,16,0.0,0.0045,0,0 24,spring,1240.1,799.7,400.0,736.8,179.0,0,0.7,0.728,100.0,582.9,2452,1324,0,12156,20068,3,0,1.000,18.0,12.0,12,0.0,0.0051,0,0,0.227,0
25,spring,1337.7,773.0,400.0,738.0,264.8,0,0.2,0.865,100.0,583.4,2820,1096,0,12159,19925,4,0,1.000,24.0,16.0,16,0.0,0.0048,0,0 25,spring,1200.3,698.8,400.0,703.5,442.8,0,0.6,0.865,100.0,573.1,6812,2885,0,13490,12813,4,0,1.000,24.0,16.0,16,0.0,0.0052,0,0,0.236,0
26,spring,1362.5,773.0,400.0,748.0,150.0,0,0.7,0.772,100.0,574.4,2390,1390,0,12162,20058,4,0,1.000,24.0,16.0,16,0.0,0.0048,0,0 26,spring,1138.4,729.1,400.0,601.4,501.6,1,2.6,0.772,100.0,578.8,6811,1211,74,12814,15090,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0,0.248,0
27,spring,1423.7,773.0,400.0,726.0,175.6,0,0.7,0.909,100.0,556.4,2952,1280,0,12162,19606,4,0,1.000,24.0,16.0,16,0.0,0.0048,0,0 27,spring,1165.9,751.3,400.0,724.5,174.9,0,0.0,0.909,100.0,562.4,3251,1548,0,12155,19046,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0,0.251,0
28,spring,1436.9,773.0,400.0,750.0,193.4,0,0.7,0.817,100.0,579.8,3061,1257,0,12162,19520,4,0,1.000,24.0,16.0,16,0.0,0.0050,0,0 28,spring,1245.9,751.3,400.0,759.6,86.4,0,0.0,0.816,100.0,585.9,2591,1520,0,12000,19889,4,0,1.000,24.0,16.0,16,0.0,0.0056,0,0,0.262,0
29,spring,1390.9,773.0,400.0,752.0,228.6,0,0.5,0.734,100.0,581.4,2530,1109,0,12162,20199,4,0,1.000,24.0,16.0,16,0.0,0.0053,0,0 29,spring,1341.2,751.3,400.0,771.7,48.2,0,0.0,0.733,100.0,591.1,1890,1162,0,12000,20948,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0,0.276,0
30,summer,1331.7,773.0,400.0,715.0,262.2,0,0.7,0.852,100.0,579.6,2653,1107,0,12162,20078,4,0,1.000,24.0,16.0,16,0.0,0.0053,0,0 30,summer,1406.2,751.3,400.0,769.1,56.2,0,0.0,0.850,100.0,584.4,1996,1218,0,12000,20786,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0,0.280,0
31,summer,1331.3,773.0,400.0,710.0,177.4,0,0.4,0.778,100.0,578.4,2504,1120,0,12159,20217,4,0,1.000,24.0,16.0,16,0.0,0.0054,0,0 31,summer,1488.6,751.3,400.0,762.7,45.1,0,0.0,0.777,100.0,585.5,1811,1168,0,12000,21021,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0,0.289,0
32,summer,1397.3,773.0,400.0,657.0,169.0,0,0.7,0.896,100.0,569.4,2793,1303,0,12162,19742,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0 32,summer,1564.9,751.3,400.0,764.1,45.6,0,0.0,0.894,100.0,568.1,1905,1284,0,12000,20811,4,0,1.000,24.0,16.0,16,0.0,0.0062,0,0,0.298,0
33,summer,1387.7,773.0,400.0,688.0,163.4,0,0.7,0.822,100.0,586.8,2840,1103,0,12162,19895,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0 33,summer,1629.4,751.3,400.0,752.0,65.2,0,0.0,0.820,100.0,589.3,2087,1376,0,12000,20537,4,0,1.000,24.0,16.0,16,0.0,0.0064,0,0,0.302,0
34,summer,1343.3,773.0,400.0,716.0,188.4,0,0.6,0.719,100.0,578.2,2492,1120,0,12162,20226,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0 34,summer,1673.4,751.3,400.0,758.0,40.3,0,0.0,0.727,100.0,587.6,1692,1169,0,12000,21139,4,0,1.000,24.0,16.0,16,0.0,0.0067,0,0,0.307,0
35,summer,1279.7,773.0,400.0,705.0,249.0,0,0.3,0.866,100.0,576.2,3051,1341,0,12156,19452,4,0,1.000,24.0,16.0,16,0.0,0.0062,0,0 35,summer,1680.9,751.3,400.0,749.8,66.1,0,0.0,0.863,100.0,588.7,2238,1658,0,12000,20104,4,0,1.000,24.0,16.0,16,0.0,0.0069,0,0,0.311,0
36,summer,1305.7,773.0,400.0,701.0,152.0,0,0.0,0.772,100.0,584.7,2723,1100,0,12162,20015,4,0,1.000,24.0,16.0,16,0.0,0.0066,0,0 36,summer,1688.6,751.3,400.0,752.4,42.3,0,0.0,0.769,100.0,589.0,1803,1166,0,12000,21031,4,0,1.000,24.0,16.0,16,0.0,0.0071,0,0,0.312,0
37,summer,1319.7,773.0,400.0,706.0,157.0,0,0.1,0.909,100.0,553.2,2463,1108,0,12155,20274,4,0,1.000,24.0,16.0,16,0.0,0.0068,0,0 37,summer,1688.8,751.3,400.0,761.0,40.8,0,0.0,0.905,100.0,564.8,1924,1228,0,12000,20848,4,0,1.000,24.0,16.0,16,0.0,0.0072,0,0,0.313,0
38,summer,1323.5,773.0,400.0,706.0,164.2,0,0.4,0.815,100.0,574.7,3090,1396,0,12162,19352,4,0,1.000,24.0,16.0,16,0.0,0.0069,0,0 38,summer,1694.4,751.3,400.0,745.6,66.9,0,0.0,0.811,100.0,589.8,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0075,0,0,0.315,0
39,summer,1307.5,773.0,400.0,710.0,172.0,0,0.5,0.731,100.0,579.7,2704,1357,0,12162,19777,4,0,1.000,24.0,16.0,16,0.0,0.0072,0,0 39,summer,1693.9,751.3,400.0,752.8,40.8,0,0.0,0.727,100.0,587.6,1897,1172,0,12000,20931,4,0,1.000,24.0,16.0,16,0.0,0.0077,0,0,0.320,0
40,summer,1305.7,773.0,400.0,680.0,201.8,0,0.8,0.857,100.0,584.5,3071,1146,0,12156,19627,4,0,1.000,24.0,16.0,16,0.0,0.0075,0,0 40,summer,1692.6,751.3,400.0,748.8,63.9,0,0.0,0.853,100.0,587.5,2247,1455,0,12000,20298,4,0,1.000,24.0,16.0,16,0.0,0.0079,0,0,0.323,0
41,summer,1341.7,773.0,400.0,689.0,117.0,0,0.7,0.773,100.0,579.5,2653,1115,0,12162,20070,4,0,1.000,24.0,16.0,16,0.0,0.0077,0,0 41,summer,1697.0,751.3,400.0,747.2,40.9,0,0.0,0.769,100.0,585.4,1688,1174,0,12000,21138,4,0,1.000,24.0,16.0,16,0.0,0.0082,0,0,0.326,0
42,summer,1311.7,773.0,400.0,683.0,220.0,0,0.0,0.899,100.0,553.3,2740,1171,0,12162,19927,4,0,1.000,24.0,16.0,16,0.0,0.0078,0,0 42,summer,1692.7,751.3,400.0,755.9,44.4,0,0.0,0.904,100.0,564.7,1836,1221,0,12000,20943,4,0,1.000,24.0,16.0,16,0.0,0.0083,0,0,0.327,0
43,summer,1310.9,773.0,400.0,672.0,199.8,0,0.7,0.815,100.0,580.0,3540,1376,0,12160,18924,4,0,1.000,24.0,16.0,16,0.0,0.0078,0,0 43,summer,1695.9,751.3,400.0,742.6,63.6,0,0.0,0.819,100.0,585.3,2007,1153,0,12000,20840,4,0,1.000,24.0,16.0,16,0.0,0.0086,0,0,0.329,0
44,summer,1302.9,773.0,400.0,698.0,162.0,0,0.7,0.730,100.0,577.0,2516,1118,0,12162,20204,4,0,1.000,24.0,16.0,16,0.0,0.0079,0,0 44,summer,1695.8,751.3,400.0,748.1,43.5,0,0.0,0.735,100.0,585.8,1762,1166,0,12000,21072,4,0,1.000,24.0,16.0,16,0.0,0.0088,0,0,0.333,0
45,summer,1324.9,773.0,400.0,689.0,173.0,0,0.7,0.866,100.0,581.0,2931,1086,0,12162,19821,4,0,1.000,24.0,16.0,16,0.0,0.0083,0,0 45,summer,1697.8,751.3,400.0,731.6,68.4,0,0.0,0.860,100.0,590.2,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0092,0,0,0.337,0
46,summer,1342.9,773.0,400.0,702.0,133.0,0,0.7,0.771,100.0,577.0,2536,1110,0,12162,20192,4,0,1.000,24.0,16.0,16,0.0,0.0084,0,0 46,summer,1699.2,751.3,400.0,740.6,42.0,0,0.0,0.775,100.0,589.1,1757,1165,0,12000,21078,4,0,1.000,24.0,16.0,16,0.0,0.0093,0,0,0.339,0
47,summer,1340.3,773.0,400.0,705.0,172.0,0,0.4,0.906,100.0,557.5,3040,1513,0,12162,19285,4,0,1.000,24.0,16.0,16,0.0,0.0087,0,0 47,summer,1698.3,751.3,400.0,751.6,41.4,0,0.0,0.900,100.0,566.5,1940,1309,0,12000,20751,4,0,1.000,24.0,16.0,16,0.0,0.0095,0,0,0.342,0
48,summer,1340.3,773.0,400.0,704.0,169.5,0,0.5,0.812,100.0,580.0,2978,1200,0,12162,19660,4,0,1.000,24.0,16.0,16,0.0,0.0089,0,0 48,summer,1693.5,751.3,400.0,739.7,79.9,0,0.0,0.824,100.0,594.6,2214,1218,0,12000,20568,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0,0.344,0
49,summer,1318.3,773.0,400.0,710.0,178.0,0,0.7,0.727,100.0,575.0,2473,1125,0,12162,20240,4,0,1.000,24.0,16.0,16,0.0,0.0092,0,0 49,summer,1697.5,751.3,400.0,756.4,29.3,0,0.0,0.719,100.0,582.8,1623,1172,0,12000,21205,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0,0.345,0
50,summer,1274.8,773.0,400.0,689.0,239.5,0,0.3,0.862,100.0,578.5,3076,1200,0,12155,19569,4,0,1.000,24.0,16.0,16,0.0,0.0094,0,0 50,summer,1697.0,751.3,400.0,737.5,80.1,0,0.0,0.863,100.0,590.8,2189,1143,0,12000,20668,4,0,1.000,24.0,16.0,16,0.0,0.0102,0,0,0.346,0
51,summer,1312.3,773.0,400.0,687.0,132.5,0,0.7,0.767,100.0,579.1,2553,1114,0,12162,20171,4,0,1.000,24.0,16.0,16,0.0,0.0097,0,0 51,summer,1696.1,751.3,400.0,755.2,32.6,0,0.0,0.768,100.0,581.3,1670,1177,0,12000,21153,4,0,1.000,24.0,16.0,16,0.0,0.0103,0,0,0.347,0
52,summer,1304.3,773.0,400.0,686.0,199.0,0,0.0,0.911,100.0,557.0,2829,1181,0,12156,19834,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0 52,summer,1699.2,751.3,400.0,752.2,51.2,0,0.0,0.902,100.0,567.5,1965,1150,0,12000,20885,4,0,1.000,24.0,16.0,16,0.0,0.0104,0,0,0.347,0
53,summer,1353.8,773.0,400.0,685.0,131.5,0,0.5,0.806,100.0,580.2,3428,1271,0,12155,19146,4,0,1.000,24.0,16.0,16,0.0,0.0101,0,0 53,summer,1698.9,751.3,400.0,740.3,67.6,0,0.0,0.826,100.0,591.1,2164,1138,0,12000,20698,4,0,1.000,24.0,16.0,16,0.0,0.0105,0,0,0.348,0
54,summer,1317.8,773.0,400.0,679.0,228.0,0,0.7,0.730,100.0,579.2,2557,1330,0,12162,19951,4,0,1.000,24.0,16.0,16,0.0,0.0105,0,0 54,summer,1704.4,751.3,400.0,750.9,40.9,0,0.0,0.721,100.0,591.0,1839,1665,0,12000,20496,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0,0.349,0
55,summer,1317.8,773.0,400.0,679.0,190.0,0,0.3,0.864,100.0,575.2,3180,1182,0,12158,19480,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0 55,summer,1698.5,751.3,400.0,754.3,63.1,0,0.0,0.865,100.0,588.1,2060,1279,0,12000,20661,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0,0.351,0
56,summer,1285.0,773.0,400.0,687.0,210.0,0,0.7,0.768,100.0,578.2,2853,1099,0,12162,19886,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0 56,summer,1700.5,751.3,400.0,760.0,38.8,0,0.0,0.769,100.0,584.9,1708,1169,0,12000,21123,4,0,1.000,24.0,16.0,16,0.0,0.0107,0,0,0.352,0
57,summer,1267.5,773.0,400.0,679.0,209.5,0,0.3,0.902,100.0,556.6,2769,1246,0,12162,19823,4,0,1.000,24.0,16.0,16,0.0,0.0111,0,0 57,summer,1697.9,751.3,400.0,760.7,54.0,0,0.0,0.903,100.0,573.9,2010,1292,0,12000,20698,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0,0.353,0
58,summer,1307.5,773.0,400.0,680.0,150.0,0,0.6,0.816,100.0,578.6,3040,1079,0,12162,19719,4,0,1.000,24.0,16.0,16,0.0,0.0114,0,0 58,summer,1699.9,751.3,400.0,756.0,54.5,0,0.0,0.817,100.0,585.4,2005,1159,0,12000,20836,4,0,1.000,24.0,16.0,16,0.0,0.0111,0,0,0.354,0
59,summer,1287.0,773.0,400.0,702.0,176.5,0,0.4,0.730,100.0,576.1,2580,1119,0,12162,20139,4,0,1.000,24.0,16.0,16,0.0,0.0116,0,0 59,summer,1704.6,751.3,400.0,751.5,47.5,0,0.0,0.721,100.0,590.9,1885,1163,0,12000,20952,4,0,1.000,24.0,16.0,16,0.0,0.0114,0,0,0.355,0
60,autumn,1352.6,773.0,400.0,675.6,124.0,0,0.7,0.853,100.0,579.1,3342,1086,0,12162,19410,4,0,1.000,24.0,16.0,16,0.0,0.0118,0,0 60,autumn,1697.0,751.3,400.0,733.6,78.7,0,0.0,0.864,100.0,595.2,2304,1503,0,12000,20193,4,0,1.000,24.0,16.0,16,0.0,0.0116,0,0,0.356,0
61,autumn,1262.6,773.0,400.0,695.8,232.6,0,0.3,0.776,100.0,576.2,2578,1381,0,12154,19887,4,0,1.000,24.0,16.0,16,0.0,0.0121,0,0 61,autumn,1697.3,751.3,400.0,747.0,30.1,0,0.0,0.768,100.0,583.3,1609,1178,0,12000,21213,4,0,1.000,24.0,16.0,16,0.0,0.0117,0,0,0.356,0
62,autumn,1251.1,773.0,400.0,708.0,148.9,0,0.8,0.900,100.0,557.8,3008,1811,0,12160,19021,4,0,1.000,24.0,16.0,16,0.0,0.0124,0,0 62,autumn,1702.6,751.3,400.0,734.1,49.2,0,0.0,0.902,100.0,567.5,1911,1154,0,12000,20935,4,0,1.000,24.0,16.0,16,0.0,0.0119,0,0,0.357,0
63,autumn,1293.1,773.0,400.0,655.6,167.6,0,0.7,0.813,100.0,579.8,3088,1076,0,12162,19674,4,0,1.000,24.0,16.0,16,0.0,0.0126,0,0 63,autumn,1706.7,751.3,400.0,723.4,60.9,0,0.0,0.815,100.0,585.4,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0120,0,0,0.358,0
64,autumn,1303.6,773.0,400.0,647.2,172.3,0,0.8,0.735,100.0,576.1,2514,1116,0,12154,20216,4,0,1.000,24.0,16.0,16,0.0,0.0129,0,0 64,autumn,1701.7,751.3,400.0,733.4,41.3,0,0.0,0.728,100.0,583.7,1713,1169,0,12000,21118,4,0,1.000,24.0,16.0,16,0.0,0.0121,0,0,0.359,0
65,autumn,1329.8,773.0,400.0,631.8,168.6,0,0.0,0.859,100.0,582.8,4347,1292,0,12157,18204,4,0,1.000,24.0,16.0,16,0.0,0.0131,0,0 65,autumn,1699.9,751.3,400.0,720.1,70.6,0,0.0,0.862,100.0,589.3,2372,1224,0,12000,20404,4,0,1.000,24.0,16.0,16,0.0,0.0122,0,0,0.361,0
66,autumn,1206.8,773.0,400.0,672.4,262.6,0,0.7,0.771,100.0,577.8,2644,1116,0,12162,20078,4,0,1.000,24.0,16.0,16,0.0,0.0133,0,0 66,autumn,1699.4,751.3,400.0,732.0,35.4,0,0.0,0.765,100.0,582.7,1660,1174,0,12000,21166,4,0,1.000,24.0,16.0,16,0.0,0.0123,0,0,0.363,0
67,autumn,1194.8,773.0,400.0,674.2,181.4,0,0.7,0.913,100.0,563.1,2981,1173,0,12162,19684,4,0,1.000,24.0,16.0,16,0.0,0.0136,0,0 67,autumn,1687.3,751.3,400.0,743.8,55.1,0,0.0,0.908,100.0,571.8,2150,1632,0,12000,20218,4,0,1.000,24.0,16.0,16,0.0,0.0124,0,0,0.365,0
68,autumn,1206.8,773.0,400.0,650.2,194.0,0,0.6,0.807,100.0,579.4,3025,1245,0,12162,19568,4,0,1.000,24.0,16.0,16,0.0,0.0137,0,0 68,autumn,1682.3,751.3,400.0,734.2,72.5,0,0.0,0.811,100.0,589.6,2440,1526,0,12000,20034,4,0,1.000,24.0,16.0,16,0.0,0.0125,0,0,0.366,0
69,autumn,1198.8,773.0,400.0,648.0,190.6,0,0.6,0.728,100.0,582.8,2833,1110,0,12156,19901,4,0,1.000,24.0,16.0,16,0.0,0.0140,0,0 69,autumn,1689.7,751.3,400.0,737.2,42.2,0,0.0,0.724,100.0,588.8,1940,1158,0,12000,20902,4,0,1.000,24.0,16.0,16,0.0,0.0127,0,0,0.366,0
70,autumn,1226.8,773.0,400.0,634.4,169.6,0,0.7,0.860,100.0,573.8,3360,1385,0,12162,19093,4,0,1.000,24.0,16.0,16,0.0,0.0142,0,0 70,autumn,1694.6,751.3,400.0,727.4,59.6,0,0.0,0.867,100.0,582.3,2053,1148,0,12000,20799,4,0,1.000,24.0,16.0,16,0.0,0.0129,0,0,0.367,0
71,autumn,1250.8,773.0,400.0,650.6,136.2,0,0.0,0.763,100.0,578.9,3200,1088,0,12162,19550,4,0,1.000,24.0,16.0,16,0.0,0.0143,0,0 71,autumn,1698.8,751.3,400.0,723.4,52.2,0,0.0,0.779,100.0,570.3,1903,1106,0,11520,20031,4,0,1.000,24.0,16.0,16,0.0,0.0131,0,0,0.353,1
72,autumn,1248.8,773.0,400.0,661.0,175.6,0,0.1,0.904,100.0,560.7,2880,1471,0,12155,19494,4,0,1.000,24.0,16.0,16,0.0,0.0145,0,0 72,autumn,1688.0,751.3,400.0,728.7,58.1,0,0.0,0.902,100.0,564.3,2113,1237,0,11999,20651,4,0,1.000,24.0,16.0,16,0.0,0.0132,0,0,0.366,0
73,autumn,1273.3,773.0,400.0,636.2,193.9,0,0.4,0.816,100.0,583.0,3097,1078,0,12159,19666,4,0,1.000,24.0,16.0,16,0.0,0.0146,0,0 73,autumn,1695.1,751.3,400.0,708.5,70.7,0,0.0,0.824,100.0,591.0,2393,1132,0,12000,20475,4,0,1.000,24.0,16.0,16,0.0,0.0133,0,0,0.367,0
74,autumn,1290.8,773.0,400.0,653.6,144.3,0,0.7,0.728,100.0,579.9,2819,1098,0,12162,19921,4,0,1.000,24.0,16.0,16,0.0,0.0148,0,0 74,autumn,1698.1,751.3,400.0,726.5,34.9,0,0.0,0.727,100.0,583.9,1731,1173,0,12000,21096,4,0,1.000,24.0,16.0,16,0.0,0.0135,0,0,0.367,0
75,autumn,1268.8,773.0,400.0,629.0,239.8,0,0.1,0.860,100.0,581.2,3286,1175,0,12162,19377,4,0,1.000,24.0,16.0,16,0.0,0.0150,0,0 75,autumn,1700.8,751.3,400.0,713.4,71.7,0,0.0,0.859,100.0,590.6,2247,1252,0,12000,20501,4,0,1.000,24.0,16.0,16,0.0,0.0136,0,0,0.368,0
76,autumn,1298.3,773.0,400.0,650.2,123.5,0,0.4,0.771,100.0,582.3,2929,1091,0,12162,19818,4,0,1.000,24.0,16.0,16,0.0,0.0151,0,0 76,autumn,1706.8,751.3,400.0,724.1,37.7,0,0.0,0.772,100.0,585.3,1750,1170,0,12000,21080,4,0,1.000,24.0,16.0,16,0.0,0.0137,0,0,0.368,0
77,autumn,1269.0,773.0,400.0,662.4,194.5,0,0.0,0.903,100.0,561.9,2822,1148,0,12162,19868,4,0,1.000,24.0,16.0,16,0.0,0.0152,0,0 77,autumn,1706.4,751.3,400.0,726.1,49.8,0,0.0,0.895,100.0,571.1,2060,1244,0,12000,20696,4,0,1.000,24.0,16.0,16,0.0,0.0139,0,0,0.369,0
78,autumn,1307.0,773.0,400.0,647.6,156.8,0,0.6,0.814,100.0,580.9,3203,1068,0,12156,19573,4,0,1.000,24.0,16.0,16,0.0,0.0154,0,0 78,autumn,1699.3,751.3,400.0,730.8,56.9,0,0.0,0.816,100.0,584.0,2050,1691,0,12000,20259,4,0,1.000,24.0,16.0,16,0.0,0.0141,0,0,0.371,0
79,autumn,1231.0,773.0,400.0,680.0,212.8,0,0.8,0.726,100.0,579.4,2641,1107,0,12154,20098,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0 79,autumn,1707.0,751.3,400.0,722.3,48.0,0,0.0,0.738,100.0,588.0,1960,1156,0,12000,20884,4,0,1.000,24.0,16.0,16,0.0,0.0144,0,0,0.372,0
80,autumn,1228.0,773.0,400.0,667.0,179.2,0,0.7,0.857,100.0,584.3,3542,1296,0,12162,19000,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0 80,autumn,1706.1,751.3,400.0,716.2,62.5,0,0.0,0.851,100.0,587.4,2246,1250,0,12000,20504,4,0,1.000,24.0,16.0,16,0.0,0.0146,0,0,0.372,0
81,autumn,1216.0,773.0,400.0,675.2,161.0,0,0.7,0.778,100.0,578.5,2666,1106,0,12162,20066,4,0,1.000,24.0,16.0,16,0.0,0.0157,0,0 81,autumn,1707.1,751.3,400.0,725.7,39.5,0,0.0,0.772,100.0,582.9,1692,1185,0,12000,21123,4,0,1.000,24.0,16.0,16,0.0,0.0148,0,0,0.373,0
82,autumn,1237.0,773.0,400.0,667.0,155.6,0,0.0,0.900,100.0,559.7,2794,1100,0,12154,19952,4,0,1.000,24.0,16.0,16,0.0,0.0159,0,0 82,autumn,1688.6,751.3,400.0,741.7,56.5,0,0.0,0.904,100.0,574.5,2085,1559,0,12000,20356,4,0,1.000,24.0,16.0,16,0.0,0.0151,0,0,0.373,0
83,autumn,1264.0,773.0,400.0,661.6,140.4,0,0.0,0.811,100.0,579.3,3575,1195,0,12154,19076,4,0,1.000,24.0,16.0,16,0.0,0.0161,0,0 83,autumn,1696.9,751.3,400.0,720.6,66.3,0,0.0,0.815,100.0,591.3,2303,1132,0,12000,20565,4,0,1.000,24.0,16.0,16,0.0,0.0153,0,0,0.374,0
84,autumn,1259.5,773.0,400.0,653.2,183.3,0,0.7,0.731,100.0,579.4,3008,1089,0,12162,19741,4,0,1.000,24.0,16.0,16,0.0,0.0163,0,0 84,autumn,1698.2,751.3,400.0,728.7,40.0,0,0.0,0.737,100.0,587.4,1876,1165,0,12000,20959,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0,0.375,0
85,autumn,1287.5,773.0,400.0,639.2,162.8,0,0.7,0.862,100.0,577.4,3634,1049,0,12162,19155,4,0,1.000,24.0,16.0,16,0.0,0.0163,0,0 85,autumn,1705.8,751.3,400.0,706.8,72.9,0,0.0,0.858,100.0,590.2,2347,1130,0,12000,20523,4,0,1.000,24.0,16.0,16,0.0,0.0158,0,0,0.376,0
86,autumn,1321.0,773.0,400.0,652.0,121.1,0,0.7,0.763,100.0,578.7,2686,1113,0,12162,20039,4,0,1.000,24.0,16.0,16,0.0,0.0164,0,0 86,autumn,1710.7,751.3,400.0,718.7,38.4,0,0.0,0.769,100.0,585.6,1785,1176,0,12000,21039,4,0,1.000,24.0,16.0,16,0.0,0.0161,0,0,0.376,0
87,autumn,1291.0,773.0,400.0,645.8,209.8,0,0.6,0.903,100.0,561.1,3183,1270,0,12162,19385,4,0,1.000,24.0,16.0,16,0.0,0.0165,0,0 87,autumn,1710.1,751.3,400.0,717.2,58.4,0,0.0,0.912,100.0,549.8,2020,1093,0,11520,19927,4,0,1.000,24.0,16.0,16,0.0,0.0164,0,0,0.362,1
88,autumn,1283.0,773.0,400.0,632.4,214.0,0,0.7,0.824,100.0,578.9,3279,1067,0,12162,19492,4,0,1.000,24.0,16.0,16,0.0,0.0165,0,0 88,autumn,1706.1,751.3,400.0,701.0,80.0,0,0.0,0.814,100.0,587.8,2565,1118,0,11999,20318,4,0,1.000,24.0,16.0,16,0.0,0.0166,0,0,0.377,0
89,autumn,1255.0,773.0,400.0,648.4,199.2,0,0.7,0.725,100.0,580.1,2858,1096,0,12162,19884,4,0,1.000,24.0,16.0,16,0.0,0.0167,0,0 89,autumn,1706.5,751.3,400.0,717.5,38.9,0,0.0,0.744,100.0,581.7,1825,1164,0,12000,21011,4,0,1.000,24.0,16.0,16,0.0,0.0167,0,0,0.378,0
90,winter,1175.5,773.0,400.0,516.5,212.5,0,0.8,0.856,100.0,582.6,3514,1282,0,12156,19048,4,0,1.000,24.0,16.0,16,0.0,0.0168,0,0 90,winter,1692.5,751.3,400.0,626.8,66.6,0,0.0,0.864,100.0,584.2,2238,1172,0,12000,20590,4,0,1.000,24.0,16.0,16,0.0,0.0171,0,0,0.379,0
91,winter,1087.0,773.0,400.0,450.7,164.1,0,0.1,0.775,100.0,581.8,3324,1072,0,12162,19442,4,0,1.000,24.0,16.0,16,0.0,0.0171,0,0 91,winter,1683.3,751.3,400.0,553.6,49.6,0,0.0,0.784,100.0,568.9,2144,1091,0,11520,19805,4,0,1.000,24.0,16.0,16,0.0,0.0173,0,0,0.366,1
92,winter,1054.2,773.0,400.0,368.9,129.4,0,0.4,0.896,100.0,561.3,3673,1076,0,12157,19094,4,0,1.000,24.0,16.0,16,0.0,0.0173,0,0 92,winter,1660.2,751.3,400.0,484.4,65.9,0,0.0,0.895,100.0,563.6,2484,1542,0,11999,19975,4,0,1.000,24.0,16.0,16,0.0,0.0174,0,0,0.377,0
93,winter,1038.9,773.0,400.0,280.7,127.5,0,0.7,0.816,100.0,583.2,6094,899,0,12160,16847,4,0,1.000,24.0,16.0,16,0.0,0.0177,0,0 93,winter,1648.1,751.3,400.0,407.7,71.8,0,0.0,0.822,100.0,563.0,3193,1030,0,11520,18817,4,0,1.000,24.0,16.0,16,0.0,0.0177,0,0,0.364,1
94,winter,1050.3,773.0,400.0,251.8,43.5,0,0.0,0.735,100.0,562.6,4706,713,0,12000,18581,4,0,1.000,24.0,16.0,16,0.0,0.0179,0,0 94,winter,1637.4,751.3,400.0,341.7,65.6,0,0.0,0.761,100.0,582.7,5738,918,0,12306,17038,4,0,1.000,24.0,16.0,16,0.0,0.0180,0,0,0.368,0
95,winter,1059.8,773.0,400.0,232.9,38.4,0,0.0,0.846,100.0,530.4,2617,1425,0,12000,19958,4,0,1.000,24.0,16.0,16,0.0,0.0182,0,0 95,winter,1632.8,751.3,400.0,274.5,64.8,0,0.0,0.861,100.0,585.4,5010,1102,0,12000,17888,4,0,1.000,24.0,16.0,16,0.0,0.0183,0,0,0.380,0
96,winter,1088.7,773.0,400.0,215.3,19.6,0,0.0,0.746,100.0,501.4,2835,651,0,12150,20364,4,0,1.000,24.0,16.0,16,0.0,0.0185,0,0 96,winter,1625.2,751.3,400.0,238.9,40.4,0,0.0,0.781,100.0,581.8,3064,1094,0,12000,19842,4,0,1.000,24.0,16.0,16,0.0,0.0185,0,0,0.381,0
97,winter,1111.5,773.0,400.0,197.9,27.1,0,0.0,0.868,100.0,464.5,4083,688,0,12153,19076,4,0,1.000,24.0,16.0,16,0.0,0.0188,0,0 97,winter,1638.0,751.3,400.0,219.8,6.8,0,0.0,0.890,100.0,525.7,3243,314,0,12000,20443,4,0,1.000,24.0,16.0,16,0.0,0.0188,0,0,0.381,0
98,winter,1121.8,773.0,400.0,184.3,36.9,0,0.0,0.790,100.0,450.3,3746,642,0,12157,19455,4,0,1.000,24.0,16.0,16,0.0,0.0190,0,0 98,winter,1631.0,751.3,400.0,202.8,24.6,0,0.0,0.819,100.0,505.2,2018,255,0,12000,21727,4,0,1.000,24.0,16.0,16,0.0,0.0190,0,0,0.382,0
99,winter,1139.7,773.0,400.0,169.7,31.7,0,0.0,0.644,100.0,446.0,4622,646,0,12150,18582,4,0,1.000,24.0,16.0,16,0.0,0.0193,0,0 99,winter,1609.5,751.3,400.0,185.6,42.1,0,0.0,0.758,100.0,494.9,2606,683,0,12000,20711,4,0,1.000,24.0,16.0,16,0.0,0.0194,0,0,0.382,0
100,winter,853.5,773.0,400.0,157.0,340.2,0,3.4,0.531,100.0,429.4,10115,368,0,13320,12197,4,0,1.000,24.0,16.0,16,0.0,0.0383,72,0 100,winter,1601.7,751.3,400.0,174.2,23.0,0,0.0,0.867,100.0,454.9,2384,145,0,12000,21471,4,0,1.000,24.0,16.0,16,0.0,0.0196,0,0,0.383,0
101,winter,809.1,619.0,400.0,146.3,865.5,33,3.6,0.325,100.0,405.5,11020,631,614,14137,9598,4,0,1.000,21.6,16.0,16,0.0,0.0400,14,0 101,winter,1606.0,751.3,400.0,162.4,12.7,0,0.0,0.746,100.0,427.6,2162,220,0,12000,21618,4,0,1.000,24.0,16.0,16,0.0,0.0198,0,0,0.383,0
102,winter,788.1,461.0,400.0,139.0,230.4,7,3.8,0.183,100.0,522.9,9941,2509,4874,14182,4494,4,0,1.000,7.3,16.0,16,0.0,0.0400,46,0 102,winter,1603.0,751.3,400.0,151.1,21.9,0,2.1,0.714,100.0,400.5,5670,151,0,12523,17656,4,0,1.000,24.0,16.0,16,0.0,0.0218,6,0,0.383,0
103,winter,802.7,297.0,400.0,133.2,198.9,2,0.9,0.102,100.0,578.5,8403,1939,902,13620,11136,4,0,0.900,0.0,16.0,16,0.0,0.0400,0,0 103,winter,938.8,751.3,400.0,142.3,712.2,0,3.7,0.499,100.0,419.6,9415,280,0,13606,12699,4,0,1.000,24.0,16.0,16,0.0,0.0366,54,0,0.391,0
104,winter,787.0,354.0,400.0,127.3,68.5,1,1.4,0.088,100.0,516.8,6883,2633,1084,13483,11917,4,0,0.875,7.3,16.0,16,0.0,0.0400,0,0 104,winter,795.7,430.1,400.0,135.4,1322.3,55,1.1,0.297,100.0,471.1,11581,1341,997,13608,7033,4,0,1.000,14.0,16.0,16,0.0,0.0400,54,0,0.392,1
105,winter,800.0,281.0,400.0,122.5,115.2,2,2.9,0.107,100.0,585.2,7560,3768,1964,13449,9259,4,0,0.813,3.1,16.0,16,0.0,0.0400,0,0 105,winter,792.0,330.7,400.0,130.0,2045.3,101,1.4,0.171,100.0,359.0,9538,3315,3148,13544,5015,4,0,0.950,5.6,16.0,16,0.0,0.0267,16,0,0.404,1
106,winter,827.2,281.0,400.0,120.1,27.7,0,0.0,0.101,100.0,583.5,3232,2478,956,12403,16931,4,0,0.775,5.2,16.0,16,0.0,0.0400,0,0 106,winter,799.6,171.1,400.0,120.0,220.9,1,4.4,0.110,100.0,553.3,11281,2818,4824,15277,1800,4,0,0.875,0.1,16.0,16,0.0,0.0369,36,0,0.409,0
107,winter,853.6,281.0,400.0,120.0,22.7,0,0.0,0.095,100.0,579.9,2971,1968,984,12370,17707,4,0,0.738,3.7,16.0,16,0.0,0.0400,0,0 107,winter,771.5,150.9,400.0,120.0,96.3,1,3.5,0.133,100.0,536.8,6108,2453,1485,12721,11793,4,0,0.775,0.0,16.0,16,0.0,0.0369,0,0,0.407,1
108,winter,878.8,281.0,400.0,120.0,22.8,0,0.0,0.089,100.0,572.6,2575,1783,985,12396,18261,4,0,0.700,6.6,16.0,16,0.0,0.0400,0,0 108,winter,803.5,128.8,400.0,120.0,38.1,1,3.8,0.128,100.0,514.7,5837,2024,1764,12603,12332,4,0,0.675,0.0,16.0,16,0.0,0.0235,0,0,0.407,1
109,winter,906.8,281.0,400.0,120.0,20.0,0,0.0,0.091,100.0,566.1,2500,1919,982,12413,18186,4,0,0.650,5.7,16.0,16,0.0,0.0400,0,0 109,winter,772.8,128.8,400.0,120.0,78.8,1,3.9,0.106,100.0,514.9,6128,1703,1500,13087,13582,4,0,0.575,0.0,16.0,16,0.0,0.0241,2,0,0.426,0
110,winter,914.0,380.0,400.0,120.0,40.8,1,0.1,0.102,100.0,408.8,2545,2786,2971,12403,15295,4,0,0.600,7.1,16.0,16,0.0,0.0400,0,0 110,winter,761.2,126.8,400.0,120.0,61.6,0,4.5,0.077,100.0,556.4,6292,1746,741,13069,14152,4,0,0.475,0.0,16.0,16,0.0,0.0265,4,0,0.426,0
111,winter,803.9,380.0,400.0,120.0,158.1,7,2.9,0.096,100.0,446.8,10696,2439,2653,14419,5793,4,0,0.525,1.0,16.0,16,0.0,0.0400,0,0 111,winter,762.8,126.8,400.0,120.0,46.4,0,3.6,0.063,100.0,545.5,5424,1773,784,12951,15068,4,0,0.412,0.6,16.0,16,0.0,0.0265,0,0,0.428,0
112,winter,796.3,364.0,400.0,120.0,71.6,0,2.2,0.090,100.0,472.6,10399,1388,456,13977,9780,3,1,0.617,0.3,12.0,12,0.0,0.0400,0,0 112,winter,790.8,126.8,400.0,120.0,20.0,0,4.6,0.060,100.0,543.0,5777,1764,766,12920,14773,4,0,0.312,0.0,16.0,16,0.0,0.0265,0,0,0.428,0
113,winter,801.1,364.0,400.0,120.0,43.2,0,5.4,0.092,100.0,467.4,8787,1099,587,13571,11956,3,1,0.517,0.0,12.0,12,0.0,0.0400,0,0 113,winter,791.6,126.8,400.0,120.0,47.2,0,3.6,0.066,100.0,536.0,5334,2513,746,12951,14456,4,0,0.250,0.8,16.0,16,0.0,0.0265,0,0,0.429,0
114,winter,798.2,364.0,400.0,120.0,50.9,0,7.2,0.078,100.0,485.6,8753,1124,582,13620,11921,2,2,0.650,0.0,8.0,8,0.0,0.0400,0,0 114,winter,801.4,126.8,400.0,120.0,38.2,0,4.2,0.046,100.0,553.0,5819,2233,745,12926,14277,3,1,0.200,0.0,12.0,12,0.0,0.0265,0,0,0.430,0
115,winter,763.6,260.0,400.0,120.0,3553.6,188,7.2,0.022,100.0,344.3,15219,492,204,14349,5736,2,2,0.550,0.0,8.0,8,0.0,0.0400,0,0 115,winter,807.8,126.8,400.0,120.0,41.6,0,3.6,0.020,100.0,547.3,5539,2129,759,12926,14647,2,2,0.150,0.0,8.0,8,0.0,0.0265,0,0,0.430,0
116,winter,773.2,26.0,400.0,120.0,430.4,2,11.5,0.000,100.0,464.9,16737,44,838,15448,2933,2,2,0.450,0.0,8.0,8,0.0,0.0400,0,0 116,winter,806.5,126.8,400.0,120.0,49.2,0,4.5,0.002,100.0,572.0,5585,2025,768,12918,14704,1,3,0.100,0.0,4.0,4,0.0,0.0275,0,0,0.439,0
117,winter,787.8,0.0,302.5,120.0,291.4,9,12.3,0.000,100.0,448.2,17484,52,13,15534,2917,2,2,0.350,0.0,8.0,8,0.0,0.0400,0,0 117,winter,741.3,80.0,400.0,120.0,240.0,0,8.9,0.000,100.0,472.8,12976,2326,1681,15199,3818,1,3,0.150,1.5,4.0,4,0.0,0.0275,0,0,0.444,0
118,winter,764.0,0.0,223.0,120.0,155.8,0,11.2,0.000,100.0,492.8,17727,0,0,15564,2709,2,2,0.250,0.0,8.0,8,0.0,0.0400,0,0 118,winter,761.3,0.0,333.7,120.0,3413.6,174,4.3,0.040,100.0,395.2,11399,2081,1548,13015,6517,1,3,0.050,0.0,4.0,4,0.0,0.0275,0,0,0.460,1
119,winter,768.4,0.0,190.0,120.0,81.6,0,4.4,0.000,100.0,501.9,16801,0,0,15503,3696,2,2,0.150,0.0,8.0,8,0.0,0.0400,0,0 119,winter,760.9,0.0,192.6,120.0,194.6,2,3.7,0.026,100.0,506.0,12209,1684,709,14080,7318,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,1,0.477,0
120,spring,866.2,0.0,193.0,360.0,48.2,0,7.2,0.000,100.0,500.5,11836,0,0,13620,10544,1,3,0.100,0.0,4.0,4,0.0,0.0400,0,0 120,spring,863.0,0.0,181.3,360.0,174.6,1,5.2,0.012,100.0,463.1,11765,921,766,13863,8685,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,1,0.489,0
121,spring,936.7,0.0,198.0,600.0,73.5,0,16.0,0.000,100.0,501.6,17742,0,0,15549,2709,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,0 121,spring,885.0,0.0,182.2,600.0,126.0,0,6.5,0.000,100.0,508.0,12640,202,242,13620,9296,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,2,0.492,0
122,spring,1080.7,50.0,195.5,618.0,223.5,3,12.7,0.619,100.0,468.2,16494,827,5,15483,3191,0,4,0.000,0.0,0.0,0,0.0,0.0400,0,1 122,spring,961.5,0.0,187.2,614.0,286.5,6,6.9,0.664,100.0,492.4,12372,3235,786,14610,3557,2,4,1.000,15.5,4.5,1,0.0,0.0275,0,0,0.473,1
123,spring,1166.5,17.0,190.5,655.0,295.2,0,5.2,0.791,100.0,479.4,12730,3935,117,15271,3947,1,4,1.000,7.5,2.5,1,47.0,0.0400,0,0 123,spring,1080.8,0.0,192.2,622.3,236.3,24,3.3,0.760,100.0,527.6,6563,3821,1354,12696,10126,2,4,1.000,14.5,5.5,3,0.0,0.0275,0,0,0.464,1
124,spring,1267.8,0.0,195.5,636.0,303.7,1,5.4,0.703,100.0,509.1,9573,2984,10,13983,9450,2,4,1.000,15.4,4.5,1,63.9,0.0400,0,0 124,spring,1167.1,0.0,172.0,743.9,144.6,5,2.4,0.730,100.0,501.6,7346,2481,205,12680,11848,2,4,1.000,12.5,7.5,7,0.0,0.0275,0,1,0.456,1
125,spring,1411.8,0.0,200.5,640.0,228.0,0,7.3,0.765,100.0,524.2,9434,1672,0,13774,11120,2,4,1.000,10.9,4.5,1,91.9,0.0400,0,0 125,spring,1188.1,0.0,168.5,570.5,544.8,2,6.4,0.702,100.0,482.0,14540,2699,403,15041,3317,3,4,1.000,16.0,10.0,8,0.0,0.0275,0,1,0.465,0
126,spring,1425.5,0.0,205.5,595.0,413.3,0,8.2,0.747,100.0,496.0,12968,3751,121,15248,3912,3,4,1.000,21.0,9.0,6,144.8,0.0400,0,0 126,spring,1300.0,0.0,173.5,563.0,279.6,1,11.8,0.720,100.0,445.2,15127,906,61,14520,3946,3,4,0.967,13.0,11.0,10,0.0,0.0275,0,1,0.445,1
127,spring,1514.8,0.0,210.5,614.0,244.6,0,4.3,0.659,100.0,563.1,9582,4500,0,14161,7757,3,4,1.000,20.0,10.0,8,150.0,0.0400,0,0 127,spring,1387.5,0.0,178.5,576.4,283.2,0,13.5,0.652,100.0,490.5,17236,585,0,15374,2805,3,4,0.933,12.0,12.0,12,0.0,0.0275,0,2,0.449,0
128,spring,1540.7,0.0,180.0,726.0,181.0,2,1.0,0.791,100.0,540.0,7464,3386,32,13505,11613,3,4,1.000,17.4,10.5,9,150.0,0.0400,0,1 128,spring,1374.8,0.0,183.5,579.0,373.5,1,7.4,0.744,100.0,481.3,16469,0,0,14987,4544,3,4,0.900,4.0,12.0,12,0.0,0.0275,0,2,0.457,0
129,spring,1505.7,47.0,177.0,668.0,374.1,0,5.0,0.703,100.0,462.8,12151,4284,0,15084,4481,3,4,1.000,18.0,12.0,12,211.8,0.0400,0,1 129,spring,1408.5,28.4,171.0,590.8,305.5,0,6.9,0.726,100.0,471.8,15917,860,121,15226,3876,3,4,0.850,6.0,12.0,12,0.0,0.0275,0,1,0.476,0
130,spring,1570.0,10.0,179.5,631.0,294.5,0,9.7,0.765,100.0,466.1,16194,1406,0,15371,3029,3,4,1.000,14.0,12.0,12,300.0,0.0400,0,2 130,spring,1495.0,28.4,176.0,614.8,205.0,0,11.3,0.728,100.0,486.1,15488,1027,0,15069,4416,3,4,0.800,6.0,12.0,12,59.7,0.0275,0,1,0.481,0
131,spring,1622.9,0.0,176.0,647.0,218.5,0,13.8,0.747,100.0,426.7,16908,818,0,15485,2789,3,4,0.967,4.0,12.0,12,300.0,0.0400,0,2 131,spring,1575.2,28.4,181.0,637.3,169.3,0,12.3,0.740,100.0,482.4,15546,1454,0,15221,3779,3,4,0.750,6.0,12.0,12,136.6,0.0275,0,1,0.484,0
132,spring,1670.7,0.0,178.5,666.0,220.5,0,13.0,0.659,100.0,465.2,17727,0,0,15564,2709,3,4,0.867,0.0,12.0,12,300.0,0.0400,0,2 132,spring,1594.4,28.4,175.5,643.8,243.0,0,10.7,0.662,100.0,479.9,15750,1708,0,15381,3161,3,4,0.700,6.0,12.0,12,174.7,0.0275,0,1,0.489,0
133,spring,1714.3,0.0,168.5,610.0,311.0,0,8.4,0.791,100.0,467.5,17792,0,0,15499,2709,3,4,0.767,0.0,12.0,12,300.0,0.0400,0,2 133,spring,1669.9,28.4,180.5,632.0,197.8,0,12.4,0.684,100.0,493.5,15838,1468,0,15197,3497,3,4,0.650,6.0,12.0,12,264.1,0.0275,0,1,0.492,0
134,spring,1757.5,0.0,173.5,608.0,242.0,0,14.6,0.703,100.0,475.3,17784,0,0,15507,2709,3,4,0.667,0.0,12.0,12,300.0,0.0400,0,2 134,spring,1715.6,0.0,170.5,648.0,218.9,0,10.2,0.681,100.0,475.9,15895,1182,0,15030,3893,3,4,0.600,6.0,12.0,12,300.0,0.0275,0,2,0.496,0
135,spring,1792.0,0.0,178.5,596.0,216.0,0,15.2,0.765,100.0,458.2,17830,0,0,15461,2709,3,4,0.567,0.0,12.0,12,300.0,0.0400,0,2 135,spring,1743.3,0.0,172.5,586.9,292.0,0,15.7,0.713,100.0,451.0,17632,200,0,15443,2725,3,4,0.533,2.0,12.0,12,300.0,0.0275,0,2,0.500,0
136,spring,1800.0,0.0,176.0,612.0,195.5,0,12.9,0.747,100.0,455.4,17692,89,0,15494,2725,3,4,0.467,0.0,12.0,12,300.0,0.0400,0,2 136,spring,1721.7,0.0,177.5,584.1,287.3,0,15.9,0.755,100.0,476.2,17811,0,0,15480,2709,3,4,0.433,0.0,12.0,12,300.0,0.0275,0,2,0.503,0
137,spring,1800.0,0.0,178.5,622.0,226.5,0,9.8,0.659,100.0,459.8,17768,0,0,15523,2709,3,4,0.367,0.0,12.0,12,300.0,0.0400,0,2 137,spring,1743.3,0.0,175.0,599.6,230.1,0,15.5,0.697,100.0,479.7,17693,129,0,15453,2725,3,4,0.333,0.0,12.0,12,300.0,0.0275,0,2,0.506,0
138,spring,1771.2,0.0,168.5,636.0,265.0,0,8.1,0.791,100.0,478.8,17509,259,0,15491,2741,3,4,0.267,0.0,12.0,12,300.0,0.0400,0,2 138,spring,1764.9,0.0,180.0,643.5,175.4,0,15.9,0.739,100.0,464.2,17866,0,0,15425,2709,1,6,0.700,0.0,4.0,4,300.0,0.0275,0,2,0.509,0
139,spring,1730.0,36.0,173.5,620.0,288.0,0,6.7,0.703,100.0,516.4,12613,3817,0,14973,4597,3,4,0.267,8.0,12.0,12,332.1,0.0400,0,1 139,spring,1780.8,0.0,170.0,623.6,272.1,0,16.3,0.721,100.0,484.4,17775,0,0,15516,2709,1,6,0.600,0.0,4.0,4,300.0,0.0275,0,2,0.512,0
140,spring,1720.4,42.0,178.5,618.0,240.8,0,7.5,0.764,100.0,466.4,12497,2921,0,14813,5769,2,5,0.400,12.0,8.0,8,394.0,0.0400,0,1 140,spring,1718.9,18.0,172.5,649.6,286.5,0,12.3,0.733,100.0,513.0,15515,1429,0,15079,3977,1,6,0.650,6.0,4.0,4,305.2,0.0275,0,1,0.515,0
141,spring,1739.6,14.0,176.0,646.0,217.5,0,10.9,0.746,100.0,442.2,15962,1558,0,15499,2981,2,5,0.450,12.0,8.0,8,450.0,0.0400,0,2 141,spring,1739.3,18.0,177.5,595.8,284.9,0,9.7,0.755,100.0,493.8,14493,1955,0,15164,4388,1,6,0.700,6.0,4.0,4,424.6,0.0275,0,1,0.519,0
142,spring,1755.2,14.0,178.5,574.0,308.5,0,16.0,0.658,100.0,439.8,17681,79,0,15515,2725,2,5,0.500,4.0,8.0,8,450.0,0.0400,0,2 142,spring,1737.6,25.0,182.5,636.7,217.1,0,8.7,0.697,100.0,547.1,14374,678,0,14592,6356,1,6,0.750,6.0,4.0,4,450.0,0.0275,0,1,0.522,0
143,spring,1769.6,14.0,168.5,658.0,165.0,0,14.1,0.790,100.0,463.6,17484,273,0,15502,2741,2,5,0.400,0.0,8.0,8,450.0,0.0400,0,2 143,spring,1631.8,16.8,187.5,645.8,371.2,0,8.7,0.739,100.0,533.8,12444,1794,0,14105,7657,2,6,0.900,12.0,8.0,8,450.0,0.0275,0,1,0.527,0
144,spring,1782.0,14.0,173.5,596.0,296.0,0,15.8,0.702,100.0,476.9,17734,0,0,15557,2709,2,5,0.300,0.0,8.0,8,450.0,0.0400,0,2 144,spring,1659.1,16.8,192.5,643.3,224.6,0,8.7,0.721,100.0,529.0,10605,521,0,13944,10930,2,6,0.925,12.0,8.0,8,450.0,0.0275,0,1,0.529,0
145,spring,1791.6,14.0,178.5,668.0,132.0,0,14.6,0.774,100.0,453.2,17804,0,0,15487,2709,2,5,0.200,0.0,8.0,8,450.0,0.0400,0,2 145,spring,1681.2,16.8,197.5,702.7,131.3,0,8.7,0.733,100.0,527.7,10521,526,0,13944,11009,2,6,0.950,12.0,8.0,8,450.0,0.0275,0,1,0.531,0
146,spring,1728.0,30.0,176.0,674.0,221.5,0,11.3,0.746,100.0,461.6,16438,1249,0,15424,2889,2,5,0.250,12.0,8.0,8,469.6,0.0400,0,1 146,spring,1703.3,16.8,195.0,686.5,188.9,0,8.0,0.755,100.0,524.5,10505,525,0,13944,11026,2,6,0.975,12.0,8.0,8,450.0,0.0275,0,1,0.533,0
147,spring,1718.8,30.0,181.0,620.0,270.0,0,9.8,0.658,100.0,488.8,13552,2225,0,14841,5382,2,5,0.300,12.0,8.0,8,575.5,0.0400,0,1 147,spring,1719.2,16.8,200.0,635.4,272.0,0,8.0,0.697,100.0,535.6,10446,531,0,13944,11079,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.537,0
148,spring,1714.4,30.0,186.0,678.0,192.4,0,8.7,0.790,100.0,514.9,11419,784,0,13944,9853,2,5,0.350,12.0,8.0,8,600.0,0.0400,0,1 148,spring,1735.7,16.8,190.0,702.1,165.3,0,6.8,0.739,100.0,533.3,9819,1085,121,13843,11132,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.540,0
149,spring,1730.0,30.0,191.0,728.0,142.0,0,8.7,0.702,100.0,508.8,10575,528,0,13868,11029,2,5,0.400,12.0,8.0,8,600.0,0.0400,0,1 149,spring,1746.9,16.8,192.5,629.3,307.2,1,6.6,0.721,100.0,537.8,10384,622,14,13874,11106,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.546,0
150,summer,1606.0,18.0,196.0,644.0,362.0,0,7.9,0.774,100.0,512.3,13536,1453,0,14344,6667,3,5,0.633,18.0,12.0,12,600.0,0.0400,0,1 150,summer,1752.9,16.8,197.5,622.5,172.6,0,8.0,0.735,100.0,534.2,9757,523,0,13302,10978,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.521,1
151,summer,1626.0,18.0,198.5,634.0,164.5,0,8.7,0.746,100.0,543.7,10848,505,0,13944,10703,3,5,0.667,18.0,12.0,12,600.0,0.0400,0,1 151,summer,1755.9,16.8,195.0,555.1,236.4,0,4.8,0.757,100.0,527.3,10547,524,0,13900,11029,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.524,0
152,summer,1642.0,18.0,188.5,682.0,99.0,0,7.6,0.658,100.0,536.2,10361,759,0,13944,10936,3,5,0.700,18.0,12.0,12,600.0,0.0400,0,1 152,summer,1758.9,16.8,200.0,570.1,152.0,0,8.7,0.707,100.0,501.7,10635,462,0,13464,9999,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.510,1
153,summer,1560.5,6.0,193.5,657.0,266.5,0,0.3,0.790,100.0,515.4,8112,3275,0,13702,10911,4,5,0.800,25.0,15.0,14,673.9,0.0400,0,0 153,summer,1634.4,16.8,190.0,623.9,283.2,1,1.5,0.749,100.0,529.7,9168,2012,1,13707,11112,3,6,1.000,20.0,10.0,8,450.0,0.0275,0,0,0.546,0
154,summer,1586.5,6.0,198.5,622.0,157.0,0,0.6,0.702,100.0,535.9,7204,3992,0,13650,11154,4,5,0.825,24.5,15.5,15,750.0,0.0400,0,0 154,summer,1661.3,16.8,195.0,624.5,133.3,0,4.4,0.727,100.0,531.1,7616,3011,0,12899,11034,3,6,1.000,20.0,10.0,8,505.4,0.0275,0,0,0.566,1
155,summer,1551.0,6.0,196.0,651.0,176.0,0,4.8,0.774,100.0,494.8,9267,1701,0,13944,11088,4,5,0.850,24.0,16.0,16,750.0,0.0400,0,1 155,summer,1678.5,16.8,200.0,616.5,136.8,0,4.4,0.739,100.0,543.2,6880,3446,0,13517,12157,3,6,1.000,18.0,10.0,8,590.1,0.0275,0,0,0.598,0
156,summer,1577.5,6.0,198.5,564.0,246.0,0,7.2,0.746,100.0,522.6,10857,540,0,13938,10665,4,5,0.875,20.0,16.0,16,750.0,0.0400,0,1 156,summer,1630.0,0.0,194.0,632.3,199.4,1,4.3,0.751,100.0,526.3,8632,2329,43,13829,11167,3,6,1.000,18.0,12.0,12,600.0,0.0275,0,1,0.630,0
157,summer,1607.5,6.0,188.5,631.0,114.0,0,8.5,0.658,100.0,514.4,10833,511,0,13899,10757,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1 157,summer,1650.0,0.0,199.0,531.2,264.2,0,8.4,0.703,100.0,526.4,10493,586,0,13944,10977,3,6,1.000,14.0,12.0,12,600.0,0.0275,0,1,0.635,0
158,summer,1631.5,6.0,193.5,634.0,160.0,0,4.5,0.790,100.0,505.9,10752,560,0,13917,10771,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1 158,summer,1671.0,0.0,189.0,574.2,131.0,1,6.2,0.764,100.0,505.3,9522,798,15,12759,10026,3,6,0.967,12.0,12.0,12,600.0,0.0275,0,1,0.582,2
159,summer,1659.5,6.0,198.5,651.0,102.0,0,2.4,0.702,100.0,509.3,10690,856,0,13918,10536,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1 159,summer,1684.6,0.0,194.0,570.1,170.2,0,8.6,0.726,100.0,526.3,10897,502,0,13942,10659,3,6,0.933,12.0,12.0,12,600.0,0.0275,0,1,0.610,0
160,summer,1685.5,6.0,196.0,609.0,187.5,0,8.8,0.774,100.0,511.0,10518,764,0,13893,10825,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1 160,summer,1704.3,0.0,199.0,606.1,110.5,0,8.7,0.718,100.0,512.7,10458,529,0,13944,11069,3,6,0.900,12.0,12.0,12,600.0,0.0275,0,1,0.612,0
161,summer,1693.5,6.0,198.5,640.0,123.5,0,8.7,0.746,100.0,529.5,10945,588,0,13944,10523,4,5,0.875,18.0,16.0,16,750.0,0.0400,0,1 161,summer,1707.8,0.0,194.0,652.3,105.0,0,0.8,0.760,100.0,518.7,10270,1363,0,13859,10508,3,6,0.867,12.0,12.0,12,600.0,0.0275,0,1,0.614,0
162,summer,1705.5,6.0,188.5,677.0,111.0,0,8.7,0.658,100.0,521.7,10391,773,0,13914,10922,4,5,0.850,18.0,16.0,16,750.0,0.0400,0,1 162,summer,1716.8,0.0,199.0,552.1,261.2,0,8.0,0.721,100.0,514.8,9871,799,0,13302,10588,3,6,0.833,12.0,12.0,12,600.0,0.0275,0,1,0.584,1
163,summer,1645.5,24.0,193.5,629.0,259.5,0,0.7,0.790,100.0,523.9,7447,3226,0,13425,11902,4,5,0.863,22.0,16.0,16,864.6,0.0400,0,0 163,summer,1648.8,57.6,191.5,607.7,204.9,0,1.9,0.743,100.0,505.2,8751,1928,0,13585,11736,3,6,0.850,18.0,12.0,12,629.9,0.0275,0,0,0.600,0
164,summer,1659.5,0.0,198.5,535.0,286.0,0,5.4,0.702,100.0,530.8,9753,1724,0,13893,10630,4,5,0.875,24.0,16.0,16,900.0,0.0400,0,1 164,summer,1671.7,57.6,196.5,613.6,144.8,0,2.8,0.725,100.0,535.6,7460,3418,0,13801,11321,3,6,0.867,18.0,12.0,12,703.3,0.0275,0,0,0.608,0
165,summer,1669.5,0.0,196.0,618.0,92.5,0,8.9,0.774,100.0,490.7,10566,526,0,13902,11006,4,5,0.888,20.0,16.0,16,900.0,0.0400,0,1 165,summer,1690.1,0.0,198.0,568.7,255.0,0,5.4,0.737,100.0,516.1,8382,2499,0,13731,11388,3,6,0.883,18.0,12.0,12,750.0,0.0275,0,1,0.620,0
166,summer,1675.5,0.0,198.5,602.0,175.5,0,8.3,0.746,100.0,500.1,10777,822,0,13926,10475,4,5,0.863,18.0,16.0,16,900.0,0.0400,0,1 166,summer,1708.0,0.0,193.0,611.4,116.8,0,8.7,0.765,100.0,492.9,10430,473,0,13458,10199,3,6,0.900,14.0,12.0,12,750.0,0.0275,0,1,0.591,1
167,summer,1689.5,0.0,188.5,621.0,139.0,0,8.6,0.658,100.0,511.2,10563,637,0,13891,10909,4,5,0.838,18.0,16.0,16,900.0,0.0400,0,1 167,summer,1718.0,0.0,198.0,591.8,188.3,0,8.7,0.717,100.0,521.1,11242,480,0,14105,10173,3,6,0.867,12.0,12.0,12,750.0,0.0275,0,1,0.593,0
168,summer,1699.5,0.0,193.5,543.0,246.0,0,8.7,0.790,100.0,497.2,11071,553,0,13890,10486,4,5,0.813,18.0,16.0,16,900.0,0.0400,0,1 168,summer,1732.7,0.0,190.5,604.1,135.3,0,8.7,0.739,100.0,519.3,10433,633,0,13901,11033,3,6,0.833,12.0,12.0,12,750.0,0.0275,0,1,0.622,0
169,summer,1713.5,0.0,198.5,603.0,106.0,0,4.8,0.702,100.0,504.8,10909,531,0,13911,10649,4,5,0.788,18.0,16.0,16,900.0,0.0400,0,1 169,summer,1746.2,0.0,195.5,626.8,105.5,0,8.7,0.737,100.0,491.7,10437,475,0,13464,10184,3,6,0.800,12.0,12.0,12,750.0,0.0275,0,1,0.592,1
170,summer,1630.0,0.0,196.0,682.0,173.0,0,4.7,0.774,100.0,536.5,10248,1261,0,13868,10623,4,5,0.800,24.0,16.0,16,900.0,0.0400,0,0 170,summer,1753.2,0.0,198.0,562.1,240.9,0,0.7,0.739,100.0,530.9,10611,729,0,13873,10787,3,6,0.767,12.0,12.0,12,750.0,0.0275,0,1,0.622,0
171,summer,1628.0,14.0,201.0,631.0,197.0,0,1.9,0.746,100.0,540.7,7036,3587,0,13148,12229,4,5,0.813,24.0,16.0,16,1034.8,0.0400,0,0 171,summer,1652.5,18.8,193.0,648.1,210.7,0,1.4,0.751,100.0,537.5,8552,2641,0,13944,10863,3,6,0.783,17.8,12.0,12,750.0,0.0275,0,0,0.627,0
172,summer,1642.5,0.0,206.0,600.0,198.5,0,3.5,0.658,100.0,526.5,10413,667,0,13932,10988,4,5,0.825,24.0,16.0,16,1050.0,0.0400,0,1 172,summer,1675.4,47.4,198.0,601.3,201.7,0,1.5,0.723,100.0,550.2,7124,3129,0,13620,12127,3,6,0.800,18.0,12.0,12,862.4,0.0275,0,0,0.637,0
173,summer,1652.5,0.0,190.5,589.0,180.5,0,7.1,0.790,100.0,501.3,10712,1118,0,13918,10252,4,5,0.838,20.0,16.0,16,1050.0,0.0400,0,1 173,summer,1694.1,19.8,190.8,631.3,145.2,0,4.0,0.747,100.0,481.1,7999,2212,0,13175,11174,3,6,0.817,18.0,12.0,12,900.0,0.0275,0,1,0.625,1
174,summer,1668.5,0.0,195.5,534.0,227.0,0,8.6,0.702,100.0,503.8,11095,559,0,13903,10443,4,5,0.813,18.0,16.0,16,1050.0,0.0400,0,1 174,summer,1710.2,19.8,195.8,523.7,275.2,0,8.7,0.729,100.0,517.3,10585,523,0,13943,10949,3,6,0.833,14.0,12.0,12,900.0,0.0275,0,1,0.628,0
175,summer,1684.5,0.0,193.0,627.0,82.5,0,9.1,0.774,100.0,510.6,10684,620,0,13895,10801,4,5,0.788,18.0,16.0,16,1050.0,0.0400,0,1 175,summer,1725.7,19.8,198.3,568.4,124.8,0,4.8,0.741,100.0,503.0,10453,737,0,13852,10958,3,6,0.800,12.0,12.0,12,900.0,0.0275,0,1,0.630,0
176,summer,1694.5,0.0,195.5,675.0,102.5,0,7.5,0.746,100.0,521.4,10778,565,0,13944,10713,4,5,0.763,18.0,16.0,16,1050.0,0.0400,0,1 176,summer,1738.2,19.8,193.3,604.2,140.7,0,8.4,0.753,100.0,509.0,10308,661,0,13944,11087,3,6,0.767,12.0,12.0,12,900.0,0.0275,0,1,0.632,0
177,summer,1706.5,0.0,200.5,625.0,200.0,0,5.0,0.658,100.0,511.5,10749,582,0,13918,10751,3,6,1.000,18.0,12.0,12,1050.0,0.0400,0,1 177,summer,1752.3,19.8,196.0,586.5,178.2,0,8.3,0.725,100.0,514.2,10534,528,0,13933,11005,3,6,0.733,12.0,12.0,12,900.0,0.0275,0,1,0.637,0
178,summer,1711.0,0.0,190.5,701.0,85.0,0,8.7,0.790,100.0,514.9,10649,660,0,13944,10747,3,6,1.000,18.0,12.0,12,1050.0,0.0400,0,1 178,summer,1766.4,19.8,191.0,589.7,148.8,0,7.6,0.737,100.0,513.0,10692,526,0,13881,10901,3,6,0.700,12.0,12.0,12,900.0,0.0275,0,1,0.638,0
179,summer,1641.0,0.0,195.5,665.0,239.0,0,0.5,0.702,100.0,532.3,6633,3359,0,13354,12654,3,6,1.000,18.0,12.0,12,1183.6,0.0400,0,0 179,summer,1768.8,19.8,196.0,567.9,169.1,0,8.7,0.729,100.0,499.4,10636,518,0,13944,10902,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.640,0
180,autumn,1627.5,0.0,200.5,677.6,100.5,0,0.0,0.774,100.0,566.4,3397,1311,0,12000,19292,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 180,autumn,1767.3,19.8,198.5,595.6,98.9,0,8.8,0.741,100.0,508.1,10468,534,0,13902,11096,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.642,0
181,autumn,1637.5,0.0,205.5,699.8,57.4,0,0.0,0.746,100.0,583.8,2626,1134,0,12000,20240,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 181,autumn,1766.3,19.8,193.5,642.8,87.0,0,8.7,0.753,100.0,521.4,10509,525,0,13944,11022,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.643,0
182,autumn,1651.5,0.0,210.5,727.0,30.8,0,0.0,0.658,100.0,580.6,2036,1151,0,12000,20813,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 182,autumn,1682.4,16.0,196.0,633.2,213.4,0,3.6,0.725,100.0,581.6,8867,2027,0,13741,11365,2,7,1.000,12.0,8.0,8,917.4,0.0275,0,0,0.647,0
183,autumn,1640.0,0.0,215.5,641.4,198.1,0,0.0,0.790,100.0,574.2,5844,981,0,12319,16856,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 183,autumn,1695.4,16.0,191.0,570.4,190.3,0,2.5,0.737,100.0,510.4,7305,3437,0,13601,11657,2,7,1.000,12.0,8.0,8,1050.0,0.0275,0,1,0.656,0
184,autumn,1656.0,0.0,220.5,680.8,41.2,0,0.0,0.702,100.0,581.4,2480,1124,0,12000,20396,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 184,autumn,1708.4,16.0,196.0,574.1,113.1,0,8.6,0.769,100.0,458.1,10449,532,0,13464,10115,2,7,1.000,12.0,8.0,8,1050.0,0.0142,0,1,0.629,1
185,autumn,1668.0,0.0,225.5,724.4,42.8,0,0.0,0.774,100.0,574.2,2262,1136,0,12000,20602,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 185,autumn,1705.0,16.0,198.5,533.8,197.7,0,8.0,0.777,100.0,502.9,10426,702,0,13935,10937,2,7,1.000,12.0,8.0,8,1050.0,0.0156,0,1,0.661,0
186,autumn,1682.5,0.0,230.5,727.6,54.9,0,0.0,0.746,100.0,589.1,2909,1098,0,12000,19993,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 186,autumn,1718.0,16.0,193.5,570.6,110.9,0,8.5,0.784,100.0,511.1,10585,592,0,13940,10883,2,7,1.000,12.0,8.0,8,1050.0,0.0157,0,1,0.663,0
187,autumn,1686.5,0.0,235.5,648.6,174.4,0,0.0,0.658,100.0,577.9,3190,1061,0,12319,19430,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 187,autumn,1729.0,16.0,196.0,562.2,148.4,0,8.7,0.761,100.0,526.7,10574,633,0,13944,10849,2,7,1.000,12.0,8.0,8,1050.0,0.0159,0,1,0.667,0
188,autumn,1696.5,0.0,240.5,680.4,56.6,0,0.0,0.790,100.0,578.5,3406,1086,0,12000,19508,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 188,autumn,1618.1,0.0,196.0,580.2,259.6,0,3.1,0.768,100.0,522.9,8842,2003,0,13873,11282,3,7,1.000,18.5,11.5,11,1065.8,0.0159,0,0,0.676,0
189,autumn,1702.5,0.0,245.5,725.0,39.6,0,0.0,0.702,100.0,584.1,2384,1126,0,12000,20490,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 189,autumn,1645.0,0.0,201.0,512.7,192.6,0,5.3,0.765,100.0,514.6,9284,1900,0,13922,10894,3,7,1.000,18.5,11.5,11,1142.7,0.0160,0,0,0.683,0
190,autumn,1710.5,0.0,250.5,639.4,167.2,0,0.7,0.774,100.0,558.0,2988,1080,0,12162,19770,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 190,autumn,1663.5,0.0,206.0,528.2,108.1,0,6.4,0.772,100.0,481.6,9849,1217,0,13921,11013,3,7,1.000,18.5,11.5,11,1185.3,0.0160,0,0,0.689,0
191,autumn,1713.0,0.0,255.5,519.4,257.6,0,1.4,0.746,100.0,571.1,4674,1008,0,12324,17994,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 191,autumn,1587.3,0.0,211.0,542.4,224.4,0,0.7,0.789,100.0,572.1,6745,1447,0,12951,14857,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.722,0
192,autumn,1709.0,0.0,260.5,495.6,172.3,0,0.7,0.658,100.0,576.3,3525,1040,0,12321,19114,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 192,autumn,1603.3,0.0,216.0,568.0,120.8,0,0.0,0.756,100.0,586.4,2514,1111,0,12158,20217,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.825,0
193,autumn,1713.0,0.0,265.5,545.2,92.4,0,0.7,0.790,100.0,571.7,4179,1059,0,12162,18600,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 193,autumn,1621.6,0.0,221.0,663.1,44.7,0,0.0,0.773,100.0,585.1,1840,1936,0,12000,20224,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.847,0
194,autumn,1719.0,0.0,270.5,566.8,112.8,0,0.7,0.702,100.0,578.1,3278,1063,0,12162,19497,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 194,autumn,1647.7,0.0,226.0,708.1,52.0,0,0.0,0.760,100.0,594.1,2019,1150,0,12000,20831,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.863,0
195,autumn,1727.0,0.0,275.5,511.8,189.8,0,2.2,0.774,100.0,555.6,4592,967,0,12486,17955,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 195,autumn,1664.1,0.0,231.0,728.3,41.8,0,0.0,0.777,100.0,589.9,1696,1170,0,12000,21134,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.876,0
196,autumn,1729.0,0.0,280.5,542.2,111.6,0,2.2,0.746,100.0,562.9,4918,978,0,12486,17618,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 196,autumn,1685.6,0.0,236.0,722.5,45.1,0,0.0,0.784,100.0,589.9,2019,1151,0,12000,20830,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.880,0
197,autumn,1723.5,0.0,285.5,477.8,211.9,0,2.9,0.658,100.0,558.0,6863,811,0,12803,15523,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 197,autumn,1696.4,0.0,241.0,726.9,46.8,0,0.0,0.761,100.0,594.7,2059,1155,0,12000,20786,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.882,0
198,autumn,1697.0,0.0,290.5,502.4,148.4,0,0.0,0.790,100.0,566.7,6495,854,0,12604,16047,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 198,autumn,1707.4,0.0,246.0,726.6,42.6,0,0.0,0.768,100.0,592.3,1774,1168,0,12000,21058,3,7,1.000,18.0,12.0,12,1200.0,0.0161,0,0,0.889,0
199,autumn,1699.0,0.0,295.5,592.2,54.2,0,0.0,0.702,100.0,586.9,2940,1137,0,12000,19923,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 199,autumn,1710.2,0.0,251.0,727.9,45.4,0,0.0,0.765,100.0,593.6,1957,1156,0,12000,20887,3,7,1.000,18.0,12.0,12,1200.0,0.0161,0,0,0.894,0
200,autumn,1703.0,0.0,300.5,697.8,29.6,0,0.0,0.774,100.0,566.5,1868,1308,0,12000,20824,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 200,autumn,1718.8,0.0,256.0,731.8,34.4,0,0.0,0.772,100.0,583.0,1643,1195,0,12000,21162,3,7,1.000,18.0,12.0,12,1200.0,0.0162,0,0,0.896,0
201,autumn,1685.0,0.0,305.5,610.2,222.8,0,0.0,0.746,100.0,584.0,7578,779,0,13044,14599,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 201,autumn,1721.8,0.0,261.0,727.3,45.3,0,0.0,0.789,100.0,582.4,2007,1151,0,12000,20842,3,7,1.000,18.0,12.0,12,1200.0,0.0162,0,0,0.897,0
202,autumn,1691.0,0.0,310.5,663.8,34.2,0,0.0,0.658,100.0,584.2,2154,1142,0,12000,20704,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 202,autumn,1723.3,0.0,266.0,592.8,233.4,0,0.7,0.756,100.0,599.5,3281,1063,0,12243,19413,3,7,1.000,18.0,12.0,12,1200.0,0.0163,0,0,0.910,0
203,autumn,1685.0,0.0,315.5,619.2,145.0,0,0.0,0.790,100.0,580.4,4384,1006,0,12322,18288,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 203,autumn,1721.8,0.0,271.0,599.0,98.1,0,0.7,0.773,100.0,586.6,2647,1110,0,12162,20081,3,7,1.000,18.0,12.0,12,1200.0,0.0163,0,0,0.911,0
204,autumn,1693.0,0.0,320.5,667.6,35.2,0,0.0,0.702,100.0,581.6,2206,1137,0,12000,20657,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 204,autumn,1714.4,0.0,276.0,617.7,91.1,0,0.0,0.760,100.0,592.8,2213,1252,0,12061,20474,3,7,1.000,18.0,12.0,12,1200.0,0.0165,0,0,0.916,0
205,autumn,1703.0,0.0,325.5,716.0,37.2,0,0.0,0.773,100.0,568.8,2501,1119,0,12000,20380,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 205,autumn,1721.9,0.0,281.0,670.8,41.8,0,0.0,0.776,100.0,588.6,1932,1163,0,12000,20905,3,7,1.000,18.0,12.0,12,1200.0,0.0165,0,0,0.921,0
206,autumn,1705.5,0.0,330.5,721.8,59.6,0,0.0,0.745,100.0,588.4,3339,1069,0,12000,19592,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 206,autumn,1723.9,0.0,286.0,709.5,46.5,0,0.0,0.783,100.0,590.2,1878,1156,0,12000,20966,3,7,1.000,18.0,12.0,12,1200.0,0.0166,0,0,0.924,0
207,autumn,1691.5,0.0,335.5,653.6,167.4,0,0.0,0.657,100.0,582.5,3373,1050,0,12319,19258,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 207,autumn,1725.4,0.0,291.0,724.7,43.6,0,0.0,0.760,100.0,591.8,1805,1161,0,12000,21034,3,7,1.000,18.0,12.0,12,1200.0,0.0166,0,0,0.928,0
208,autumn,1693.5,0.0,340.5,684.0,54.8,0,0.0,0.789,100.0,581.3,2827,1154,0,12000,20019,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 208,autumn,1721.9,0.0,296.0,728.2,46.1,0,0.0,0.767,100.0,584.7,1824,1160,0,12000,21016,3,7,1.000,18.0,12.0,12,1200.0,0.0167,0,0,0.931,0
209,autumn,1703.5,0.0,345.5,725.2,36.0,0,0.0,0.701,100.0,583.3,2158,1139,0,12000,20703,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 209,autumn,1722.8,0.0,301.0,727.8,46.3,0,0.0,0.763,100.0,586.9,1912,1253,0,12000,20835,3,7,1.000,18.0,12.0,12,1200.0,0.0167,0,0,0.933,0
210,winter,1695.9,0.0,350.5,653.0,37.0,0,0.0,0.773,100.0,570.3,2209,1136,0,12000,20655,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 210,winter,1715.8,0.0,306.0,648.5,43.1,0,0.0,0.770,100.0,585.1,1855,1155,0,12000,20990,3,7,1.000,18.0,12.0,12,1200.0,0.0168,0,0,0.933,0
211,winter,1695.1,0.0,355.5,432.1,196.4,0,0.7,0.745,100.0,581.3,4879,1005,0,12162,17954,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 211,winter,1706.1,0.0,311.0,564.3,59.8,0,0.0,0.786,100.0,591.0,2454,1126,0,12000,20420,3,7,1.000,18.0,12.0,12,1200.0,0.0169,0,0,0.936,0
212,winter,1691.1,0.0,360.5,318.0,103.0,0,0.7,0.657,100.0,578.8,3614,1045,0,12162,19179,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0 212,winter,1704.7,0.0,316.0,380.3,165.8,0,0.7,0.753,100.0,592.7,3433,1054,0,12162,19351,3,7,1.000,18.0,12.0,12,1200.0,0.0169,0,0,0.939,0
213,winter,1516.4,0.0,365.5,283.0,206.4,0,0.7,0.789,100.0,536.8,7174,1797,0,12729,14300,3,6,1.000,18.0,12.0,12,1188.4,0.0400,0,0 213,winter,1691.1,0.0,321.0,286.9,95.9,0,0.0,0.769,100.0,588.0,4607,962,0,12552,17879,3,7,1.000,18.0,12.0,12,1200.0,0.0171,0,0,0.944,0
214,winter,1263.9,0.0,370.5,263.2,279.7,0,1.8,0.701,100.0,590.6,9049,2725,0,12486,11740,3,6,1.000,18.0,12.0,12,1050.0,0.0400,0,0 214,winter,1690.2,0.0,326.0,260.6,16.8,0,0.0,0.773,100.0,558.8,4237,1469,0,11780,17074,3,7,1.000,18.0,12.0,12,1174.7,0.0171,0,0,0.908,1
215,winter,1132.3,0.0,375.5,244.8,165.6,0,3.0,0.773,100.0,490.9,7498,7390,0,14025,7087,3,6,1.000,18.0,12.0,12,1072.3,0.0400,0,0 215,winter,1682.2,0.0,331.0,242.7,18.0,0,0.0,0.780,100.0,579.7,3214,1134,0,11999,19653,3,7,1.000,18.0,12.0,12,1126.7,0.0172,0,0,0.944,0
216,winter,1029.1,0.0,380.5,227.6,142.4,0,2.3,0.745,100.0,469.1,10263,5118,0,14021,6598,3,6,1.000,18.0,12.0,12,1018.3,0.0400,0,0 216,winter,1664.7,0.0,336.0,224.3,28.6,0,0.0,0.786,100.0,586.8,2972,1470,0,12000,19558,3,7,1.000,18.0,12.0,12,1095.7,0.0173,0,0,0.948,0
217,winter,990.8,0.0,385.5,211.7,79.1,0,2.6,0.657,100.0,530.2,11302,1509,0,13701,9488,3,6,1.000,18.0,12.0,12,942.3,0.0400,0,0 217,winter,1663.8,0.0,341.0,209.2,8.8,0,0.0,0.762,100.0,574.7,2961,1112,0,12000,19927,3,7,1.000,18.0,12.0,12,1074.7,0.0173,0,0,0.949,0
218,winter,923.7,0.0,390.5,196.9,112.7,0,2.1,0.789,100.0,542.4,12250,3647,0,14979,5124,3,6,1.000,18.0,12.0,12,869.1,0.0400,0,0 218,winter,1642.9,0.0,346.0,193.4,33.4,0,0.0,0.776,100.0,535.4,4171,4159,0,11520,14710,3,7,1.000,18.0,12.0,12,1069.0,0.0175,0,0,0.911,1
219,winter,955.9,0.0,394.0,183.1,13.4,0,3.4,0.701,100.0,514.6,8527,5746,0,12322,9405,3,6,1.000,18.0,12.0,12,855.1,0.0400,0,0 219,winter,1644.8,0.0,351.0,180.7,7.7,0,3.3,0.763,100.0,527.5,8689,5180,0,12936,9195,3,7,1.000,18.0,12.0,12,1034.8,0.0175,0,0,0.925,0
220,winter,939.2,0.0,397.0,170.3,62.3,0,3.4,0.773,100.0,538.3,9850,4889,0,12877,8384,3,6,1.000,18.0,12.0,12,766.6,0.0400,0,0 220,winter,1651.2,0.0,356.0,167.8,5.6,0,1.4,0.779,100.0,547.5,9597,5162,0,13216,8025,3,7,1.000,18.0,12.0,12,963.3,0.0176,0,0,0.931,0
221,winter,895.6,0.0,400.0,158.4,89.2,0,2.0,0.745,100.0,490.7,11757,3636,0,13821,6786,3,6,1.000,18.0,12.0,12,755.6,0.0400,0,0 221,winter,1644.6,0.0,361.0,156.7,17.3,0,3.1,0.795,100.0,548.5,9749,5542,0,13281,7428,3,7,1.000,18.0,12.0,12,914.3,0.0177,0,0,0.939,0
222,winter,889.2,0.0,400.0,147.3,52.0,0,0.5,0.657,100.0,496.2,10134,4091,0,13358,8417,3,6,1.000,18.0,12.0,12,738.3,0.0400,0,0 222,winter,1649.2,0.0,366.0,146.6,5.7,0,1.4,0.761,100.0,524.3,8976,4270,0,13056,9698,3,7,1.000,18.0,12.0,12,903.3,0.0178,0,0,0.943,0
223,winter,867.3,0.0,400.0,137.3,69.9,0,2.2,0.789,100.0,571.6,10340,4306,0,13384,7970,3,6,1.000,18.0,12.0,12,601.9,0.0400,0,0 223,winter,1654.8,0.0,371.0,137.8,4.5,0,1.1,0.767,100.0,510.8,9610,5167,0,13194,8029,3,7,1.000,18.0,12.0,12,876.3,0.0178,0,0,0.947,0
224,winter,895.3,0.0,400.0,129.0,20.0,0,1.9,0.701,100.0,548.4,8471,5060,0,12895,9574,3,6,1.000,18.0,12.0,12,580.5,0.0400,0,0 224,winter,1635.7,0.0,376.0,130.0,29.3,0,0.7,0.763,100.0,503.2,9057,5016,0,12991,8936,3,7,1.000,18.0,12.0,12,863.3,0.0179,0,0,0.949,0
225,winter,864.9,0.0,400.0,123.5,78.4,0,3.8,0.773,100.0,498.0,12033,2624,0,13407,7936,3,6,1.000,18.0,12.0,12,564.5,0.0400,0,0 225,winter,1615.4,0.0,381.0,123.3,31.3,0,2.2,0.779,100.0,548.5,10192,5061,0,13267,7480,3,7,1.000,18.0,12.0,12,803.3,0.0180,0,0,0.951,0
226,winter,857.2,0.0,400.0,120.8,55.7,0,0.7,0.745,100.0,499.3,12158,3055,0,13596,7191,3,6,1.000,18.0,12.0,12,517.3,0.0400,0,0 226,winter,1615.0,0.0,386.0,120.4,11.9,0,0.6,0.794,100.0,529.3,9917,5295,0,13446,7342,3,7,1.000,18.0,12.0,12,781.0,0.0180,0,0,0.952,0
227,winter,892.4,0.0,400.0,120.0,12.8,0,0.4,0.657,100.0,502.2,13089,3042,0,14328,5541,3,6,1.000,18.0,12.0,12,474.0,0.0400,0,0 227,winter,1619.0,0.0,390.0,120.0,8.8,0,0.1,0.761,100.0,625.0,9592,5657,0,13395,7356,3,7,1.000,18.0,12.0,12,653.0,0.0182,0,0,0.952,0
228,winter,922.0,0.0,400.0,120.0,18.4,0,0.6,0.789,100.0,518.7,12977,2099,0,13576,7348,3,6,1.000,18.0,12.0,12,419.9,0.0400,0,0 228,winter,1629.4,0.0,394.0,120.0,0.0,0,1.8,0.766,100.0,593.2,8296,6042,0,12717,8945,3,7,1.000,18.0,12.0,12,619.3,0.0182,0,0,0.953,0
229,winter,968.4,0.0,400.0,120.0,1.6,0,3.0,0.701,100.0,567.3,9048,5392,0,12047,9513,3,6,1.000,18.0,12.0,12,338.9,0.0400,0,0 229,winter,1639.2,0.0,397.5,120.0,0.0,0,3.8,0.762,100.0,542.7,8680,6070,0,12765,8485,3,7,1.000,18.0,12.0,12,615.3,0.0182,0,0,0.954,0
230,winter,993.2,0.0,400.0,120.0,23.2,0,1.1,0.773,100.0,490.5,9420,4159,0,12243,10178,3,6,1.000,18.0,12.0,12,388.9,0.0400,0,0 230,winter,1606.4,0.0,399.0,120.0,43.2,0,1.1,0.778,100.0,523.8,10154,5319,0,13166,7361,3,7,1.000,18.0,12.0,12,612.3,0.0182,0,0,0.955,0
231,winter,1015.6,0.0,400.0,120.0,25.6,0,1.8,0.745,100.0,496.5,10095,4211,0,12651,9043,3,6,1.000,18.0,12.0,12,331.9,0.0400,0,0 231,winter,1592.5,0.0,400.0,120.0,25.1,0,1.6,0.793,100.0,511.1,10480,4396,0,13246,7878,3,7,1.000,18.0,12.0,12,586.8,0.0182,0,0,0.955,0
232,winter,1039.2,0.0,400.0,120.0,24.4,0,3.0,0.657,100.0,496.7,9476,5182,0,12560,8782,3,6,1.000,18.0,12.0,12,284.8,0.0400,0,0 232,winter,1550.9,0.0,400.0,120.0,55.2,0,2.9,0.760,100.0,557.3,8925,4309,0,12737,10029,3,7,1.000,18.0,12.0,12,539.8,0.0182,0,0,0.956,0
233,winter,1085.6,0.0,400.0,120.0,1.6,0,0.5,0.789,100.0,506.3,8506,4989,0,12000,10505,3,6,1.000,18.0,12.0,12,210.8,0.0400,0,0 233,winter,1551.0,0.0,400.0,120.0,13.5,0,0.9,0.765,100.0,598.9,8166,5788,0,12892,9154,3,7,1.000,18.0,12.0,12,458.0,0.0182,0,0,0.957,0
234,winter,1090.4,0.0,400.0,120.0,43.2,0,1.4,0.701,100.0,559.2,10474,3375,0,12872,9279,3,6,1.000,18.0,12.0,12,119.6,0.0400,0,0 234,winter,1563.9,0.0,400.0,120.0,0.0,0,1.8,0.771,100.0,553.9,9720,4123,0,13192,8965,3,7,1.000,18.0,12.0,12,458.0,0.0182,0,0,0.957,0
235,winter,1123.6,0.0,400.0,120.0,14.8,0,0.9,0.773,100.0,498.0,9922,4162,0,12598,9318,3,6,1.000,18.0,12.0,12,124.6,0.0400,0,0 235,winter,1563.0,0.0,400.0,120.0,14.5,0,0.5,0.777,100.0,500.4,10355,3474,0,13391,8780,3,7,1.000,18.0,12.0,12,473.0,0.0182,0,0,0.958,0
236,winter,1155.6,0.0,400.0,120.0,16.0,0,1.6,0.745,100.0,542.0,9947,4386,0,12483,9184,3,6,1.000,18.0,12.0,12,56.6,0.0400,0,0 236,winter,1544.6,0.0,400.0,120.0,32.0,0,6.0,0.792,100.0,500.3,12884,2372,0,14131,6613,3,7,1.000,18.0,12.0,12,433.0,0.0182,0,0,0.958,0
237,winter,1185.2,0.0,400.0,120.0,18.4,0,0.9,0.657,100.0,479.0,10452,3794,0,12852,8902,3,6,1.000,18.0,12.0,12,104.0,0.0400,0,0 237,winter,1519.4,0.0,400.0,120.0,39.7,0,3.0,0.759,100.0,508.3,11578,3413,0,14097,6912,3,7,1.000,18.0,12.0,12,393.4,0.0182,0,0,0.959,0
238,winter,1221.6,0.0,400.0,120.0,11.2,0,0.7,0.789,100.0,507.2,9386,4197,0,12124,10293,3,6,1.000,18.0,12.0,12,31.0,0.0400,0,0 238,winter,1527.4,0.0,400.0,120.0,6.4,0,1.1,0.764,100.0,522.7,12352,3010,0,13908,6730,3,7,1.000,18.0,12.0,12,340.4,0.0182,0,0,0.959,0
239,winter,1268.8,0.0,400.0,120.0,0.0,0,0.0,0.701,100.0,472.6,9434,2491,0,12000,12075,3,6,1.000,18.0,12.0,12,31.6,0.0400,0,0 239,winter,1541.8,0.0,400.0,120.0,0.0,0,1.7,0.770,100.0,486.7,13633,2290,0,14422,5655,3,7,1.000,18.0,12.0,12,331.4,0.0182,0,0,0.959,0
240,spring,1400.0,0.0,400.0,360.0,10.4,0,0.0,0.773,100.0,464.6,5920,254,0,12000,17826,3,6,1.000,18.0,12.0,12,0.0,0.0400,0,0 240,spring,1555.6,0.0,400.0,360.0,29.3,0,2.1,0.776,100.0,495.4,13944,1918,0,14428,5710,3,7,1.000,18.0,12.0,12,300.0,0.0182,0,0,0.960,0
241,spring,1383.5,0.0,400.0,600.0,140.0,0,0.0,0.735,100.0,459.2,5771,554,0,12197,17478,3,6,1.000,18.0,12.0,12,0.0,0.0400,0,0
242,spring,1351.0,0.0,400.0,578.0,393.6,0,8.0,0.657,100.0,508.7,13594,1898,0,14652,5856,3,6,1.000,18.0,12.0,12,122.6,0.0400,0,0
243,spring,1411.4,0.0,400.0,618.0,213.2,0,5.8,0.789,100.0,514.9,13156,1952,0,14572,6320,3,6,1.000,18.0,12.0,12,223.6,0.0400,0,0
244,spring,1488.3,0.0,400.0,594.0,244.4,0,6.2,0.701,100.0,523.3,12314,2925,0,14563,6198,3,6,1.000,18.0,12.0,12,425.6,0.0400,0,0
245,spring,1551.5,0.0,400.0,575.0,275.0,0,1.4,0.773,100.0,511.8,10445,3673,0,14478,7404,3,6,1.000,18.0,12.0,12,662.1,0.0400,0,0
246,spring,1584.3,0.0,400.0,582.0,279.4,0,1.5,0.745,100.0,500.6,11315,3018,0,14337,7330,3,6,1.000,18.0,12.0,12,832.2,0.0400,0,0
247,spring,1647.1,0.0,400.0,613.0,217.2,0,2.2,0.657,100.0,568.9,11039,3165,0,14483,7313,3,6,1.000,18.0,12.0,12,947.0,0.0400,0,0
248,spring,1689.1,0.0,400.0,612.0,250.2,0,3.0,0.789,100.0,534.0,9078,1662,0,13592,11668,3,6,1.000,18.0,12.0,12,1035.1,0.0400,0,0
249,spring,1715.2,0.0,400.0,646.0,188.2,0,2.2,0.701,100.0,547.6,9036,2081,0,13575,11308,3,6,1.000,18.0,12.0,12,1105.0,0.0400,0,0
250,spring,1701.2,0.0,400.0,710.0,168.2,0,0.0,0.773,100.0,570.8,4816,2310,0,12324,16550,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
251,spring,1711.2,0.0,400.0,772.0,57.2,0,0.0,0.745,100.0,588.0,2662,1107,0,12000,20231,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
252,spring,1720.0,0.0,400.0,708.0,207.6,0,0.7,0.657,100.0,579.5,2779,1098,0,12162,19961,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
253,spring,1730.4,0.0,400.0,644.0,272.4,0,1.4,0.789,100.0,553.1,4310,1061,0,12324,18305,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
254,spring,1716.8,0.0,400.0,615.0,291.8,0,0.7,0.701,100.0,578.0,5295,911,0,12640,17154,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
255,spring,1722.0,0.0,400.0,700.0,147.0,0,0.7,0.773,100.0,563.9,2593,1105,0,12162,20140,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
256,spring,1727.2,0.0,400.0,706.0,188.8,0,0.7,0.745,100.0,581.0,3336,1097,0,12162,19405,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
257,spring,1708.6,0.0,400.0,701.0,228.8,0,0.1,0.657,100.0,586.9,4246,987,0,12476,18291,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
258,spring,1715.4,0.0,400.0,773.0,52.2,0,0.0,0.789,100.0,583.1,2456,1200,0,12000,20344,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
259,spring,1719.8,0.0,400.0,780.0,34.6,0,0.0,0.701,100.0,583.7,2026,1157,0,12000,20817,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
260,spring,1721.4,0.0,400.0,788.0,35.8,0,0.0,0.773,100.0,569.5,2063,1146,0,12000,20791,3,6,1.000,18.0,12.0,12,1200.0,0.0400,0,0
1 day season wood stone clay food harvested trades avg_fatigue avg_nourish avg_health carried gather_ticks build_ticks trade_ticks rest_ticks social_ticks shelters_done ruins avg_cond upkeep_stock burn_per_day modules granary_food avg_debris refusals incomplete_sites avg_knowledge deaths
2 1 spring 1579.9 1572.9 960.0 400.0 654.0 649.9 564.5 572.0 0 0.0 0.766 100.0 564.5 572.0 7719 7926 690 654 0 3081 3486 12510 11934 0 0 0.000 0.0 0.0 0 0.0 0.0023 0.0031 0 0 0.007 0
3 2 spring 1628.7 1624.2 960.0 400.0 740.0 732.8 48.0 46.2 0 0.0 0.915 0.914 100.0 562.5 568.2 1471 1557 1181 1177 0 12000 21348 21266 0 0 0.000 0.0 0.0 0 0.0 0.0023 0.0031 0 0 0.008 0
4 3 spring 1670.7 1667.4 960.0 400.0 775.0 784.9 42.0 38.1 0 0.0 0.814 0.813 100.0 579.5 581.3 1401 1365 1185 1188 0 12000 21414 21447 0 0 0.000 0.0 0.0 0 0.0 0.0023 0.0031 0 0 0.008 0
5 4 spring 1407.0 1447.2 736.0 653.5 400.0 751.0 730.7 753.5 761.6 2 3 0.1 0.4 0.732 0.741 100.0 506.8 507.3 8983 9396 5752 5333 827 920 13977 14434 6461 5917 4 3 0 0.975 1.000 18.0 19.5 14.0 10.5 12 9 0.0 0.0023 0.0031 0 0 0.019 0
6 5 spring 1142.6 1173.7 762.0 750.5 400.0 680.0 592.5 608.2 763.4 3 2 1.4 3.9 0.861 0.859 100.0 577.0 507.9 8272 13306 2472 1508 442 796 13144 14653 11670 5737 4 3 0 0.988 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0023 0.0031 0 0 0.029 0
7 6 spring 1099.8 1000.7 773.0 750.5 400.0 668.0 577.2 342.6 560.3 1 0 2.9 3.9 0.770 0.778 100.0 578.8 562.0 5676 10070 902 728 60 0 12727 13608 16635 11594 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0025 0.0032 0 0 0.036 0
8 7 spring 1155.4 1027.2 773.0 750.5 400.0 620.0 573.3 322.8 351.8 0 3.0 2.0 0.909 0.906 100.0 559.5 542.0 5022 8876 932 644 0 12643 13605 17403 12875 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0026 0.0032 0 0 0.041 0
9 8 spring 1117.7 1016.1 773.0 750.5 400.0 645.0 587.3 314.7 376.2 0 2.4 6.2 0.817 0.814 100.0 567.4 557.9 5959 11121 955 509 0 12631 13628 16455 10742 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0027 0.0034 0 0 0.046 0
10 9 spring 1018.8 989.3 773.0 750.5 400.0 634.0 588.6 459.1 399.0 0 2.3 7.1 0.736 0.732 100.0 569.2 562.1 5240 9166 1032 932 0 20 12645 13592 17083 12290 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0027 0.0036 0 0 0.052 0
11 10 spring 1068.7 987.3 773.0 750.5 400.0 733.0 588.4 182.5 381.4 0 0.7 6.8 0.854 0.850 100.0 577.5 558.1 4062 9941 1878 666 0 12162 13601 17898 11792 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0029 0.0036 0 0 0.058 0
12 11 spring 1157.7 962.5 773.0 750.5 400.0 742.0 580.1 136.8 412.4 0 0.7 5.6 0.773 0.778 100.0 580.1 567.2 2768 9466 1375 1216 0 12162 13613 19695 11705 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0029 0.0037 0 0 0.074 0
13 12 spring 1273.9 1008.6 773.0 750.5 400.0 717.0 628.0 161.8 276.4 0 0.7 5.7 0.901 0.897 100.0 561.9 543.0 2735 9298 1210 704 0 12162 13599 19893 12399 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0030 0.0038 0 0 0.082 0
14 13 spring 1318.0 1008.3 773.0 750.5 400.0 746.0 607.7 158.1 381.7 0 1 0.3 4.9 0.819 0.824 100.0 579.7 555.2 2951 9456 1234 1209 0 144 12162 13427 19653 11764 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0033 0.0039 0 0 0.091 0
15 14 spring 1327.2 989.5 773.0 750.5 400.0 749.0 588.1 197.8 417.7 0 0.7 3.4 0.728 0.722 100.0 581.9 569.5 2565 8338 1110 694 0 12162 13282 20163 13686 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0034 0.0039 0 0 0.103 0
16 15 spring 1387.2 979.8 773.0 750.5 400.0 738.0 614.4 181.0 357.9 0 0.3 5.7 0.856 0.860 100.0 579.7 564.6 2800 8260 1158 699 0 16 12162 13296 19880 13729 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0034 0.0040 0 0 0.112 0
17 16 spring 1410.5 934.1 773.0 750.5 400.0 752.0 622.6 160.0 392.7 0 0.7 4.1 0.774 0.768 100.0 579.7 567.4 2523 7997 1109 717 0 12162 13283 20206 14003 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0034 0.0042 0 0 0.122 0
18 17 spring 1476.9 991.5 773.0 750.5 400.0 721.0 585.3 172.6 363.9 0 0.7 1.2 0.902 0.906 100.0 563.5 542.7 2752 7778 1216 715 0 12162 13292 19870 14215 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0036 0.0043 0 0 0.130 0
19 18 spring 1467.1 972.2 773.0 778.6 400.0 753.0 590.9 200.0 395.5 0 1 0.7 4.6 0.820 0.813 100.0 577.2 571.1 2882 7761 1343 963 0 86 12162 12987 19613 14203 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0037 0.0044 0 0 0.141 0
20 19 spring 1411.7 964.1 773.0 778.6 400.0 767.0 637.9 220.2 331.4 0 1 0.5 2.9 0.728 0.731 100.0 580.3 578.9 2635 5712 1105 1078 0 28 12162 12891 20098 16291 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0037 0.0046 0 0 0.149 0
21 20 spring 1342.2 975.5 773.0 778.6 400.0 755.0 620.7 257.9 367.7 0 0.0 1.7 0.866 0.859 100.0 580.2 575.4 2684 5539 1375 1166 0 12153 12631 19788 16664 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0038 0.0047 0 0 0.166 0
22 21 spring 1359.4 1021.6 773.0 786.7 400.0 743.0 678.8 185.2 250.3 0 1 0.4 1.1 0.774 0.776 100.0 582.4 590.0 2500 5046 1342 1226 0 50 12159 12405 19999 17273 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0042 0.0048 0 0 0.184 0
23 22 spring 1436.9 1098.2 773.0 786.7 400.0 723.0 704.0 152.5 194.3 0 0.7 1.5 0.902 0.903 100.0 558.2 567.6 2634 3213 1143 1140 0 12162 12314 20061 19333 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0043 0.0049 0 0 0.195 0
24 23 spring 1434.0 1187.3 773.0 799.7 400.0 749.0 727.3 202.9 145.1 0 0.7 0.6 0.819 0.821 100.0 578.9 585.8 2892 2762 1322 1271 0 12162 12160 19624 19807 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0043 0.0050 0 0 0.213 0
25 24 spring 1387.3 1240.1 773.0 799.7 400.0 754.0 736.8 225.7 179.0 0 0.5 0.7 0.727 0.728 100.0 580.6 582.9 2521 2452 1286 1324 0 12162 12156 20031 20068 4 3 0 1.000 24.0 18.0 16.0 12.0 16 12 0.0 0.0045 0.0051 0 0 0.227 0
26 25 spring 1337.7 1200.3 773.0 698.8 400.0 738.0 703.5 264.8 442.8 0 0.2 0.6 0.865 100.0 583.4 573.1 2820 6812 1096 2885 0 12159 13490 19925 12813 4 0 1.000 24.0 16.0 16 0.0 0.0048 0.0052 0 0 0.236 0
27 26 spring 1362.5 1138.4 773.0 729.1 400.0 748.0 601.4 150.0 501.6 0 1 0.7 2.6 0.772 100.0 574.4 578.8 2390 6811 1390 1211 0 74 12162 12814 20058 15090 4 0 1.000 24.0 16.0 16 0.0 0.0048 0.0055 0 0 0.248 0
28 27 spring 1423.7 1165.9 773.0 751.3 400.0 726.0 724.5 175.6 174.9 0 0.7 0.0 0.909 100.0 556.4 562.4 2952 3251 1280 1548 0 12162 12155 19606 19046 4 0 1.000 24.0 16.0 16 0.0 0.0048 0.0055 0 0 0.251 0
29 28 spring 1436.9 1245.9 773.0 751.3 400.0 750.0 759.6 193.4 86.4 0 0.7 0.0 0.817 0.816 100.0 579.8 585.9 3061 2591 1257 1520 0 12162 12000 19520 19889 4 0 1.000 24.0 16.0 16 0.0 0.0050 0.0056 0 0 0.262 0
30 29 spring 1390.9 1341.2 773.0 751.3 400.0 752.0 771.7 228.6 48.2 0 0.5 0.0 0.734 0.733 100.0 581.4 591.1 2530 1890 1109 1162 0 12162 12000 20199 20948 4 0 1.000 24.0 16.0 16 0.0 0.0053 0.0058 0 0 0.276 0
31 30 summer 1331.7 1406.2 773.0 751.3 400.0 715.0 769.1 262.2 56.2 0 0.7 0.0 0.852 0.850 100.0 579.6 584.4 2653 1996 1107 1218 0 12162 12000 20078 20786 4 0 1.000 24.0 16.0 16 0.0 0.0053 0.0058 0 0 0.280 0
32 31 summer 1331.3 1488.6 773.0 751.3 400.0 710.0 762.7 177.4 45.1 0 0.4 0.0 0.778 0.777 100.0 578.4 585.5 2504 1811 1120 1168 0 12159 12000 20217 21021 4 0 1.000 24.0 16.0 16 0.0 0.0054 0.0060 0 0 0.289 0
33 32 summer 1397.3 1564.9 773.0 751.3 400.0 657.0 764.1 169.0 45.6 0 0.7 0.0 0.896 0.894 100.0 569.4 568.1 2793 1905 1303 1284 0 12162 12000 19742 20811 4 0 1.000 24.0 16.0 16 0.0 0.0058 0.0062 0 0 0.298 0
34 33 summer 1387.7 1629.4 773.0 751.3 400.0 688.0 752.0 163.4 65.2 0 0.7 0.0 0.822 0.820 100.0 586.8 589.3 2840 2087 1103 1376 0 12162 12000 19895 20537 4 0 1.000 24.0 16.0 16 0.0 0.0060 0.0064 0 0 0.302 0
35 34 summer 1343.3 1673.4 773.0 751.3 400.0 716.0 758.0 188.4 40.3 0 0.6 0.0 0.719 0.727 100.0 578.2 587.6 2492 1692 1120 1169 0 12162 12000 20226 21139 4 0 1.000 24.0 16.0 16 0.0 0.0060 0.0067 0 0 0.307 0
36 35 summer 1279.7 1680.9 773.0 751.3 400.0 705.0 749.8 249.0 66.1 0 0.3 0.0 0.866 0.863 100.0 576.2 588.7 3051 2238 1341 1658 0 12156 12000 19452 20104 4 0 1.000 24.0 16.0 16 0.0 0.0062 0.0069 0 0 0.311 0
37 36 summer 1305.7 1688.6 773.0 751.3 400.0 701.0 752.4 152.0 42.3 0 0.0 0.772 0.769 100.0 584.7 589.0 2723 1803 1100 1166 0 12162 12000 20015 21031 4 0 1.000 24.0 16.0 16 0.0 0.0066 0.0071 0 0 0.312 0
38 37 summer 1319.7 1688.8 773.0 751.3 400.0 706.0 761.0 157.0 40.8 0 0.1 0.0 0.909 0.905 100.0 553.2 564.8 2463 1924 1108 1228 0 12155 12000 20274 20848 4 0 1.000 24.0 16.0 16 0.0 0.0068 0.0072 0 0 0.313 0
39 38 summer 1323.5 1694.4 773.0 751.3 400.0 706.0 745.6 164.2 66.9 0 0.4 0.0 0.815 0.811 100.0 574.7 589.8 3090 2193 1396 1137 0 12162 12000 19352 20670 4 0 1.000 24.0 16.0 16 0.0 0.0069 0.0075 0 0 0.315 0
40 39 summer 1307.5 1693.9 773.0 751.3 400.0 710.0 752.8 172.0 40.8 0 0.5 0.0 0.731 0.727 100.0 579.7 587.6 2704 1897 1357 1172 0 12162 12000 19777 20931 4 0 1.000 24.0 16.0 16 0.0 0.0072 0.0077 0 0 0.320 0
41 40 summer 1305.7 1692.6 773.0 751.3 400.0 680.0 748.8 201.8 63.9 0 0.8 0.0 0.857 0.853 100.0 584.5 587.5 3071 2247 1146 1455 0 12156 12000 19627 20298 4 0 1.000 24.0 16.0 16 0.0 0.0075 0.0079 0 0 0.323 0
42 41 summer 1341.7 1697.0 773.0 751.3 400.0 689.0 747.2 117.0 40.9 0 0.7 0.0 0.773 0.769 100.0 579.5 585.4 2653 1688 1115 1174 0 12162 12000 20070 21138 4 0 1.000 24.0 16.0 16 0.0 0.0077 0.0082 0 0 0.326 0
43 42 summer 1311.7 1692.7 773.0 751.3 400.0 683.0 755.9 220.0 44.4 0 0.0 0.899 0.904 100.0 553.3 564.7 2740 1836 1171 1221 0 12162 12000 19927 20943 4 0 1.000 24.0 16.0 16 0.0 0.0078 0.0083 0 0 0.327 0
44 43 summer 1310.9 1695.9 773.0 751.3 400.0 672.0 742.6 199.8 63.6 0 0.7 0.0 0.815 0.819 100.0 580.0 585.3 3540 2007 1376 1153 0 12160 12000 18924 20840 4 0 1.000 24.0 16.0 16 0.0 0.0078 0.0086 0 0 0.329 0
45 44 summer 1302.9 1695.8 773.0 751.3 400.0 698.0 748.1 162.0 43.5 0 0.7 0.0 0.730 0.735 100.0 577.0 585.8 2516 1762 1118 1166 0 12162 12000 20204 21072 4 0 1.000 24.0 16.0 16 0.0 0.0079 0.0088 0 0 0.333 0
46 45 summer 1324.9 1697.8 773.0 751.3 400.0 689.0 731.6 173.0 68.4 0 0.7 0.0 0.866 0.860 100.0 581.0 590.2 2931 2193 1086 1137 0 12162 12000 19821 20670 4 0 1.000 24.0 16.0 16 0.0 0.0083 0.0092 0 0 0.337 0
47 46 summer 1342.9 1699.2 773.0 751.3 400.0 702.0 740.6 133.0 42.0 0 0.7 0.0 0.771 0.775 100.0 577.0 589.1 2536 1757 1110 1165 0 12162 12000 20192 21078 4 0 1.000 24.0 16.0 16 0.0 0.0084 0.0093 0 0 0.339 0
48 47 summer 1340.3 1698.3 773.0 751.3 400.0 705.0 751.6 172.0 41.4 0 0.4 0.0 0.906 0.900 100.0 557.5 566.5 3040 1940 1513 1309 0 12162 12000 19285 20751 4 0 1.000 24.0 16.0 16 0.0 0.0087 0.0095 0 0 0.342 0
49 48 summer 1340.3 1693.5 773.0 751.3 400.0 704.0 739.7 169.5 79.9 0 0.5 0.0 0.812 0.824 100.0 580.0 594.6 2978 2214 1200 1218 0 12162 12000 19660 20568 4 0 1.000 24.0 16.0 16 0.0 0.0089 0.0099 0 0 0.344 0
50 49 summer 1318.3 1697.5 773.0 751.3 400.0 710.0 756.4 178.0 29.3 0 0.7 0.0 0.727 0.719 100.0 575.0 582.8 2473 1623 1125 1172 0 12162 12000 20240 21205 4 0 1.000 24.0 16.0 16 0.0 0.0092 0.0099 0 0 0.345 0
51 50 summer 1274.8 1697.0 773.0 751.3 400.0 689.0 737.5 239.5 80.1 0 0.3 0.0 0.862 0.863 100.0 578.5 590.8 3076 2189 1200 1143 0 12155 12000 19569 20668 4 0 1.000 24.0 16.0 16 0.0 0.0094 0.0102 0 0 0.346 0
52 51 summer 1312.3 1696.1 773.0 751.3 400.0 687.0 755.2 132.5 32.6 0 0.7 0.0 0.767 0.768 100.0 579.1 581.3 2553 1670 1114 1177 0 12162 12000 20171 21153 4 0 1.000 24.0 16.0 16 0.0 0.0097 0.0103 0 0 0.347 0
53 52 summer 1304.3 1699.2 773.0 751.3 400.0 686.0 752.2 199.0 51.2 0 0.0 0.911 0.902 100.0 557.0 567.5 2829 1965 1181 1150 0 12156 12000 19834 20885 4 0 1.000 24.0 16.0 16 0.0 0.0099 0.0104 0 0 0.347 0
54 53 summer 1353.8 1698.9 773.0 751.3 400.0 685.0 740.3 131.5 67.6 0 0.5 0.0 0.806 0.826 100.0 580.2 591.1 3428 2164 1271 1138 0 12155 12000 19146 20698 4 0 1.000 24.0 16.0 16 0.0 0.0101 0.0105 0 0 0.348 0
55 54 summer 1317.8 1704.4 773.0 751.3 400.0 679.0 750.9 228.0 40.9 0 0.7 0.0 0.730 0.721 100.0 579.2 591.0 2557 1839 1330 1665 0 12162 12000 19951 20496 4 0 1.000 24.0 16.0 16 0.0 0.0105 0.0106 0 0 0.349 0
56 55 summer 1317.8 1698.5 773.0 751.3 400.0 679.0 754.3 190.0 63.1 0 0.3 0.0 0.864 0.865 100.0 575.2 588.1 3180 2060 1182 1279 0 12158 12000 19480 20661 4 0 1.000 24.0 16.0 16 0.0 0.0106 0 0 0.351 0
57 56 summer 1285.0 1700.5 773.0 751.3 400.0 687.0 760.0 210.0 38.8 0 0.7 0.0 0.768 0.769 100.0 578.2 584.9 2853 1708 1099 1169 0 12162 12000 19886 21123 4 0 1.000 24.0 16.0 16 0.0 0.0109 0.0107 0 0 0.352 0
58 57 summer 1267.5 1697.9 773.0 751.3 400.0 679.0 760.7 209.5 54.0 0 0.3 0.0 0.902 0.903 100.0 556.6 573.9 2769 2010 1246 1292 0 12162 12000 19823 20698 4 0 1.000 24.0 16.0 16 0.0 0.0111 0.0109 0 0 0.353 0
59 58 summer 1307.5 1699.9 773.0 751.3 400.0 680.0 756.0 150.0 54.5 0 0.6 0.0 0.816 0.817 100.0 578.6 585.4 3040 2005 1079 1159 0 12162 12000 19719 20836 4 0 1.000 24.0 16.0 16 0.0 0.0114 0.0111 0 0 0.354 0
60 59 summer 1287.0 1704.6 773.0 751.3 400.0 702.0 751.5 176.5 47.5 0 0.4 0.0 0.730 0.721 100.0 576.1 590.9 2580 1885 1119 1163 0 12162 12000 20139 20952 4 0 1.000 24.0 16.0 16 0.0 0.0116 0.0114 0 0 0.355 0
61 60 autumn 1352.6 1697.0 773.0 751.3 400.0 675.6 733.6 124.0 78.7 0 0.7 0.0 0.853 0.864 100.0 579.1 595.2 3342 2304 1086 1503 0 12162 12000 19410 20193 4 0 1.000 24.0 16.0 16 0.0 0.0118 0.0116 0 0 0.356 0
62 61 autumn 1262.6 1697.3 773.0 751.3 400.0 695.8 747.0 232.6 30.1 0 0.3 0.0 0.776 0.768 100.0 576.2 583.3 2578 1609 1381 1178 0 12154 12000 19887 21213 4 0 1.000 24.0 16.0 16 0.0 0.0121 0.0117 0 0 0.356 0
63 62 autumn 1251.1 1702.6 773.0 751.3 400.0 708.0 734.1 148.9 49.2 0 0.8 0.0 0.900 0.902 100.0 557.8 567.5 3008 1911 1811 1154 0 12160 12000 19021 20935 4 0 1.000 24.0 16.0 16 0.0 0.0124 0.0119 0 0 0.357 0
64 63 autumn 1293.1 1706.7 773.0 751.3 400.0 655.6 723.4 167.6 60.9 0 0.7 0.0 0.813 0.815 100.0 579.8 585.4 3088 2193 1076 1137 0 12162 12000 19674 20670 4 0 1.000 24.0 16.0 16 0.0 0.0126 0.0120 0 0 0.358 0
65 64 autumn 1303.6 1701.7 773.0 751.3 400.0 647.2 733.4 172.3 41.3 0 0.8 0.0 0.735 0.728 100.0 576.1 583.7 2514 1713 1116 1169 0 12154 12000 20216 21118 4 0 1.000 24.0 16.0 16 0.0 0.0129 0.0121 0 0 0.359 0
66 65 autumn 1329.8 1699.9 773.0 751.3 400.0 631.8 720.1 168.6 70.6 0 0.0 0.859 0.862 100.0 582.8 589.3 4347 2372 1292 1224 0 12157 12000 18204 20404 4 0 1.000 24.0 16.0 16 0.0 0.0131 0.0122 0 0 0.361 0
67 66 autumn 1206.8 1699.4 773.0 751.3 400.0 672.4 732.0 262.6 35.4 0 0.7 0.0 0.771 0.765 100.0 577.8 582.7 2644 1660 1116 1174 0 12162 12000 20078 21166 4 0 1.000 24.0 16.0 16 0.0 0.0133 0.0123 0 0 0.363 0
68 67 autumn 1194.8 1687.3 773.0 751.3 400.0 674.2 743.8 181.4 55.1 0 0.7 0.0 0.913 0.908 100.0 563.1 571.8 2981 2150 1173 1632 0 12162 12000 19684 20218 4 0 1.000 24.0 16.0 16 0.0 0.0136 0.0124 0 0 0.365 0
69 68 autumn 1206.8 1682.3 773.0 751.3 400.0 650.2 734.2 194.0 72.5 0 0.6 0.0 0.807 0.811 100.0 579.4 589.6 3025 2440 1245 1526 0 12162 12000 19568 20034 4 0 1.000 24.0 16.0 16 0.0 0.0137 0.0125 0 0 0.366 0
70 69 autumn 1198.8 1689.7 773.0 751.3 400.0 648.0 737.2 190.6 42.2 0 0.6 0.0 0.728 0.724 100.0 582.8 588.8 2833 1940 1110 1158 0 12156 12000 19901 20902 4 0 1.000 24.0 16.0 16 0.0 0.0140 0.0127 0 0 0.366 0
71 70 autumn 1226.8 1694.6 773.0 751.3 400.0 634.4 727.4 169.6 59.6 0 0.7 0.0 0.860 0.867 100.0 573.8 582.3 3360 2053 1385 1148 0 12162 12000 19093 20799 4 0 1.000 24.0 16.0 16 0.0 0.0142 0.0129 0 0 0.367 0
72 71 autumn 1250.8 1698.8 773.0 751.3 400.0 650.6 723.4 136.2 52.2 0 0.0 0.763 0.779 100.0 578.9 570.3 3200 1903 1088 1106 0 12162 11520 19550 20031 4 0 1.000 24.0 16.0 16 0.0 0.0143 0.0131 0 0 0.353 1
73 72 autumn 1248.8 1688.0 773.0 751.3 400.0 661.0 728.7 175.6 58.1 0 0.1 0.0 0.904 0.902 100.0 560.7 564.3 2880 2113 1471 1237 0 12155 11999 19494 20651 4 0 1.000 24.0 16.0 16 0.0 0.0145 0.0132 0 0 0.366 0
74 73 autumn 1273.3 1695.1 773.0 751.3 400.0 636.2 708.5 193.9 70.7 0 0.4 0.0 0.816 0.824 100.0 583.0 591.0 3097 2393 1078 1132 0 12159 12000 19666 20475 4 0 1.000 24.0 16.0 16 0.0 0.0146 0.0133 0 0 0.367 0
75 74 autumn 1290.8 1698.1 773.0 751.3 400.0 653.6 726.5 144.3 34.9 0 0.7 0.0 0.728 0.727 100.0 579.9 583.9 2819 1731 1098 1173 0 12162 12000 19921 21096 4 0 1.000 24.0 16.0 16 0.0 0.0148 0.0135 0 0 0.367 0
76 75 autumn 1268.8 1700.8 773.0 751.3 400.0 629.0 713.4 239.8 71.7 0 0.1 0.0 0.860 0.859 100.0 581.2 590.6 3286 2247 1175 1252 0 12162 12000 19377 20501 4 0 1.000 24.0 16.0 16 0.0 0.0150 0.0136 0 0 0.368 0
77 76 autumn 1298.3 1706.8 773.0 751.3 400.0 650.2 724.1 123.5 37.7 0 0.4 0.0 0.771 0.772 100.0 582.3 585.3 2929 1750 1091 1170 0 12162 12000 19818 21080 4 0 1.000 24.0 16.0 16 0.0 0.0151 0.0137 0 0 0.368 0
78 77 autumn 1269.0 1706.4 773.0 751.3 400.0 662.4 726.1 194.5 49.8 0 0.0 0.903 0.895 100.0 561.9 571.1 2822 2060 1148 1244 0 12162 12000 19868 20696 4 0 1.000 24.0 16.0 16 0.0 0.0152 0.0139 0 0 0.369 0
79 78 autumn 1307.0 1699.3 773.0 751.3 400.0 647.6 730.8 156.8 56.9 0 0.6 0.0 0.814 0.816 100.0 580.9 584.0 3203 2050 1068 1691 0 12156 12000 19573 20259 4 0 1.000 24.0 16.0 16 0.0 0.0154 0.0141 0 0 0.371 0
80 79 autumn 1231.0 1707.0 773.0 751.3 400.0 680.0 722.3 212.8 48.0 0 0.8 0.0 0.726 0.738 100.0 579.4 588.0 2641 1960 1107 1156 0 12154 12000 20098 20884 4 0 1.000 24.0 16.0 16 0.0 0.0155 0.0144 0 0 0.372 0
81 80 autumn 1228.0 1706.1 773.0 751.3 400.0 667.0 716.2 179.2 62.5 0 0.7 0.0 0.857 0.851 100.0 584.3 587.4 3542 2246 1296 1250 0 12162 12000 19000 20504 4 0 1.000 24.0 16.0 16 0.0 0.0155 0.0146 0 0 0.372 0
82 81 autumn 1216.0 1707.1 773.0 751.3 400.0 675.2 725.7 161.0 39.5 0 0.7 0.0 0.778 0.772 100.0 578.5 582.9 2666 1692 1106 1185 0 12162 12000 20066 21123 4 0 1.000 24.0 16.0 16 0.0 0.0157 0.0148 0 0 0.373 0
83 82 autumn 1237.0 1688.6 773.0 751.3 400.0 667.0 741.7 155.6 56.5 0 0.0 0.900 0.904 100.0 559.7 574.5 2794 2085 1100 1559 0 12154 12000 19952 20356 4 0 1.000 24.0 16.0 16 0.0 0.0159 0.0151 0 0 0.373 0
84 83 autumn 1264.0 1696.9 773.0 751.3 400.0 661.6 720.6 140.4 66.3 0 0.0 0.811 0.815 100.0 579.3 591.3 3575 2303 1195 1132 0 12154 12000 19076 20565 4 0 1.000 24.0 16.0 16 0.0 0.0161 0.0153 0 0 0.374 0
85 84 autumn 1259.5 1698.2 773.0 751.3 400.0 653.2 728.7 183.3 40.0 0 0.7 0.0 0.731 0.737 100.0 579.4 587.4 3008 1876 1089 1165 0 12162 12000 19741 20959 4 0 1.000 24.0 16.0 16 0.0 0.0163 0.0155 0 0 0.375 0
86 85 autumn 1287.5 1705.8 773.0 751.3 400.0 639.2 706.8 162.8 72.9 0 0.7 0.0 0.862 0.858 100.0 577.4 590.2 3634 2347 1049 1130 0 12162 12000 19155 20523 4 0 1.000 24.0 16.0 16 0.0 0.0163 0.0158 0 0 0.376 0
87 86 autumn 1321.0 1710.7 773.0 751.3 400.0 652.0 718.7 121.1 38.4 0 0.7 0.0 0.763 0.769 100.0 578.7 585.6 2686 1785 1113 1176 0 12162 12000 20039 21039 4 0 1.000 24.0 16.0 16 0.0 0.0164 0.0161 0 0 0.376 0
88 87 autumn 1291.0 1710.1 773.0 751.3 400.0 645.8 717.2 209.8 58.4 0 0.6 0.0 0.903 0.912 100.0 561.1 549.8 3183 2020 1270 1093 0 12162 11520 19385 19927 4 0 1.000 24.0 16.0 16 0.0 0.0165 0.0164 0 0 0.362 1
89 88 autumn 1283.0 1706.1 773.0 751.3 400.0 632.4 701.0 214.0 80.0 0 0.7 0.0 0.824 0.814 100.0 578.9 587.8 3279 2565 1067 1118 0 12162 11999 19492 20318 4 0 1.000 24.0 16.0 16 0.0 0.0165 0.0166 0 0 0.377 0
90 89 autumn 1255.0 1706.5 773.0 751.3 400.0 648.4 717.5 199.2 38.9 0 0.7 0.0 0.725 0.744 100.0 580.1 581.7 2858 1825 1096 1164 0 12162 12000 19884 21011 4 0 1.000 24.0 16.0 16 0.0 0.0167 0 0 0.378 0
91 90 winter 1175.5 1692.5 773.0 751.3 400.0 516.5 626.8 212.5 66.6 0 0.8 0.0 0.856 0.864 100.0 582.6 584.2 3514 2238 1282 1172 0 12156 12000 19048 20590 4 0 1.000 24.0 16.0 16 0.0 0.0168 0.0171 0 0 0.379 0
92 91 winter 1087.0 1683.3 773.0 751.3 400.0 450.7 553.6 164.1 49.6 0 0.1 0.0 0.775 0.784 100.0 581.8 568.9 3324 2144 1072 1091 0 12162 11520 19442 19805 4 0 1.000 24.0 16.0 16 0.0 0.0171 0.0173 0 0 0.366 1
93 92 winter 1054.2 1660.2 773.0 751.3 400.0 368.9 484.4 129.4 65.9 0 0.4 0.0 0.896 0.895 100.0 561.3 563.6 3673 2484 1076 1542 0 12157 11999 19094 19975 4 0 1.000 24.0 16.0 16 0.0 0.0173 0.0174 0 0 0.377 0
94 93 winter 1038.9 1648.1 773.0 751.3 400.0 280.7 407.7 127.5 71.8 0 0.7 0.0 0.816 0.822 100.0 583.2 563.0 6094 3193 899 1030 0 12160 11520 16847 18817 4 0 1.000 24.0 16.0 16 0.0 0.0177 0 0 0.364 1
95 94 winter 1050.3 1637.4 773.0 751.3 400.0 251.8 341.7 43.5 65.6 0 0.0 0.735 0.761 100.0 562.6 582.7 4706 5738 713 918 0 12000 12306 18581 17038 4 0 1.000 24.0 16.0 16 0.0 0.0179 0.0180 0 0 0.368 0
96 95 winter 1059.8 1632.8 773.0 751.3 400.0 232.9 274.5 38.4 64.8 0 0.0 0.846 0.861 100.0 530.4 585.4 2617 5010 1425 1102 0 12000 19958 17888 4 0 1.000 24.0 16.0 16 0.0 0.0182 0.0183 0 0 0.380 0
97 96 winter 1088.7 1625.2 773.0 751.3 400.0 215.3 238.9 19.6 40.4 0 0.0 0.746 0.781 100.0 501.4 581.8 2835 3064 651 1094 0 12150 12000 20364 19842 4 0 1.000 24.0 16.0 16 0.0 0.0185 0 0 0.381 0
98 97 winter 1111.5 1638.0 773.0 751.3 400.0 197.9 219.8 27.1 6.8 0 0.0 0.868 0.890 100.0 464.5 525.7 4083 3243 688 314 0 12153 12000 19076 20443 4 0 1.000 24.0 16.0 16 0.0 0.0188 0 0 0.381 0
99 98 winter 1121.8 1631.0 773.0 751.3 400.0 184.3 202.8 36.9 24.6 0 0.0 0.790 0.819 100.0 450.3 505.2 3746 2018 642 255 0 12157 12000 19455 21727 4 0 1.000 24.0 16.0 16 0.0 0.0190 0 0 0.382 0
100 99 winter 1139.7 1609.5 773.0 751.3 400.0 169.7 185.6 31.7 42.1 0 0.0 0.644 0.758 100.0 446.0 494.9 4622 2606 646 683 0 12150 12000 18582 20711 4 0 1.000 24.0 16.0 16 0.0 0.0193 0.0194 0 0 0.382 0
101 100 winter 853.5 1601.7 773.0 751.3 400.0 157.0 174.2 340.2 23.0 0 3.4 0.0 0.531 0.867 100.0 429.4 454.9 10115 2384 368 145 0 13320 12000 12197 21471 4 0 1.000 24.0 16.0 16 0.0 0.0383 0.0196 72 0 0 0.383 0
102 101 winter 809.1 1606.0 619.0 751.3 400.0 146.3 162.4 865.5 12.7 33 0 3.6 0.0 0.325 0.746 100.0 405.5 427.6 11020 2162 631 220 614 0 14137 12000 9598 21618 4 0 1.000 21.6 24.0 16.0 16 0.0 0.0400 0.0198 14 0 0 0.383 0
103 102 winter 788.1 1603.0 461.0 751.3 400.0 139.0 151.1 230.4 21.9 7 0 3.8 2.1 0.183 0.714 100.0 522.9 400.5 9941 5670 2509 151 4874 0 14182 12523 4494 17656 4 0 1.000 7.3 24.0 16.0 16 0.0 0.0400 0.0218 46 6 0 0.383 0
104 103 winter 802.7 938.8 297.0 751.3 400.0 133.2 142.3 198.9 712.2 2 0 0.9 3.7 0.102 0.499 100.0 578.5 419.6 8403 9415 1939 280 902 0 13620 13606 11136 12699 4 0 0.900 1.000 0.0 24.0 16.0 16 0.0 0.0400 0.0366 0 54 0 0.391 0
105 104 winter 787.0 795.7 354.0 430.1 400.0 127.3 135.4 68.5 1322.3 1 55 1.4 1.1 0.088 0.297 100.0 516.8 471.1 6883 11581 2633 1341 1084 997 13483 13608 11917 7033 4 0 0.875 1.000 7.3 14.0 16.0 16 0.0 0.0400 0 54 0 0.392 1
106 105 winter 800.0 792.0 281.0 330.7 400.0 122.5 130.0 115.2 2045.3 2 101 2.9 1.4 0.107 0.171 100.0 585.2 359.0 7560 9538 3768 3315 1964 3148 13449 13544 9259 5015 4 0 0.813 0.950 3.1 5.6 16.0 16 0.0 0.0400 0.0267 0 16 0 0.404 1
107 106 winter 827.2 799.6 281.0 171.1 400.0 120.1 120.0 27.7 220.9 0 1 0.0 4.4 0.101 0.110 100.0 583.5 553.3 3232 11281 2478 2818 956 4824 12403 15277 16931 1800 4 0 0.775 0.875 5.2 0.1 16.0 16 0.0 0.0400 0.0369 0 36 0 0.409 0
108 107 winter 853.6 771.5 281.0 150.9 400.0 120.0 22.7 96.3 0 1 0.0 3.5 0.095 0.133 100.0 579.9 536.8 2971 6108 1968 2453 984 1485 12370 12721 17707 11793 4 0 0.738 0.775 3.7 0.0 16.0 16 0.0 0.0400 0.0369 0 0 0.407 1
109 108 winter 878.8 803.5 281.0 128.8 400.0 120.0 22.8 38.1 0 1 0.0 3.8 0.089 0.128 100.0 572.6 514.7 2575 5837 1783 2024 985 1764 12396 12603 18261 12332 4 0 0.700 0.675 6.6 0.0 16.0 16 0.0 0.0400 0.0235 0 0 0.407 1
110 109 winter 906.8 772.8 281.0 128.8 400.0 120.0 20.0 78.8 0 1 0.0 3.9 0.091 0.106 100.0 566.1 514.9 2500 6128 1919 1703 982 1500 12413 13087 18186 13582 4 0 0.650 0.575 5.7 0.0 16.0 16 0.0 0.0400 0.0241 0 2 0 0.426 0
111 110 winter 914.0 761.2 380.0 126.8 400.0 120.0 40.8 61.6 1 0 0.1 4.5 0.102 0.077 100.0 408.8 556.4 2545 6292 2786 1746 2971 741 12403 13069 15295 14152 4 0 0.600 0.475 7.1 0.0 16.0 16 0.0 0.0400 0.0265 0 4 0 0.426 0
112 111 winter 803.9 762.8 380.0 126.8 400.0 120.0 158.1 46.4 7 0 2.9 3.6 0.096 0.063 100.0 446.8 545.5 10696 5424 2439 1773 2653 784 14419 12951 5793 15068 4 0 0.525 0.412 1.0 0.6 16.0 16 0.0 0.0400 0.0265 0 0 0.428 0
113 112 winter 796.3 790.8 364.0 126.8 400.0 120.0 71.6 20.0 0 2.2 4.6 0.090 0.060 100.0 472.6 543.0 10399 5777 1388 1764 456 766 13977 12920 9780 14773 3 4 1 0 0.617 0.312 0.3 0.0 12.0 16.0 12 16 0.0 0.0400 0.0265 0 0 0.428 0
114 113 winter 801.1 791.6 364.0 126.8 400.0 120.0 43.2 47.2 0 5.4 3.6 0.092 0.066 100.0 467.4 536.0 8787 5334 1099 2513 587 746 13571 12951 11956 14456 3 4 1 0 0.517 0.250 0.0 0.8 12.0 16.0 12 16 0.0 0.0400 0.0265 0 0 0.429 0
115 114 winter 798.2 801.4 364.0 126.8 400.0 120.0 50.9 38.2 0 7.2 4.2 0.078 0.046 100.0 485.6 553.0 8753 5819 1124 2233 582 745 13620 12926 11921 14277 2 3 2 1 0.650 0.200 0.0 8.0 12.0 8 12 0.0 0.0400 0.0265 0 0 0.430 0
116 115 winter 763.6 807.8 260.0 126.8 400.0 120.0 3553.6 41.6 188 0 7.2 3.6 0.022 0.020 100.0 344.3 547.3 15219 5539 492 2129 204 759 14349 12926 5736 14647 2 2 0.550 0.150 0.0 8.0 8 0.0 0.0400 0.0265 0 0 0.430 0
117 116 winter 773.2 806.5 26.0 126.8 400.0 120.0 430.4 49.2 2 0 11.5 4.5 0.000 0.002 100.0 464.9 572.0 16737 5585 44 2025 838 768 15448 12918 2933 14704 2 1 2 3 0.450 0.100 0.0 8.0 4.0 8 4 0.0 0.0400 0.0275 0 0 0.439 0
118 117 winter 787.8 741.3 0.0 80.0 302.5 400.0 120.0 291.4 240.0 9 0 12.3 8.9 0.000 100.0 448.2 472.8 17484 12976 52 2326 13 1681 15534 15199 2917 3818 2 1 2 3 0.350 0.150 0.0 1.5 8.0 4.0 8 4 0.0 0.0400 0.0275 0 0 0.444 0
119 118 winter 764.0 761.3 0.0 223.0 333.7 120.0 155.8 3413.6 0 174 11.2 4.3 0.000 0.040 100.0 492.8 395.2 17727 11399 0 2081 0 1548 15564 13015 2709 6517 2 1 2 3 0.250 0.050 0.0 8.0 4.0 8 4 0.0 0.0400 0.0275 0 0 0.460 1
120 119 winter 768.4 760.9 0.0 190.0 192.6 120.0 81.6 194.6 0 2 4.4 3.7 0.000 0.026 100.0 501.9 506.0 16801 12209 0 1684 0 709 15503 14080 3696 7318 2 0 2 4 0.150 0.000 0.0 8.0 0.0 8 0 0.0 0.0400 0.0275 0 0 1 0.477 0
121 120 spring 866.2 863.0 0.0 193.0 181.3 360.0 48.2 174.6 0 1 7.2 5.2 0.000 0.012 100.0 500.5 463.1 11836 11765 0 921 0 766 13620 13863 10544 8685 1 0 3 4 0.100 0.000 0.0 4.0 0.0 4 0 0.0 0.0400 0.0275 0 0 1 0.489 0
122 121 spring 936.7 885.0 0.0 198.0 182.2 600.0 73.5 126.0 0 16.0 6.5 0.000 100.0 501.6 508.0 17742 12640 0 202 0 242 15549 13620 2709 9296 0 4 0.000 0.0 0.0 0 0.0 0.0400 0.0275 0 0 2 0.492 0
123 122 spring 1080.7 961.5 50.0 0.0 195.5 187.2 618.0 614.0 223.5 286.5 3 6 12.7 6.9 0.619 0.664 100.0 468.2 492.4 16494 12372 827 3235 5 786 15483 14610 3191 3557 0 2 4 0.000 1.000 0.0 15.5 0.0 4.5 0 1 0.0 0.0400 0.0275 0 1 0 0.473 1
124 123 spring 1166.5 1080.8 17.0 0.0 190.5 192.2 655.0 622.3 295.2 236.3 0 24 5.2 3.3 0.791 0.760 100.0 479.4 527.6 12730 6563 3935 3821 117 1354 15271 12696 3947 10126 1 2 4 1.000 7.5 14.5 2.5 5.5 1 3 47.0 0.0 0.0400 0.0275 0 0 0.464 1
125 124 spring 1267.8 1167.1 0.0 195.5 172.0 636.0 743.9 303.7 144.6 1 5 5.4 2.4 0.703 0.730 100.0 509.1 501.6 9573 7346 2984 2481 10 205 13983 12680 9450 11848 2 4 1.000 15.4 12.5 4.5 7.5 1 7 63.9 0.0 0.0400 0.0275 0 0 1 0.456 1
126 125 spring 1411.8 1188.1 0.0 200.5 168.5 640.0 570.5 228.0 544.8 0 2 7.3 6.4 0.765 0.702 100.0 524.2 482.0 9434 14540 1672 2699 0 403 13774 15041 11120 3317 2 3 4 1.000 10.9 16.0 4.5 10.0 1 8 91.9 0.0 0.0400 0.0275 0 0 1 0.465 0
127 126 spring 1425.5 1300.0 0.0 205.5 173.5 595.0 563.0 413.3 279.6 0 1 8.2 11.8 0.747 0.720 100.0 496.0 445.2 12968 15127 3751 906 121 61 15248 14520 3912 3946 3 4 1.000 0.967 21.0 13.0 9.0 11.0 6 10 144.8 0.0 0.0400 0.0275 0 0 1 0.445 1
128 127 spring 1514.8 1387.5 0.0 210.5 178.5 614.0 576.4 244.6 283.2 0 4.3 13.5 0.659 0.652 100.0 563.1 490.5 9582 17236 4500 585 0 14161 15374 7757 2805 3 4 1.000 0.933 20.0 12.0 10.0 12.0 8 12 150.0 0.0 0.0400 0.0275 0 0 2 0.449 0
129 128 spring 1540.7 1374.8 0.0 180.0 183.5 726.0 579.0 181.0 373.5 2 1 1.0 7.4 0.791 0.744 100.0 540.0 481.3 7464 16469 3386 0 32 0 13505 14987 11613 4544 3 4 1.000 0.900 17.4 4.0 10.5 12.0 9 12 150.0 0.0 0.0400 0.0275 0 1 2 0.457 0
130 129 spring 1505.7 1408.5 47.0 28.4 177.0 171.0 668.0 590.8 374.1 305.5 0 5.0 6.9 0.703 0.726 100.0 462.8 471.8 12151 15917 4284 860 0 121 15084 15226 4481 3876 3 4 1.000 0.850 18.0 6.0 12.0 12 211.8 0.0 0.0400 0.0275 0 1 0.476 0
131 130 spring 1570.0 1495.0 10.0 28.4 179.5 176.0 631.0 614.8 294.5 205.0 0 9.7 11.3 0.765 0.728 100.0 466.1 486.1 16194 15488 1406 1027 0 15371 15069 3029 4416 3 4 1.000 0.800 14.0 6.0 12.0 12 300.0 59.7 0.0400 0.0275 0 2 1 0.481 0
132 131 spring 1622.9 1575.2 0.0 28.4 176.0 181.0 647.0 637.3 218.5 169.3 0 13.8 12.3 0.747 0.740 100.0 426.7 482.4 16908 15546 818 1454 0 15485 15221 2789 3779 3 4 0.967 0.750 4.0 6.0 12.0 12 300.0 136.6 0.0400 0.0275 0 2 1 0.484 0
133 132 spring 1670.7 1594.4 0.0 28.4 178.5 175.5 666.0 643.8 220.5 243.0 0 13.0 10.7 0.659 0.662 100.0 465.2 479.9 17727 15750 0 1708 0 15564 15381 2709 3161 3 4 0.867 0.700 0.0 6.0 12.0 12 300.0 174.7 0.0400 0.0275 0 2 1 0.489 0
134 133 spring 1714.3 1669.9 0.0 28.4 168.5 180.5 610.0 632.0 311.0 197.8 0 8.4 12.4 0.791 0.684 100.0 467.5 493.5 17792 15838 0 1468 0 15499 15197 2709 3497 3 4 0.767 0.650 0.0 6.0 12.0 12 300.0 264.1 0.0400 0.0275 0 2 1 0.492 0
135 134 spring 1757.5 1715.6 0.0 173.5 170.5 608.0 648.0 242.0 218.9 0 14.6 10.2 0.703 0.681 100.0 475.3 475.9 17784 15895 0 1182 0 15507 15030 2709 3893 3 4 0.667 0.600 0.0 6.0 12.0 12 300.0 0.0400 0.0275 0 2 0.496 0
136 135 spring 1792.0 1743.3 0.0 178.5 172.5 596.0 586.9 216.0 292.0 0 15.2 15.7 0.765 0.713 100.0 458.2 451.0 17830 17632 0 200 0 15461 15443 2709 2725 3 4 0.567 0.533 0.0 2.0 12.0 12 300.0 0.0400 0.0275 0 2 0.500 0
137 136 spring 1800.0 1721.7 0.0 176.0 177.5 612.0 584.1 195.5 287.3 0 12.9 15.9 0.747 0.755 100.0 455.4 476.2 17692 17811 89 0 0 15494 15480 2725 2709 3 4 0.467 0.433 0.0 12.0 12 300.0 0.0400 0.0275 0 2 0.503 0
138 137 spring 1800.0 1743.3 0.0 178.5 175.0 622.0 599.6 226.5 230.1 0 9.8 15.5 0.659 0.697 100.0 459.8 479.7 17768 17693 0 129 0 15523 15453 2709 2725 3 4 0.367 0.333 0.0 12.0 12 300.0 0.0400 0.0275 0 2 0.506 0
139 138 spring 1771.2 1764.9 0.0 168.5 180.0 636.0 643.5 265.0 175.4 0 8.1 15.9 0.791 0.739 100.0 478.8 464.2 17509 17866 259 0 0 15491 15425 2741 2709 3 1 4 6 0.267 0.700 0.0 12.0 4.0 12 4 300.0 0.0400 0.0275 0 2 0.509 0
140 139 spring 1730.0 1780.8 36.0 0.0 173.5 170.0 620.0 623.6 288.0 272.1 0 6.7 16.3 0.703 0.721 100.0 516.4 484.4 12613 17775 3817 0 0 14973 15516 4597 2709 3 1 4 6 0.267 0.600 8.0 0.0 12.0 4.0 12 4 332.1 300.0 0.0400 0.0275 0 1 2 0.512 0
141 140 spring 1720.4 1718.9 42.0 18.0 178.5 172.5 618.0 649.6 240.8 286.5 0 7.5 12.3 0.764 0.733 100.0 466.4 513.0 12497 15515 2921 1429 0 14813 15079 5769 3977 2 1 5 6 0.400 0.650 12.0 6.0 8.0 4.0 8 4 394.0 305.2 0.0400 0.0275 0 1 0.515 0
142 141 spring 1739.6 1739.3 14.0 18.0 176.0 177.5 646.0 595.8 217.5 284.9 0 10.9 9.7 0.746 0.755 100.0 442.2 493.8 15962 14493 1558 1955 0 15499 15164 2981 4388 2 1 5 6 0.450 0.700 12.0 6.0 8.0 4.0 8 4 450.0 424.6 0.0400 0.0275 0 2 1 0.519 0
143 142 spring 1755.2 1737.6 14.0 25.0 178.5 182.5 574.0 636.7 308.5 217.1 0 16.0 8.7 0.658 0.697 100.0 439.8 547.1 17681 14374 79 678 0 15515 14592 2725 6356 2 1 5 6 0.500 0.750 4.0 6.0 8.0 4.0 8 4 450.0 0.0400 0.0275 0 2 1 0.522 0
144 143 spring 1769.6 1631.8 14.0 16.8 168.5 187.5 658.0 645.8 165.0 371.2 0 14.1 8.7 0.790 0.739 100.0 463.6 533.8 17484 12444 273 1794 0 15502 14105 2741 7657 2 5 6 0.400 0.900 0.0 12.0 8.0 8 450.0 0.0400 0.0275 0 2 1 0.527 0
145 144 spring 1782.0 1659.1 14.0 16.8 173.5 192.5 596.0 643.3 296.0 224.6 0 15.8 8.7 0.702 0.721 100.0 476.9 529.0 17734 10605 0 521 0 15557 13944 2709 10930 2 5 6 0.300 0.925 0.0 12.0 8.0 8 450.0 0.0400 0.0275 0 2 1 0.529 0
146 145 spring 1791.6 1681.2 14.0 16.8 178.5 197.5 668.0 702.7 132.0 131.3 0 14.6 8.7 0.774 0.733 100.0 453.2 527.7 17804 10521 0 526 0 15487 13944 2709 11009 2 5 6 0.200 0.950 0.0 12.0 8.0 8 450.0 0.0400 0.0275 0 2 1 0.531 0
147 146 spring 1728.0 1703.3 30.0 16.8 176.0 195.0 674.0 686.5 221.5 188.9 0 11.3 8.0 0.746 0.755 100.0 461.6 524.5 16438 10505 1249 525 0 15424 13944 2889 11026 2 5 6 0.250 0.975 12.0 8.0 8 469.6 450.0 0.0400 0.0275 0 1 0.533 0
148 147 spring 1718.8 1719.2 30.0 16.8 181.0 200.0 620.0 635.4 270.0 272.0 0 9.8 8.0 0.658 0.697 100.0 488.8 535.6 13552 10446 2225 531 0 14841 13944 5382 11079 2 5 6 0.300 1.000 12.0 8.0 8 575.5 450.0 0.0400 0.0275 0 1 0.537 0
149 148 spring 1714.4 1735.7 30.0 16.8 186.0 190.0 678.0 702.1 192.4 165.3 0 8.7 6.8 0.790 0.739 100.0 514.9 533.3 11419 9819 784 1085 0 121 13944 13843 9853 11132 2 5 6 0.350 1.000 12.0 8.0 8 600.0 450.0 0.0400 0.0275 0 1 0.540 0
150 149 spring 1730.0 1746.9 30.0 16.8 191.0 192.5 728.0 629.3 142.0 307.2 0 1 8.7 6.6 0.702 0.721 100.0 508.8 537.8 10575 10384 528 622 0 14 13868 13874 11029 11106 2 5 6 0.400 1.000 12.0 8.0 8 600.0 450.0 0.0400 0.0275 0 1 0.546 0
151 150 summer 1606.0 1752.9 18.0 16.8 196.0 197.5 644.0 622.5 362.0 172.6 0 7.9 8.0 0.774 0.735 100.0 512.3 534.2 13536 9757 1453 523 0 14344 13302 6667 10978 3 2 5 6 0.633 1.000 18.0 12.0 12.0 8.0 12 8 600.0 450.0 0.0400 0.0275 0 1 0.521 1
152 151 summer 1626.0 1755.9 18.0 16.8 198.5 195.0 634.0 555.1 164.5 236.4 0 8.7 4.8 0.746 0.757 100.0 543.7 527.3 10848 10547 505 524 0 13944 13900 10703 11029 3 2 5 6 0.667 1.000 18.0 12.0 12.0 8.0 12 8 600.0 450.0 0.0400 0.0275 0 1 0.524 0
153 152 summer 1642.0 1758.9 18.0 16.8 188.5 200.0 682.0 570.1 99.0 152.0 0 7.6 8.7 0.658 0.707 100.0 536.2 501.7 10361 10635 759 462 0 13944 13464 10936 9999 3 2 5 6 0.700 1.000 18.0 12.0 12.0 8.0 12 8 600.0 450.0 0.0400 0.0275 0 1 0.510 1
154 153 summer 1560.5 1634.4 6.0 16.8 193.5 190.0 657.0 623.9 266.5 283.2 0 1 0.3 1.5 0.790 0.749 100.0 515.4 529.7 8112 9168 3275 2012 0 1 13702 13707 10911 11112 4 3 5 6 0.800 1.000 25.0 20.0 15.0 10.0 14 8 673.9 450.0 0.0400 0.0275 0 0 0.546 0
155 154 summer 1586.5 1661.3 6.0 16.8 198.5 195.0 622.0 624.5 157.0 133.3 0 0.6 4.4 0.702 0.727 100.0 535.9 531.1 7204 7616 3992 3011 0 13650 12899 11154 11034 4 3 5 6 0.825 1.000 24.5 20.0 15.5 10.0 15 8 750.0 505.4 0.0400 0.0275 0 0 0.566 1
156 155 summer 1551.0 1678.5 6.0 16.8 196.0 200.0 651.0 616.5 176.0 136.8 0 4.8 4.4 0.774 0.739 100.0 494.8 543.2 9267 6880 1701 3446 0 13944 13517 11088 12157 4 3 5 6 0.850 1.000 24.0 18.0 16.0 10.0 16 8 750.0 590.1 0.0400 0.0275 0 1 0 0.598 0
157 156 summer 1577.5 1630.0 6.0 0.0 198.5 194.0 564.0 632.3 246.0 199.4 0 1 7.2 4.3 0.746 0.751 100.0 522.6 526.3 10857 8632 540 2329 0 43 13938 13829 10665 11167 4 3 5 6 0.875 1.000 20.0 18.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.630 0
158 157 summer 1607.5 1650.0 6.0 0.0 188.5 199.0 631.0 531.2 114.0 264.2 0 8.5 8.4 0.658 0.703 100.0 514.4 526.4 10833 10493 511 586 0 13899 13944 10757 10977 4 3 5 6 0.875 1.000 18.0 14.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.635 0
159 158 summer 1631.5 1671.0 6.0 0.0 193.5 189.0 634.0 574.2 160.0 131.0 0 1 4.5 6.2 0.790 0.764 100.0 505.9 505.3 10752 9522 560 798 0 15 13917 12759 10771 10026 4 3 5 6 0.875 0.967 18.0 12.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.582 2
160 159 summer 1659.5 1684.6 6.0 0.0 198.5 194.0 651.0 570.1 102.0 170.2 0 2.4 8.6 0.702 0.726 100.0 509.3 526.3 10690 10897 856 502 0 13918 13942 10536 10659 4 3 5 6 0.875 0.933 18.0 12.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.610 0
161 160 summer 1685.5 1704.3 6.0 0.0 196.0 199.0 609.0 606.1 187.5 110.5 0 8.8 8.7 0.774 0.718 100.0 511.0 512.7 10518 10458 764 529 0 13893 13944 10825 11069 4 3 5 6 0.875 0.900 18.0 12.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.612 0
162 161 summer 1693.5 1707.8 6.0 0.0 198.5 194.0 640.0 652.3 123.5 105.0 0 8.7 0.8 0.746 0.760 100.0 529.5 518.7 10945 10270 588 1363 0 13944 13859 10523 10508 4 3 5 6 0.875 0.867 18.0 12.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.614 0
163 162 summer 1705.5 1716.8 6.0 0.0 188.5 199.0 677.0 552.1 111.0 261.2 0 8.7 8.0 0.658 0.721 100.0 521.7 514.8 10391 9871 773 799 0 13914 13302 10922 10588 4 3 5 6 0.850 0.833 18.0 12.0 16.0 12.0 16 12 750.0 600.0 0.0400 0.0275 0 1 0.584 1
164 163 summer 1645.5 1648.8 24.0 57.6 193.5 191.5 629.0 607.7 259.5 204.9 0 0.7 1.9 0.790 0.743 100.0 523.9 505.2 7447 8751 3226 1928 0 13425 13585 11902 11736 4 3 5 6 0.863 0.850 22.0 18.0 16.0 12.0 16 12 864.6 629.9 0.0400 0.0275 0 0 0.600 0
165 164 summer 1659.5 1671.7 0.0 57.6 198.5 196.5 535.0 613.6 286.0 144.8 0 5.4 2.8 0.702 0.725 100.0 530.8 535.6 9753 7460 1724 3418 0 13893 13801 10630 11321 4 3 5 6 0.875 0.867 24.0 18.0 16.0 12.0 16 12 900.0 703.3 0.0400 0.0275 0 1 0 0.608 0
166 165 summer 1669.5 1690.1 0.0 196.0 198.0 618.0 568.7 92.5 255.0 0 8.9 5.4 0.774 0.737 100.0 490.7 516.1 10566 8382 526 2499 0 13902 13731 11006 11388 4 3 5 6 0.888 0.883 20.0 18.0 16.0 12.0 16 12 900.0 750.0 0.0400 0.0275 0 1 0.620 0
167 166 summer 1675.5 1708.0 0.0 198.5 193.0 602.0 611.4 175.5 116.8 0 8.3 8.7 0.746 0.765 100.0 500.1 492.9 10777 10430 822 473 0 13926 13458 10475 10199 4 3 5 6 0.863 0.900 18.0 14.0 16.0 12.0 16 12 900.0 750.0 0.0400 0.0275 0 1 0.591 1
168 167 summer 1689.5 1718.0 0.0 188.5 198.0 621.0 591.8 139.0 188.3 0 8.6 8.7 0.658 0.717 100.0 511.2 521.1 10563 11242 637 480 0 13891 14105 10909 10173 4 3 5 6 0.838 0.867 18.0 12.0 16.0 12.0 16 12 900.0 750.0 0.0400 0.0275 0 1 0.593 0
169 168 summer 1699.5 1732.7 0.0 193.5 190.5 543.0 604.1 246.0 135.3 0 8.7 0.790 0.739 100.0 497.2 519.3 11071 10433 553 633 0 13890 13901 10486 11033 4 3 5 6 0.813 0.833 18.0 12.0 16.0 12.0 16 12 900.0 750.0 0.0400 0.0275 0 1 0.622 0
170 169 summer 1713.5 1746.2 0.0 198.5 195.5 603.0 626.8 106.0 105.5 0 4.8 8.7 0.702 0.737 100.0 504.8 491.7 10909 10437 531 475 0 13911 13464 10649 10184 4 3 5 6 0.788 0.800 18.0 12.0 16.0 12.0 16 12 900.0 750.0 0.0400 0.0275 0 1 0.592 1
171 170 summer 1630.0 1753.2 0.0 196.0 198.0 682.0 562.1 173.0 240.9 0 4.7 0.7 0.774 0.739 100.0 536.5 530.9 10248 10611 1261 729 0 13868 13873 10623 10787 4 3 5 6 0.800 0.767 24.0 12.0 16.0 12.0 16 12 900.0 750.0 0.0400 0.0275 0 0 1 0.622 0
172 171 summer 1628.0 1652.5 14.0 18.8 201.0 193.0 631.0 648.1 197.0 210.7 0 1.9 1.4 0.746 0.751 100.0 540.7 537.5 7036 8552 3587 2641 0 13148 13944 12229 10863 4 3 5 6 0.813 0.783 24.0 17.8 16.0 12.0 16 12 1034.8 750.0 0.0400 0.0275 0 0 0.627 0
173 172 summer 1642.5 1675.4 0.0 47.4 206.0 198.0 600.0 601.3 198.5 201.7 0 3.5 1.5 0.658 0.723 100.0 526.5 550.2 10413 7124 667 3129 0 13932 13620 10988 12127 4 3 5 6 0.825 0.800 24.0 18.0 16.0 12.0 16 12 1050.0 862.4 0.0400 0.0275 0 1 0 0.637 0
174 173 summer 1652.5 1694.1 0.0 19.8 190.5 190.8 589.0 631.3 180.5 145.2 0 7.1 4.0 0.790 0.747 100.0 501.3 481.1 10712 7999 1118 2212 0 13918 13175 10252 11174 4 3 5 6 0.838 0.817 20.0 18.0 16.0 12.0 16 12 1050.0 900.0 0.0400 0.0275 0 1 0.625 1
175 174 summer 1668.5 1710.2 0.0 19.8 195.5 195.8 534.0 523.7 227.0 275.2 0 8.6 8.7 0.702 0.729 100.0 503.8 517.3 11095 10585 559 523 0 13903 13943 10443 10949 4 3 5 6 0.813 0.833 18.0 14.0 16.0 12.0 16 12 1050.0 900.0 0.0400 0.0275 0 1 0.628 0
176 175 summer 1684.5 1725.7 0.0 19.8 193.0 198.3 627.0 568.4 82.5 124.8 0 9.1 4.8 0.774 0.741 100.0 510.6 503.0 10684 10453 620 737 0 13895 13852 10801 10958 4 3 5 6 0.788 0.800 18.0 12.0 16.0 12.0 16 12 1050.0 900.0 0.0400 0.0275 0 1 0.630 0
177 176 summer 1694.5 1738.2 0.0 19.8 195.5 193.3 675.0 604.2 102.5 140.7 0 7.5 8.4 0.746 0.753 100.0 521.4 509.0 10778 10308 565 661 0 13944 10713 11087 4 3 5 6 0.763 0.767 18.0 12.0 16.0 12.0 16 12 1050.0 900.0 0.0400 0.0275 0 1 0.632 0
178 177 summer 1706.5 1752.3 0.0 19.8 200.5 196.0 625.0 586.5 200.0 178.2 0 5.0 8.3 0.658 0.725 100.0 511.5 514.2 10749 10534 582 528 0 13918 13933 10751 11005 3 6 1.000 0.733 18.0 12.0 12.0 12 1050.0 900.0 0.0400 0.0275 0 1 0.637 0
179 178 summer 1711.0 1766.4 0.0 19.8 190.5 191.0 701.0 589.7 85.0 148.8 0 8.7 7.6 0.790 0.737 100.0 514.9 513.0 10649 10692 660 526 0 13944 13881 10747 10901 3 6 1.000 0.700 18.0 12.0 12.0 12 1050.0 900.0 0.0400 0.0275 0 1 0.638 0
180 179 summer 1641.0 1768.8 0.0 19.8 195.5 196.0 665.0 567.9 239.0 169.1 0 0.5 8.7 0.702 0.729 100.0 532.3 499.4 6633 10636 3359 518 0 13354 13944 12654 10902 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1183.6 900.0 0.0400 0.0275 0 0 1 0.640 0
181 180 autumn 1627.5 1767.3 0.0 19.8 200.5 198.5 677.6 595.6 100.5 98.9 0 0.0 8.8 0.774 0.741 100.0 566.4 508.1 3397 10468 1311 534 0 12000 13902 19292 11096 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 900.0 0.0400 0.0275 0 0 1 0.642 0
182 181 autumn 1637.5 1766.3 0.0 19.8 205.5 193.5 699.8 642.8 57.4 87.0 0 0.0 8.7 0.746 0.753 100.0 583.8 521.4 2626 10509 1134 525 0 12000 13944 20240 11022 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 900.0 0.0400 0.0275 0 0 1 0.643 0
183 182 autumn 1651.5 1682.4 0.0 16.0 210.5 196.0 727.0 633.2 30.8 213.4 0 0.0 3.6 0.658 0.725 100.0 580.6 581.6 2036 8867 1151 2027 0 12000 13741 20813 11365 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 917.4 0.0400 0.0275 0 0 0.647 0
184 183 autumn 1640.0 1695.4 0.0 16.0 215.5 191.0 641.4 570.4 198.1 190.3 0 0.0 2.5 0.790 0.737 100.0 574.2 510.4 5844 7305 981 3437 0 12319 13601 16856 11657 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 1050.0 0.0400 0.0275 0 0 1 0.656 0
185 184 autumn 1656.0 1708.4 0.0 16.0 220.5 196.0 680.8 574.1 41.2 113.1 0 0.0 8.6 0.702 0.769 100.0 581.4 458.1 2480 10449 1124 532 0 12000 13464 20396 10115 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 1050.0 0.0400 0.0142 0 0 1 0.629 1
186 185 autumn 1668.0 1705.0 0.0 16.0 225.5 198.5 724.4 533.8 42.8 197.7 0 0.0 8.0 0.774 0.777 100.0 574.2 502.9 2262 10426 1136 702 0 12000 13935 20602 10937 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 1050.0 0.0400 0.0156 0 0 1 0.661 0
187 186 autumn 1682.5 1718.0 0.0 16.0 230.5 193.5 727.6 570.6 54.9 110.9 0 0.0 8.5 0.746 0.784 100.0 589.1 511.1 2909 10585 1098 592 0 12000 13940 19993 10883 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 1050.0 0.0400 0.0157 0 0 1 0.663 0
188 187 autumn 1686.5 1729.0 0.0 16.0 235.5 196.0 648.6 562.2 174.4 148.4 0 0.0 8.7 0.658 0.761 100.0 577.9 526.7 3190 10574 1061 633 0 12319 13944 19430 10849 3 2 6 7 1.000 18.0 12.0 12.0 8.0 12 8 1200.0 1050.0 0.0400 0.0159 0 0 1 0.667 0
189 188 autumn 1696.5 1618.1 0.0 240.5 196.0 680.4 580.2 56.6 259.6 0 0.0 3.1 0.790 0.768 100.0 578.5 522.9 3406 8842 1086 2003 0 12000 13873 19508 11282 3 6 7 1.000 18.0 18.5 12.0 11.5 12 11 1200.0 1065.8 0.0400 0.0159 0 0 0.676 0
190 189 autumn 1702.5 1645.0 0.0 245.5 201.0 725.0 512.7 39.6 192.6 0 0.0 5.3 0.702 0.765 100.0 584.1 514.6 2384 9284 1126 1900 0 12000 13922 20490 10894 3 6 7 1.000 18.0 18.5 12.0 11.5 12 11 1200.0 1142.7 0.0400 0.0160 0 0 0.683 0
191 190 autumn 1710.5 1663.5 0.0 250.5 206.0 639.4 528.2 167.2 108.1 0 0.7 6.4 0.774 0.772 100.0 558.0 481.6 2988 9849 1080 1217 0 12162 13921 19770 11013 3 6 7 1.000 18.0 18.5 12.0 11.5 12 11 1200.0 1185.3 0.0400 0.0160 0 0 0.689 0
192 191 autumn 1713.0 1587.3 0.0 255.5 211.0 519.4 542.4 257.6 224.4 0 1.4 0.7 0.746 0.789 100.0 571.1 572.1 4674 6745 1008 1447 0 12324 12951 17994 14857 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.722 0
193 192 autumn 1709.0 1603.3 0.0 260.5 216.0 495.6 568.0 172.3 120.8 0 0.7 0.0 0.658 0.756 100.0 576.3 586.4 3525 2514 1040 1111 0 12321 12158 19114 20217 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.825 0
194 193 autumn 1713.0 1621.6 0.0 265.5 221.0 545.2 663.1 92.4 44.7 0 0.7 0.0 0.790 0.773 100.0 571.7 585.1 4179 1840 1059 1936 0 12162 12000 18600 20224 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.847 0
195 194 autumn 1719.0 1647.7 0.0 270.5 226.0 566.8 708.1 112.8 52.0 0 0.7 0.0 0.702 0.760 100.0 578.1 594.1 3278 2019 1063 1150 0 12162 12000 19497 20831 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.863 0
196 195 autumn 1727.0 1664.1 0.0 275.5 231.0 511.8 728.3 189.8 41.8 0 2.2 0.0 0.774 0.777 100.0 555.6 589.9 4592 1696 967 1170 0 12486 12000 17955 21134 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.876 0
197 196 autumn 1729.0 1685.6 0.0 280.5 236.0 542.2 722.5 111.6 45.1 0 2.2 0.0 0.746 0.784 100.0 562.9 589.9 4918 2019 978 1151 0 12486 12000 17618 20830 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.880 0
198 197 autumn 1723.5 1696.4 0.0 285.5 241.0 477.8 726.9 211.9 46.8 0 2.9 0.0 0.658 0.761 100.0 558.0 594.7 6863 2059 811 1155 0 12803 12000 15523 20786 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0160 0 0 0.882 0
199 198 autumn 1697.0 1707.4 0.0 290.5 246.0 502.4 726.6 148.4 42.6 0 0.0 0.790 0.768 100.0 566.7 592.3 6495 1774 854 1168 0 12604 12000 16047 21058 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0161 0 0 0.889 0
200 199 autumn 1699.0 1710.2 0.0 295.5 251.0 592.2 727.9 54.2 45.4 0 0.0 0.702 0.765 100.0 586.9 593.6 2940 1957 1137 1156 0 12000 19923 20887 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0161 0 0 0.894 0
201 200 autumn 1703.0 1718.8 0.0 300.5 256.0 697.8 731.8 29.6 34.4 0 0.0 0.774 0.772 100.0 566.5 583.0 1868 1643 1308 1195 0 12000 20824 21162 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0162 0 0 0.896 0
202 201 autumn 1685.0 1721.8 0.0 305.5 261.0 610.2 727.3 222.8 45.3 0 0.0 0.746 0.789 100.0 584.0 582.4 7578 2007 779 1151 0 13044 12000 14599 20842 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0162 0 0 0.897 0
203 202 autumn 1691.0 1723.3 0.0 310.5 266.0 663.8 592.8 34.2 233.4 0 0.0 0.7 0.658 0.756 100.0 584.2 599.5 2154 3281 1142 1063 0 12000 12243 20704 19413 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0163 0 0 0.910 0
204 203 autumn 1685.0 1721.8 0.0 315.5 271.0 619.2 599.0 145.0 98.1 0 0.0 0.7 0.790 0.773 100.0 580.4 586.6 4384 2647 1006 1110 0 12322 12162 18288 20081 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0163 0 0 0.911 0
205 204 autumn 1693.0 1714.4 0.0 320.5 276.0 667.6 617.7 35.2 91.1 0 0.0 0.702 0.760 100.0 581.6 592.8 2206 2213 1137 1252 0 12000 12061 20657 20474 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0165 0 0 0.916 0
206 205 autumn 1703.0 1721.9 0.0 325.5 281.0 716.0 670.8 37.2 41.8 0 0.0 0.773 0.776 100.0 568.8 588.6 2501 1932 1119 1163 0 12000 20380 20905 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0165 0 0 0.921 0
207 206 autumn 1705.5 1723.9 0.0 330.5 286.0 721.8 709.5 59.6 46.5 0 0.0 0.745 0.783 100.0 588.4 590.2 3339 1878 1069 1156 0 12000 19592 20966 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0166 0 0 0.924 0
208 207 autumn 1691.5 1725.4 0.0 335.5 291.0 653.6 724.7 167.4 43.6 0 0.0 0.657 0.760 100.0 582.5 591.8 3373 1805 1050 1161 0 12319 12000 19258 21034 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0166 0 0 0.928 0
209 208 autumn 1693.5 1721.9 0.0 340.5 296.0 684.0 728.2 54.8 46.1 0 0.0 0.789 0.767 100.0 581.3 584.7 2827 1824 1154 1160 0 12000 20019 21016 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0167 0 0 0.931 0
210 209 autumn 1703.5 1722.8 0.0 345.5 301.0 725.2 727.8 36.0 46.3 0 0.0 0.701 0.763 100.0 583.3 586.9 2158 1912 1139 1253 0 12000 20703 20835 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0167 0 0 0.933 0
211 210 winter 1695.9 1715.8 0.0 350.5 306.0 653.0 648.5 37.0 43.1 0 0.0 0.773 0.770 100.0 570.3 585.1 2209 1855 1136 1155 0 12000 20655 20990 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0168 0 0 0.933 0
212 211 winter 1695.1 1706.1 0.0 355.5 311.0 432.1 564.3 196.4 59.8 0 0.7 0.0 0.745 0.786 100.0 581.3 591.0 4879 2454 1005 1126 0 12162 12000 17954 20420 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0169 0 0 0.936 0
213 212 winter 1691.1 1704.7 0.0 360.5 316.0 318.0 380.3 103.0 165.8 0 0.7 0.657 0.753 100.0 578.8 592.7 3614 3433 1045 1054 0 12162 19179 19351 3 6 7 1.000 18.0 12.0 12 1200.0 0.0400 0.0169 0 0 0.939 0
214 213 winter 1516.4 1691.1 0.0 365.5 321.0 283.0 286.9 206.4 95.9 0 0.7 0.0 0.789 0.769 100.0 536.8 588.0 7174 4607 1797 962 0 12729 12552 14300 17879 3 6 7 1.000 18.0 12.0 12 1188.4 1200.0 0.0400 0.0171 0 0 0.944 0
215 214 winter 1263.9 1690.2 0.0 370.5 326.0 263.2 260.6 279.7 16.8 0 1.8 0.0 0.701 0.773 100.0 590.6 558.8 9049 4237 2725 1469 0 12486 11780 11740 17074 3 6 7 1.000 18.0 12.0 12 1050.0 1174.7 0.0400 0.0171 0 0 0.908 1
216 215 winter 1132.3 1682.2 0.0 375.5 331.0 244.8 242.7 165.6 18.0 0 3.0 0.0 0.773 0.780 100.0 490.9 579.7 7498 3214 7390 1134 0 14025 11999 7087 19653 3 6 7 1.000 18.0 12.0 12 1072.3 1126.7 0.0400 0.0172 0 0 0.944 0
217 216 winter 1029.1 1664.7 0.0 380.5 336.0 227.6 224.3 142.4 28.6 0 2.3 0.0 0.745 0.786 100.0 469.1 586.8 10263 2972 5118 1470 0 14021 12000 6598 19558 3 6 7 1.000 18.0 12.0 12 1018.3 1095.7 0.0400 0.0173 0 0 0.948 0
218 217 winter 990.8 1663.8 0.0 385.5 341.0 211.7 209.2 79.1 8.8 0 2.6 0.0 0.657 0.762 100.0 530.2 574.7 11302 2961 1509 1112 0 13701 12000 9488 19927 3 6 7 1.000 18.0 12.0 12 942.3 1074.7 0.0400 0.0173 0 0 0.949 0
219 218 winter 923.7 1642.9 0.0 390.5 346.0 196.9 193.4 112.7 33.4 0 2.1 0.0 0.789 0.776 100.0 542.4 535.4 12250 4171 3647 4159 0 14979 11520 5124 14710 3 6 7 1.000 18.0 12.0 12 869.1 1069.0 0.0400 0.0175 0 0 0.911 1
220 219 winter 955.9 1644.8 0.0 394.0 351.0 183.1 180.7 13.4 7.7 0 3.4 3.3 0.701 0.763 100.0 514.6 527.5 8527 8689 5746 5180 0 12322 12936 9405 9195 3 6 7 1.000 18.0 12.0 12 855.1 1034.8 0.0400 0.0175 0 0 0.925 0
221 220 winter 939.2 1651.2 0.0 397.0 356.0 170.3 167.8 62.3 5.6 0 3.4 1.4 0.773 0.779 100.0 538.3 547.5 9850 9597 4889 5162 0 12877 13216 8384 8025 3 6 7 1.000 18.0 12.0 12 766.6 963.3 0.0400 0.0176 0 0 0.931 0
222 221 winter 895.6 1644.6 0.0 400.0 361.0 158.4 156.7 89.2 17.3 0 2.0 3.1 0.745 0.795 100.0 490.7 548.5 11757 9749 3636 5542 0 13821 13281 6786 7428 3 6 7 1.000 18.0 12.0 12 755.6 914.3 0.0400 0.0177 0 0 0.939 0
223 222 winter 889.2 1649.2 0.0 400.0 366.0 147.3 146.6 52.0 5.7 0 0.5 1.4 0.657 0.761 100.0 496.2 524.3 10134 8976 4091 4270 0 13358 13056 8417 9698 3 6 7 1.000 18.0 12.0 12 738.3 903.3 0.0400 0.0178 0 0 0.943 0
224 223 winter 867.3 1654.8 0.0 400.0 371.0 137.3 137.8 69.9 4.5 0 2.2 1.1 0.789 0.767 100.0 571.6 510.8 10340 9610 4306 5167 0 13384 13194 7970 8029 3 6 7 1.000 18.0 12.0 12 601.9 876.3 0.0400 0.0178 0 0 0.947 0
225 224 winter 895.3 1635.7 0.0 400.0 376.0 129.0 130.0 20.0 29.3 0 1.9 0.7 0.701 0.763 100.0 548.4 503.2 8471 9057 5060 5016 0 12895 12991 9574 8936 3 6 7 1.000 18.0 12.0 12 580.5 863.3 0.0400 0.0179 0 0 0.949 0
226 225 winter 864.9 1615.4 0.0 400.0 381.0 123.5 123.3 78.4 31.3 0 3.8 2.2 0.773 0.779 100.0 498.0 548.5 12033 10192 2624 5061 0 13407 13267 7936 7480 3 6 7 1.000 18.0 12.0 12 564.5 803.3 0.0400 0.0180 0 0 0.951 0
227 226 winter 857.2 1615.0 0.0 400.0 386.0 120.8 120.4 55.7 11.9 0 0.7 0.6 0.745 0.794 100.0 499.3 529.3 12158 9917 3055 5295 0 13596 13446 7191 7342 3 6 7 1.000 18.0 12.0 12 517.3 781.0 0.0400 0.0180 0 0 0.952 0
228 227 winter 892.4 1619.0 0.0 400.0 390.0 120.0 12.8 8.8 0 0.4 0.1 0.657 0.761 100.0 502.2 625.0 13089 9592 3042 5657 0 14328 13395 5541 7356 3 6 7 1.000 18.0 12.0 12 474.0 653.0 0.0400 0.0182 0 0 0.952 0
229 228 winter 922.0 1629.4 0.0 400.0 394.0 120.0 18.4 0.0 0 0.6 1.8 0.789 0.766 100.0 518.7 593.2 12977 8296 2099 6042 0 13576 12717 7348 8945 3 6 7 1.000 18.0 12.0 12 419.9 619.3 0.0400 0.0182 0 0 0.953 0
230 229 winter 968.4 1639.2 0.0 400.0 397.5 120.0 1.6 0.0 0 3.0 3.8 0.701 0.762 100.0 567.3 542.7 9048 8680 5392 6070 0 12047 12765 9513 8485 3 6 7 1.000 18.0 12.0 12 338.9 615.3 0.0400 0.0182 0 0 0.954 0
231 230 winter 993.2 1606.4 0.0 400.0 399.0 120.0 23.2 43.2 0 1.1 0.773 0.778 100.0 490.5 523.8 9420 10154 4159 5319 0 12243 13166 10178 7361 3 6 7 1.000 18.0 12.0 12 388.9 612.3 0.0400 0.0182 0 0 0.955 0
232 231 winter 1015.6 1592.5 0.0 400.0 120.0 25.6 25.1 0 1.8 1.6 0.745 0.793 100.0 496.5 511.1 10095 10480 4211 4396 0 12651 13246 9043 7878 3 6 7 1.000 18.0 12.0 12 331.9 586.8 0.0400 0.0182 0 0 0.955 0
233 232 winter 1039.2 1550.9 0.0 400.0 120.0 24.4 55.2 0 3.0 2.9 0.657 0.760 100.0 496.7 557.3 9476 8925 5182 4309 0 12560 12737 8782 10029 3 6 7 1.000 18.0 12.0 12 284.8 539.8 0.0400 0.0182 0 0 0.956 0
234 233 winter 1085.6 1551.0 0.0 400.0 120.0 1.6 13.5 0 0.5 0.9 0.789 0.765 100.0 506.3 598.9 8506 8166 4989 5788 0 12000 12892 10505 9154 3 6 7 1.000 18.0 12.0 12 210.8 458.0 0.0400 0.0182 0 0 0.957 0
235 234 winter 1090.4 1563.9 0.0 400.0 120.0 43.2 0.0 0 1.4 1.8 0.701 0.771 100.0 559.2 553.9 10474 9720 3375 4123 0 12872 13192 9279 8965 3 6 7 1.000 18.0 12.0 12 119.6 458.0 0.0400 0.0182 0 0 0.957 0
236 235 winter 1123.6 1563.0 0.0 400.0 120.0 14.8 14.5 0 0.9 0.5 0.773 0.777 100.0 498.0 500.4 9922 10355 4162 3474 0 12598 13391 9318 8780 3 6 7 1.000 18.0 12.0 12 124.6 473.0 0.0400 0.0182 0 0 0.958 0
237 236 winter 1155.6 1544.6 0.0 400.0 120.0 16.0 32.0 0 1.6 6.0 0.745 0.792 100.0 542.0 500.3 9947 12884 4386 2372 0 12483 14131 9184 6613 3 6 7 1.000 18.0 12.0 12 56.6 433.0 0.0400 0.0182 0 0 0.958 0
238 237 winter 1185.2 1519.4 0.0 400.0 120.0 18.4 39.7 0 0.9 3.0 0.657 0.759 100.0 479.0 508.3 10452 11578 3794 3413 0 12852 14097 8902 6912 3 6 7 1.000 18.0 12.0 12 104.0 393.4 0.0400 0.0182 0 0 0.959 0
239 238 winter 1221.6 1527.4 0.0 400.0 120.0 11.2 6.4 0 0.7 1.1 0.789 0.764 100.0 507.2 522.7 9386 12352 4197 3010 0 12124 13908 10293 6730 3 6 7 1.000 18.0 12.0 12 31.0 340.4 0.0400 0.0182 0 0 0.959 0
240 239 winter 1268.8 1541.8 0.0 400.0 120.0 0.0 0 0.0 1.7 0.701 0.770 100.0 472.6 486.7 9434 13633 2491 2290 0 12000 14422 12075 5655 3 6 7 1.000 18.0 12.0 12 31.6 331.4 0.0400 0.0182 0 0 0.959 0
241 240 spring 1400.0 1555.6 0.0 400.0 360.0 10.4 29.3 0 0.0 2.1 0.773 0.776 100.0 464.6 495.4 5920 13944 254 1918 0 12000 14428 17826 5710 3 6 7 1.000 18.0 12.0 12 0.0 300.0 0.0400 0.0182 0 0 0.960 0
241 spring 1383.5 0.0 400.0 600.0 140.0 0 0.0 0.735 100.0 459.2 5771 554 0 12197 17478 3 6 1.000 18.0 12.0 12 0.0 0.0400 0 0
242 spring 1351.0 0.0 400.0 578.0 393.6 0 8.0 0.657 100.0 508.7 13594 1898 0 14652 5856 3 6 1.000 18.0 12.0 12 122.6 0.0400 0 0
243 spring 1411.4 0.0 400.0 618.0 213.2 0 5.8 0.789 100.0 514.9 13156 1952 0 14572 6320 3 6 1.000 18.0 12.0 12 223.6 0.0400 0 0
244 spring 1488.3 0.0 400.0 594.0 244.4 0 6.2 0.701 100.0 523.3 12314 2925 0 14563 6198 3 6 1.000 18.0 12.0 12 425.6 0.0400 0 0
245 spring 1551.5 0.0 400.0 575.0 275.0 0 1.4 0.773 100.0 511.8 10445 3673 0 14478 7404 3 6 1.000 18.0 12.0 12 662.1 0.0400 0 0
246 spring 1584.3 0.0 400.0 582.0 279.4 0 1.5 0.745 100.0 500.6 11315 3018 0 14337 7330 3 6 1.000 18.0 12.0 12 832.2 0.0400 0 0
247 spring 1647.1 0.0 400.0 613.0 217.2 0 2.2 0.657 100.0 568.9 11039 3165 0 14483 7313 3 6 1.000 18.0 12.0 12 947.0 0.0400 0 0
248 spring 1689.1 0.0 400.0 612.0 250.2 0 3.0 0.789 100.0 534.0 9078 1662 0 13592 11668 3 6 1.000 18.0 12.0 12 1035.1 0.0400 0 0
249 spring 1715.2 0.0 400.0 646.0 188.2 0 2.2 0.701 100.0 547.6 9036 2081 0 13575 11308 3 6 1.000 18.0 12.0 12 1105.0 0.0400 0 0
250 spring 1701.2 0.0 400.0 710.0 168.2 0 0.0 0.773 100.0 570.8 4816 2310 0 12324 16550 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
251 spring 1711.2 0.0 400.0 772.0 57.2 0 0.0 0.745 100.0 588.0 2662 1107 0 12000 20231 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
252 spring 1720.0 0.0 400.0 708.0 207.6 0 0.7 0.657 100.0 579.5 2779 1098 0 12162 19961 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
253 spring 1730.4 0.0 400.0 644.0 272.4 0 1.4 0.789 100.0 553.1 4310 1061 0 12324 18305 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
254 spring 1716.8 0.0 400.0 615.0 291.8 0 0.7 0.701 100.0 578.0 5295 911 0 12640 17154 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
255 spring 1722.0 0.0 400.0 700.0 147.0 0 0.7 0.773 100.0 563.9 2593 1105 0 12162 20140 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
256 spring 1727.2 0.0 400.0 706.0 188.8 0 0.7 0.745 100.0 581.0 3336 1097 0 12162 19405 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
257 spring 1708.6 0.0 400.0 701.0 228.8 0 0.1 0.657 100.0 586.9 4246 987 0 12476 18291 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
258 spring 1715.4 0.0 400.0 773.0 52.2 0 0.0 0.789 100.0 583.1 2456 1200 0 12000 20344 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
259 spring 1719.8 0.0 400.0 780.0 34.6 0 0.0 0.701 100.0 583.7 2026 1157 0 12000 20817 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
260 spring 1721.4 0.0 400.0 788.0 35.8 0 0.0 0.773 100.0 569.5 2063 1146 0 12000 20791 3 6 1.000 18.0 12.0 12 1200.0 0.0400 0 0
+2 -2
View File
@@ -6,10 +6,10 @@ uid="uid://da6vou2v16yvt"
[deps] [deps]
files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation"] files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation", "res://soak_stats.avg.translation", "res://soak_stats.deaths.translation"]
source_file="res://soak_stats.csv" source_file="res://soak_stats.csv"
dest_files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation"] dest_files=["res://soak_stats.season.translation", "res://soak_stats.wood.translation", "res://soak_stats.stone.translation", "res://soak_stats.clay.translation", "res://soak_stats.food.translation", "res://soak_stats.harvested.translation", "res://soak_stats.trades.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.avg.translation", "res://soak_stats.carried.translation", "res://soak_stats.gather.translation", "res://soak_stats.build.translation", "res://soak_stats.trade.translation", "res://soak_stats.rest.translation", "res://soak_stats.social.translation", "res://soak_stats.shelters.translation", "res://soak_stats.ruins.translation", "res://soak_stats.avg.translation", "res://soak_stats.upkeep.translation", "res://soak_stats.burn.translation", "res://soak_stats.modules.translation", "res://soak_stats.granary.translation", "res://soak_stats.avg.translation", "res://soak_stats.refusals.translation", "res://soak_stats.incomplete.translation", "res://soak_stats.avg.translation", "res://soak_stats.deaths.translation"]
[params] [params]