Expansion phase: settlements — the North joins the world

Runs 5-6 logged in FINDINGS.md (soul layer validated: nature debris
0.000 vs selfish 0.225 after two years; the ledger works).

Towns are now real spatial structure: TownDef seeds (South at the
bottom of the map, North at the top), NPCs affiliate with a home town,
communal duty serves your own settlement (buildings are town-tagged,
founding uses the town centroid and per-town shelter caps), and each
town raises its own shelters and granary. Generational (North) soul
profile added — temperament only until the knowledge system lands.
Map shows town labels; rosters and CSVs carry town columns.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-21 14:02:59 -04:00
parent 8aab1a763b
commit 3f2c5e2f18
11 changed files with 4124 additions and 6541 deletions
+55 -8
View File
@@ -95,13 +95,60 @@ East.
---
## Run 5 — The soul layer, uncalibrated: everyone a sinner
**Setup:** warmth echoes (memory replaces omniscience), refusal debris,
commons-line harvest debris, soul-to-soul atmospheric pressure, debris
metabolic tax (faster drain, weaker meals).
**Result:** justice arrived — all 108 refusals belonged to the selfish
three, whose health collapsed to 3164 while nature souls held 100 (the
selfish never rest, so they have no healing loop — laziness blocking
recovery is fully emergent). But two pathologies: (1) the whole village
ratcheted to maxed others-regard debris, because the 50% commons penalty
line sat above the nature souls' own 45% harvest floor and debris had no
clearing path — harm without healing; (2) warmth-weighted asking plus
near-total gift transfers produced a 2,501-gift winter food-swapping
loop, and the universal debris tax turned the hungry gap into famine
(village nourishment 0.00).
**Lesson:** a moral system needs calibrated innocence and a redemption
path, or it converges to universal guilt and reads as noise.
## Run 6 — The soul layer, calibrated: the ledger works
**Setup:** commons line lowered to 40% (below any respectful floor);
gifts capped (keep 5, give ≤3, ask only when genuinely hungry); giving
heals the giver (0.003 others-regard vs +0.02 per refusal — harm ~7×
easier than healing).
**Result — the design document, in numbers:**
- **Nature souls: debris 0.000 after two years.** The innocent are
innocent.
- **Selfish souls: 0.225 and climbing.** The debris gap is total and
driven entirely by how each soul lives.
- Gift ping-pong dead (2 gifts); the contact log is 18 refusals — in the
hungry gap the only villagers with surplus are the hoarders, so the
starving ask them, are refused, and learn. The village's warmth map is
a map of learned coldness pointing at three names.
- Material consequences within one lifetime are mild — the selfish stay
comfortable. **The sim's justice is written in the souls, not the
outcomes.** That is correct: in the full game, the ledger cashes out
at death (heavy debris carries forward; the rebirth verdict; the grave
nobody tends). The sim now produces exactly the input reincarnation
consumes.
---
## Next
1. **Port the soul layer into the sim**: imprint triad accumulation,
social memory of gifts/refusals, consequences routed through behavior
(the generous get helped first; the ungenerous get asked last, served
last, remembered coldly). Rerun the contrast test; see if the village
organically stops carrying its parasites.
2. Instrumentation gap: per-villager nourishment/health in
`soak_npc_days.csv` (currently the village average hides who starves).
3. Save/load round-trip (SPEC §9 amendment) — still outstanding.
Soul layer: done and validated (runs 56). The expansion phase begins:
1. **Towns as spatial structure**: multiple settlements with their own
centroids, buildings, and granaries; NPCs affiliated with a home town
but free to roam — the blend space between towns becomes real.
2. **The North (Generational) town**: second settlement; its signature
knowledge/teaching system (SPEC §5) is the largest unbuilt spec piece.
3. Inter-town contact and trade routes (Phase 3); object-level soul
residue traveling with traded goods.
4. Save/load round-trip (SPEC §9 amendment) — still outstanding.
+3
View File
@@ -21,6 +21,9 @@ public class Building
public BuildingKind Kind = BuildingKind.Shelter;
public Vector2 Site;
/// <summary>Which settlement this building belongs to.</summary>
public string Town = "";
public static Building NewShelter(Vector2 site) => new()
{
Kind = BuildingKind.Shelter,
+72 -14
View File
@@ -13,10 +13,25 @@ public partial class GameManager : Node2D
public static GameManager? Instance { get; private set; }
[Export] public int Seed = 12345;
[Export] public int NpcCount = 15;
// --- Settlements ------------------------------------------------------
// Expansion phase: multiple towns, each a soul culture with its own
// centroid, buildings, and granary. NPCs affiliate with a home town
// but roam freely — the space between towns is where cultures meet.
[Export] public int SouthPopulation = 12; // nature souls
[Export(PropertyHint.Range, "0,15,1")]
public int SelfishCount = 3; // the contrast test (SPEC §11 amendment)
public int SelfishCount = 3; // east souls living in the South
[Export] public int NorthPopulation = 10; // generational souls
public record TownDef(string Name, Vector2 Center, SoulType Soul);
public IReadOnlyList<TownDef> Towns => _towns;
private readonly List<TownDef> _towns = new()
{
new("South", new Vector2(128f, 190f), SoulType.Nature),
new("North", new Vector2(128f, 62f), SoulType.Generational),
};
[Export(PropertyHint.Range, "1,2000,1")]
public float TicksPerRealSecond = 20f; // sim speed; ~1500 ≈ one day/sec for soaks
@@ -68,22 +83,65 @@ public partial class GameManager : Node2D
private void SpawnNpcs()
{
// Dropped near the map center with scatter — no scripted town layout.
// Where the community forms is the experiment (SPEC §11).
// Dropped near their town's seed point with scatter — no scripted
// layout. Where each community actually forms is the experiment.
var rng = new System.Random(Seed);
for (int i = 0; i < NpcCount; i++)
void Spawn(string town, Vector2 center, SoulProfile soul, int count, string prefix)
{
bool selfish = i >= NpcCount - SelfishCount;
Npcs.Add(new Npc
for (int i = 0; i < count; i++)
{
Name = $"Villager_{(char)('A' + i)}",
Soul = selfish ? SoulProfile.SelfishSoul() : SoulProfile.NatureSoul(),
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
Position = new Vector2(
World.GridSize / 2f + rng.Next(-20, 21),
World.GridSize / 2f + rng.Next(-20, 21)),
});
Npcs.Add(new Npc
{
Name = $"{prefix}_{(char)('A' + Npcs.Count % 26)}{(Npcs.Count >= 26 ? Npcs.Count.ToString() : "")}",
HomeTown = town,
Soul = soul,
PersonalityModifier = (float)(rng.NextDouble() * 0.4 - 0.2),
Position = center + new Vector2(rng.Next(-12, 13), rng.Next(-12, 13)),
});
}
}
foreach (var town in _towns)
{
if (town.Name == "South")
{
Spawn(town.Name, town.Center, SoulProfile.NatureSoul(), SouthPopulation, "South");
for (int i = 0; i < SelfishCount; i++)
Spawn(town.Name, town.Center, SoulProfile.SelfishSoul(), 1, "South");
}
else if (town.Name == "North")
{
Spawn(town.Name, town.Center, SoulProfile.GenerationalSoul(), NorthPopulation, "North");
}
}
}
public int TownPopulation(string town)
{
int count = 0;
foreach (var npc in Npcs)
if (npc.HomeTown == town) count++;
return count;
}
public Vector2 TownCentroid(string town)
{
Vector2 sum = Vector2.Zero;
int count = 0;
foreach (var npc in Npcs)
{
if (npc.HomeTown != town) continue;
sum += npc.Position;
count++;
}
if (count == 0)
{
foreach (var t in _towns)
if (t.Name == town) return t.Center;
return new Vector2(World.GridSize / 2f, World.GridSize / 2f);
}
return sum / count;
}
public override void _Process(double delta)
+26 -15
View File
@@ -22,6 +22,7 @@ public class Npc
{
// --- Identity & soul -------------------------------------------------
public string Name = "";
public string HomeTown = ""; // settlement affiliation — home, not a cage
public SoulProfile Soul = SoulProfile.NatureSoul();
public SoulImprint Imprint = new(); // triad — see SPEC §2 amendment
public float PersonalityModifier; // per-NPC variance within a soul type
@@ -193,24 +194,28 @@ public class Npc
if (IsCommunal)
{
// Communal duty is to your own settlement — you heat your own
// town's hearths. (Helping a neighbor town is a later, deliberate
// system, not an accident of the work queue.)
// 2. Construction sites.
foreach (var b in gm.Buildings)
if (!b.IsComplete && b.NeededMaterial is MaterialKind needed)
if (b.Town == HomeTown && !b.IsComplete && b.NeededMaterial is MaterialKind needed)
return needed;
// 3. Firewood for shelters running low.
foreach (var b in gm.Buildings)
if (b.WantsUpkeepWood)
if (b.Town == HomeTown && b.WantsUpkeepWood)
return MaterialKind.Wood;
// 4. Winter insurance: stock the granary while the land still gives.
foreach (var b in gm.Buildings)
if (b.WantsFood)
if (b.Town == HomeTown && b.WantsFood)
return MaterialKind.Food;
// 5. Ambition: expansion modules for sound, stocked shelters.
foreach (var b in gm.Buildings)
if (b.WantsExpansion)
if (b.Town == HomeTown && b.WantsExpansion)
return MaterialKind.Wood;
}
@@ -381,12 +386,13 @@ public class Npc
// shelters and eat from the granary — freeriding is the whole point.
if (!IsCommunal) { Enter(NpcState.Socializing); return; }
// Priority 1: construction sites. Priority 2: shelters low on firewood.
// Serve your own settlement's buildings, nearest first:
// construction → firewood → granary deposits → expansion.
Building? site = null;
float bestDist = float.MaxValue;
foreach (var b in gm.Buildings)
{
if (b.IsComplete) continue;
if (b.Town != HomeTown || b.IsComplete) continue;
float d = Position.DistanceSquaredTo(b.Site);
if (d < bestDist) { bestDist = d; site = b; }
}
@@ -394,7 +400,7 @@ public class Npc
{
foreach (var b in gm.Buildings)
{
if (!b.WantsUpkeepWood) continue;
if (b.Town != HomeTown || !b.WantsUpkeepWood) continue;
float d = Position.DistanceSquaredTo(b.Site);
if (d < bestDist) { bestDist = d; site = b; }
}
@@ -407,7 +413,7 @@ public class Npc
{
foreach (var b in gm.Buildings)
{
if (!b.WantsFood) continue;
if (b.Town != HomeTown || !b.WantsFood) continue;
float d = Position.DistanceSquaredTo(b.Site);
if (d < bestDist) { bestDist = d; site = b; }
}
@@ -417,7 +423,7 @@ public class Npc
{
foreach (var b in gm.Buildings)
{
if (!b.WantsExpansion) continue;
if (b.Town != HomeTown || !b.WantsExpansion) continue;
float d = Position.DistanceSquaredTo(b.Site);
if (d < bestDist) { bestDist = d; site = b; }
}
@@ -425,26 +431,31 @@ public class Npc
if (site == null)
{
// Communal-first founding, near where the community actually
// gathers. Shelters first; once the village stands, the granary.
// Communal-first founding, near where this settlement's people
// actually gather. Shelters first; once the village stands, the
// granary.
bool carriesStone = Inventory.TryGetValue(MaterialKind.Stone, out float stone) && stone > 0f;
int shelters = 0;
bool granaryExists = false;
foreach (var b in gm.Buildings)
{
if (b.Town != HomeTown) continue;
if (b.Kind == BuildingKind.Granary) granaryExists = true;
else shelters++;
}
int shelterCap = gm.TownPopulation(HomeTown) / 3;
var jitter = new Vector2(PersonalityModifier * 25f, -PersonalityModifier * 25f);
if (shelters < gm.NpcCount / 3 && carriesStone)
if (shelters < shelterCap && carriesStone)
{
site = Building.NewShelter(gm.CommunityCentroid() + jitter);
site = Building.NewShelter(gm.TownCentroid(HomeTown) + jitter);
site.Town = HomeTown;
gm.Buildings.Add(site);
}
else if (!granaryExists && shelters >= gm.NpcCount / 3 && carriesStone)
else if (!granaryExists && shelters >= shelterCap && carriesStone)
{
site = Building.NewGranary(gm.CommunityCentroid() + jitter);
site = Building.NewGranary(gm.TownCentroid(HomeTown) + jitter);
site.Town = HomeTown;
gm.Buildings.Add(site);
}
else { Enter(NpcState.Socializing); return; }
+16
View File
@@ -63,6 +63,22 @@ public class SoulProfile
Accumulation = 0.1f,
};
/// <summary>
/// North-weighted profile: reverence for lineage, strong communal pull,
/// modest material appetite. Their signature system — generational
/// knowledge transfer (SPEC §5) — arrives with the expansion phase;
/// until then they differ from the South in temperament, not verbs.
/// </summary>
public static SoulProfile GenerationalSoul() => new()
{
Type = SoulType.Generational,
Generosity = 0.8f,
Sustainability = 0.8f,
CommunityBias = 0.95f,
StatusBias = 0.15f,
Accumulation = 0.2f,
};
/// <summary>
/// East-weighted profile — not part of MVP behavior, but defined now for
/// the end-of-MVP contrast test (SPEC §11 amendment): 3 selfish NPCs
+2 -1
View File
@@ -24,7 +24,7 @@ public static class StatsLogger
"avg_debris,refusals";
private const string NpcHeader =
"day,npc,name,soul,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";
private const string GiftHeader =
@@ -154,6 +154,7 @@ public static class StatsLogger
.Append(i + 1).Append(',')
.Append(npc.Name).Append(',')
.Append(npc.Soul.Type).Append(',')
.Append(npc.HomeTown).Append(',')
.Append(npc.DominantStateToday()).Append(',')
.Append(t[(int)NpcState.Gathering]).Append(',')
.Append(t[(int)NpcState.Building]).Append(',')
+11 -3
View File
@@ -72,6 +72,14 @@ public partial class Visualization : Node2D
DrawRect(new Rect2(p.X, p.Y, CellPixels, CellPixels), c);
}
// --- Map: town labels --------------------------------------------
foreach (var town in _gm.Towns)
{
var tp = MapPos(town.Center);
DrawString(font, tp + new Vector2(-20f, -14f), town.Name.ToUpper(),
fontSize: 13, modulate: TextDim);
}
// --- Map: buildings ----------------------------------------------
for (int i = 0; i < _gm.Buildings.Count; i++)
{
@@ -118,7 +126,7 @@ public partial class Visualization : Node2D
for (int i = 0; i < _gm.Npcs.Count; i++)
{
var npc = _gm.Npcs[i];
y += 22f;
y += 20f;
if (npc.Soul.Type == SoulType.Selfish)
DrawCircle(new Vector2(PanelX + 24, y - 5f), 6f, new Color(0.75f, 0.15f, 0.15f));
@@ -142,7 +150,7 @@ public partial class Visualization : Node2D
for (int i = 0; i < _gm.Buildings.Count; i++)
{
var b = _gm.Buildings[i];
y += 20f;
y += 18f;
string status = b.IsRuined ? "RUIN"
: !b.IsComplete
? $"building: {b.Stages[b.CurrentStage].Name} {b.StageProgress * 100,3:0}%"
@@ -151,7 +159,7 @@ public partial class Visualization : Node2D
: $"cond {b.Condition * 100,3:0}% wood {b.UpkeepStock,4:0.0}/{Building.UpkeepStockCap:0}" +
$" mods {b.Modules}/{Building.ModuleCap} burn {b.DailyBurn:0.0}/day";
DrawString(font, new Vector2(PanelX + 36, y),
$"{i + 1} {status}", fontSize: 13,
$"{i + 1} {b.Town,-5} {status}", fontSize: 12,
modulate: b.IsRuined ? TextDim : TextMain);
}
+20 -2642
View File
File diff suppressed because it is too large Load Diff
-3
View File
@@ -6,10 +6,7 @@ uid="uid://dpef17p6lhdnb"
[deps]
files=["res://soak_gifts.giver.translation", "res://soak_gifts.giver.translation", "res://soak_gifts.receiver.translation", "res://soak_gifts.receiver.translation", "res://soak_gifts.material.translation", "res://soak_gifts.amount.translation"]
source_file="res://soak_gifts.csv"
dest_files=["res://soak_gifts.giver.translation", "res://soak_gifts.giver.translation", "res://soak_gifts.receiver.translation", "res://soak_gifts.receiver.translation", "res://soak_gifts.material.translation", "res://soak_gifts.amount.translation"]
[params]
+3674 -3614
View File
File diff suppressed because it is too large Load Diff
+245 -241
View File
@@ -1,242 +1,246 @@
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
1,spring,1571.9,840.0,322.5,777.0,525.5,0,10.9,0.766,100.0,285.5,7686,1648,0,2112,2954,2,0,1.000,12.5,7.5,7,0.0,0.0068,0
2,spring,1386.1,762.0,317.0,772.0,399.2,0,1.8,0.910,100.0,327.4,6526,2767,0,4516,7791,4,0,1.000,24.0,16.0,16,0.0,0.0106,0
3,spring,1349.4,730.0,277.5,760.0,261.3,0,1.2,0.804,100.0,325.1,6295,3300,0,6816,5189,5,0,1.000,30.0,20.0,20,15.0,0.0155,0
4,spring,1348.4,730.0,281.0,729.0,226.0,0,3.8,0.877,100.0,345.6,5861,2689,0,6219,6831,5,0,1.000,30.0,20.0,20,119.0,0.0195,0
5,spring,1351.1,652.0,179.0,784.0,312.3,0,4.8,0.833,100.0,327.7,9051,400,0,6264,5885,5,0,1.000,30.0,20.0,20,150.0,0.0226,0
6,spring,1357.9,570.0,181.5,738.0,343.5,0,11.3,0.738,100.0,362.1,7567,281,95,6015,7642,5,0,1.000,30.0,20.0,20,150.0,0.0251,0
7,spring,1392.3,554.0,186.5,776.0,143.6,0,2.7,0.856,100.0,368.7,2858,1321,438,1521,15462,5,0,1.000,29.3,20.0,20,150.0,0.0268,0
8,spring,1467.5,544.0,186.5,800.0,49.0,0,0.0,0.743,100.0,365.0,1918,1790,473,0,17419,5,0,1.000,19.8,20.0,20,150.0,0.0279,0
9,spring,1520.6,536.0,191.5,800.0,69.6,0,0.2,0.876,100.0,359.0,2197,1375,483,0,17545,5,0,1.000,21.8,20.0,20,150.0,0.0289,0
10,spring,1548.9,508.0,182.0,800.0,103.3,0,6.8,0.762,100.0,359.7,5976,1746,174,2021,11683,5,0,1.000,20.2,20.0,20,150.0,0.0309,0
11,spring,1562.1,484.0,184.5,790.0,134.5,0,5.7,0.893,100.0,363.0,4932,754,354,2961,12599,5,0,1.000,23.0,20.0,20,150.0,0.0326,0
12,spring,1595.7,476.0,189.5,800.0,54.8,0,3.0,0.777,100.0,365.0,2030,3056,384,162,15968,5,0,1.000,18.0,20.0,20,150.0,0.0333,0
13,spring,1614.0,468.0,189.5,798.0,73.4,0,1.8,0.857,100.0,360.0,3364,1974,361,444,15457,5,0,1.000,19.6,20.0,20,150.0,0.0347,0
14,spring,1617.5,460.0,192.0,794.0,78.5,0,0.0,0.789,100.0,370.0,2831,1571,429,485,16284,5,0,1.000,20.0,20.0,20,150.0,0.0362,0
15,spring,1621.5,460.0,192.5,798.0,56.1,0,0.2,0.852,100.0,361.6,1675,2244,462,0,17219,5,0,1.000,20.4,20.0,20,150.0,0.0375,0
16,spring,1619.9,460.0,192.5,798.0,67.8,0,0.0,0.799,100.0,365.0,1886,1746,480,0,17488,5,0,1.000,22.6,20.0,20,150.0,0.0390,0
17,spring,1622.7,460.0,194.0,796.0,56.7,0,0.0,0.859,100.0,359.0,1669,1599,504,0,17828,5,0,1.000,23.0,20.0,20,150.0,0.0405,0
18,spring,1620.3,460.0,195.0,790.0,76.8,0,0.0,0.805,100.0,370.0,1906,1365,501,0,17828,5,0,1.000,23.4,20.0,20,150.0,0.0422,0
19,spring,1624.7,460.0,200.0,798.0,50.8,0,0.0,0.864,100.0,362.3,1356,1417,529,0,18298,5,0,1.000,22.2,20.0,20,150.0,0.0432,0
20,spring,1625.1,460.0,205.0,798.0,54.0,0,0.0,0.809,100.0,363.0,1503,1306,529,0,18262,5,0,1.000,22.1,20.0,20,150.0,0.0443,0
21,spring,1630.3,460.0,210.0,796.0,50.0,0,0.0,0.866,100.0,359.0,1245,1227,549,0,18579,5,0,1.000,18.1,20.0,20,150.0,0.0454,0
22,spring,1620.3,460.0,215.0,794.0,73.2,0,0.0,0.809,100.0,368.1,1859,1327,507,0,17907,5,0,1.000,19.7,20.0,20,150.0,0.0468,0
23,spring,1621.5,460.0,220.0,798.0,56.4,0,0.0,0.850,100.0,363.1,1462,1522,518,0,18098,5,0,1.000,21.0,20.0,20,150.0,0.0480,0
24,spring,1621.5,460.0,225.0,798.0,57.6,0,0.0,0.808,100.0,363.0,1592,1559,508,0,17941,5,0,1.000,21.9,20.0,20,150.0,0.0491,0
25,spring,1623.9,460.0,230.0,794.0,63.2,0,0.0,0.830,100.0,365.4,1460,1659,507,0,17974,5,0,1.000,19.1,20.0,20,150.0,0.0506,0
26,spring,1621.9,460.0,235.0,798.0,65.2,0,0.0,0.819,100.0,367.1,1686,1631,499,0,17784,5,0,1.000,21.5,20.0,20,150.0,0.0521,0
27,spring,1619.1,460.0,240.0,800.0,58.8,0,0.0,0.840,100.0,363.1,1539,1464,516,0,18081,5,0,1.000,22.8,20.0,20,150.0,0.0535,0
28,spring,1617.5,460.0,245.0,800.0,57.6,0,0.0,0.812,100.0,365.0,1515,1404,523,0,18158,5,0,1.000,21.7,20.0,20,150.0,0.0547,0
29,spring,1618.3,460.0,250.0,796.0,58.8,0,0.0,0.815,100.0,365.1,1459,1239,534,0,18368,5,0,1.000,20.7,20.0,20,150.0,0.0560,0
30,summer,1608.3,460.0,255.0,792.0,62.0,0,0.0,0.801,100.0,367.0,1574,1534,510,0,17982,5,0,1.000,22.9,20.0,20,150.0,0.0574,0
31,summer,1604.7,460.0,260.0,790.0,57.6,0,0.0,0.819,100.0,365.1,1613,1320,523,0,18144,5,0,1.000,19.7,20.0,20,150.0,0.0588,0
32,summer,1598.7,460.0,265.0,790.0,62.0,0,0.0,0.836,100.0,365.0,1667,1886,487,0,17560,5,0,1.000,19.7,20.0,20,150.0,0.0605,0
33,summer,1596.2,460.0,270.0,790.0,56.5,0,0.0,0.788,100.0,365.0,1585,1647,503,0,17865,5,0,1.000,20.1,20.0,20,150.0,0.0623,0
34,summer,1596.2,460.0,275.0,790.0,58.0,0,0.0,0.851,100.0,358.0,1982,1272,501,0,17845,5,0,1.000,20.1,20.0,20,150.0,0.0640,0
35,summer,1589.0,460.0,280.0,786.0,67.2,0,0.0,0.833,100.0,363.0,1660,1532,508,0,17900,5,0,1.000,20.1,20.0,20,150.0,0.0659,0
36,summer,1583.0,460.0,285.0,788.0,66.0,0,0.0,0.813,100.0,366.0,1828,1542,494,0,17736,5,0,1.000,21.1,20.0,20,150.0,0.0676,0
37,summer,1577.0,460.0,290.0,794.0,62.0,0,0.0,0.810,100.0,365.5,1657,1872,486,0,17585,5,0,1.000,21.2,20.0,20,150.0,0.0695,0
38,summer,1573.0,460.0,295.0,790.0,62.0,0,0.0,0.820,100.0,363.0,1854,1660,489,0,17597,5,0,1.000,21.7,20.0,20,150.0,0.0713,0
39,summer,1571.0,460.0,300.0,796.0,60.0,0,0.0,0.847,100.0,361.0,1705,1748,490,0,17657,5,0,1.000,21.7,20.0,20,150.0,0.0733,0
40,summer,1571.0,460.0,305.0,794.0,66.0,0,0.0,0.807,100.0,365.1,1775,1394,507,0,17924,5,0,1.000,20.7,20.0,20,150.0,0.0751,0
41,summer,1569.0,460.0,310.0,794.0,62.0,0,0.0,0.832,100.0,362.5,1536,1507,515,0,18042,5,0,1.000,20.7,20.0,20,150.0,0.0768,0
42,summer,1565.0,460.0,315.0,792.0,64.0,0,0.0,0.822,100.0,363.0,1778,1474,503,0,17845,5,0,1.000,21.3,20.0,20,150.0,0.0787,0
43,summer,1562.5,460.0,320.0,792.0,64.5,0,0.0,0.828,100.0,365.0,1744,1510,504,0,17842,5,0,1.000,21.3,20.0,20,150.0,0.0807,0
44,summer,1562.5,460.0,325.0,796.0,62.0,0,0.0,0.832,100.0,364.1,1720,1169,523,0,18188,5,0,1.000,21.3,20.0,20,150.0,0.0827,0
45,summer,1560.5,460.0,330.0,792.0,60.0,0,0.0,0.820,100.0,361.0,1699,1452,507,0,17942,5,0,1.000,22.4,20.0,20,150.0,0.0847,0
46,summer,1556.5,460.0,335.0,790.0,66.0,0,0.0,0.807,100.0,364.1,1820,1513,497,0,17770,5,0,1.000,21.4,20.0,20,150.0,0.0867,0
47,summer,1554.5,460.0,340.0,790.0,68.0,0,0.0,0.824,100.0,364.5,1988,1562,483,0,17567,5,0,1.000,22.5,20.0,20,150.0,0.0886,0
48,summer,1552.5,460.0,345.0,790.0,68.0,0,0.0,0.809,100.0,367.0,1946,1306,503,0,17845,5,0,1.000,23.0,20.0,20,150.0,0.0907,0
49,summer,1548.5,460.0,350.0,790.0,66.0,0,0.0,0.823,100.0,366.4,1743,1625,495,0,17737,5,0,1.000,23.0,20.0,20,150.0,0.0929,0
50,summer,1554.0,460.0,355.0,794.0,50.5,0,0.0,0.837,100.0,361.0,1511,1485,516,0,18088,5,0,1.000,21.4,20.0,20,150.0,0.0949,0
51,summer,1552.0,460.0,360.0,796.0,64.0,0,0.0,0.787,100.0,364.5,1871,1120,519,0,18090,5,0,1.000,21.4,20.0,20,150.0,0.0970,0
52,summer,1550.0,460.0,365.0,794.0,64.0,0,0.0,0.813,100.0,362.0,1697,1267,518,0,18118,5,0,1.000,19.9,20.0,20,150.0,0.0993,0
53,summer,1546.0,460.0,370.0,794.0,68.0,0,0.0,0.839,100.0,362.0,1759,1520,500,0,17821,5,0,1.000,19.9,20.0,20,150.0,0.1015,0
54,summer,1541.5,460.0,375.0,790.0,72.5,0,0.0,0.785,100.0,371.1,1913,1802,473,0,17412,5,0,1.000,19.9,20.0,20,150.0,0.1034,0
55,summer,1541.5,460.0,379.5,794.0,60.0,0,0.0,0.824,100.0,366.0,1640,1847,487,0,17626,5,0,1.000,20.0,20.0,20,150.0,0.1055,0
56,summer,1545.5,460.0,384.0,792.0,56.0,0,0.0,0.831,100.0,361.1,1630,1726,497,0,17747,5,0,1.000,20.0,20.0,20,150.0,0.1072,0
57,summer,1543.5,460.0,388.5,790.0,64.0,0,0.0,0.821,100.0,361.3,1674,1541,503,0,17882,5,0,1.000,20.1,20.0,20,150.0,0.1093,0
58,summer,1541.0,460.0,391.5,788.0,68.5,0,0.0,0.826,100.0,364.0,1794,1351,510,0,17945,5,0,1.000,20.3,20.0,20,150.0,0.1114,0
59,summer,1539.0,460.0,394.0,792.0,66.0,0,0.0,0.812,100.0,364.0,1817,1501,498,0,17784,5,0,1.000,20.3,20.0,20,150.0,0.1134,0
60,autumn,1535.0,460.0,396.0,788.0,72.0,0,0.0,0.815,100.0,367.3,1779,1948,475,0,17398,5,0,1.000,20.3,20.0,20,150.0,0.1157,0
61,autumn,1537.0,460.0,396.5,786.0,62.0,0,0.0,0.831,100.0,365.5,1773,1504,501,0,17822,5,0,1.000,18.6,20.0,20,150.0,0.1178,0
62,autumn,1543.0,460.0,397.0,785.2,56.0,0,0.0,0.831,100.0,362.0,1769,1404,507,0,17920,5,0,1.000,19.1,20.0,20,150.0,0.1198,0
63,autumn,1543.0,460.0,397.5,780.8,66.0,0,0.0,0.782,100.0,364.0,1584,1732,496,0,17788,5,0,1.000,19.1,20.0,20,150.0,0.1218,0
64,autumn,1541.0,460.0,398.0,782.2,67.8,0,0.0,0.827,100.0,362.8,1841,1106,521,0,18132,5,0,1.000,19.2,20.0,20,150.0,0.1241,0
65,autumn,1543.0,460.0,398.5,778.6,70.0,0,0.0,0.822,100.0,364.8,1893,1399,499,0,17809,5,0,1.000,20.2,20.0,20,150.0,0.1263,0
66,autumn,1543.0,460.0,399.0,778.6,66.0,0,0.0,0.784,100.0,365.8,1948,1406,495,0,17751,5,0,1.000,20.2,20.0,20,150.0,0.1284,0
67,autumn,1541.0,460.0,399.5,773.2,73.0,0,0.0,0.810,100.0,368.2,2014,1254,499,0,17833,5,0,1.000,20.2,20.0,20,150.0,0.1306,0
68,autumn,1539.0,460.0,400.0,780.8,62.0,0,0.0,0.817,100.0,364.4,1569,1826,494,0,17711,5,0,1.000,20.6,20.0,20,150.0,0.1327,0
69,autumn,1541.0,460.0,400.0,782.8,64.0,0,0.0,0.825,100.0,363.8,1570,1393,518,0,18119,5,0,1.000,19.1,20.0,20,150.0,0.1348,0
70,autumn,1539.0,460.0,400.0,786.4,66.0,0,0.0,0.782,100.0,364.8,1941,1513,491,0,17655,5,0,1.000,19.1,20.0,20,150.0,0.1370,0
71,autumn,1535.0,460.0,400.0,785.6,72.0,0,0.0,0.834,100.0,363.8,1765,1595,495,0,17745,5,0,1.000,19.1,20.0,20,150.0,0.1391,0
72,autumn,1530.5,460.0,400.0,778.8,73.9,0,0.0,0.835,100.0,367.3,1836,1721,485,0,17558,5,0,1.000,19.1,20.0,20,150.0,0.1414,0
73,autumn,1528.5,460.0,400.0,786.0,64.0,0,0.0,0.837,100.0,365.2,1725,1478,505,0,17892,5,0,1.000,19.2,20.0,20,150.0,0.1436,0
74,autumn,1528.5,460.0,400.0,782.4,68.0,0,0.0,0.791,100.0,368.2,1879,1847,474,0,17400,5,0,1.000,19.2,20.0,20,150.0,0.1460,0
75,autumn,1528.5,460.0,400.0,782.4,66.0,0,0.0,0.805,100.0,365.3,1929,1678,482,0,17511,5,0,1.000,19.2,20.0,20,150.0,0.1481,0
76,autumn,1530.5,460.0,400.0,778.6,72.0,0,0.0,0.833,100.0,367.3,1689,1824,488,0,17599,5,0,1.000,19.3,20.0,20,150.0,0.1505,0
77,autumn,1530.5,460.0,400.0,784.6,62.0,0,0.0,0.814,100.0,363.3,1758,1856,481,0,17505,5,0,1.000,19.4,20.0,20,150.0,0.1526,0
78,autumn,1530.5,460.0,400.0,781.0,72.0,0,0.0,0.840,100.0,364.2,1747,1742,490,0,17621,5,0,1.000,20.5,20.0,20,150.0,0.1546,0
79,autumn,1528.5,460.0,400.0,782.0,66.0,0,0.0,0.816,100.0,364.2,1723,1478,506,0,17893,5,0,1.000,20.5,20.0,20,150.0,0.1569,0
80,autumn,1530.5,460.0,400.0,780.8,70.0,0,0.0,0.842,100.0,363.2,1758,1699,489,0,17654,5,0,1.000,19.5,20.0,20,150.0,0.1590,0
81,autumn,1528.5,460.0,400.0,780.8,70.0,0,0.0,0.786,100.0,366.7,1859,1877,473,0,17391,5,0,1.000,19.6,20.0,20,150.0,0.1613,0
82,autumn,1528.5,460.0,400.0,779.6,74.0,0,0.0,0.792,100.0,369.2,1911,1706,481,0,17502,5,0,1.000,20.1,20.0,20,150.0,0.1636,0
83,autumn,1526.5,460.0,400.0,780.0,72.0,0,0.0,0.795,100.0,370.3,1796,1804,482,0,17518,5,0,1.000,20.1,20.0,20,150.0,0.1660,0
84,autumn,1526.5,460.0,400.0,786.0,66.0,0,0.0,0.813,100.0,366.2,1808,1442,502,0,17848,5,0,1.000,20.1,20.0,20,150.0,0.1683,0
85,autumn,1526.5,460.0,400.0,782.0,72.0,0,0.0,0.798,100.0,369.3,1779,1262,514,0,18045,5,0,1.000,20.1,20.0,20,150.0,0.1705,0
86,autumn,1526.5,460.0,400.0,778.4,66.0,0,0.0,0.814,100.0,364.2,1885,1506,495,0,17714,5,0,1.000,21.2,20.0,20,150.0,0.1727,0
87,autumn,1526.5,460.0,400.0,776.0,72.0,0,0.0,0.811,100.0,365.7,1972,1668,476,0,17484,5,0,1.000,21.2,20.0,20,150.0,0.1747,0
88,autumn,1528.5,460.0,400.0,780.2,67.4,0,0.0,0.823,100.0,362.6,1828,1717,485,0,17570,5,0,1.000,21.7,20.0,20,150.0,0.1767,0
89,autumn,1528.5,460.0,400.0,773.0,72.0,0,0.0,0.803,100.0,366.7,1703,1313,515,0,18069,5,0,1.000,19.8,20.0,20,150.0,0.1790,0
90,winter,1500.5,460.0,400.0,696.6,68.0,0,0.0,0.828,100.0,362.7,1880,1502,494,0,17724,5,0,1.000,19.8,20.0,20,150.0,0.1815,0
91,winter,1477.6,460.0,400.0,621.1,70.9,0,0.0,0.807,100.0,364.6,2522,2367,406,0,16305,5,0,1.000,20.9,20.0,20,150.0,0.1822,0
92,winter,1459.6,460.0,400.0,553.4,63.2,0,0.0,0.813,100.0,362.4,2541,1287,468,0,17304,5,0,1.000,18.8,20.0,20,150.0,0.1847,0
93,winter,1441.0,460.0,400.0,484.5,72.7,0,0.2,0.821,100.0,366.8,3136,2420,360,153,15531,5,0,1.000,18.5,20.0,20,150.0,0.1863,0
94,winter,1423.8,460.0,400.0,426.5,67.2,0,0.0,0.810,100.0,365.8,2579,1776,439,0,16806,5,0,1.000,18.1,20.0,20,150.0,0.1890,0
95,winter,1402.1,460.0,400.0,372.3,72.1,0,11.0,0.815,100.0,365.1,4165,2490,280,515,14150,5,0,1.000,18.5,20.0,20,150.0,0.1907,0
96,winter,1386.5,460.0,400.0,320.6,70.3,0,0.0,0.786,100.0,367.7,2954,2033,396,81,16136,5,0,1.000,19.1,20.0,20,150.0,0.1940,0
97,winter,1378.0,460.0,400.0,277.2,60.8,0,6.9,0.804,100.0,363.0,4506,2320,254,895,13625,5,0,1.000,17.2,20.0,20,150.0,0.1959,0
98,winter,1096.9,460.0,400.0,252.7,328.6,0,6.7,0.772,100.0,362.0,6018,1796,181,2296,11309,5,0,1.000,18.6,20.0,20,150.0,0.2006,0
99,winter,901.2,460.0,380.5,231.9,270.7,0,9.4,0.800,100.0,347.8,8346,1183,27,5349,6695,5,0,1.000,24.2,20.0,20,150.0,0.2037,0
100,winter,879.5,460.0,361.5,215.6,91.7,0,9.1,0.792,100.0,335.8,9286,449,2,7650,4213,5,0,1.000,25.1,20.0,20,150.0,0.2090,0
101,winter,898.3,460.0,362.5,200.1,33.9,0,10.3,0.831,100.0,322.4,9728,305,0,7583,3984,5,0,1.000,21.4,20.0,20,150.0,0.2117,0
102,winter,874.9,460.0,303.0,184.9,137.4,0,0.0,0.817,100.0,318.9,9419,275,0,7697,4209,5,0,1.000,30.0,20.0,20,150.0,0.2176,0
103,winter,906.8,460.0,305.5,170.6,21.7,0,11.4,0.836,100.0,306.7,9840,105,0,7608,4047,5,0,1.000,14.0,20.0,20,150.0,0.2194,0
104,winter,888.4,460.0,308.0,159.8,69.6,0,10.0,0.804,100.0,321.2,9160,635,0,7681,4124,5,0,0.980,24.0,20.0,20,150.0,0.2248,0
105,winter,901.6,460.0,310.5,148.2,41.0,0,4.9,0.832,100.0,322.4,6992,854,0,5546,8208,5,0,0.990,30.0,20.0,20,125.2,0.2274,0
106,winter,936.8,460.0,313.0,139.7,16.2,0,0.0,0.797,100.0,300.5,4204,638,0,0,16758,5,0,1.000,30.0,20.0,20,116.2,0.2288,0
107,winter,955.2,460.0,315.5,132.1,33.6,0,0.0,0.823,100.0,315.1,5290,895,0,324,15091,5,0,1.000,30.0,20.0,20,84.2,0.2308,0
108,winter,978.8,460.0,318.0,126.6,28.2,0,0.1,0.815,100.0,310.3,5226,771,0,0,15603,5,0,1.000,30.0,20.0,20,68.2,0.2327,0
109,winter,990.0,460.0,320.5,123.0,40.8,0,0.0,0.809,100.0,302.8,4633,1006,0,0,15961,5,0,1.000,30.0,20.0,20,26.2,0.2347,0
110,winter,1028.0,460.0,323.0,121.1,13.4,104,0.0,0.813,100.0,268.7,4434,614,0,0,16552,5,0,1.000,30.0,20.0,20,23.7,0.2358,0
111,winter,1020.8,460.0,325.5,120.0,61.1,313,3.5,0.805,100.0,301.4,6260,1228,0,477,13635,5,0,1.000,30.0,20.0,20,3.1,0.2386,0
112,winter,1011.6,460.0,328.0,120.0,58.2,621,6.9,0.790,100.0,276.5,9749,255,0,3055,8541,5,0,1.000,30.0,20.0,20,0.0,0.2746,77
113,winter,919.2,460.0,330.5,120.0,140.4,0,11.9,0.658,100.0,294.4,9478,338,0,7629,4155,5,0,1.000,30.0,20.0,20,0.0,0.2818,7
114,winter,900.0,460.0,333.0,120.0,67.2,0,14.5,0.297,100.0,315.0,9749,0,0,7704,4147,5,0,1.000,10.0,20.0,20,0.0,0.2839,0
115,winter,901.2,460.0,335.5,120.0,46.8,0,0.0,0.165,100.0,294.4,9891,0,0,7610,4099,5,0,0.900,0.0,20.0,20,0.0,0.2864,0
116,winter,911.1,460.0,338.0,120.0,38.1,0,14.5,0.135,100.0,288.1,9749,0,0,7704,4147,5,0,0.800,0.0,20.0,20,0.0,0.2876,0
117,winter,918.3,460.0,340.5,120.0,40.8,0,0.0,0.076,100.0,296.9,9848,0,0,7616,4136,5,0,0.700,0.0,20.0,20,0.0,0.2898,0
118,winter,927.9,460.0,343.0,120.0,38.4,0,14.5,0.051,98.7,303.5,9751,0,0,7704,4145,5,0,0.600,0.0,20.0,20,0.0,0.2911,0
119,winter,914.3,460.0,345.5,120.0,61.6,0,1.8,0.051,96.7,321.9,9839,0,0,7616,4145,5,0,0.500,0.0,20.0,20,0.0,0.2935,0
120,spring,1021.9,460.0,348.0,360.0,36.4,0,7.8,0.022,94.8,307.2,9747,0,0,7704,4149,5,0,0.400,0.0,20.0,20,0.0,0.2955,0
121,spring,1036.0,460.0,350.5,600.0,128.0,0,7.2,0.000,92.6,303.7,9776,0,0,7675,4149,5,0,0.300,0.0,20.0,20,0.0,0.2972,0
122,spring,1158.0,460.0,353.0,661.0,187.6,0,7.6,0.648,89.6,318.4,7754,1167,0,6789,5890,5,0,0.350,30.0,20.0,20,23.2,0.2992,0
123,spring,1277.2,460.0,355.5,687.0,170.4,0,2.0,0.634,92.4,324.0,6499,2515,0,5542,7044,5,0,0.400,30.0,20.0,20,143.0,0.3007,0
124,spring,1386.9,460.0,358.0,662.0,238.0,3,3.7,0.806,93.0,388.2,6958,823,731,6074,7014,5,0,0.450,30.0,20.0,20,150.0,0.3024,0
125,spring,1485.3,460.0,360.5,756.0,94.8,0,0.0,0.817,93.0,394.9,2285,848,507,2520,15440,5,0,0.500,23.7,20.0,20,150.0,0.3034,0
126,spring,1585.1,460.0,363.0,784.0,61.6,0,0.0,0.799,93.0,389.9,1409,1291,536,0,18364,5,0,0.550,18.5,20.0,20,150.0,0.3043,0
127,spring,1619.8,460.0,365.5,792.0,66.4,0,0.0,0.836,93.0,379.0,1679,1480,505,0,17936,5,0,0.600,19.7,20.0,20,150.0,0.3049,0
128,spring,1618.6,460.0,368.0,787.0,74.0,0,0.0,0.830,93.0,378.9,1698,1446,508,0,17948,5,0,0.650,20.2,20.0,20,150.0,0.3056,0
129,spring,1616.5,460.0,370.5,794.0,71.2,0,0.0,0.811,93.0,375.9,1573,1548,511,0,17968,5,0,0.700,22.2,20.0,20,150.0,0.3065,0
130,spring,1604.1,460.0,373.0,772.0,133.2,3,0.0,0.776,93.0,423.9,2156,1197,1360,0,16887,5,0,0.750,22.9,20.0,20,150.0,0.3073,0
131,spring,1611.3,460.0,375.5,792.0,61.2,0,0.0,0.811,93.0,412.9,1620,1520,507,0,17953,5,0,0.800,20.1,20.0,20,150.0,0.3080,0
132,spring,1607.0,460.0,378.0,794.0,69.7,0,0.0,0.804,93.0,408.9,1747,1346,510,0,17997,5,0,0.850,19.7,20.0,20,150.0,0.3089,0
133,spring,1603.8,460.0,380.5,796.0,67.6,0,0.0,0.810,93.0,401.9,1758,1601,496,0,17745,5,0,0.900,20.9,20.0,20,150.0,0.3100,0
134,spring,1603.8,460.0,383.0,794.0,66.4,0,0.0,0.774,93.0,395.9,1812,1565,495,0,17728,5,0,0.950,22.1,20.0,20,150.0,0.3105,0
135,spring,1601.8,460.0,385.5,794.0,65.2,0,0.0,0.822,93.0,383.9,1865,1407,503,0,17825,5,0,1.000,21.3,20.0,20,150.0,0.3113,0
136,spring,1601.8,460.0,388.0,790.0,64.0,0,0.0,0.813,93.0,377.9,1695,1460,508,0,17937,5,0,1.000,22.1,20.0,20,150.0,0.3118,0
137,spring,1602.2,460.0,390.5,788.0,68.0,0,0.0,0.818,93.0,374.9,1532,1236,529,0,18303,5,0,1.000,20.1,20.0,20,150.0,0.3123,0
138,spring,1595.8,460.0,393.0,772.0,108.8,2,0.3,0.794,93.0,406.4,2205,820,1036,0,17539,5,0,1.000,20.8,20.0,20,150.0,0.3132,0
139,spring,1589.0,460.0,395.0,784.0,94.8,1,0.0,0.811,93.0,415.9,2033,1382,965,0,17220,5,0,1.000,20.1,20.0,20,150.0,0.3138,0
140,spring,1592.2,460.0,397.0,794.0,69.6,0,0.0,0.815,93.0,412.9,1717,1350,514,0,18019,5,0,1.000,19.4,20.0,20,150.0,0.3142,0
141,spring,1597.4,460.0,399.0,794.0,63.6,0,0.0,0.818,93.0,405.9,1645,1787,491,0,17677,5,0,1.000,17.8,20.0,20,150.0,0.3149,0
142,spring,1597.0,460.0,399.5,800.0,67.2,0,0.0,0.807,93.0,398.0,1821,1883,475,0,17421,5,0,1.000,19.8,20.0,20,150.0,0.3149,0
143,spring,1595.4,460.0,400.0,792.0,64.0,0,0.0,0.810,93.0,388.9,1678,1724,494,0,17704,5,0,1.000,20.2,20.0,20,150.0,0.3150,0
144,spring,1595.8,460.0,400.0,796.0,66.0,0,0.0,0.812,93.0,381.9,1747,1677,491,0,17685,5,0,1.000,21.0,20.0,20,150.0,0.3155,0
145,spring,1595.0,460.0,400.0,792.0,64.4,0,0.0,0.829,93.0,373.9,1621,1486,513,0,17980,5,0,1.000,21.0,20.0,20,150.0,0.3157,0
146,spring,1590.9,460.0,400.0,768.0,124.1,3,0.0,0.817,93.0,419.9,2222,1010,1747,0,16621,5,0,1.000,21.8,20.0,20,150.0,0.3163,0
147,spring,1595.3,460.0,400.0,784.0,68.4,0,0.0,0.819,93.0,414.9,1675,1684,497,0,17744,5,0,1.000,21.0,20.0,20,150.0,0.3165,0
148,spring,1596.9,460.0,400.0,796.0,69.2,0,0.0,0.806,93.0,412.9,1648,1232,525,0,18195,5,0,1.000,21.4,20.0,20,150.0,0.3168,0
149,spring,1600.1,460.0,400.0,798.0,66.8,0,0.0,0.822,93.0,407.0,1748,1288,516,0,18048,5,0,1.000,20.6,20.0,20,150.0,0.3171,0
150,summer,1596.5,460.0,400.0,786.0,65.2,0,0.0,0.809,93.0,400.9,1775,1180,520,0,18125,5,0,1.000,20.2,20.0,20,150.0,0.3174,0
151,summer,1589.3,460.0,400.0,788.0,65.2,0,0.0,0.783,93.0,393.9,1757,1726,490,0,17627,5,0,1.000,20.2,20.0,20,150.0,0.3178,0
152,summer,1582.1,460.0,400.0,788.0,65.2,0,0.0,0.811,93.0,382.9,1651,1542,504,0,17903,5,0,1.000,18.2,20.0,20,150.0,0.3180,0
153,summer,1577.7,460.0,400.0,782.0,68.4,0,0.0,0.826,93.0,374.9,1875,1523,492,0,17710,5,0,1.000,18.2,20.0,20,150.0,0.3182,0
154,summer,1555.3,460.0,400.0,756.0,126.4,3,0.0,0.813,93.0,408.9,2482,794,1355,0,16969,5,0,1.000,18.2,20.0,20,150.0,0.3187,0
155,summer,1545.6,460.0,400.0,760.0,93.7,0,0.0,0.786,93.0,422.0,2452,1207,477,0,17464,5,0,1.000,20.6,20.0,20,150.0,0.3187,0
156,summer,1541.6,460.0,400.0,776.0,66.0,0,0.0,0.814,93.0,410.9,1801,1257,511,0,18031,5,0,1.000,18.7,20.0,20,150.0,0.3188,0
157,summer,1538.0,460.0,400.0,776.0,75.6,0,0.0,0.815,93.0,409.9,1911,1494,491,0,17704,5,0,1.000,18.7,20.0,20,150.0,0.3190,0
158,summer,1534.0,460.0,400.0,782.0,68.0,0,0.0,0.815,93.0,400.9,2247,1603,465,0,17285,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
159,summer,1535.5,460.0,400.0,782.0,68.5,0,0.0,0.801,93.0,394.9,1651,1737,492,0,17720,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
160,summer,1533.5,460.0,400.0,784.0,68.0,0,0.0,0.815,93.0,384.9,1899,1452,497,0,17752,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
161,summer,1529.5,460.0,400.0,774.0,86.0,1,0.0,0.802,93.0,394.9,1802,1796,804,0,17198,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
162,summer,1527.0,460.0,400.0,768.0,88.5,1,0.0,0.815,93.0,406.9,2111,984,695,0,17810,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
163,summer,1525.0,460.0,400.0,758.0,90.0,1,0.0,0.802,93.0,420.9,2215,1521,543,0,17321,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
164,summer,1525.0,460.0,400.0,770.0,70.0,0,0.0,0.802,93.0,414.0,1858,1369,503,0,17870,5,0,1.000,18.7,20.0,20,150.0,0.3194,0
165,summer,1523.0,460.0,400.0,776.0,74.0,0,0.0,0.802,93.0,410.9,1983,1526,488,0,17603,5,0,1.000,18.8,20.0,20,150.0,0.3194,0
166,summer,1524.5,460.0,400.0,780.0,70.5,0,0.0,0.816,93.0,405.0,2114,1782,463,0,17241,5,0,1.000,18.8,20.0,20,150.0,0.3194,0
167,summer,1522.5,460.0,400.0,784.0,70.0,0,0.0,0.802,93.0,398.9,1879,1979,465,0,17277,5,0,1.000,18.9,20.0,20,150.0,0.3194,0
168,summer,1522.5,460.0,400.0,784.0,68.0,0,0.0,0.802,93.0,389.9,1930,1741,476,0,17453,5,0,1.000,18.9,20.0,20,150.0,0.3194,0
169,summer,1522.5,460.0,400.0,782.0,68.0,0,0.0,0.802,93.0,380.9,2130,1275,495,0,17700,5,0,1.000,18.9,20.0,20,150.0,0.3194,0
170,summer,1514.5,460.0,400.0,762.0,112.0,2,0.0,0.816,93.0,406.9,2230,1038,1843,0,16489,5,0,1.000,18.9,20.0,20,150.0,0.3194,0
171,summer,1516.5,460.0,400.0,766.0,84.0,1,0.0,0.802,93.0,415.0,2230,839,1312,0,17219,5,0,1.000,18.9,20.0,20,150.0,0.3194,0
172,summer,1512.0,460.0,400.0,766.0,78.5,0,0.0,0.802,93.0,415.9,2492,833,497,0,17778,5,0,1.000,21.0,20.0,20,150.0,0.3194,0
173,summer,1516.0,460.0,400.0,776.0,64.0,0,0.0,0.802,93.0,408.9,1878,1275,506,0,17941,5,0,1.000,19.0,20.0,20,150.0,0.3194,0
174,summer,1514.0,460.0,400.0,774.0,76.0,0,0.0,0.816,93.0,407.0,1918,1280,505,0,17897,5,0,1.000,19.0,20.0,20,150.0,0.3194,0
175,summer,1514.0,460.0,400.0,780.0,70.0,0,0.0,0.817,93.0,399.9,1995,1287,500,0,17818,5,0,1.000,19.0,20.0,20,150.0,0.3194,0
176,summer,1514.0,460.0,400.0,786.0,70.0,0,0.0,0.775,93.0,395.9,1805,2141,460,0,17194,5,0,1.000,19.1,20.0,20,150.0,0.3194,0
177,summer,1512.0,460.0,400.0,784.0,68.0,0,0.0,0.817,93.0,383.9,2003,1543,485,0,17569,5,0,1.000,19.1,20.0,20,150.0,0.3194,0
178,summer,1504.0,460.0,400.0,778.0,94.0,1,0.0,0.845,93.0,390.9,2274,1574,1061,0,16691,5,0,1.000,19.1,20.0,20,150.0,0.3194,0
179,summer,1504.0,460.0,400.0,766.0,94.0,1,0.0,0.831,93.0,408.9,1991,1307,689,0,17613,5,0,1.000,19.1,20.0,20,150.0,0.3194,0
180,autumn,1498.0,460.0,400.0,753.6,90.0,1,0.0,0.790,93.0,419.0,2208,1125,541,0,17726,5,0,1.000,21.6,20.0,20,150.0,0.3194,0
181,autumn,1502.0,460.0,400.0,756.4,68.0,0,0.0,0.804,93.0,410.9,1814,1340,509,0,17937,5,0,1.000,19.7,20.0,20,150.0,0.3194,0
182,autumn,1504.0,460.0,400.0,757.4,74.2,0,0.0,0.818,93.0,407.1,2173,1222,495,0,17710,5,0,1.000,19.7,20.0,20,150.0,0.3194,0
183,autumn,1510.0,460.0,400.0,766.2,67.2,0,0.0,0.818,93.0,397.4,1735,2215,460,0,17190,5,0,1.000,19.7,20.0,20,150.0,0.3194,0
184,autumn,1510.0,460.0,400.0,769.8,71.2,0,0.0,0.790,93.0,393.5,2137,1650,468,0,17345,5,0,1.000,19.8,20.0,20,150.0,0.3194,0
185,autumn,1510.0,460.0,400.0,769.8,69.0,0,0.0,0.804,93.0,384.5,1699,1725,494,0,17682,5,0,1.000,19.8,20.0,20,150.0,0.3194,0
186,autumn,1508.0,460.0,400.0,760.6,95.2,1,0.0,0.790,93.0,397.7,2051,1235,1280,0,17034,5,0,1.000,22.0,20.0,20,150.0,0.3194,0
187,autumn,1514.0,460.0,400.0,771.4,67.6,0,0.0,0.804,93.0,389.3,2013,1945,460,0,17182,5,0,1.000,20.0,20.0,20,150.0,0.3194,0
188,autumn,1501.5,460.0,400.0,746.2,121.7,2,0.0,0.790,93.0,420.5,2281,1530,895,0,16894,5,0,1.000,22.7,20.0,20,150.0,0.3194,0
189,autumn,1505.5,460.0,400.0,755.2,67.0,0,0.0,0.790,93.0,412.5,1866,1587,493,0,17654,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
190,autumn,1505.5,460.0,400.0,761.6,68.0,0,0.0,0.790,93.0,403.5,2050,1860,465,0,17225,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
191,autumn,1507.5,460.0,400.0,766.0,71.2,0,0.0,0.804,93.0,396.7,2140,1348,490,0,17622,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
192,autumn,1509.5,460.0,400.0,772.0,69.8,0,0.0,0.791,93.0,390.5,1826,1929,472,0,17373,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
193,autumn,1511.5,460.0,400.0,769.8,69.4,0,0.0,0.791,93.0,382.9,1710,1830,486,0,17574,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
194,autumn,1505.5,460.0,400.0,758.6,98.0,1,0.0,0.791,93.0,395.9,2479,1029,639,0,17453,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
195,autumn,1507.5,460.0,400.0,764.4,70.2,0,0.0,0.819,93.0,387.2,1795,1412,504,0,17889,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
196,autumn,1507.5,460.0,400.0,738.4,112.4,2,0.0,0.805,93.0,419.5,2314,1488,908,0,16890,5,0,1.000,22.7,20.0,20,150.0,0.3194,0
197,autumn,1511.5,460.0,400.0,748.8,65.2,0,0.0,0.820,93.0,408.7,2053,1730,470,0,17347,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
198,autumn,1511.5,460.0,400.0,759.2,70.4,0,0.0,0.820,93.0,402.1,1954,1578,486,0,17582,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
199,autumn,1509.5,460.0,400.0,762.8,71.2,0,0.0,0.834,93.0,395.4,2297,1544,467,0,17292,5,0,1.000,20.7,20.0,20,150.0,0.3194,0
200,autumn,1513.5,460.0,400.0,764.4,71.6,0,0.0,0.820,93.0,390.9,1679,1939,479,0,17503,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
201,autumn,1517.5,460.0,400.0,753.2,90.0,1,0.0,0.778,93.0,407.0,2087,1211,932,0,17370,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
202,autumn,1520.0,460.0,400.0,763.2,68.0,0,0.0,0.820,93.0,395.0,2132,1457,483,0,17528,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
203,autumn,1518.0,460.0,400.0,762.8,73.4,0,0.0,0.834,93.0,390.3,1759,1763,486,0,17592,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
204,autumn,1514.0,460.0,400.0,736.4,108.8,2,0.0,0.820,93.0,419.1,2385,1283,1417,0,16515,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
205,autumn,1516.0,460.0,400.0,752.8,69.2,0,0.0,0.778,93.0,414.3,2072,1489,485,0,17554,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
206,autumn,1518.0,460.0,400.0,768.4,67.2,0,0.0,0.792,93.0,403.5,2317,1600,463,0,17220,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
207,autumn,1518.0,460.0,400.0,769.8,72.0,0,0.0,0.806,93.0,397.5,1645,1901,485,0,17569,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
208,autumn,1518.0,460.0,400.0,766.6,74.0,0,0.0,0.806,93.0,394.6,1917,1350,500,0,17833,5,0,1.000,20.9,20.0,20,150.0,0.3194,0
209,autumn,1518.0,460.0,400.0,758.6,73.4,0,0.0,0.779,93.0,393.1,1950,1201,509,0,17940,5,0,1.000,21.1,20.0,20,150.0,0.3194,0
210,winter,1487.6,460.0,400.0,666.4,90.0,1,0.0,0.793,93.0,400.9,1940,1495,790,0,17375,5,0,1.000,21.2,20.0,20,150.0,0.3194,0
211,winter,1465.5,460.0,400.0,594.8,69.0,0,0.4,0.779,93.0,395.8,2951,2093,389,143,16024,5,0,1.000,20.0,20.0,20,150.0,0.3194,0
212,winter,1445.9,460.0,400.0,511.2,85.5,1,2.3,0.793,93.0,406.9,2738,2214,1536,0,15112,5,0,1.000,18.0,20.0,20,150.0,0.3194,0
213,winter,1426.5,460.0,400.0,445.9,75.2,1,9.3,0.779,93.0,408.1,4241,2556,286,890,13627,5,0,1.000,19.3,20.0,20,150.0,0.3194,0
214,winter,1410.1,460.0,400.0,383.6,76.6,0,0.4,0.793,93.0,406.1,3408,1933,370,1242,14647,5,0,1.000,22.3,20.0,20,150.0,0.3194,0
215,winter,1398.1,460.0,400.0,335.0,64.2,0,0.0,0.793,93.0,396.9,3992,2324,302,564,14418,5,0,1.000,19.9,20.0,20,150.0,0.3194,0
216,winter,1383.7,460.0,400.0,291.3,65.3,0,4.6,0.822,93.0,385.4,4906,2030,250,1787,12627,5,0,1.000,20.8,20.0,20,150.0,0.3194,0
217,winter,1026.0,460.0,400.0,269.8,400.9,0,8.4,0.808,93.0,370.3,6460,1797,138,3516,9689,5,0,1.000,24.4,20.0,20,150.0,0.3194,0
218,winter,899.2,460.0,400.0,251.0,174.8,0,5.4,0.808,93.0,357.6,9188,481,8,6190,5733,5,0,1.000,23.3,20.0,20,150.0,0.3194,0
219,winter,894.1,460.0,400.0,233.4,53.1,0,10.4,0.794,93.0,337.0,8972,671,0,7680,4277,5,0,1.000,30.0,20.0,20,150.0,0.3194,0
220,winter,885.0,460.0,361.0,217.1,97.1,0,12.0,0.779,93.0,324.8,9444,213,0,7698,4245,5,0,1.000,30.0,20.0,20,150.0,0.3194,0
221,winter,880.9,460.0,342.5,201.9,72.1,0,12.1,0.723,92.4,317.4,8864,887,0,7620,4229,5,0,1.000,30.0,20.0,20,150.0,0.3194,0
222,winter,885.3,460.0,344.0,187.7,43.6,0,8.8,0.683,93.9,300.1,9423,268,0,7777,4132,5,0,1.000,30.0,20.0,20,150.0,0.3194,0
223,winter,910.9,460.0,345.5,174.6,22.4,0,0.9,0.655,92.0,290.2,6250,685,0,4829,9836,5,0,1.000,30.0,20.0,20,135.3,0.3194,0
224,winter,944.5,460.0,347.0,162.4,14.4,0,0.0,0.665,91.8,275.6,3955,607,0,97,16941,5,0,1.000,30.0,20.0,20,116.3,0.3194,0
225,winter,958.0,460.0,348.5,151.0,34.5,2,0.0,0.653,92.5,324.1,5636,881,0,1228,13855,5,0,1.000,30.0,20.0,20,56.3,0.3194,0
226,winter,995.6,460.0,350.0,141.1,10.4,0,0.0,0.613,93.3,326.5,3328,770,0,360,17142,5,0,1.000,30.0,20.0,20,14.3,0.3194,0
227,winter,1012.4,460.0,351.5,133.1,31.2,111,0.0,0.708,94.7,302.6,4746,789,49,113,15903,5,0,1.000,28.9,20.0,20,12.2,0.3194,0
228,winter,1042.8,460.0,353.0,127.6,17.6,856,5.0,0.722,94.7,281.3,6177,553,0,650,14220,5,0,1.000,30.0,20.0,20,0.0,0.3194,0
229,winter,1048.4,460.0,354.5,123.7,42.4,491,7.1,0.708,92.8,275.7,9262,506,0,3811,8021,5,0,1.000,30.0,20.0,20,0.0,0.3237,24
230,winter,896.8,460.0,356.0,121.0,199.6,0,8.8,0.609,90.8,292.5,9238,432,0,7669,4261,5,0,1.000,30.0,20.0,20,0.0,0.3237,0
231,winter,912.0,460.0,357.5,120.0,32.8,0,13.5,0.232,93.7,292.0,9747,0,0,7904,3949,5,0,1.000,10.0,20.0,20,0.0,0.3237,0
232,winter,904.4,460.0,359.0,120.0,55.6,0,2.5,0.052,91.8,303.9,9747,0,0,7704,4149,5,0,0.900,0.0,20.0,20,0.0,0.3237,0
233,winter,894.4,460.0,360.5,120.0,58.0,0,14.5,0.021,94.7,298.8,9747,0,0,7904,3949,5,0,0.800,0.0,20.0,20,0.0,0.3237,0
234,winter,894.4,460.0,362.0,120.0,48.0,0,14.7,0.000,92.3,315.7,9771,0,0,7680,4149,5,0,0.700,0.0,20.0,20,0.0,0.3237,0
235,winter,910.0,460.0,363.5,120.0,32.4,0,14.5,0.000,89.5,306.6,9747,0,0,7704,4149,5,0,0.600,0.0,20.0,20,0.0,0.3237,0
236,winter,906.0,460.0,365.0,120.0,52.0,0,2.5,0.000,91.4,317.5,9747,0,0,7904,3949,5,0,0.500,0.0,20.0,20,0.0,0.3237,0
237,winter,904.8,460.0,366.5,120.0,49.2,0,14.5,0.000,92.2,314.8,9759,0,0,7822,4019,5,0,0.400,0.0,20.0,20,0.0,0.3237,0
238,winter,908.8,460.0,368.0,120.0,44.0,0,5.1,0.000,95.9,307.4,9828,0,0,8183,3589,5,0,0.300,0.0,20.0,20,0.0,0.3237,0
239,winter,926.4,460.0,369.5,120.0,30.4,0,14.5,0.000,93.0,296.0,9747,0,0,7704,4149,5,0,0.200,0.0,20.0,20,0.0,0.3237,0
240,spring,1017.6,460.0,371.0,360.0,52.8,0,2.5,0.000,90.1,307.4,9747,0,0,7704,4149,5,0,0.100,0.0,20.0,20,0.0,0.3237,0
241,spring,1095.6,460.0,372.5,600.0,66.0,0,1.2,0.000,92.1,290.8,9852,0,0,7799,3949,0,5,0.000,0.0,0.0,0,0.0,0.3237,0
1,spring,1571.9,840.0,322.5,772.0,532.5,0,10.9,0.766,100.0,292.5,7682,1652,0,2112,2954,2,0,1.000,12.5,7.5,7,0.0,0.0026,0
2,spring,1367.1,826.0,325.0,773.0,340.2,0,2.1,0.915,100.0,338.6,6945,2679,0,4497,7479,4,0,1.000,25.0,15.0,14,0.0,0.0026,0
3,spring,1332.8,776.0,288.0,797.0,224.3,0,1.5,0.813,100.0,331.5,6841,2645,0,7528,4586,5,0,1.000,30.0,20.0,20,0.0,0.0026,0
4,spring,1367.6,776.0,293.0,740.0,187.4,0,2.1,0.745,100.0,364.5,5184,1922,0,5744,8750,5,0,1.000,30.0,20.0,20,71.0,0.0026,0
5,spring,1409.6,720.0,242.0,752.0,233.2,0,4.9,0.860,100.0,341.7,6565,1864,0,4025,9146,5,0,1.000,30.0,20.0,20,150.0,0.0026,0
6,spring,1416.0,678.0,205.0,799.0,174.4,0,2.6,0.759,100.0,306.1,6114,841,0,5172,9473,5,0,1.000,30.0,20.0,20,150.0,0.0026,0
7,spring,1391.2,604.0,184.0,741.0,381.8,0,5.3,0.908,100.0,349.2,6360,1023,72,3129,11016,5,0,1.000,30.0,20.0,20,150.0,0.0026,0
8,spring,1428.5,550.0,184.5,767.0,194.0,0,2.4,0.806,100.0,360.0,4784,970,325,2445,13076,5,0,1.000,28.7,20.0,20,150.0,0.0026,0
9,spring,1481.6,536.0,189.5,792.0,86.8,0,0.0,0.755,100.0,370.0,2471,2095,416,801,15817,5,0,1.000,28.0,20.0,20,150.0,0.0026,0
10,spring,1527.6,514.0,188.0,796.0,85.7,0,7.0,0.854,100.0,366.5,4035,1461,352,521,15231,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
11,spring,1567.3,498.0,188.5,796.0,74.5,0,4.3,0.769,100.0,364.5,3458,2277,323,1407,14135,5,0,1.000,19.5,20.0,20,150.0,0.0026,0
12,spring,1592.4,484.0,186.5,796.0,93.4,0,1.6,0.901,100.0,358.1,4520,1210,315,1008,14547,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
13,spring,1611.7,470.0,189.5,794.0,83.2,0,4.5,0.816,100.0,370.5,3534,1711,374,162,15819,5,0,1.000,18.6,20.0,20,150.0,0.0026,0
14,spring,1627.8,470.0,190.5,800.0,35.6,0,2.6,0.748,100.0,358.8,1902,2753,400,559,15986,5,0,1.000,19.5,20.0,20,150.0,0.0026,0
15,spring,1619.9,454.0,190.5,794.0,109.0,0,0.0,0.847,100.0,364.0,5234,684,302,1449,13931,5,0,1.000,23.1,20.0,20,150.0,0.0026,0
16,spring,1624.8,454.0,193.0,800.0,55.7,0,0.0,0.778,100.0,366.1,2454,2178,411,402,16155,5,0,1.000,20.7,20.0,20,150.0,0.0026,0
17,spring,1636.4,454.0,191.5,800.0,52.9,0,0.0,0.894,100.0,354.0,1882,1501,492,720,17005,5,0,1.000,22.6,20.0,20,150.0,0.0026,0
18,spring,1632.4,454.0,190.0,800.0,73.7,0,0.0,0.809,100.0,365.0,2542,1323,468,0,17267,5,0,1.000,20.8,20.0,20,150.0,0.0026,0
19,spring,1631.5,454.0,195.0,796.0,56.1,0,0.0,0.741,100.0,370.0,1739,1524,501,0,17836,5,0,1.000,19.6,20.0,20,150.0,0.0026,0
20,spring,1621.5,454.0,197.5,796.0,73.7,0,0.1,0.856,100.0,370.4,2137,1050,506,0,17907,5,0,1.000,21.6,20.0,20,150.0,0.0026,0
21,spring,1630.7,454.0,202.5,800.0,32.0,0,0.0,0.771,100.0,364.0,1181,1183,554,0,18682,5,0,1.000,19.0,20.0,20,150.0,0.0026,0
22,spring,1624.3,454.0,207.5,796.0,62.0,0,0.0,0.903,100.0,357.0,1983,1345,499,0,17773,5,0,1.000,22.2,20.0,20,150.0,0.0026,0
23,spring,1616.7,454.0,212.5,796.0,71.6,0,0.0,0.819,100.0,369.0,1976,1175,505,0,17944,5,0,1.000,22.6,20.0,20,150.0,0.0026,0
24,spring,1629.1,454.0,217.5,800.0,34.4,0,0.0,0.734,100.0,365.0,1116,1571,539,0,18374,5,0,1.000,18.6,20.0,20,150.0,0.0026,0
25,spring,1619.9,454.0,222.5,798.0,70.8,0,0.0,0.849,100.0,365.0,1861,1224,512,0,18003,5,0,1.000,20.2,20.0,20,150.0,0.0026,0
26,spring,1618.7,454.0,227.5,796.0,58.8,0,0.0,0.781,100.0,370.0,1647,1510,508,0,17935,5,0,1.000,20.6,20.0,20,150.0,0.0026,0
27,spring,1626.3,454.0,232.5,800.0,36.0,0,0.0,0.896,100.0,352.0,1361,1068,547,0,18624,5,0,1.000,22.2,20.0,20,150.0,0.0026,0
28,spring,1621.5,454.0,237.5,800.0,66.4,0,0.0,0.812,100.0,364.0,1806,816,539,0,18439,5,0,1.000,19.0,20.0,20,150.0,0.0026,0
29,spring,1619.1,454.0,242.5,800.0,62.4,0,0.0,0.743,100.0,371.0,1752,1301,512,0,18035,5,0,1.000,21.4,20.0,20,150.0,0.0026,0
30,summer,1606.3,454.0,247.5,788.0,70.8,0,0.0,0.859,100.0,369.2,2121,1281,495,0,17703,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
31,summer,1613.1,454.0,252.5,792.0,34.8,0,0.0,0.791,100.0,362.0,1238,1362,540,0,18460,5,0,1.000,20.8,20.0,20,150.0,0.0026,0
32,summer,1609.1,454.0,257.5,792.0,60.0,0,0.0,0.889,100.0,359.0,2227,1230,489,0,17654,5,0,1.000,20.8,20.0,20,150.0,0.0026,0
33,summer,1597.1,454.0,262.5,784.0,72.0,0,0.0,0.805,100.0,371.0,2280,1098,497,0,17725,5,0,1.000,20.8,20.0,20,150.0,0.0026,0
34,summer,1604.3,454.0,267.5,792.0,34.8,0,0.0,0.736,100.0,364.0,1281,1387,538,0,18394,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
35,summer,1592.3,454.0,272.5,790.0,72.0,0,0.0,0.852,100.0,364.0,2322,1292,481,0,17505,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
36,summer,1588.3,454.0,277.5,794.0,62.0,0,0.0,0.784,100.0,371.0,2003,1281,501,0,17815,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
37,summer,1596.3,454.0,282.5,798.0,34.0,0,0.0,0.899,100.0,351.0,1367,1533,518,0,18182,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
38,summer,1587.8,454.0,287.5,790.0,70.5,0,0.0,0.831,100.0,362.0,2285,946,502,0,17867,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
39,summer,1582.5,454.0,292.5,784.0,61.3,0,0.0,0.729,100.0,371.0,2112,1943,458,0,17087,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
40,summer,1572.5,454.0,297.5,784.0,72.0,0,0.0,0.861,100.0,370.3,2431,1014,492,0,17663,5,0,1.000,21.2,20.0,20,150.0,0.0026,0
41,summer,1580.5,454.0,302.5,798.0,36.0,0,0.0,0.777,100.0,364.0,1197,2093,498,0,17812,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
42,summer,1576.5,454.0,307.5,796.0,60.0,0,0.0,0.908,100.0,357.0,2447,1102,483,0,17568,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
43,summer,1568.5,454.0,312.5,784.0,74.0,0,0.0,0.824,100.0,371.0,2268,1135,494,0,17703,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
44,summer,1578.5,454.0,317.5,796.0,34.0,0,0.0,0.739,100.0,363.0,1325,1440,529,0,18306,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
45,summer,1570.5,454.0,322.5,792.0,72.0,0,0.0,0.854,100.0,363.0,2552,1196,473,0,17379,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
46,summer,1568.5,454.0,327.5,788.0,62.0,0,0.3,0.770,100.0,371.0,2340,1488,469,0,17303,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
47,summer,1578.5,454.0,332.5,798.0,38.0,0,0.0,0.901,100.0,354.0,1415,1265,532,0,18388,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
48,summer,1570.5,454.0,337.5,790.0,70.0,0,0.0,0.817,100.0,364.0,2506,1052,487,0,17555,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
49,summer,1572.0,454.0,342.5,792.0,58.5,0,0.0,0.749,100.0,369.0,2107,1504,481,0,17508,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
50,summer,1564.0,454.0,347.5,784.0,74.0,0,0.0,0.847,100.0,372.3,2385,1359,476,0,17380,5,0,1.000,21.5,20.0,20,150.0,0.0026,0
51,summer,1574.0,454.0,352.5,792.0,34.0,0,0.8,0.796,100.0,362.0,1277,1417,537,0,18369,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
52,summer,1570.0,454.0,357.5,794.0,60.0,0,0.0,0.895,100.0,357.0,2417,1120,484,0,17579,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
53,summer,1562.0,454.0,362.5,790.0,74.0,0,0.0,0.810,100.0,371.0,2377,1096,491,0,17636,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
54,summer,1572.0,454.0,367.5,796.0,38.0,0,0.0,0.742,100.0,366.0,1257,2016,501,0,17826,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
55,summer,1565.5,454.0,372.5,794.0,66.5,0,0.0,0.857,100.0,362.0,2670,1117,472,0,17341,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
56,summer,1563.5,454.0,377.5,792.0,62.0,0,0.0,0.789,100.0,369.0,2108,1475,483,0,17534,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
57,summer,1571.5,454.0,382.5,800.0,38.0,0,0.0,0.888,100.0,354.0,1461,1269,529,0,18341,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
58,summer,1563.5,454.0,387.5,790.0,72.0,0,0.0,0.819,100.0,365.0,1980,1127,512,0,17981,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
59,summer,1563.5,454.0,391.5,790.0,58.0,0,0.0,0.735,100.0,369.0,2322,1498,469,0,17311,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
60,autumn,1559.5,454.0,394.0,782.0,74.0,0,0.2,0.867,100.0,370.6,2412,1372,472,0,17344,5,0,1.000,21.8,20.0,20,150.0,0.0026,0
61,autumn,1571.5,454.0,395.5,786.4,38.0,0,0.7,0.782,100.0,366.0,1315,1930,503,0,17852,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
62,autumn,1569.5,454.0,396.5,789.2,56.0,0,0.0,0.881,100.0,357.0,2340,1306,478,0,17476,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
63,autumn,1563.5,454.0,397.5,778.8,74.0,0,0.0,0.829,100.0,369.0,2142,1252,495,0,17711,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
64,autumn,1575.5,454.0,398.0,785.2,38.0,0,0.0,0.728,100.0,366.0,1325,1363,535,0,18377,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
65,autumn,1565.5,454.0,398.5,779.2,70.0,0,0.0,0.860,100.0,363.0,2652,1164,470,0,17314,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
66,autumn,1565.5,454.0,399.0,774.0,60.0,0,0.5,0.775,100.0,369.0,2362,1475,467,0,17296,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
67,autumn,1575.5,454.0,399.5,780.0,38.0,0,0.0,0.890,100.0,353.0,1402,1364,527,0,18307,5,0,1.000,22.4,20.0,20,150.0,0.0026,0
68,autumn,1567.5,454.0,400.0,771.2,74.0,0,0.0,0.822,100.0,366.0,2499,1058,485,0,17558,5,0,1.000,22.4,20.0,20,150.0,0.0028,0
69,autumn,1566.0,454.0,400.0,772.4,56.0,0,0.0,0.737,100.0,368.0,2061,1599,479,0,17461,5,0,1.000,22.4,20.0,20,150.0,0.0028,0
70,autumn,1560.0,454.0,400.0,769.4,73.4,0,0.0,0.869,100.0,369.0,2555,1286,466,0,17293,5,0,1.000,22.4,20.0,20,150.0,0.0028,0
71,autumn,1568.0,454.0,400.0,775.8,40.0,0,0.0,0.768,100.0,367.4,1276,1312,541,0,18471,5,0,1.000,21.0,20.0,20,150.0,0.0029,0
72,autumn,1566.0,454.0,400.0,778.6,54.0,0,0.0,0.899,100.0,356.4,2268,1186,488,0,17658,5,0,1.000,21.0,20.0,20,150.0,0.0029,0
74,autumn,1565.5,454.0,400.0,777.8,115.3,0,0.0,0.730,100.0,367.2,3678,2603,1022,0,35897,5,0,1.000,21.0,20.0,20,150.0,0.0029,0
75,autumn,1559.5,454.0,400.0,769.8,73.2,0,0.0,0.861,100.0,367.5,2509,1238,474,0,17379,5,0,1.000,21.0,20.0,20,150.0,0.0029,0
76,autumn,1557.5,454.0,400.0,770.2,57.2,0,0.0,0.776,100.0,370.6,2117,1498,478,0,17507,5,0,1.000,21.1,20.0,20,150.0,0.0029,0
77,autumn,1565.5,454.0,400.0,782.2,40.0,0,0.0,0.908,100.0,353.6,1520,1249,528,0,18303,5,0,1.000,21.1,20.0,20,150.0,0.0029,0
78,autumn,1555.5,454.0,400.0,773.0,74.0,0,0.0,0.823,100.0,367.6,2714,1132,469,0,17285,5,0,1.000,21.1,20.0,20,150.0,0.0029,0
79,autumn,1557.5,454.0,400.0,772.2,53.6,0,0.0,0.738,100.0,369.2,2096,1501,482,0,17521,5,0,1.000,21.1,20.0,20,150.0,0.0029,0
80,autumn,1551.5,454.0,400.0,771.4,71.2,0,0.7,0.854,100.0,369.0,2467,1316,470,0,17347,5,0,1.000,21.1,20.0,20,150.0,0.0029,0
81,autumn,1555.5,454.0,400.0,773.4,49.2,0,0.0,0.769,100.0,369.6,1605,1394,517,0,18084,5,0,1.000,21.8,20.0,20,150.0,0.0029,0
82,autumn,1557.5,454.0,400.0,772.6,54.0,0,0.0,0.900,100.0,360.6,2021,1131,505,0,17943,5,0,1.000,21.8,20.0,20,150.0,0.0029,0
83,autumn,1551.5,454.0,400.0,773.4,70.0,0,0.0,0.816,100.0,370.6,2387,1094,491,0,17628,5,0,1.000,21.8,20.0,20,150.0,0.0029,0
84,autumn,1557.5,454.0,400.0,780.8,44.0,0,0.0,0.731,100.0,368.6,1572,1728,497,0,17803,5,0,1.000,21.8,20.0,20,150.0,0.0029,0
85,autumn,1553.5,454.0,400.0,772.6,73.4,0,0.0,0.862,100.0,369.1,2711,1199,462,0,17228,5,0,1.000,21.8,20.0,20,150.0,0.0029,0
86,autumn,1559.5,454.0,400.0,777.0,50.0,0,0.0,0.778,100.0,369.0,1518,1841,497,0,17744,5,0,1.000,21.9,20.0,20,150.0,0.0029,0
87,autumn,1565.5,454.0,400.0,782.4,43.4,0,0.0,0.909,100.0,353.4,1601,1236,524,0,18239,5,0,1.000,21.9,20.0,20,150.0,0.0029,0
88,autumn,1559.5,454.0,400.0,776.4,74.0,0,0.0,0.808,100.0,368.4,2301,1049,498,0,17752,5,0,1.000,21.9,20.0,20,150.0,0.0029,0
89,autumn,1562.0,454.0,400.0,776.8,55.4,0,0.0,0.740,100.0,370.8,1838,1500,496,0,17766,5,0,1.000,21.9,20.0,20,150.0,0.0030,0
90,winter,1532.4,454.0,400.0,696.8,71.6,0,0.0,0.855,100.0,370.5,2187,1385,484,0,17544,5,0,1.000,21.9,20.0,20,150.0,0.0030,0
91,winter,1519.9,454.0,400.0,635.0,42.5,0,2.9,0.770,100.0,368.4,1828,1809,476,66,17421,5,0,1.000,21.9,20.0,20,150.0,0.0032,0
92,winter,1507.5,454.0,400.0,570.5,52.6,0,0.0,0.901,100.0,362.0,2432,1252,478,0,17438,5,0,1.000,17.9,20.0,20,150.0,0.0034,0
93,winter,1485.7,454.0,400.0,511.5,61.7,0,0.0,0.816,100.0,366.7,2909,1544,424,129,16594,5,0,1.000,18.8,20.0,20,150.0,0.0034,0
94,winter,1469.2,454.0,400.0,455.4,57.7,0,1.0,0.747,100.0,371.7,2817,2227,388,146,16022,5,0,1.000,19.6,20.0,20,150.0,0.0039,0
95,winter,1449.1,454.0,400.0,399.4,68.3,0,5.1,0.845,100.0,373.2,3581,2105,347,281,15286,5,0,1.000,18.0,20.0,20,150.0,0.0042,0
96,winter,1443.5,454.0,400.0,361.2,39.9,0,1.9,0.776,100.0,367.1,2018,2566,424,50,16542,5,0,1.000,18.7,20.0,20,150.0,0.0045,0
97,winter,1431.7,454.0,400.0,318.0,58.3,0,0.0,0.890,100.0,360.0,3430,1882,367,232,15689,5,0,1.000,18.8,20.0,20,150.0,0.0050,0
98,winter,1419.7,454.0,400.0,276.8,62.0,0,0.8,0.821,100.0,366.8,4188,1983,325,472,14632,5,0,1.000,18.0,20.0,20,150.0,0.0054,0
99,winter,1256.0,454.0,400.0,254.1,202.8,0,1.5,0.735,100.0,360.7,4377,3334,197,2712,10980,5,0,1.000,19.0,20.0,20,150.0,0.0057,0
100,winter,887.6,454.0,341.5,232.8,482.4,0,4.7,0.865,100.0,349.2,7170,1513,99,5084,7734,5,0,1.000,19.9,20.0,20,150.0,0.0062,0
101,winter,899.7,454.0,300.0,217.1,83.0,0,5.5,0.778,100.0,338.1,8596,1035,12,6949,5008,5,0,1.000,21.3,20.0,20,150.0,0.0065,0
102,winter,897.2,454.0,302.5,200.8,55.2,0,12.8,0.908,100.0,326.7,9660,242,5,7670,4023,5,0,1.000,23.7,20.0,20,150.0,0.0069,0
103,winter,909.8,454.0,305.0,186.4,40.4,0,3.8,0.804,100.0,336.0,9587,313,0,7692,4008,5,0,0.980,19.2,20.0,20,150.0,0.0074,0
104,winter,876.2,454.0,307.5,173.9,85.2,0,11.1,0.750,100.0,324.4,9313,357,0,7704,4226,5,0,0.990,28.2,20.0,20,150.0,0.0077,0
105,winter,891.8,454.0,306.0,163.0,39.4,0,6.0,0.846,100.0,304.8,9355,471,0,7572,4202,5,0,1.000,30.0,20.0,20,150.0,0.0079,0
106,winter,875.8,454.0,308.5,152.2,69.1,0,9.2,0.791,100.0,306.1,9265,551,0,7659,4125,5,0,1.000,30.0,20.0,20,150.0,0.0084,0
107,winter,890.6,454.0,311.0,143.7,37.3,0,0.0,0.887,100.0,291.0,9524,551,0,7673,3852,5,0,1.000,30.0,20.0,20,150.0,0.0088,0
108,winter,884.0,454.0,313.5,135.5,58.6,0,12.4,0.832,100.0,292.1,9233,547,0,7666,4154,5,0,1.000,30.0,20.0,20,150.0,0.0091,0
109,winter,899.6,454.0,316.0,129.0,36.4,0,2.0,0.727,100.0,278.9,9347,476,0,7671,4106,5,0,1.000,30.0,20.0,20,150.0,0.0095,0
110,winter,892.0,454.0,318.5,123.6,61.1,0,0.9,0.871,100.0,323.6,6525,902,0,5158,9015,5,0,1.000,30.0,20.0,20,107.9,0.0100,0
111,winter,933.6,454.0,321.0,121.5,7.7,0,0.0,0.767,100.0,342.0,4612,901,5,0,16082,5,0,1.000,28.1,20.0,20,55.9,0.0101,0
112,winter,975.2,454.0,323.5,120.0,11.8,0,0.0,0.910,100.0,261.6,3690,1366,1,0,16543,5,0,1.000,30.0,20.0,20,95.9,0.0106,0
113,winter,988.0,454.0,326.0,120.0,35.2,0,0.0,0.805,100.0,297.8,5593,903,0,678,14426,5,0,1.000,30.0,20.0,20,59.9,0.0106,0
114,winter,1006.8,454.0,328.5,120.0,29.2,0,0.0,0.749,100.0,309.0,4788,770,0,0,16042,5,0,1.000,30.0,20.0,20,39.9,0.0106,0
115,winter,1009.2,454.0,331.0,120.0,45.6,0,6.0,0.844,100.0,338.9,6743,1154,0,1221,12482,5,0,1.000,30.0,20.0,20,0.0,0.0106,0
116,winter,1050.8,454.0,333.5,120.0,6.4,0,0.0,0.787,100.0,307.3,1692,378,0,0,19530,5,0,1.000,30.0,20.0,20,0.0,0.0106,0
117,winter,1066.4,454.0,336.0,120.0,32.4,0,0.0,0.882,100.0,292.7,2330,719,0,0,18551,5,0,1.000,30.0,20.0,20,0.0,0.0106,0
118,winter,1099.2,454.0,338.5,120.0,15.2,0,0.0,0.826,100.0,269.9,3063,795,0,0,17742,5,0,1.000,30.0,20.0,20,0.0,0.0106,0
119,winter,1125.6,454.0,341.0,120.0,21.6,0,0.0,0.721,100.0,256.5,1399,246,0,0,19955,5,0,1.000,30.0,20.0,20,0.0,0.0106,0
120,spring,1247.2,454.0,343.5,360.0,22.4,0,0.0,0.765,100.0,234.9,2786,493,0,510,17811,5,0,1.000,30.0,20.0,20,0.0,0.0106,0
121,spring,1146.8,454.0,346.0,583.0,261.4,0,3.4,0.522,100.0,266.6,3653,161,0,1904,15882,5,0,1.000,30.0,20.0,20,0.0,0.0198,18
122,spring,1264.5,454.0,348.5,652.0,178.4,0,2.2,0.866,99.8,332.0,6785,1463,0,3426,9926,5,0,1.000,30.0,20.0,20,44.0,0.0203,0
123,spring,1360.4,454.0,351.0,708.0,152.0,0,6.8,0.821,99.8,354.1,4384,2502,0,4659,10055,5,0,1.000,30.0,20.0,20,134.9,0.0206,0
124,spring,1467.3,454.0,353.5,687.0,189.2,0,9.2,0.759,100.0,369.5,5328,949,241,2451,12631,5,0,1.000,30.0,20.0,20,150.0,0.0206,0
125,spring,1547.5,454.0,356.0,773.0,58.8,0,0.0,0.848,100.0,369.8,1171,2048,504,360,17517,5,0,1.000,22.6,20.0,20,150.0,0.0207,0
126,spring,1624.9,454.0,358.5,783.0,47.2,0,0.0,0.803,100.0,368.8,1277,1104,553,0,18666,5,0,1.000,20.2,20.0,20,150.0,0.0208,0
127,spring,1671.5,454.0,361.0,783.0,49.2,0,0.0,0.859,100.0,361.8,1441,885,555,0,18719,5,0,1.000,19.0,20.0,20,150.0,0.0211,0
128,spring,1662.8,454.0,363.5,788.0,67.2,0,0.0,0.813,100.0,368.8,1772,1026,529,0,18273,5,0,1.000,18.2,20.0,20,150.0,0.0212,0
129,spring,1659.7,454.0,366.0,791.0,50.0,0,0.0,0.767,100.0,365.8,1441,1255,534,0,18370,5,0,1.000,20.2,20.0,20,150.0,0.0212,0
130,spring,1652.6,454.0,368.5,789.0,62.4,0,0.0,0.840,100.0,365.8,1833,1211,515,0,18041,5,0,1.000,17.8,20.0,20,150.0,0.0213,0
131,spring,1646.2,454.0,371.0,787.0,60.8,0,0.0,0.795,100.0,368.8,1738,1534,501,0,17827,5,0,1.000,20.6,20.0,20,150.0,0.0215,0
132,spring,1644.2,454.0,373.5,789.0,48.8,0,0.0,0.882,100.0,359.8,1608,1038,535,0,18419,5,0,1.000,21.4,20.0,20,150.0,0.0218,0
133,spring,1633.0,454.0,376.0,791.0,66.4,0,0.0,0.805,100.0,367.5,1979,1193,506,0,17922,5,0,1.000,20.2,20.0,20,150.0,0.0218,0
134,spring,1631.0,454.0,378.5,795.0,55.2,0,0.0,0.758,100.0,369.8,1520,1380,524,0,18176,5,0,1.000,18.9,20.0,20,150.0,0.0218,0
135,spring,1627.2,454.0,381.0,793.0,63.4,0,0.0,0.862,100.0,367.9,2077,1103,505,0,17915,5,0,1.000,19.0,20.0,20,150.0,0.0218,0
136,spring,1630.8,454.0,383.5,795.0,48.0,0,0.0,0.785,100.0,368.8,1488,1307,529,0,18276,5,0,1.000,17.8,20.0,20,150.0,0.0218,0
137,spring,1631.6,454.0,386.0,791.0,52.8,0,0.0,0.872,100.0,361.8,1764,1140,521,0,18175,5,0,1.000,19.4,20.0,20,150.0,0.0221,0
138,spring,1626.4,454.0,388.5,791.0,64.8,0,0.0,0.826,100.0,368.8,1998,1112,510,0,17980,5,0,1.000,19.4,20.0,20,150.0,0.0222,0
139,spring,1632.4,454.0,391.0,793.0,48.0,0,0.0,0.748,100.0,367.8,1472,1264,533,0,18331,5,0,1.000,20.6,20.0,20,150.0,0.0222,0
140,spring,1629.2,454.0,393.0,791.0,62.8,0,0.0,0.851,100.0,365.8,1869,1120,518,0,18093,5,0,1.000,20.6,20.0,20,150.0,0.0223,0
141,spring,1627.2,454.0,394.5,789.0,53.2,0,0.0,0.789,100.0,367.8,1671,1201,525,0,18203,5,0,1.000,19.9,20.0,20,150.0,0.0224,0
142,spring,1628.0,454.0,396.0,791.0,50.8,0,0.0,0.860,100.0,359.8,1593,1210,525,0,18272,5,0,1.000,20.3,20.0,20,150.0,0.0227,0
143,spring,1621.2,454.0,397.5,791.0,69.6,0,0.0,0.814,100.0,369.3,2028,1167,506,0,17899,5,0,1.000,21.9,20.0,20,150.0,0.0228,0
144,spring,1623.2,454.0,398.5,793.0,51.2,0,0.0,0.751,100.0,370.8,1530,1406,520,0,18144,5,0,1.000,22.0,20.0,20,150.0,0.0229,0
145,spring,1620.3,454.0,399.0,789.0,62.5,0,0.0,0.839,100.0,369.8,1922,966,523,0,18189,5,0,1.000,20.4,20.0,20,150.0,0.0230,0
146,spring,1627.1,454.0,399.5,793.0,46.4,0,0.0,0.792,100.0,368.8,1435,1409,526,0,18230,5,0,1.000,18.4,20.0,20,150.0,0.0230,0
147,spring,1626.3,454.0,400.0,793.0,52.4,0,0.0,0.863,100.0,360.8,1627,1118,531,0,18324,5,0,1.000,21.6,20.0,20,150.0,0.0231,0
148,spring,1621.1,454.0,400.0,789.0,64.8,0,0.0,0.817,100.0,367.8,1931,1121,512,0,18036,5,0,1.000,23.2,20.0,20,150.0,0.0232,0
149,spring,1623.5,454.0,400.0,791.0,47.6,0,0.0,0.754,100.0,367.8,1444,1287,534,0,18335,5,0,1.000,24.0,20.0,20,150.0,0.0233,0
150,summer,1616.7,454.0,400.0,785.0,62.8,0,0.0,0.841,100.0,366.8,1877,1235,511,0,17977,5,0,1.000,22.8,20.0,20,150.0,0.0234,0
151,summer,1613.9,454.0,400.0,785.0,50.8,0,0.0,0.778,100.0,368.8,1781,1064,525,0,18230,5,0,1.000,18.8,20.0,20,150.0,0.0235,0
152,summer,1612.7,454.0,400.0,783.0,49.2,0,0.0,0.864,100.0,359.8,1789,1256,510,0,18045,5,0,1.000,18.8,20.0,20,150.0,0.0238,0
153,summer,1601.9,454.0,400.0,775.0,72.8,0,0.0,0.818,100.0,369.1,2098,1395,487,0,17620,5,0,1.000,19.6,20.0,20,150.0,0.0240,0
154,summer,1601.9,454.0,400.0,781.0,50.0,0,0.0,0.754,100.0,368.8,1621,1661,500,0,17818,5,0,1.000,18.0,20.0,20,150.0,0.0243,0
155,summer,1595.5,454.0,400.0,777.0,68.4,0,0.0,0.840,100.0,369.8,2126,1160,500,0,17814,5,0,1.000,18.0,20.0,20,150.0,0.0247,0
156,summer,1599.5,454.0,400.0,781.0,50.0,0,0.0,0.809,100.0,367.8,1516,1709,508,0,17867,5,0,1.000,18.1,20.0,20,150.0,0.0251,0
157,summer,1599.5,454.0,400.0,781.0,52.0,0,0.0,0.862,100.0,360.8,1829,1192,514,0,18065,5,0,1.000,18.1,20.0,20,150.0,0.0254,0
158,summer,1589.5,454.0,400.0,775.0,70.0,0,0.0,0.815,100.0,369.8,2288,1080,495,0,17737,5,0,1.000,18.1,20.0,20,150.0,0.0258,0
159,summer,1589.5,454.0,400.0,785.0,46.0,0,0.0,0.766,100.0,364.8,1541,1775,497,0,17787,5,0,1.000,18.1,20.0,20,150.0,0.0258,0
160,summer,1583.5,454.0,400.0,783.0,66.0,0,0.0,0.836,100.0,364.8,2199,1214,494,0,17693,5,0,1.000,18.1,20.0,20,150.0,0.0259,0
161,summer,1583.0,454.0,400.0,781.0,56.5,0,0.0,0.788,100.0,367.8,1827,1228,516,0,18029,5,0,1.000,18.1,20.0,20,150.0,0.0260,0
162,summer,1583.0,454.0,400.0,779.0,50.0,0,0.0,0.872,100.0,358.8,1710,1496,504,0,17890,5,0,1.000,18.1,20.0,20,150.0,0.0261,0
163,summer,1575.0,454.0,400.0,775.0,74.0,0,0.0,0.809,100.0,371.1,2069,1199,500,0,17832,5,0,1.000,18.1,20.0,20,150.0,0.0262,0
164,summer,1575.0,454.0,400.0,779.0,52.0,0,0.0,0.760,100.0,369.8,1656,1523,508,0,17913,5,0,1.000,18.4,20.0,20,150.0,0.0264,0
165,summer,1569.0,454.0,400.0,779.0,68.0,0,0.0,0.845,100.0,368.9,2261,1073,497,0,17769,5,0,1.000,18.4,20.0,20,150.0,0.0265,0
166,summer,1573.0,454.0,400.0,787.0,48.0,0,0.3,0.797,100.0,365.8,1499,1620,511,0,17970,5,0,1.000,18.5,20.0,20,150.0,0.0265,0
167,summer,1576.5,454.0,400.0,787.0,54.5,0,0.0,0.865,100.0,359.8,2012,1127,508,0,17953,5,0,1.000,19.0,20.0,20,150.0,0.0265,0
168,summer,1570.5,454.0,400.0,781.0,70.0,0,0.0,0.817,100.0,368.8,2271,1060,496,0,17773,5,0,1.000,19.0,20.0,20,150.0,0.0265,0
169,summer,1572.5,454.0,400.0,781.0,50.0,0,0.0,0.752,100.0,368.8,1487,1384,527,0,18202,5,0,1.000,19.0,20.0,20,150.0,0.0266,0
170,summer,1568.5,454.0,400.0,779.0,66.0,0,0.0,0.853,100.0,366.8,2200,1217,493,0,17690,5,0,1.000,19.0,20.0,20,150.0,0.0267,0
171,summer,1570.5,454.0,400.0,781.0,56.0,0,0.0,0.789,100.0,368.8,2046,1137,505,0,17912,5,0,1.000,19.0,20.0,20,150.0,0.0268,0
172,summer,1574.5,454.0,400.0,785.0,48.0,0,0.0,0.858,100.0,358.8,1685,1454,506,0,17955,5,0,1.000,19.0,20.0,20,150.0,0.0268,0
173,summer,1568.5,454.0,400.0,785.0,70.0,0,0.0,0.825,100.0,365.8,2050,1281,497,0,17772,5,0,1.000,19.0,20.0,20,150.0,0.0269,0
174,summer,1568.5,454.0,400.0,789.0,60.0,0,0.0,0.760,100.0,368.8,1738,1380,509,0,17973,5,0,1.000,20.0,20.0,20,150.0,0.0269,0
175,summer,1564.5,454.0,400.0,781.0,70.0,0,0.0,0.829,100.0,370.9,2206,1336,487,0,17571,5,0,1.000,20.0,20.0,20,150.0,0.0270,0
176,summer,1570.5,454.0,400.0,789.0,50.0,0,0.0,0.797,100.0,368.8,1457,1719,506,0,17918,5,0,1.000,20.1,20.0,20,150.0,0.0270,0
177,summer,1570.5,454.0,400.0,789.0,54.0,0,0.0,0.880,100.0,361.8,1827,1280,509,0,17984,5,0,1.000,20.1,20.0,20,150.0,0.0271,0
178,summer,1562.5,454.0,400.0,785.0,66.0,0,0.0,0.801,100.0,368.8,2329,1092,492,0,17687,5,0,1.000,20.1,20.0,20,150.0,0.0272,0
179,summer,1564.5,454.0,400.0,787.0,50.0,0,0.0,0.751,100.0,367.8,1463,1262,534,0,18341,5,0,1.000,20.1,20.0,20,150.0,0.0273,0
180,autumn,1560.0,454.0,400.0,781.0,64.5,0,0.0,0.851,100.0,365.8,2066,1150,505,0,17879,5,0,1.000,20.1,20.0,20,150.0,0.0274,0
181,autumn,1560.0,454.0,400.0,781.4,56.0,0,0.0,0.803,100.0,366.8,1976,1186,507,0,17931,5,0,1.000,20.2,20.0,20,150.0,0.0274,0
182,autumn,1566.0,454.0,400.0,779.8,50.0,0,0.0,0.855,100.0,359.8,1714,1393,509,0,17984,5,0,1.000,20.2,20.0,20,150.0,0.0275,0
183,autumn,1558.0,454.0,400.0,773.0,70.0,0,0.0,0.822,100.0,367.3,2391,1066,489,0,17654,5,0,1.000,20.2,20.0,20,150.0,0.0276,0
184,autumn,1560.0,454.0,400.0,777.4,56.0,0,0.0,0.772,100.0,366.8,1658,1309,520,0,18113,5,0,1.000,19.7,20.0,20,150.0,0.0276,0
185,autumn,1554.0,454.0,400.0,772.0,71.8,0,0.0,0.842,100.0,370.7,2278,1271,486,0,17565,5,0,1.000,19.7,20.0,20,150.0,0.0277,0
186,autumn,1562.0,454.0,400.0,777.6,46.0,0,0.0,0.792,100.0,367.6,1418,1470,524,0,18188,5,0,1.000,19.8,20.0,20,150.0,0.0278,0
187,autumn,1562.0,454.0,400.0,775.2,58.0,0,0.0,0.876,100.0,362.6,1997,1289,500,0,17814,5,0,1.000,19.8,20.0,20,150.0,0.0281,0
188,autumn,1557.5,454.0,400.0,768.0,66.5,0,0.0,0.811,100.0,370.6,2280,1110,494,0,17716,5,0,1.000,19.8,20.0,20,150.0,0.0284,0
189,autumn,1563.5,454.0,400.0,769.6,45.2,0,0.0,0.745,100.0,367.8,1388,1371,531,0,18310,5,0,1.000,19.8,20.0,20,150.0,0.0289,0
190,autumn,1559.5,454.0,400.0,767.2,66.4,0,0.0,0.861,100.0,365.2,2167,1206,496,0,17731,5,0,1.000,19.8,20.0,20,150.0,0.0293,0
191,autumn,1557.5,454.0,400.0,765.2,59.6,0,0.0,0.810,100.0,367.8,2427,1095,483,0,17595,5,0,1.000,19.8,20.0,20,150.0,0.0296,0
192,autumn,1563.5,454.0,400.0,767.6,46.4,0,0.0,0.861,100.0,359.2,1526,1503,513,0,18058,5,0,1.000,19.8,20.0,20,150.0,0.0298,0
193,autumn,1557.5,454.0,400.0,761.6,72.4,0,0.0,0.811,100.0,370.8,2411,1141,487,0,17561,5,0,1.000,19.8,20.0,20,150.0,0.0301,0
194,autumn,1557.5,454.0,400.0,765.2,57.6,0,0.0,0.760,100.0,373.2,1874,1445,500,0,17781,5,0,1.000,20.0,20.0,20,150.0,0.0302,0
195,autumn,1553.5,454.0,400.0,764.2,65.4,0,0.0,0.859,100.0,370.6,1978,1075,515,0,18032,5,0,1.000,20.0,20.0,20,150.0,0.0304,0
196,autumn,1557.5,454.0,400.0,763.4,53.6,0,0.0,0.792,100.0,372.2,1781,1208,516,0,18095,5,0,1.000,20.0,20.0,20,150.0,0.0306,0
197,autumn,1559.5,454.0,400.0,765.6,53.0,0,0.0,0.874,100.0,364.2,1888,1277,505,0,17930,5,0,1.000,20.0,20.0,20,150.0,0.0309,0
198,autumn,1557.5,454.0,400.0,763.0,63.2,0,0.0,0.823,100.0,370.4,2017,1135,509,0,17939,5,0,1.000,20.0,20.0,20,150.0,0.0313,0
199,autumn,1559.5,454.0,400.0,765.0,54.5,0,0.0,0.756,100.0,370.4,1692,1279,520,0,18109,5,0,1.000,20.0,20.0,20,150.0,0.0316,0
200,autumn,1555.5,454.0,400.0,764.6,69.6,0,0.0,0.854,100.0,370.1,2192,1224,493,0,17691,5,0,1.000,20.0,20.0,20,150.0,0.0320,0
201,autumn,1561.5,454.0,400.0,769.0,55.2,0,0.0,0.802,100.0,372.2,1644,1971,480,0,17505,5,0,1.000,20.2,20.0,20,150.0,0.0324,0
202,autumn,1567.5,454.0,400.0,771.4,48.0,0,0.0,0.867,100.0,362.2,1834,1159,517,0,18090,5,0,1.000,20.2,20.0,20,150.0,0.0324,0
203,autumn,1561.5,454.0,400.0,764.8,74.0,0,0.0,0.800,100.0,374.2,2269,1234,486,0,17611,5,0,1.000,20.2,20.0,20,150.0,0.0326,0
204,autumn,1565.5,454.0,400.0,765.6,54.0,0,0.0,0.747,100.0,375.2,1667,1524,506,0,17903,5,0,1.000,20.2,20.0,20,150.0,0.0331,0
205,autumn,1561.5,454.0,400.0,760.2,65.0,0,0.0,0.860,100.0,371.2,2202,1226,490,0,17682,5,0,1.000,20.2,20.0,20,150.0,0.0335,0
206,autumn,1565.5,454.0,400.0,756.6,53.6,0,0.0,0.792,100.0,372.8,1788,1139,522,0,18151,5,0,1.000,20.3,20.0,20,150.0,0.0339,0
207,autumn,1566.0,454.0,400.0,759.4,50.4,0,0.0,0.871,100.0,362.2,1853,1262,507,0,17978,5,0,1.000,20.3,20.0,20,150.0,0.0342,0
208,autumn,1560.0,454.0,400.0,752.2,71.2,0,0.0,0.818,100.0,372.4,2240,1045,501,0,17814,5,0,1.000,20.3,20.0,20,150.0,0.0345,0
209,autumn,1564.0,454.0,400.0,757.8,53.6,0,0.0,0.749,100.0,374.0,1503,1779,498,0,17820,5,0,1.000,20.3,20.0,20,150.0,0.0349,0
210,winter,1539.2,454.0,400.0,680.6,66.0,0,0.0,0.862,100.0,371.0,1951,1286,502,0,17861,5,0,1.000,20.3,20.0,20,150.0,0.0354,0
211,winter,1518.7,454.0,400.0,614.4,59.3,0,0.0,0.792,100.0,375.0,2256,1653,454,133,17104,5,0,1.000,20.3,20.0,20,150.0,0.0357,0
212,winter,1507.1,454.0,400.0,558.2,43.0,0,0.4,0.855,100.0,363.6,1858,1559,491,0,17692,5,0,1.000,19.5,20.0,20,150.0,0.0361,0
213,winter,1481.0,454.0,400.0,493.9,74.1,0,0.0,0.816,100.0,372.5,3581,1907,358,309,15445,5,0,1.000,21.9,20.0,20,150.0,0.0366,0
214,winter,1466.9,454.0,400.0,440.6,56.0,0,0.6,0.761,100.0,375.5,2576,1967,435,0,16622,5,0,1.000,19.6,20.0,20,150.0,0.0369,0
215,winter,1450.0,454.0,400.0,404.9,45.5,0,4.5,0.872,100.0,362.2,2683,2886,347,724,14960,5,0,1.000,19.8,20.0,20,150.0,0.0376,0
216,winter,1436.3,454.0,400.0,348.0,67.6,0,0.0,0.801,100.0,368.8,4013,826,409,1080,15272,5,0,1.000,20.3,20.0,20,150.0,0.0377,0
217,winter,1427.0,454.0,400.0,307.1,53.4,0,0.7,0.848,100.0,363.9,2898,2352,378,154,15818,5,0,1.000,18.7,20.0,20,150.0,0.0382,0
218,winter,1412.0,454.0,400.0,271.4,60.2,0,10.9,0.808,100.0,363.1,5479,1806,224,1018,13073,5,0,1.000,20.3,20.0,20,150.0,0.0387,0
219,winter,1222.0,454.0,400.0,243.2,239.7,0,4.2,0.752,100.0,366.6,5324,1905,227,2131,12013,5,0,1.000,19.5,20.0,20,150.0,0.0394,0
220,winter,891.8,454.0,322.0,224.7,463.1,0,5.6,0.861,100.0,348.4,8055,776,102,4295,8372,5,0,1.000,22.3,20.0,20,150.0,0.0398,0
221,winter,895.3,454.0,279.0,208.9,94.1,0,4.1,0.804,100.0,342.8,8892,894,10,6850,4954,5,0,1.000,21.3,20.0,20,150.0,0.0401,0
222,winter,878.3,454.0,282.0,191.6,72.8,0,8.4,0.864,100.0,332.1,8992,979,9,7570,4050,5,0,1.000,25.0,20.0,20,150.0,0.0408,0
223,winter,887.3,454.0,220.5,177.8,110.6,0,3.0,0.808,100.0,337.7,9204,518,0,7664,4214,5,0,1.000,28.5,20.0,20,150.0,0.0413,0
224,winter,882.1,454.0,225.0,164.4,59.7,0,8.4,0.750,100.0,336.5,9727,275,0,7526,4072,5,0,1.000,30.0,20.0,20,150.0,0.0419,0
225,winter,884.9,454.0,225.5,152.7,55.9,0,12.8,0.858,100.0,325.8,9285,628,0,7641,4046,5,0,1.000,30.0,20.0,20,150.0,0.0425,0
226,winter,889.7,454.0,230.0,144.5,47.6,0,1.3,0.799,100.0,322.9,9496,440,0,7589,4075,5,0,1.000,30.0,20.0,20,150.0,0.0429,0
227,winter,882.1,454.0,222.5,137.9,71.1,0,3.3,0.873,100.0,310.0,9537,505,0,7690,3868,5,0,1.000,30.0,20.0,20,150.0,0.0432,0
228,winter,890.1,454.0,227.0,132.5,46.0,0,6.9,0.830,100.0,302.9,9743,187,0,7622,4048,5,0,1.000,30.0,20.0,20,150.0,0.0437,0
229,winter,879.7,454.0,231.5,126.4,64.4,0,12.7,0.770,100.0,314.4,9100,764,0,7578,4158,5,0,1.000,30.0,20.0,20,150.0,0.0442,0
230,winter,913.3,454.0,236.0,122.0,20.4,0,0.0,0.847,100.0,327.8,3755,681,0,4320,12844,5,0,1.000,30.0,20.0,20,109.9,0.0448,0
231,winter,951.7,454.0,240.5,120.0,15.3,0,0.0,0.787,100.0,303.2,4648,727,0,0,16225,5,0,1.000,30.0,20.0,20,110.9,0.0453,0
232,winter,978.1,454.0,245.0,120.0,22.6,0,0.0,0.860,100.0,347.3,5496,768,0,0,15336,5,0,1.000,30.0,20.0,20,33.9,0.0454,0
233,winter,993.7,454.0,249.5,120.0,32.4,0,0.0,0.816,100.0,329.7,4091,1911,28,283,15287,5,0,1.000,27.1,20.0,20,43.9,0.0454,0
234,winter,1011.3,454.0,254.0,120.0,30.4,0,0.0,0.755,100.0,323.1,4507,1125,7,0,15961,5,0,1.000,30.0,20.0,20,38.9,0.0454,0
235,winter,1045.7,454.0,258.5,120.0,13.6,0,0.0,0.861,100.0,326.7,4693,779,0,0,16128,5,0,1.000,30.0,20.0,20,0.0,0.0454,0
236,winter,1073.7,454.0,263.0,120.0,20.0,0,0.0,0.801,100.0,299.6,3004,352,0,0,18244,5,0,1.000,30.0,20.0,20,0.0,0.0454,0
237,winter,1091.7,454.0,267.5,120.0,30.0,0,0.0,0.873,100.0,273.7,1576,674,0,0,19350,5,0,1.000,30.0,20.0,20,0.0,0.0454,0
238,winter,1112.5,454.0,272.0,120.0,27.2,0,0.0,0.830,100.0,260.9,1992,341,0,0,19267,5,0,1.000,30.0,20.0,20,0.0,0.0454,0
239,winter,1124.1,454.0,276.5,120.0,36.4,0,0.0,0.752,100.0,259.3,1303,739,0,0,19558,5,0,1.000,30.0,20.0,20,0.0,0.0454,0
240,spring,1244.9,454.0,281.0,360.0,23.2,2,1.4,0.566,100.0,251.5,5180,311,0,1146,14963,5,0,1.000,30.0,20.0,20,0.0,0.0454,0
241,spring,1374.1,454.0,285.5,569.0,45.8,0,1.1,0.398,100.0,264.3,7281,131,0,4588,9600,5,0,1.000,30.0,20.0,20,0.0,0.0477,0
242,spring,1498.7,454.0,290.0,639.0,179.6,0,5.9,0.800,100.0,334.5,7545,1430,0,5182,7443,5,0,1.000,30.0,20.0,20,36.9,0.0480,0
243,spring,1582.9,454.0,294.5,663.0,168.6,0,5.7,0.837,100.0,309.4,6060,2171,1,5508,7860,5,0,1.000,30.0,20.0,20,150.0,0.0481,0
244,spring,1610.1,454.0,299.0,681.0,220.0,0,0.0,0.792,100.0,373.5,4180,1024,365,3109,12922,5,0,1.000,30.0,20.0,20,150.0,0.0482,0
245,spring,1661.4,454.0,303.5,787.0,32.0,0,0.0,0.796,100.0,364.5,975,2592,483,0,17550,5,0,1.000,20.0,20.0,20,150.0,0.0483,0
246,spring,1664.1,454.0,308.0,789.0,60.4,0,0.0,0.834,100.0,363.5,1848,1012,525,0,18215,5,0,1.000,20.0,20.0,20,150.0,0.0484,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
2 1 spring 1571.9 840.0 322.5 777.0 772.0 525.5 532.5 0 10.9 0.766 100.0 285.5 292.5 7686 7682 1648 1652 0 2112 2954 2 0 1.000 12.5 7.5 7 0.0 0.0068 0.0026 0
3 2 spring 1386.1 1367.1 762.0 826.0 317.0 325.0 772.0 773.0 399.2 340.2 0 1.8 2.1 0.910 0.915 100.0 327.4 338.6 6526 6945 2767 2679 0 4516 4497 7791 7479 4 0 1.000 24.0 25.0 16.0 15.0 16 14 0.0 0.0106 0.0026 0
4 3 spring 1349.4 1332.8 730.0 776.0 277.5 288.0 760.0 797.0 261.3 224.3 0 1.2 1.5 0.804 0.813 100.0 325.1 331.5 6295 6841 3300 2645 0 6816 7528 5189 4586 5 0 1.000 30.0 20.0 20 15.0 0.0 0.0155 0.0026 0
5 4 spring 1348.4 1367.6 730.0 776.0 281.0 293.0 729.0 740.0 226.0 187.4 0 3.8 2.1 0.877 0.745 100.0 345.6 364.5 5861 5184 2689 1922 0 6219 5744 6831 8750 5 0 1.000 30.0 20.0 20 119.0 71.0 0.0195 0.0026 0
6 5 spring 1351.1 1409.6 652.0 720.0 179.0 242.0 784.0 752.0 312.3 233.2 0 4.8 4.9 0.833 0.860 100.0 327.7 341.7 9051 6565 400 1864 0 6264 4025 5885 9146 5 0 1.000 30.0 20.0 20 150.0 0.0226 0.0026 0
7 6 spring 1357.9 1416.0 570.0 678.0 181.5 205.0 738.0 799.0 343.5 174.4 0 11.3 2.6 0.738 0.759 100.0 362.1 306.1 7567 6114 281 841 95 0 6015 5172 7642 9473 5 0 1.000 30.0 20.0 20 150.0 0.0251 0.0026 0
8 7 spring 1392.3 1391.2 554.0 604.0 186.5 184.0 776.0 741.0 143.6 381.8 0 2.7 5.3 0.856 0.908 100.0 368.7 349.2 2858 6360 1321 1023 438 72 1521 3129 15462 11016 5 0 1.000 29.3 30.0 20.0 20 150.0 0.0268 0.0026 0
9 8 spring 1467.5 1428.5 544.0 550.0 186.5 184.5 800.0 767.0 49.0 194.0 0 0.0 2.4 0.743 0.806 100.0 365.0 360.0 1918 4784 1790 970 473 325 0 2445 17419 13076 5 0 1.000 19.8 28.7 20.0 20 150.0 0.0279 0.0026 0
10 9 spring 1520.6 1481.6 536.0 191.5 189.5 800.0 792.0 69.6 86.8 0 0.2 0.0 0.876 0.755 100.0 359.0 370.0 2197 2471 1375 2095 483 416 0 801 17545 15817 5 0 1.000 21.8 28.0 20.0 20 150.0 0.0289 0.0026 0
11 10 spring 1548.9 1527.6 508.0 514.0 182.0 188.0 800.0 796.0 103.3 85.7 0 6.8 7.0 0.762 0.854 100.0 359.7 366.5 5976 4035 1746 1461 174 352 2021 521 11683 15231 5 0 1.000 20.2 21.2 20.0 20 150.0 0.0309 0.0026 0
12 11 spring 1562.1 1567.3 484.0 498.0 184.5 188.5 790.0 796.0 134.5 74.5 0 5.7 4.3 0.893 0.769 100.0 363.0 364.5 4932 3458 754 2277 354 323 2961 1407 12599 14135 5 0 1.000 23.0 19.5 20.0 20 150.0 0.0326 0.0026 0
13 12 spring 1595.7 1592.4 476.0 484.0 189.5 186.5 800.0 796.0 54.8 93.4 0 3.0 1.6 0.777 0.901 100.0 365.0 358.1 2030 4520 3056 1210 384 315 162 1008 15968 14547 5 0 1.000 18.0 21.8 20.0 20 150.0 0.0333 0.0026 0
14 13 spring 1614.0 1611.7 468.0 470.0 189.5 798.0 794.0 73.4 83.2 0 1.8 4.5 0.857 0.816 100.0 360.0 370.5 3364 3534 1974 1711 361 374 444 162 15457 15819 5 0 1.000 19.6 18.6 20.0 20 150.0 0.0347 0.0026 0
15 14 spring 1617.5 1627.8 460.0 470.0 192.0 190.5 794.0 800.0 78.5 35.6 0 0.0 2.6 0.789 0.748 100.0 370.0 358.8 2831 1902 1571 2753 429 400 485 559 16284 15986 5 0 1.000 20.0 19.5 20.0 20 150.0 0.0362 0.0026 0
16 15 spring 1621.5 1619.9 460.0 454.0 192.5 190.5 798.0 794.0 56.1 109.0 0 0.2 0.0 0.852 0.847 100.0 361.6 364.0 1675 5234 2244 684 462 302 0 1449 17219 13931 5 0 1.000 20.4 23.1 20.0 20 150.0 0.0375 0.0026 0
17 16 spring 1619.9 1624.8 460.0 454.0 192.5 193.0 798.0 800.0 67.8 55.7 0 0.0 0.799 0.778 100.0 365.0 366.1 1886 2454 1746 2178 480 411 0 402 17488 16155 5 0 1.000 22.6 20.7 20.0 20 150.0 0.0390 0.0026 0
18 17 spring 1622.7 1636.4 460.0 454.0 194.0 191.5 796.0 800.0 56.7 52.9 0 0.0 0.859 0.894 100.0 359.0 354.0 1669 1882 1599 1501 504 492 0 720 17828 17005 5 0 1.000 23.0 22.6 20.0 20 150.0 0.0405 0.0026 0
19 18 spring 1620.3 1632.4 460.0 454.0 195.0 190.0 790.0 800.0 76.8 73.7 0 0.0 0.805 0.809 100.0 370.0 365.0 1906 2542 1365 1323 501 468 0 17828 17267 5 0 1.000 23.4 20.8 20.0 20 150.0 0.0422 0.0026 0
20 19 spring 1624.7 1631.5 460.0 454.0 200.0 195.0 798.0 796.0 50.8 56.1 0 0.0 0.864 0.741 100.0 362.3 370.0 1356 1739 1417 1524 529 501 0 18298 17836 5 0 1.000 22.2 19.6 20.0 20 150.0 0.0432 0.0026 0
21 20 spring 1625.1 1621.5 460.0 454.0 205.0 197.5 798.0 796.0 54.0 73.7 0 0.0 0.1 0.809 0.856 100.0 363.0 370.4 1503 2137 1306 1050 529 506 0 18262 17907 5 0 1.000 22.1 21.6 20.0 20 150.0 0.0443 0.0026 0
22 21 spring 1630.3 1630.7 460.0 454.0 210.0 202.5 796.0 800.0 50.0 32.0 0 0.0 0.866 0.771 100.0 359.0 364.0 1245 1181 1227 1183 549 554 0 18579 18682 5 0 1.000 18.1 19.0 20.0 20 150.0 0.0454 0.0026 0
23 22 spring 1620.3 1624.3 460.0 454.0 215.0 207.5 794.0 796.0 73.2 62.0 0 0.0 0.809 0.903 100.0 368.1 357.0 1859 1983 1327 1345 507 499 0 17907 17773 5 0 1.000 19.7 22.2 20.0 20 150.0 0.0468 0.0026 0
24 23 spring 1621.5 1616.7 460.0 454.0 220.0 212.5 798.0 796.0 56.4 71.6 0 0.0 0.850 0.819 100.0 363.1 369.0 1462 1976 1522 1175 518 505 0 18098 17944 5 0 1.000 21.0 22.6 20.0 20 150.0 0.0480 0.0026 0
25 24 spring 1621.5 1629.1 460.0 454.0 225.0 217.5 798.0 800.0 57.6 34.4 0 0.0 0.808 0.734 100.0 363.0 365.0 1592 1116 1559 1571 508 539 0 17941 18374 5 0 1.000 21.9 18.6 20.0 20 150.0 0.0491 0.0026 0
26 25 spring 1623.9 1619.9 460.0 454.0 230.0 222.5 794.0 798.0 63.2 70.8 0 0.0 0.830 0.849 100.0 365.4 365.0 1460 1861 1659 1224 507 512 0 17974 18003 5 0 1.000 19.1 20.2 20.0 20 150.0 0.0506 0.0026 0
27 26 spring 1621.9 1618.7 460.0 454.0 235.0 227.5 798.0 796.0 65.2 58.8 0 0.0 0.819 0.781 100.0 367.1 370.0 1686 1647 1631 1510 499 508 0 17784 17935 5 0 1.000 21.5 20.6 20.0 20 150.0 0.0521 0.0026 0
28 27 spring 1619.1 1626.3 460.0 454.0 240.0 232.5 800.0 58.8 36.0 0 0.0 0.840 0.896 100.0 363.1 352.0 1539 1361 1464 1068 516 547 0 18081 18624 5 0 1.000 22.8 22.2 20.0 20 150.0 0.0535 0.0026 0
29 28 spring 1617.5 1621.5 460.0 454.0 245.0 237.5 800.0 57.6 66.4 0 0.0 0.812 100.0 365.0 364.0 1515 1806 1404 816 523 539 0 18158 18439 5 0 1.000 21.7 19.0 20.0 20 150.0 0.0547 0.0026 0
30 29 spring 1618.3 1619.1 460.0 454.0 250.0 242.5 796.0 800.0 58.8 62.4 0 0.0 0.815 0.743 100.0 365.1 371.0 1459 1752 1239 1301 534 512 0 18368 18035 5 0 1.000 20.7 21.4 20.0 20 150.0 0.0560 0.0026 0
31 30 summer 1608.3 1606.3 460.0 454.0 255.0 247.5 792.0 788.0 62.0 70.8 0 0.0 0.801 0.859 100.0 367.0 369.2 1574 2121 1534 1281 510 495 0 17982 17703 5 0 1.000 22.9 21.8 20.0 20 150.0 0.0574 0.0026 0
32 31 summer 1604.7 1613.1 460.0 454.0 260.0 252.5 790.0 792.0 57.6 34.8 0 0.0 0.819 0.791 100.0 365.1 362.0 1613 1238 1320 1362 523 540 0 18144 18460 5 0 1.000 19.7 20.8 20.0 20 150.0 0.0588 0.0026 0
33 32 summer 1598.7 1609.1 460.0 454.0 265.0 257.5 790.0 792.0 62.0 60.0 0 0.0 0.836 0.889 100.0 365.0 359.0 1667 2227 1886 1230 487 489 0 17560 17654 5 0 1.000 19.7 20.8 20.0 20 150.0 0.0605 0.0026 0
34 33 summer 1596.2 1597.1 460.0 454.0 270.0 262.5 790.0 784.0 56.5 72.0 0 0.0 0.788 0.805 100.0 365.0 371.0 1585 2280 1647 1098 503 497 0 17865 17725 5 0 1.000 20.1 20.8 20.0 20 150.0 0.0623 0.0026 0
35 34 summer 1596.2 1604.3 460.0 454.0 275.0 267.5 790.0 792.0 58.0 34.8 0 0.0 0.851 0.736 100.0 358.0 364.0 1982 1281 1272 1387 501 538 0 17845 18394 5 0 1.000 20.1 21.2 20.0 20 150.0 0.0640 0.0026 0
36 35 summer 1589.0 1592.3 460.0 454.0 280.0 272.5 786.0 790.0 67.2 72.0 0 0.0 0.833 0.852 100.0 363.0 364.0 1660 2322 1532 1292 508 481 0 17900 17505 5 0 1.000 20.1 21.2 20.0 20 150.0 0.0659 0.0026 0
37 36 summer 1583.0 1588.3 460.0 454.0 285.0 277.5 788.0 794.0 66.0 62.0 0 0.0 0.813 0.784 100.0 366.0 371.0 1828 2003 1542 1281 494 501 0 17736 17815 5 0 1.000 21.1 21.2 20.0 20 150.0 0.0676 0.0026 0
38 37 summer 1577.0 1596.3 460.0 454.0 290.0 282.5 794.0 798.0 62.0 34.0 0 0.0 0.810 0.899 100.0 365.5 351.0 1657 1367 1872 1533 486 518 0 17585 18182 5 0 1.000 21.2 20.0 20 150.0 0.0695 0.0026 0
39 38 summer 1573.0 1587.8 460.0 454.0 295.0 287.5 790.0 62.0 70.5 0 0.0 0.820 0.831 100.0 363.0 362.0 1854 2285 1660 946 489 502 0 17597 17867 5 0 1.000 21.7 21.2 20.0 20 150.0 0.0713 0.0026 0
40 39 summer 1571.0 1582.5 460.0 454.0 300.0 292.5 796.0 784.0 60.0 61.3 0 0.0 0.847 0.729 100.0 361.0 371.0 1705 2112 1748 1943 490 458 0 17657 17087 5 0 1.000 21.7 21.2 20.0 20 150.0 0.0733 0.0026 0
41 40 summer 1571.0 1572.5 460.0 454.0 305.0 297.5 794.0 784.0 66.0 72.0 0 0.0 0.807 0.861 100.0 365.1 370.3 1775 2431 1394 1014 507 492 0 17924 17663 5 0 1.000 20.7 21.2 20.0 20 150.0 0.0751 0.0026 0
42 41 summer 1569.0 1580.5 460.0 454.0 310.0 302.5 794.0 798.0 62.0 36.0 0 0.0 0.832 0.777 100.0 362.5 364.0 1536 1197 1507 2093 515 498 0 18042 17812 5 0 1.000 20.7 21.5 20.0 20 150.0 0.0768 0.0026 0
43 42 summer 1565.0 1576.5 460.0 454.0 315.0 307.5 792.0 796.0 64.0 60.0 0 0.0 0.822 0.908 100.0 363.0 357.0 1778 2447 1474 1102 503 483 0 17845 17568 5 0 1.000 21.3 21.5 20.0 20 150.0 0.0787 0.0026 0
44 43 summer 1562.5 1568.5 460.0 454.0 320.0 312.5 792.0 784.0 64.5 74.0 0 0.0 0.828 0.824 100.0 365.0 371.0 1744 2268 1510 1135 504 494 0 17842 17703 5 0 1.000 21.3 21.5 20.0 20 150.0 0.0807 0.0026 0
45 44 summer 1562.5 1578.5 460.0 454.0 325.0 317.5 796.0 62.0 34.0 0 0.0 0.832 0.739 100.0 364.1 363.0 1720 1325 1169 1440 523 529 0 18188 18306 5 0 1.000 21.3 21.5 20.0 20 150.0 0.0827 0.0026 0
46 45 summer 1560.5 1570.5 460.0 454.0 330.0 322.5 792.0 60.0 72.0 0 0.0 0.820 0.854 100.0 361.0 363.0 1699 2552 1452 1196 507 473 0 17942 17379 5 0 1.000 22.4 21.5 20.0 20 150.0 0.0847 0.0026 0
47 46 summer 1556.5 1568.5 460.0 454.0 335.0 327.5 790.0 788.0 66.0 62.0 0 0.0 0.3 0.807 0.770 100.0 364.1 371.0 1820 2340 1513 1488 497 469 0 17770 17303 5 0 1.000 21.4 21.5 20.0 20 150.0 0.0867 0.0026 0
48 47 summer 1554.5 1578.5 460.0 454.0 340.0 332.5 790.0 798.0 68.0 38.0 0 0.0 0.824 0.901 100.0 364.5 354.0 1988 1415 1562 1265 483 532 0 17567 18388 5 0 1.000 22.5 21.5 20.0 20 150.0 0.0886 0.0026 0
49 48 summer 1552.5 1570.5 460.0 454.0 345.0 337.5 790.0 68.0 70.0 0 0.0 0.809 0.817 100.0 367.0 364.0 1946 2506 1306 1052 503 487 0 17845 17555 5 0 1.000 23.0 21.5 20.0 20 150.0 0.0907 0.0026 0
50 49 summer 1548.5 1572.0 460.0 454.0 350.0 342.5 790.0 792.0 66.0 58.5 0 0.0 0.823 0.749 100.0 366.4 369.0 1743 2107 1625 1504 495 481 0 17737 17508 5 0 1.000 23.0 21.5 20.0 20 150.0 0.0929 0.0026 0
51 50 summer 1554.0 1564.0 460.0 454.0 355.0 347.5 794.0 784.0 50.5 74.0 0 0.0 0.837 0.847 100.0 361.0 372.3 1511 2385 1485 1359 516 476 0 18088 17380 5 0 1.000 21.4 21.5 20.0 20 150.0 0.0949 0.0026 0
52 51 summer 1552.0 1574.0 460.0 454.0 360.0 352.5 796.0 792.0 64.0 34.0 0 0.0 0.8 0.787 0.796 100.0 364.5 362.0 1871 1277 1120 1417 519 537 0 18090 18369 5 0 1.000 21.4 21.8 20.0 20 150.0 0.0970 0.0026 0
53 52 summer 1550.0 1570.0 460.0 454.0 365.0 357.5 794.0 64.0 60.0 0 0.0 0.813 0.895 100.0 362.0 357.0 1697 2417 1267 1120 518 484 0 18118 17579 5 0 1.000 19.9 21.8 20.0 20 150.0 0.0993 0.0026 0
54 53 summer 1546.0 1562.0 460.0 454.0 370.0 362.5 794.0 790.0 68.0 74.0 0 0.0 0.839 0.810 100.0 362.0 371.0 1759 2377 1520 1096 500 491 0 17821 17636 5 0 1.000 19.9 21.8 20.0 20 150.0 0.1015 0.0026 0
55 54 summer 1541.5 1572.0 460.0 454.0 375.0 367.5 790.0 796.0 72.5 38.0 0 0.0 0.785 0.742 100.0 371.1 366.0 1913 1257 1802 2016 473 501 0 17412 17826 5 0 1.000 19.9 21.8 20.0 20 150.0 0.1034 0.0026 0
56 55 summer 1541.5 1565.5 460.0 454.0 379.5 372.5 794.0 60.0 66.5 0 0.0 0.824 0.857 100.0 366.0 362.0 1640 2670 1847 1117 487 472 0 17626 17341 5 0 1.000 20.0 21.8 20.0 20 150.0 0.1055 0.0026 0
57 56 summer 1545.5 1563.5 460.0 454.0 384.0 377.5 792.0 56.0 62.0 0 0.0 0.831 0.789 100.0 361.1 369.0 1630 2108 1726 1475 497 483 0 17747 17534 5 0 1.000 20.0 21.8 20.0 20 150.0 0.1072 0.0026 0
58 57 summer 1543.5 1571.5 460.0 454.0 388.5 382.5 790.0 800.0 64.0 38.0 0 0.0 0.821 0.888 100.0 361.3 354.0 1674 1461 1541 1269 503 529 0 17882 18341 5 0 1.000 20.1 21.8 20.0 20 150.0 0.1093 0.0026 0
59 58 summer 1541.0 1563.5 460.0 454.0 391.5 387.5 788.0 790.0 68.5 72.0 0 0.0 0.826 0.819 100.0 364.0 365.0 1794 1980 1351 1127 510 512 0 17945 17981 5 0 1.000 20.3 21.8 20.0 20 150.0 0.1114 0.0026 0
60 59 summer 1539.0 1563.5 460.0 454.0 394.0 391.5 792.0 790.0 66.0 58.0 0 0.0 0.812 0.735 100.0 364.0 369.0 1817 2322 1501 1498 498 469 0 17784 17311 5 0 1.000 20.3 21.8 20.0 20 150.0 0.1134 0.0026 0
61 60 autumn 1535.0 1559.5 460.0 454.0 396.0 394.0 788.0 782.0 72.0 74.0 0 0.0 0.2 0.815 0.867 100.0 367.3 370.6 1779 2412 1948 1372 475 472 0 17398 17344 5 0 1.000 20.3 21.8 20.0 20 150.0 0.1157 0.0026 0
62 61 autumn 1537.0 1571.5 460.0 454.0 396.5 395.5 786.0 786.4 62.0 38.0 0 0.0 0.7 0.831 0.782 100.0 365.5 366.0 1773 1315 1504 1930 501 503 0 17822 17852 5 0 1.000 18.6 22.4 20.0 20 150.0 0.1178 0.0026 0
63 62 autumn 1543.0 1569.5 460.0 454.0 397.0 396.5 785.2 789.2 56.0 0 0.0 0.831 0.881 100.0 362.0 357.0 1769 2340 1404 1306 507 478 0 17920 17476 5 0 1.000 19.1 22.4 20.0 20 150.0 0.1198 0.0026 0
64 63 autumn 1543.0 1563.5 460.0 454.0 397.5 780.8 778.8 66.0 74.0 0 0.0 0.782 0.829 100.0 364.0 369.0 1584 2142 1732 1252 496 495 0 17788 17711 5 0 1.000 19.1 22.4 20.0 20 150.0 0.1218 0.0026 0
65 64 autumn 1541.0 1575.5 460.0 454.0 398.0 782.2 785.2 67.8 38.0 0 0.0 0.827 0.728 100.0 362.8 366.0 1841 1325 1106 1363 521 535 0 18132 18377 5 0 1.000 19.2 22.4 20.0 20 150.0 0.1241 0.0026 0
66 65 autumn 1543.0 1565.5 460.0 454.0 398.5 778.6 779.2 70.0 0 0.0 0.822 0.860 100.0 364.8 363.0 1893 2652 1399 1164 499 470 0 17809 17314 5 0 1.000 20.2 22.4 20.0 20 150.0 0.1263 0.0026 0
67 66 autumn 1543.0 1565.5 460.0 454.0 399.0 778.6 774.0 66.0 60.0 0 0.0 0.5 0.784 0.775 100.0 365.8 369.0 1948 2362 1406 1475 495 467 0 17751 17296 5 0 1.000 20.2 22.4 20.0 20 150.0 0.1284 0.0026 0
68 67 autumn 1541.0 1575.5 460.0 454.0 399.5 773.2 780.0 73.0 38.0 0 0.0 0.810 0.890 100.0 368.2 353.0 2014 1402 1254 1364 499 527 0 17833 18307 5 0 1.000 20.2 22.4 20.0 20 150.0 0.1306 0.0026 0
69 68 autumn 1539.0 1567.5 460.0 454.0 400.0 780.8 771.2 62.0 74.0 0 0.0 0.817 0.822 100.0 364.4 366.0 1569 2499 1826 1058 494 485 0 17711 17558 5 0 1.000 20.6 22.4 20.0 20 150.0 0.1327 0.0028 0
70 69 autumn 1541.0 1566.0 460.0 454.0 400.0 782.8 772.4 64.0 56.0 0 0.0 0.825 0.737 100.0 363.8 368.0 1570 2061 1393 1599 518 479 0 18119 17461 5 0 1.000 19.1 22.4 20.0 20 150.0 0.1348 0.0028 0
71 70 autumn 1539.0 1560.0 460.0 454.0 400.0 786.4 769.4 66.0 73.4 0 0.0 0.782 0.869 100.0 364.8 369.0 1941 2555 1513 1286 491 466 0 17655 17293 5 0 1.000 19.1 22.4 20.0 20 150.0 0.1370 0.0028 0
72 71 autumn 1535.0 1568.0 460.0 454.0 400.0 785.6 775.8 72.0 40.0 0 0.0 0.834 0.768 100.0 363.8 367.4 1765 1276 1595 1312 495 541 0 17745 18471 5 0 1.000 19.1 21.0 20.0 20 150.0 0.1391 0.0029 0
73 72 autumn 1530.5 1566.0 460.0 454.0 400.0 778.8 778.6 73.9 54.0 0 0.0 0.835 0.899 100.0 367.3 356.4 1836 2268 1721 1186 485 488 0 17558 17658 5 0 1.000 19.1 21.0 20.0 20 150.0 0.1414 0.0029 0
74 73 74 autumn 1528.5 1565.5 460.0 454.0 400.0 786.0 777.8 64.0 115.3 0 0.0 0.837 0.730 100.0 365.2 367.2 1725 3678 1478 2603 505 1022 0 17892 35897 5 0 1.000 19.2 21.0 20.0 20 150.0 0.1436 0.0029 0
75 74 75 autumn 1528.5 1559.5 460.0 454.0 400.0 782.4 769.8 68.0 73.2 0 0.0 0.791 0.861 100.0 368.2 367.5 1879 2509 1847 1238 474 0 17400 17379 5 0 1.000 19.2 21.0 20.0 20 150.0 0.1460 0.0029 0
76 75 76 autumn 1528.5 1557.5 460.0 454.0 400.0 782.4 770.2 66.0 57.2 0 0.0 0.805 0.776 100.0 365.3 370.6 1929 2117 1678 1498 482 478 0 17511 17507 5 0 1.000 19.2 21.1 20.0 20 150.0 0.1481 0.0029 0
77 76 77 autumn 1530.5 1565.5 460.0 454.0 400.0 778.6 782.2 72.0 40.0 0 0.0 0.833 0.908 100.0 367.3 353.6 1689 1520 1824 1249 488 528 0 17599 18303 5 0 1.000 19.3 21.1 20.0 20 150.0 0.1505 0.0029 0
78 77 78 autumn 1530.5 1555.5 460.0 454.0 400.0 784.6 773.0 62.0 74.0 0 0.0 0.814 0.823 100.0 363.3 367.6 1758 2714 1856 1132 481 469 0 17505 17285 5 0 1.000 19.4 21.1 20.0 20 150.0 0.1526 0.0029 0
79 78 79 autumn 1530.5 1557.5 460.0 454.0 400.0 781.0 772.2 72.0 53.6 0 0.0 0.840 0.738 100.0 364.2 369.2 1747 2096 1742 1501 490 482 0 17621 17521 5 0 1.000 20.5 21.1 20.0 20 150.0 0.1546 0.0029 0
80 79 80 autumn 1528.5 1551.5 460.0 454.0 400.0 782.0 771.4 66.0 71.2 0 0.0 0.7 0.816 0.854 100.0 364.2 369.0 1723 2467 1478 1316 506 470 0 17893 17347 5 0 1.000 20.5 21.1 20.0 20 150.0 0.1569 0.0029 0
81 80 81 autumn 1530.5 1555.5 460.0 454.0 400.0 780.8 773.4 70.0 49.2 0 0.0 0.842 0.769 100.0 363.2 369.6 1758 1605 1699 1394 489 517 0 17654 18084 5 0 1.000 19.5 21.8 20.0 20 150.0 0.1590 0.0029 0
82 81 82 autumn 1528.5 1557.5 460.0 454.0 400.0 780.8 772.6 70.0 54.0 0 0.0 0.786 0.900 100.0 366.7 360.6 1859 2021 1877 1131 473 505 0 17391 17943 5 0 1.000 19.6 21.8 20.0 20 150.0 0.1613 0.0029 0
83 82 83 autumn 1528.5 1551.5 460.0 454.0 400.0 779.6 773.4 74.0 70.0 0 0.0 0.792 0.816 100.0 369.2 370.6 1911 2387 1706 1094 481 491 0 17502 17628 5 0 1.000 20.1 21.8 20.0 20 150.0 0.1636 0.0029 0
84 83 84 autumn 1526.5 1557.5 460.0 454.0 400.0 780.0 780.8 72.0 44.0 0 0.0 0.795 0.731 100.0 370.3 368.6 1796 1572 1804 1728 482 497 0 17518 17803 5 0 1.000 20.1 21.8 20.0 20 150.0 0.1660 0.0029 0
85 84 85 autumn 1526.5 1553.5 460.0 454.0 400.0 786.0 772.6 66.0 73.4 0 0.0 0.813 0.862 100.0 366.2 369.1 1808 2711 1442 1199 502 462 0 17848 17228 5 0 1.000 20.1 21.8 20.0 20 150.0 0.1683 0.0029 0
86 85 86 autumn 1526.5 1559.5 460.0 454.0 400.0 782.0 777.0 72.0 50.0 0 0.0 0.798 0.778 100.0 369.3 369.0 1779 1518 1262 1841 514 497 0 18045 17744 5 0 1.000 20.1 21.9 20.0 20 150.0 0.1705 0.0029 0
87 86 87 autumn 1526.5 1565.5 460.0 454.0 400.0 778.4 782.4 66.0 43.4 0 0.0 0.814 0.909 100.0 364.2 353.4 1885 1601 1506 1236 495 524 0 17714 18239 5 0 1.000 21.2 21.9 20.0 20 150.0 0.1727 0.0029 0
88 87 88 autumn 1526.5 1559.5 460.0 454.0 400.0 776.0 776.4 72.0 74.0 0 0.0 0.811 0.808 100.0 365.7 368.4 1972 2301 1668 1049 476 498 0 17484 17752 5 0 1.000 21.2 21.9 20.0 20 150.0 0.1747 0.0029 0
89 88 89 autumn 1528.5 1562.0 460.0 454.0 400.0 780.2 776.8 67.4 55.4 0 0.0 0.823 0.740 100.0 362.6 370.8 1828 1838 1717 1500 485 496 0 17570 17766 5 0 1.000 21.7 21.9 20.0 20 150.0 0.1767 0.0030 0
90 89 90 autumn winter 1528.5 1532.4 460.0 454.0 400.0 773.0 696.8 72.0 71.6 0 0.0 0.803 0.855 100.0 366.7 370.5 1703 2187 1313 1385 515 484 0 18069 17544 5 0 1.000 19.8 21.9 20.0 20 150.0 0.1790 0.0030 0
91 90 91 winter 1500.5 1519.9 460.0 454.0 400.0 696.6 635.0 68.0 42.5 0 0.0 2.9 0.828 0.770 100.0 362.7 368.4 1880 1828 1502 1809 494 476 0 66 17724 17421 5 0 1.000 19.8 21.9 20.0 20 150.0 0.1815 0.0032 0
92 91 92 winter 1477.6 1507.5 460.0 454.0 400.0 621.1 570.5 70.9 52.6 0 0.0 0.807 0.901 100.0 364.6 362.0 2522 2432 2367 1252 406 478 0 16305 17438 5 0 1.000 20.9 17.9 20.0 20 150.0 0.1822 0.0034 0
93 92 93 winter 1459.6 1485.7 460.0 454.0 400.0 553.4 511.5 63.2 61.7 0 0.0 0.813 0.816 100.0 362.4 366.7 2541 2909 1287 1544 468 424 0 129 17304 16594 5 0 1.000 18.8 20.0 20 150.0 0.1847 0.0034 0
94 93 94 winter 1441.0 1469.2 460.0 454.0 400.0 484.5 455.4 72.7 57.7 0 0.2 1.0 0.821 0.747 100.0 366.8 371.7 3136 2817 2420 2227 360 388 153 146 15531 16022 5 0 1.000 18.5 19.6 20.0 20 150.0 0.1863 0.0039 0
95 94 95 winter 1423.8 1449.1 460.0 454.0 400.0 426.5 399.4 67.2 68.3 0 0.0 5.1 0.810 0.845 100.0 365.8 373.2 2579 3581 1776 2105 439 347 0 281 16806 15286 5 0 1.000 18.1 18.0 20.0 20 150.0 0.1890 0.0042 0
96 95 96 winter 1402.1 1443.5 460.0 454.0 400.0 372.3 361.2 72.1 39.9 0 11.0 1.9 0.815 0.776 100.0 365.1 367.1 4165 2018 2490 2566 280 424 515 50 14150 16542 5 0 1.000 18.5 18.7 20.0 20 150.0 0.1907 0.0045 0
97 96 97 winter 1386.5 1431.7 460.0 454.0 400.0 320.6 318.0 70.3 58.3 0 0.0 0.786 0.890 100.0 367.7 360.0 2954 3430 2033 1882 396 367 81 232 16136 15689 5 0 1.000 19.1 18.8 20.0 20 150.0 0.1940 0.0050 0
98 97 98 winter 1378.0 1419.7 460.0 454.0 400.0 277.2 276.8 60.8 62.0 0 6.9 0.8 0.804 0.821 100.0 363.0 366.8 4506 4188 2320 1983 254 325 895 472 13625 14632 5 0 1.000 17.2 18.0 20.0 20 150.0 0.1959 0.0054 0
99 98 99 winter 1096.9 1256.0 460.0 454.0 400.0 252.7 254.1 328.6 202.8 0 6.7 1.5 0.772 0.735 100.0 362.0 360.7 6018 4377 1796 3334 181 197 2296 2712 11309 10980 5 0 1.000 18.6 19.0 20.0 20 150.0 0.2006 0.0057 0
100 99 100 winter 901.2 887.6 460.0 454.0 380.5 341.5 231.9 232.8 270.7 482.4 0 9.4 4.7 0.800 0.865 100.0 347.8 349.2 8346 7170 1183 1513 27 99 5349 5084 6695 7734 5 0 1.000 24.2 19.9 20.0 20 150.0 0.2037 0.0062 0
101 100 101 winter 879.5 899.7 460.0 454.0 361.5 300.0 215.6 217.1 91.7 83.0 0 9.1 5.5 0.792 0.778 100.0 335.8 338.1 9286 8596 449 1035 2 12 7650 6949 4213 5008 5 0 1.000 25.1 21.3 20.0 20 150.0 0.2090 0.0065 0
102 101 102 winter 898.3 897.2 460.0 454.0 362.5 302.5 200.1 200.8 33.9 55.2 0 10.3 12.8 0.831 0.908 100.0 322.4 326.7 9728 9660 305 242 0 5 7583 7670 3984 4023 5 0 1.000 21.4 23.7 20.0 20 150.0 0.2117 0.0069 0
103 102 103 winter 874.9 909.8 460.0 454.0 303.0 305.0 184.9 186.4 137.4 40.4 0 0.0 3.8 0.817 0.804 100.0 318.9 336.0 9419 9587 275 313 0 7697 7692 4209 4008 5 0 1.000 0.980 30.0 19.2 20.0 20 150.0 0.2176 0.0074 0
104 103 104 winter 906.8 876.2 460.0 454.0 305.5 307.5 170.6 173.9 21.7 85.2 0 11.4 11.1 0.836 0.750 100.0 306.7 324.4 9840 9313 105 357 0 7608 7704 4047 4226 5 0 1.000 0.990 14.0 28.2 20.0 20 150.0 0.2194 0.0077 0
105 104 105 winter 888.4 891.8 460.0 454.0 308.0 306.0 159.8 163.0 69.6 39.4 0 10.0 6.0 0.804 0.846 100.0 321.2 304.8 9160 9355 635 471 0 7681 7572 4124 4202 5 0 0.980 1.000 24.0 30.0 20.0 20 150.0 0.2248 0.0079 0
106 105 106 winter 901.6 875.8 460.0 454.0 310.5 308.5 148.2 152.2 41.0 69.1 0 4.9 9.2 0.832 0.791 100.0 322.4 306.1 6992 9265 854 551 0 5546 7659 8208 4125 5 0 0.990 1.000 30.0 20.0 20 125.2 150.0 0.2274 0.0084 0
107 106 107 winter 936.8 890.6 460.0 454.0 313.0 311.0 139.7 143.7 16.2 37.3 0 0.0 0.797 0.887 100.0 300.5 291.0 4204 9524 638 551 0 0 7673 16758 3852 5 0 1.000 30.0 20.0 20 116.2 150.0 0.2288 0.0088 0
108 107 108 winter 955.2 884.0 460.0 454.0 315.5 313.5 132.1 135.5 33.6 58.6 0 0.0 12.4 0.823 0.832 100.0 315.1 292.1 5290 9233 895 547 0 324 7666 15091 4154 5 0 1.000 30.0 20.0 20 84.2 150.0 0.2308 0.0091 0
109 108 109 winter 978.8 899.6 460.0 454.0 318.0 316.0 126.6 129.0 28.2 36.4 0 0.1 2.0 0.815 0.727 100.0 310.3 278.9 5226 9347 771 476 0 0 7671 15603 4106 5 0 1.000 30.0 20.0 20 68.2 150.0 0.2327 0.0095 0
110 109 110 winter 990.0 892.0 460.0 454.0 320.5 318.5 123.0 123.6 40.8 61.1 0 0.0 0.9 0.809 0.871 100.0 302.8 323.6 4633 6525 1006 902 0 0 5158 15961 9015 5 0 1.000 30.0 20.0 20 26.2 107.9 0.2347 0.0100 0
111 110 111 winter 1028.0 933.6 460.0 454.0 323.0 321.0 121.1 121.5 13.4 7.7 104 0 0.0 0.813 0.767 100.0 268.7 342.0 4434 4612 614 901 0 5 0 16552 16082 5 0 1.000 30.0 28.1 20.0 20 23.7 55.9 0.2358 0.0101 0
112 111 112 winter 1020.8 975.2 460.0 454.0 325.5 323.5 120.0 61.1 11.8 313 0 3.5 0.0 0.805 0.910 100.0 301.4 261.6 6260 3690 1228 1366 0 1 477 0 13635 16543 5 0 1.000 30.0 20.0 20 3.1 95.9 0.2386 0.0106 0
113 112 113 winter 1011.6 988.0 460.0 454.0 328.0 326.0 120.0 58.2 35.2 621 0 6.9 0.0 0.790 0.805 100.0 276.5 297.8 9749 5593 255 903 0 3055 678 8541 14426 5 0 1.000 30.0 20.0 20 0.0 59.9 0.2746 0.0106 77 0
114 113 114 winter 919.2 1006.8 460.0 454.0 330.5 328.5 120.0 140.4 29.2 0 11.9 0.0 0.658 0.749 100.0 294.4 309.0 9478 4788 338 770 0 7629 0 4155 16042 5 0 1.000 30.0 20.0 20 0.0 39.9 0.2818 0.0106 7 0
115 114 115 winter 900.0 1009.2 460.0 454.0 333.0 331.0 120.0 67.2 45.6 0 14.5 6.0 0.297 0.844 100.0 315.0 338.9 9749 6743 0 1154 0 7704 1221 4147 12482 5 0 1.000 10.0 30.0 20.0 20 0.0 0.2839 0.0106 0
116 115 116 winter 901.2 1050.8 460.0 454.0 335.5 333.5 120.0 46.8 6.4 0 0.0 0.165 0.787 100.0 294.4 307.3 9891 1692 0 378 0 7610 0 4099 19530 5 0 0.900 1.000 0.0 30.0 20.0 20 0.0 0.2864 0.0106 0
117 116 117 winter 911.1 1066.4 460.0 454.0 338.0 336.0 120.0 38.1 32.4 0 14.5 0.0 0.135 0.882 100.0 288.1 292.7 9749 2330 0 719 0 7704 0 4147 18551 5 0 0.800 1.000 0.0 30.0 20.0 20 0.0 0.2876 0.0106 0
118 117 118 winter 918.3 1099.2 460.0 454.0 340.5 338.5 120.0 40.8 15.2 0 0.0 0.076 0.826 100.0 296.9 269.9 9848 3063 0 795 0 7616 0 4136 17742 5 0 0.700 1.000 0.0 30.0 20.0 20 0.0 0.2898 0.0106 0
119 118 119 winter 927.9 1125.6 460.0 454.0 343.0 341.0 120.0 38.4 21.6 0 14.5 0.0 0.051 0.721 98.7 100.0 303.5 256.5 9751 1399 0 246 0 7704 0 4145 19955 5 0 0.600 1.000 0.0 30.0 20.0 20 0.0 0.2911 0.0106 0
120 119 120 winter spring 914.3 1247.2 460.0 454.0 345.5 343.5 120.0 360.0 61.6 22.4 0 1.8 0.0 0.051 0.765 96.7 100.0 321.9 234.9 9839 2786 0 493 0 7616 510 4145 17811 5 0 0.500 1.000 0.0 30.0 20.0 20 0.0 0.2935 0.0106 0
121 120 121 spring 1021.9 1146.8 460.0 454.0 348.0 346.0 360.0 583.0 36.4 261.4 0 7.8 3.4 0.022 0.522 94.8 100.0 307.2 266.6 9747 3653 0 161 0 7704 1904 4149 15882 5 0 0.400 1.000 0.0 30.0 20.0 20 0.0 0.2955 0.0198 0 18
122 121 122 spring 1036.0 1264.5 460.0 454.0 350.5 348.5 600.0 652.0 128.0 178.4 0 7.2 2.2 0.000 0.866 92.6 99.8 303.7 332.0 9776 6785 0 1463 0 7675 3426 4149 9926 5 0 0.300 1.000 0.0 30.0 20.0 20 0.0 44.0 0.2972 0.0203 0
123 122 123 spring 1158.0 1360.4 460.0 454.0 353.0 351.0 661.0 708.0 187.6 152.0 0 7.6 6.8 0.648 0.821 89.6 99.8 318.4 354.1 7754 4384 1167 2502 0 6789 4659 5890 10055 5 0 0.350 1.000 30.0 20.0 20 23.2 134.9 0.2992 0.0206 0
124 123 124 spring 1277.2 1467.3 460.0 454.0 355.5 353.5 687.0 170.4 189.2 0 2.0 9.2 0.634 0.759 92.4 100.0 324.0 369.5 6499 5328 2515 949 0 241 5542 2451 7044 12631 5 0 0.400 1.000 30.0 20.0 20 143.0 150.0 0.3007 0.0206 0
125 124 125 spring 1386.9 1547.5 460.0 454.0 358.0 356.0 662.0 773.0 238.0 58.8 3 0 3.7 0.0 0.806 0.848 93.0 100.0 388.2 369.8 6958 1171 823 2048 731 504 6074 360 7014 17517 5 0 0.450 1.000 30.0 22.6 20.0 20 150.0 0.3024 0.0207 0
126 125 126 spring 1485.3 1624.9 460.0 454.0 360.5 358.5 756.0 783.0 94.8 47.2 0 0.0 0.817 0.803 93.0 100.0 394.9 368.8 2285 1277 848 1104 507 553 2520 0 15440 18666 5 0 0.500 1.000 23.7 20.2 20.0 20 150.0 0.3034 0.0208 0
127 126 127 spring 1585.1 1671.5 460.0 454.0 363.0 361.0 784.0 783.0 61.6 49.2 0 0.0 0.799 0.859 93.0 100.0 389.9 361.8 1409 1441 1291 885 536 555 0 18364 18719 5 0 0.550 1.000 18.5 19.0 20.0 20 150.0 0.3043 0.0211 0
128 127 128 spring 1619.8 1662.8 460.0 454.0 365.5 363.5 792.0 788.0 66.4 67.2 0 0.0 0.836 0.813 93.0 100.0 379.0 368.8 1679 1772 1480 1026 505 529 0 17936 18273 5 0 0.600 1.000 19.7 18.2 20.0 20 150.0 0.3049 0.0212 0
129 128 129 spring 1618.6 1659.7 460.0 454.0 368.0 366.0 787.0 791.0 74.0 50.0 0 0.0 0.830 0.767 93.0 100.0 378.9 365.8 1698 1441 1446 1255 508 534 0 17948 18370 5 0 0.650 1.000 20.2 20.0 20 150.0 0.3056 0.0212 0
130 129 130 spring 1616.5 1652.6 460.0 454.0 370.5 368.5 794.0 789.0 71.2 62.4 0 0.0 0.811 0.840 93.0 100.0 375.9 365.8 1573 1833 1548 1211 511 515 0 17968 18041 5 0 0.700 1.000 22.2 17.8 20.0 20 150.0 0.3065 0.0213 0
131 130 131 spring 1604.1 1646.2 460.0 454.0 373.0 371.0 772.0 787.0 133.2 60.8 3 0 0.0 0.776 0.795 93.0 100.0 423.9 368.8 2156 1738 1197 1534 1360 501 0 16887 17827 5 0 0.750 1.000 22.9 20.6 20.0 20 150.0 0.3073 0.0215 0
132 131 132 spring 1611.3 1644.2 460.0 454.0 375.5 373.5 792.0 789.0 61.2 48.8 0 0.0 0.811 0.882 93.0 100.0 412.9 359.8 1620 1608 1520 1038 507 535 0 17953 18419 5 0 0.800 1.000 20.1 21.4 20.0 20 150.0 0.3080 0.0218 0
133 132 133 spring 1607.0 1633.0 460.0 454.0 378.0 376.0 794.0 791.0 69.7 66.4 0 0.0 0.804 0.805 93.0 100.0 408.9 367.5 1747 1979 1346 1193 510 506 0 17997 17922 5 0 0.850 1.000 19.7 20.2 20.0 20 150.0 0.3089 0.0218 0
134 133 134 spring 1603.8 1631.0 460.0 454.0 380.5 378.5 796.0 795.0 67.6 55.2 0 0.0 0.810 0.758 93.0 100.0 401.9 369.8 1758 1520 1601 1380 496 524 0 17745 18176 5 0 0.900 1.000 20.9 18.9 20.0 20 150.0 0.3100 0.0218 0
135 134 135 spring 1603.8 1627.2 460.0 454.0 383.0 381.0 794.0 793.0 66.4 63.4 0 0.0 0.774 0.862 93.0 100.0 395.9 367.9 1812 2077 1565 1103 495 505 0 17728 17915 5 0 0.950 1.000 22.1 19.0 20.0 20 150.0 0.3105 0.0218 0
136 135 136 spring 1601.8 1630.8 460.0 454.0 385.5 383.5 794.0 795.0 65.2 48.0 0 0.0 0.822 0.785 93.0 100.0 383.9 368.8 1865 1488 1407 1307 503 529 0 17825 18276 5 0 1.000 21.3 17.8 20.0 20 150.0 0.3113 0.0218 0
137 136 137 spring 1601.8 1631.6 460.0 454.0 388.0 386.0 790.0 791.0 64.0 52.8 0 0.0 0.813 0.872 93.0 100.0 377.9 361.8 1695 1764 1460 1140 508 521 0 17937 18175 5 0 1.000 22.1 19.4 20.0 20 150.0 0.3118 0.0221 0
138 137 138 spring 1602.2 1626.4 460.0 454.0 390.5 388.5 788.0 791.0 68.0 64.8 0 0.0 0.818 0.826 93.0 100.0 374.9 368.8 1532 1998 1236 1112 529 510 0 18303 17980 5 0 1.000 20.1 19.4 20.0 20 150.0 0.3123 0.0222 0
139 138 139 spring 1595.8 1632.4 460.0 454.0 393.0 391.0 772.0 793.0 108.8 48.0 2 0 0.3 0.0 0.794 0.748 93.0 100.0 406.4 367.8 2205 1472 820 1264 1036 533 0 17539 18331 5 0 1.000 20.8 20.6 20.0 20 150.0 0.3132 0.0222 0
140 139 140 spring 1589.0 1629.2 460.0 454.0 395.0 393.0 784.0 791.0 94.8 62.8 1 0 0.0 0.811 0.851 93.0 100.0 415.9 365.8 2033 1869 1382 1120 965 518 0 17220 18093 5 0 1.000 20.1 20.6 20.0 20 150.0 0.3138 0.0223 0
141 140 141 spring 1592.2 1627.2 460.0 454.0 397.0 394.5 794.0 789.0 69.6 53.2 0 0.0 0.815 0.789 93.0 100.0 412.9 367.8 1717 1671 1350 1201 514 525 0 18019 18203 5 0 1.000 19.4 19.9 20.0 20 150.0 0.3142 0.0224 0
142 141 142 spring 1597.4 1628.0 460.0 454.0 399.0 396.0 794.0 791.0 63.6 50.8 0 0.0 0.818 0.860 93.0 100.0 405.9 359.8 1645 1593 1787 1210 491 525 0 17677 18272 5 0 1.000 17.8 20.3 20.0 20 150.0 0.3149 0.0227 0
143 142 143 spring 1597.0 1621.2 460.0 454.0 399.5 397.5 800.0 791.0 67.2 69.6 0 0.0 0.807 0.814 93.0 100.0 398.0 369.3 1821 2028 1883 1167 475 506 0 17421 17899 5 0 1.000 19.8 21.9 20.0 20 150.0 0.3149 0.0228 0
144 143 144 spring 1595.4 1623.2 460.0 454.0 400.0 398.5 792.0 793.0 64.0 51.2 0 0.0 0.810 0.751 93.0 100.0 388.9 370.8 1678 1530 1724 1406 494 520 0 17704 18144 5 0 1.000 20.2 22.0 20.0 20 150.0 0.3150 0.0229 0
145 144 145 spring 1595.8 1620.3 460.0 454.0 400.0 399.0 796.0 789.0 66.0 62.5 0 0.0 0.812 0.839 93.0 100.0 381.9 369.8 1747 1922 1677 966 491 523 0 17685 18189 5 0 1.000 21.0 20.4 20.0 20 150.0 0.3155 0.0230 0
146 145 146 spring 1595.0 1627.1 460.0 454.0 400.0 399.5 792.0 793.0 64.4 46.4 0 0.0 0.829 0.792 93.0 100.0 373.9 368.8 1621 1435 1486 1409 513 526 0 17980 18230 5 0 1.000 21.0 18.4 20.0 20 150.0 0.3157 0.0230 0
147 146 147 spring 1590.9 1626.3 460.0 454.0 400.0 768.0 793.0 124.1 52.4 3 0 0.0 0.817 0.863 93.0 100.0 419.9 360.8 2222 1627 1010 1118 1747 531 0 16621 18324 5 0 1.000 21.8 21.6 20.0 20 150.0 0.3163 0.0231 0
148 147 148 spring 1595.3 1621.1 460.0 454.0 400.0 784.0 789.0 68.4 64.8 0 0.0 0.819 0.817 93.0 100.0 414.9 367.8 1675 1931 1684 1121 497 512 0 17744 18036 5 0 1.000 21.0 23.2 20.0 20 150.0 0.3165 0.0232 0
149 148 149 spring 1596.9 1623.5 460.0 454.0 400.0 796.0 791.0 69.2 47.6 0 0.0 0.806 0.754 93.0 100.0 412.9 367.8 1648 1444 1232 1287 525 534 0 18195 18335 5 0 1.000 21.4 24.0 20.0 20 150.0 0.3168 0.0233 0
150 149 150 spring summer 1600.1 1616.7 460.0 454.0 400.0 798.0 785.0 66.8 62.8 0 0.0 0.822 0.841 93.0 100.0 407.0 366.8 1748 1877 1288 1235 516 511 0 18048 17977 5 0 1.000 20.6 22.8 20.0 20 150.0 0.3171 0.0234 0
151 150 151 summer 1596.5 1613.9 460.0 454.0 400.0 786.0 785.0 65.2 50.8 0 0.0 0.809 0.778 93.0 100.0 400.9 368.8 1775 1781 1180 1064 520 525 0 18125 18230 5 0 1.000 20.2 18.8 20.0 20 150.0 0.3174 0.0235 0
152 151 152 summer 1589.3 1612.7 460.0 454.0 400.0 788.0 783.0 65.2 49.2 0 0.0 0.783 0.864 93.0 100.0 393.9 359.8 1757 1789 1726 1256 490 510 0 17627 18045 5 0 1.000 20.2 18.8 20.0 20 150.0 0.3178 0.0238 0
153 152 153 summer 1582.1 1601.9 460.0 454.0 400.0 788.0 775.0 65.2 72.8 0 0.0 0.811 0.818 93.0 100.0 382.9 369.1 1651 2098 1542 1395 504 487 0 17903 17620 5 0 1.000 18.2 19.6 20.0 20 150.0 0.3180 0.0240 0
154 153 154 summer 1577.7 1601.9 460.0 454.0 400.0 782.0 781.0 68.4 50.0 0 0.0 0.826 0.754 93.0 100.0 374.9 368.8 1875 1621 1523 1661 492 500 0 17710 17818 5 0 1.000 18.2 18.0 20.0 20 150.0 0.3182 0.0243 0
155 154 155 summer 1555.3 1595.5 460.0 454.0 400.0 756.0 777.0 126.4 68.4 3 0 0.0 0.813 0.840 93.0 100.0 408.9 369.8 2482 2126 794 1160 1355 500 0 16969 17814 5 0 1.000 18.2 18.0 20.0 20 150.0 0.3187 0.0247 0
156 155 156 summer 1545.6 1599.5 460.0 454.0 400.0 760.0 781.0 93.7 50.0 0 0.0 0.786 0.809 93.0 100.0 422.0 367.8 2452 1516 1207 1709 477 508 0 17464 17867 5 0 1.000 20.6 18.1 20.0 20 150.0 0.3187 0.0251 0
157 156 157 summer 1541.6 1599.5 460.0 454.0 400.0 776.0 781.0 66.0 52.0 0 0.0 0.814 0.862 93.0 100.0 410.9 360.8 1801 1829 1257 1192 511 514 0 18031 18065 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3188 0.0254 0
158 157 158 summer 1538.0 1589.5 460.0 454.0 400.0 776.0 775.0 75.6 70.0 0 0.0 0.815 93.0 100.0 409.9 369.8 1911 2288 1494 1080 491 495 0 17704 17737 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3190 0.0258 0
159 158 159 summer 1534.0 1589.5 460.0 454.0 400.0 782.0 785.0 68.0 46.0 0 0.0 0.815 0.766 93.0 100.0 400.9 364.8 2247 1541 1603 1775 465 497 0 17285 17787 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3194 0.0258 0
160 159 160 summer 1535.5 1583.5 460.0 454.0 400.0 782.0 783.0 68.5 66.0 0 0.0 0.801 0.836 93.0 100.0 394.9 364.8 1651 2199 1737 1214 492 494 0 17720 17693 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3194 0.0259 0
161 160 161 summer 1533.5 1583.0 460.0 454.0 400.0 784.0 781.0 68.0 56.5 0 0.0 0.815 0.788 93.0 100.0 384.9 367.8 1899 1827 1452 1228 497 516 0 17752 18029 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3194 0.0260 0
162 161 162 summer 1529.5 1583.0 460.0 454.0 400.0 774.0 779.0 86.0 50.0 1 0 0.0 0.802 0.872 93.0 100.0 394.9 358.8 1802 1710 1796 1496 804 504 0 17198 17890 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3194 0.0261 0
163 162 163 summer 1527.0 1575.0 460.0 454.0 400.0 768.0 775.0 88.5 74.0 1 0 0.0 0.815 0.809 93.0 100.0 406.9 371.1 2111 2069 984 1199 695 500 0 17810 17832 5 0 1.000 18.7 18.1 20.0 20 150.0 0.3194 0.0262 0
164 163 164 summer 1525.0 1575.0 460.0 454.0 400.0 758.0 779.0 90.0 52.0 1 0 0.0 0.802 0.760 93.0 100.0 420.9 369.8 2215 1656 1521 1523 543 508 0 17321 17913 5 0 1.000 18.7 18.4 20.0 20 150.0 0.3194 0.0264 0
165 164 165 summer 1525.0 1569.0 460.0 454.0 400.0 770.0 779.0 70.0 68.0 0 0.0 0.802 0.845 93.0 100.0 414.0 368.9 1858 2261 1369 1073 503 497 0 17870 17769 5 0 1.000 18.7 18.4 20.0 20 150.0 0.3194 0.0265 0
166 165 166 summer 1523.0 1573.0 460.0 454.0 400.0 776.0 787.0 74.0 48.0 0 0.0 0.3 0.802 0.797 93.0 100.0 410.9 365.8 1983 1499 1526 1620 488 511 0 17603 17970 5 0 1.000 18.8 18.5 20.0 20 150.0 0.3194 0.0265 0
167 166 167 summer 1524.5 1576.5 460.0 454.0 400.0 780.0 787.0 70.5 54.5 0 0.0 0.816 0.865 93.0 100.0 405.0 359.8 2114 2012 1782 1127 463 508 0 17241 17953 5 0 1.000 18.8 19.0 20.0 20 150.0 0.3194 0.0265 0
168 167 168 summer 1522.5 1570.5 460.0 454.0 400.0 784.0 781.0 70.0 0 0.0 0.802 0.817 93.0 100.0 398.9 368.8 1879 2271 1979 1060 465 496 0 17277 17773 5 0 1.000 18.9 19.0 20.0 20 150.0 0.3194 0.0265 0
169 168 169 summer 1522.5 1572.5 460.0 454.0 400.0 784.0 781.0 68.0 50.0 0 0.0 0.802 0.752 93.0 100.0 389.9 368.8 1930 1487 1741 1384 476 527 0 17453 18202 5 0 1.000 18.9 19.0 20.0 20 150.0 0.3194 0.0266 0
170 169 170 summer 1522.5 1568.5 460.0 454.0 400.0 782.0 779.0 68.0 66.0 0 0.0 0.802 0.853 93.0 100.0 380.9 366.8 2130 2200 1275 1217 495 493 0 17700 17690 5 0 1.000 18.9 19.0 20.0 20 150.0 0.3194 0.0267 0
171 170 171 summer 1514.5 1570.5 460.0 454.0 400.0 762.0 781.0 112.0 56.0 2 0 0.0 0.816 0.789 93.0 100.0 406.9 368.8 2230 2046 1038 1137 1843 505 0 16489 17912 5 0 1.000 18.9 19.0 20.0 20 150.0 0.3194 0.0268 0
172 171 172 summer 1516.5 1574.5 460.0 454.0 400.0 766.0 785.0 84.0 48.0 1 0 0.0 0.802 0.858 93.0 100.0 415.0 358.8 2230 1685 839 1454 1312 506 0 17219 17955 5 0 1.000 18.9 19.0 20.0 20 150.0 0.3194 0.0268 0
173 172 173 summer 1512.0 1568.5 460.0 454.0 400.0 766.0 785.0 78.5 70.0 0 0.0 0.802 0.825 93.0 100.0 415.9 365.8 2492 2050 833 1281 497 0 17778 17772 5 0 1.000 21.0 19.0 20.0 20 150.0 0.3194 0.0269 0
174 173 174 summer 1516.0 1568.5 460.0 454.0 400.0 776.0 789.0 64.0 60.0 0 0.0 0.802 0.760 93.0 100.0 408.9 368.8 1878 1738 1275 1380 506 509 0 17941 17973 5 0 1.000 19.0 20.0 20.0 20 150.0 0.3194 0.0269 0
175 174 175 summer 1514.0 1564.5 460.0 454.0 400.0 774.0 781.0 76.0 70.0 0 0.0 0.816 0.829 93.0 100.0 407.0 370.9 1918 2206 1280 1336 505 487 0 17897 17571 5 0 1.000 19.0 20.0 20.0 20 150.0 0.3194 0.0270 0
176 175 176 summer 1514.0 1570.5 460.0 454.0 400.0 780.0 789.0 70.0 50.0 0 0.0 0.817 0.797 93.0 100.0 399.9 368.8 1995 1457 1287 1719 500 506 0 17818 17918 5 0 1.000 19.0 20.1 20.0 20 150.0 0.3194 0.0270 0
177 176 177 summer 1514.0 1570.5 460.0 454.0 400.0 786.0 789.0 70.0 54.0 0 0.0 0.775 0.880 93.0 100.0 395.9 361.8 1805 1827 2141 1280 460 509 0 17194 17984 5 0 1.000 19.1 20.1 20.0 20 150.0 0.3194 0.0271 0
178 177 178 summer 1512.0 1562.5 460.0 454.0 400.0 784.0 785.0 68.0 66.0 0 0.0 0.817 0.801 93.0 100.0 383.9 368.8 2003 2329 1543 1092 485 492 0 17569 17687 5 0 1.000 19.1 20.1 20.0 20 150.0 0.3194 0.0272 0
179 178 179 summer 1504.0 1564.5 460.0 454.0 400.0 778.0 787.0 94.0 50.0 1 0 0.0 0.845 0.751 93.0 100.0 390.9 367.8 2274 1463 1574 1262 1061 534 0 16691 18341 5 0 1.000 19.1 20.1 20.0 20 150.0 0.3194 0.0273 0
180 179 180 summer autumn 1504.0 1560.0 460.0 454.0 400.0 766.0 781.0 94.0 64.5 1 0 0.0 0.831 0.851 93.0 100.0 408.9 365.8 1991 2066 1307 1150 689 505 0 17613 17879 5 0 1.000 19.1 20.1 20.0 20 150.0 0.3194 0.0274 0
181 180 181 autumn 1498.0 1560.0 460.0 454.0 400.0 753.6 781.4 90.0 56.0 1 0 0.0 0.790 0.803 93.0 100.0 419.0 366.8 2208 1976 1125 1186 541 507 0 17726 17931 5 0 1.000 21.6 20.2 20.0 20 150.0 0.3194 0.0274 0
182 181 182 autumn 1502.0 1566.0 460.0 454.0 400.0 756.4 779.8 68.0 50.0 0 0.0 0.804 0.855 93.0 100.0 410.9 359.8 1814 1714 1340 1393 509 0 17937 17984 5 0 1.000 19.7 20.2 20.0 20 150.0 0.3194 0.0275 0
183 182 183 autumn 1504.0 1558.0 460.0 454.0 400.0 757.4 773.0 74.2 70.0 0 0.0 0.818 0.822 93.0 100.0 407.1 367.3 2173 2391 1222 1066 495 489 0 17710 17654 5 0 1.000 19.7 20.2 20.0 20 150.0 0.3194 0.0276 0
184 183 184 autumn 1510.0 1560.0 460.0 454.0 400.0 766.2 777.4 67.2 56.0 0 0.0 0.818 0.772 93.0 100.0 397.4 366.8 1735 1658 2215 1309 460 520 0 17190 18113 5 0 1.000 19.7 20.0 20 150.0 0.3194 0.0276 0
185 184 185 autumn 1510.0 1554.0 460.0 454.0 400.0 769.8 772.0 71.2 71.8 0 0.0 0.790 0.842 93.0 100.0 393.5 370.7 2137 2278 1650 1271 468 486 0 17345 17565 5 0 1.000 19.8 19.7 20.0 20 150.0 0.3194 0.0277 0
186 185 186 autumn 1510.0 1562.0 460.0 454.0 400.0 769.8 777.6 69.0 46.0 0 0.0 0.804 0.792 93.0 100.0 384.5 367.6 1699 1418 1725 1470 494 524 0 17682 18188 5 0 1.000 19.8 20.0 20 150.0 0.3194 0.0278 0
187 186 187 autumn 1508.0 1562.0 460.0 454.0 400.0 760.6 775.2 95.2 58.0 1 0 0.0 0.790 0.876 93.0 100.0 397.7 362.6 2051 1997 1235 1289 1280 500 0 17034 17814 5 0 1.000 22.0 19.8 20.0 20 150.0 0.3194 0.0281 0
188 187 188 autumn 1514.0 1557.5 460.0 454.0 400.0 771.4 768.0 67.6 66.5 0 0.0 0.804 0.811 93.0 100.0 389.3 370.6 2013 2280 1945 1110 460 494 0 17182 17716 5 0 1.000 20.0 19.8 20.0 20 150.0 0.3194 0.0284 0
189 188 189 autumn 1501.5 1563.5 460.0 454.0 400.0 746.2 769.6 121.7 45.2 2 0 0.0 0.790 0.745 93.0 100.0 420.5 367.8 2281 1388 1530 1371 895 531 0 16894 18310 5 0 1.000 22.7 19.8 20.0 20 150.0 0.3194 0.0289 0
190 189 190 autumn 1505.5 1559.5 460.0 454.0 400.0 755.2 767.2 67.0 66.4 0 0.0 0.790 0.861 93.0 100.0 412.5 365.2 1866 2167 1587 1206 493 496 0 17654 17731 5 0 1.000 20.7 19.8 20.0 20 150.0 0.3194 0.0293 0
191 190 191 autumn 1505.5 1557.5 460.0 454.0 400.0 761.6 765.2 68.0 59.6 0 0.0 0.790 0.810 93.0 100.0 403.5 367.8 2050 2427 1860 1095 465 483 0 17225 17595 5 0 1.000 20.7 19.8 20.0 20 150.0 0.3194 0.0296 0
192 191 192 autumn 1507.5 1563.5 460.0 454.0 400.0 766.0 767.6 71.2 46.4 0 0.0 0.804 0.861 93.0 100.0 396.7 359.2 2140 1526 1348 1503 490 513 0 17622 18058 5 0 1.000 20.7 19.8 20.0 20 150.0 0.3194 0.0298 0
193 192 193 autumn 1509.5 1557.5 460.0 454.0 400.0 772.0 761.6 69.8 72.4 0 0.0 0.791 0.811 93.0 100.0 390.5 370.8 1826 2411 1929 1141 472 487 0 17373 17561 5 0 1.000 20.7 19.8 20.0 20 150.0 0.3194 0.0301 0
194 193 194 autumn 1511.5 1557.5 460.0 454.0 400.0 769.8 765.2 69.4 57.6 0 0.0 0.791 0.760 93.0 100.0 382.9 373.2 1710 1874 1830 1445 486 500 0 17574 17781 5 0 1.000 20.7 20.0 20.0 20 150.0 0.3194 0.0302 0
195 194 195 autumn 1505.5 1553.5 460.0 454.0 400.0 758.6 764.2 98.0 65.4 1 0 0.0 0.791 0.859 93.0 100.0 395.9 370.6 2479 1978 1029 1075 639 515 0 17453 18032 5 0 1.000 20.7 20.0 20.0 20 150.0 0.3194 0.0304 0
196 195 196 autumn 1507.5 1557.5 460.0 454.0 400.0 764.4 763.4 70.2 53.6 0 0.0 0.819 0.792 93.0 100.0 387.2 372.2 1795 1781 1412 1208 504 516 0 17889 18095 5 0 1.000 20.7 20.0 20.0 20 150.0 0.3194 0.0306 0
197 196 197 autumn 1507.5 1559.5 460.0 454.0 400.0 738.4 765.6 112.4 53.0 2 0 0.0 0.805 0.874 93.0 100.0 419.5 364.2 2314 1888 1488 1277 908 505 0 16890 17930 5 0 1.000 22.7 20.0 20.0 20 150.0 0.3194 0.0309 0
198 197 198 autumn 1511.5 1557.5 460.0 454.0 400.0 748.8 763.0 65.2 63.2 0 0.0 0.820 0.823 93.0 100.0 408.7 370.4 2053 2017 1730 1135 470 509 0 17347 17939 5 0 1.000 20.7 20.0 20.0 20 150.0 0.3194 0.0313 0
199 198 199 autumn 1511.5 1559.5 460.0 454.0 400.0 759.2 765.0 70.4 54.5 0 0.0 0.820 0.756 93.0 100.0 402.1 370.4 1954 1692 1578 1279 486 520 0 17582 18109 5 0 1.000 20.7 20.0 20.0 20 150.0 0.3194 0.0316 0
200 199 200 autumn 1509.5 1555.5 460.0 454.0 400.0 762.8 764.6 71.2 69.6 0 0.0 0.834 0.854 93.0 100.0 395.4 370.1 2297 2192 1544 1224 467 493 0 17292 17691 5 0 1.000 20.7 20.0 20.0 20 150.0 0.3194 0.0320 0
201 200 201 autumn 1513.5 1561.5 460.0 454.0 400.0 764.4 769.0 71.6 55.2 0 0.0 0.820 0.802 93.0 100.0 390.9 372.2 1679 1644 1939 1971 479 480 0 17503 17505 5 0 1.000 20.9 20.2 20.0 20 150.0 0.3194 0.0324 0
202 201 202 autumn 1517.5 1567.5 460.0 454.0 400.0 753.2 771.4 90.0 48.0 1 0 0.0 0.778 0.867 93.0 100.0 407.0 362.2 2087 1834 1211 1159 932 517 0 17370 18090 5 0 1.000 20.9 20.2 20.0 20 150.0 0.3194 0.0324 0
203 202 203 autumn 1520.0 1561.5 460.0 454.0 400.0 763.2 764.8 68.0 74.0 0 0.0 0.820 0.800 93.0 100.0 395.0 374.2 2132 2269 1457 1234 483 486 0 17528 17611 5 0 1.000 20.9 20.2 20.0 20 150.0 0.3194 0.0326 0
204 203 204 autumn 1518.0 1565.5 460.0 454.0 400.0 762.8 765.6 73.4 54.0 0 0.0 0.834 0.747 93.0 100.0 390.3 375.2 1759 1667 1763 1524 486 506 0 17592 17903 5 0 1.000 20.9 20.2 20.0 20 150.0 0.3194 0.0331 0
205 204 205 autumn 1514.0 1561.5 460.0 454.0 400.0 736.4 760.2 108.8 65.0 2 0 0.0 0.820 0.860 93.0 100.0 419.1 371.2 2385 2202 1283 1226 1417 490 0 16515 17682 5 0 1.000 20.9 20.2 20.0 20 150.0 0.3194 0.0335 0
206 205 206 autumn 1516.0 1565.5 460.0 454.0 400.0 752.8 756.6 69.2 53.6 0 0.0 0.778 0.792 93.0 100.0 414.3 372.8 2072 1788 1489 1139 485 522 0 17554 18151 5 0 1.000 20.9 20.3 20.0 20 150.0 0.3194 0.0339 0
207 206 207 autumn 1518.0 1566.0 460.0 454.0 400.0 768.4 759.4 67.2 50.4 0 0.0 0.792 0.871 93.0 100.0 403.5 362.2 2317 1853 1600 1262 463 507 0 17220 17978 5 0 1.000 20.9 20.3 20.0 20 150.0 0.3194 0.0342 0
208 207 208 autumn 1518.0 1560.0 460.0 454.0 400.0 769.8 752.2 72.0 71.2 0 0.0 0.806 0.818 93.0 100.0 397.5 372.4 1645 2240 1901 1045 485 501 0 17569 17814 5 0 1.000 20.9 20.3 20.0 20 150.0 0.3194 0.0345 0
209 208 209 autumn 1518.0 1564.0 460.0 454.0 400.0 766.6 757.8 74.0 53.6 0 0.0 0.806 0.749 93.0 100.0 394.6 374.0 1917 1503 1350 1779 500 498 0 17833 17820 5 0 1.000 20.9 20.3 20.0 20 150.0 0.3194 0.0349 0
210 209 210 autumn winter 1518.0 1539.2 460.0 454.0 400.0 758.6 680.6 73.4 66.0 0 0.0 0.779 0.862 93.0 100.0 393.1 371.0 1950 1951 1201 1286 509 502 0 17940 17861 5 0 1.000 21.1 20.3 20.0 20 150.0 0.3194 0.0354 0
211 210 211 winter 1487.6 1518.7 460.0 454.0 400.0 666.4 614.4 90.0 59.3 1 0 0.0 0.793 0.792 93.0 100.0 400.9 375.0 1940 2256 1495 1653 790 454 0 133 17375 17104 5 0 1.000 21.2 20.3 20.0 20 150.0 0.3194 0.0357 0
212 211 212 winter 1465.5 1507.1 460.0 454.0 400.0 594.8 558.2 69.0 43.0 0 0.4 0.779 0.855 93.0 100.0 395.8 363.6 2951 1858 2093 1559 389 491 143 0 16024 17692 5 0 1.000 20.0 19.5 20.0 20 150.0 0.3194 0.0361 0
213 212 213 winter 1445.9 1481.0 460.0 454.0 400.0 511.2 493.9 85.5 74.1 1 0 2.3 0.0 0.793 0.816 93.0 100.0 406.9 372.5 2738 3581 2214 1907 1536 358 0 309 15112 15445 5 0 1.000 18.0 21.9 20.0 20 150.0 0.3194 0.0366 0
214 213 214 winter 1426.5 1466.9 460.0 454.0 400.0 445.9 440.6 75.2 56.0 1 0 9.3 0.6 0.779 0.761 93.0 100.0 408.1 375.5 4241 2576 2556 1967 286 435 890 0 13627 16622 5 0 1.000 19.3 19.6 20.0 20 150.0 0.3194 0.0369 0
215 214 215 winter 1410.1 1450.0 460.0 454.0 400.0 383.6 404.9 76.6 45.5 0 0.4 4.5 0.793 0.872 93.0 100.0 406.1 362.2 3408 2683 1933 2886 370 347 1242 724 14647 14960 5 0 1.000 22.3 19.8 20.0 20 150.0 0.3194 0.0376 0
216 215 216 winter 1398.1 1436.3 460.0 454.0 400.0 335.0 348.0 64.2 67.6 0 0.0 0.793 0.801 93.0 100.0 396.9 368.8 3992 4013 2324 826 302 409 564 1080 14418 15272 5 0 1.000 19.9 20.3 20.0 20 150.0 0.3194 0.0377 0
217 216 217 winter 1383.7 1427.0 460.0 454.0 400.0 291.3 307.1 65.3 53.4 0 4.6 0.7 0.822 0.848 93.0 100.0 385.4 363.9 4906 2898 2030 2352 250 378 1787 154 12627 15818 5 0 1.000 20.8 18.7 20.0 20 150.0 0.3194 0.0382 0
218 217 218 winter 1026.0 1412.0 460.0 454.0 400.0 269.8 271.4 400.9 60.2 0 8.4 10.9 0.808 93.0 100.0 370.3 363.1 6460 5479 1797 1806 138 224 3516 1018 9689 13073 5 0 1.000 24.4 20.3 20.0 20 150.0 0.3194 0.0387 0
219 218 219 winter 899.2 1222.0 460.0 454.0 400.0 251.0 243.2 174.8 239.7 0 5.4 4.2 0.808 0.752 93.0 100.0 357.6 366.6 9188 5324 481 1905 8 227 6190 2131 5733 12013 5 0 1.000 23.3 19.5 20.0 20 150.0 0.3194 0.0394 0
220 219 220 winter 894.1 891.8 460.0 454.0 400.0 322.0 233.4 224.7 53.1 463.1 0 10.4 5.6 0.794 0.861 93.0 100.0 337.0 348.4 8972 8055 671 776 0 102 7680 4295 4277 8372 5 0 1.000 30.0 22.3 20.0 20 150.0 0.3194 0.0398 0
221 220 221 winter 885.0 895.3 460.0 454.0 361.0 279.0 217.1 208.9 97.1 94.1 0 12.0 4.1 0.779 0.804 93.0 100.0 324.8 342.8 9444 8892 213 894 0 10 7698 6850 4245 4954 5 0 1.000 30.0 21.3 20.0 20 150.0 0.3194 0.0401 0
222 221 222 winter 880.9 878.3 460.0 454.0 342.5 282.0 201.9 191.6 72.1 72.8 0 12.1 8.4 0.723 0.864 92.4 100.0 317.4 332.1 8864 8992 887 979 0 9 7620 7570 4229 4050 5 0 1.000 30.0 25.0 20.0 20 150.0 0.3194 0.0408 0
223 222 223 winter 885.3 887.3 460.0 454.0 344.0 220.5 187.7 177.8 43.6 110.6 0 8.8 3.0 0.683 0.808 93.9 100.0 300.1 337.7 9423 9204 268 518 0 7777 7664 4132 4214 5 0 1.000 30.0 28.5 20.0 20 150.0 0.3194 0.0413 0
224 223 224 winter 910.9 882.1 460.0 454.0 345.5 225.0 174.6 164.4 22.4 59.7 0 0.9 8.4 0.655 0.750 92.0 100.0 290.2 336.5 6250 9727 685 275 0 4829 7526 9836 4072 5 0 1.000 30.0 20.0 20 135.3 150.0 0.3194 0.0419 0
225 224 225 winter 944.5 884.9 460.0 454.0 347.0 225.5 162.4 152.7 14.4 55.9 0 0.0 12.8 0.665 0.858 91.8 100.0 275.6 325.8 3955 9285 607 628 0 97 7641 16941 4046 5 0 1.000 30.0 20.0 20 116.3 150.0 0.3194 0.0425 0
226 225 226 winter 958.0 889.7 460.0 454.0 348.5 230.0 151.0 144.5 34.5 47.6 2 0 0.0 1.3 0.653 0.799 92.5 100.0 324.1 322.9 5636 9496 881 440 0 1228 7589 13855 4075 5 0 1.000 30.0 20.0 20 56.3 150.0 0.3194 0.0429 0
227 226 227 winter 995.6 882.1 460.0 454.0 350.0 222.5 141.1 137.9 10.4 71.1 0 0.0 3.3 0.613 0.873 93.3 100.0 326.5 310.0 3328 9537 770 505 0 360 7690 17142 3868 5 0 1.000 30.0 20.0 20 14.3 150.0 0.3194 0.0432 0
228 227 228 winter 1012.4 890.1 460.0 454.0 351.5 227.0 133.1 132.5 31.2 46.0 111 0 0.0 6.9 0.708 0.830 94.7 100.0 302.6 302.9 4746 9743 789 187 49 0 113 7622 15903 4048 5 0 1.000 28.9 30.0 20.0 20 12.2 150.0 0.3194 0.0437 0
229 228 229 winter 1042.8 879.7 460.0 454.0 353.0 231.5 127.6 126.4 17.6 64.4 856 0 5.0 12.7 0.722 0.770 94.7 100.0 281.3 314.4 6177 9100 553 764 0 650 7578 14220 4158 5 0 1.000 30.0 20.0 20 0.0 150.0 0.3194 0.0442 0
230 229 230 winter 1048.4 913.3 460.0 454.0 354.5 236.0 123.7 122.0 42.4 20.4 491 0 7.1 0.0 0.708 0.847 92.8 100.0 275.7 327.8 9262 3755 506 681 0 3811 4320 8021 12844 5 0 1.000 30.0 20.0 20 0.0 109.9 0.3237 0.0448 24 0
231 230 231 winter 896.8 951.7 460.0 454.0 356.0 240.5 121.0 120.0 199.6 15.3 0 8.8 0.0 0.609 0.787 90.8 100.0 292.5 303.2 9238 4648 432 727 0 7669 0 4261 16225 5 0 1.000 30.0 20.0 20 0.0 110.9 0.3237 0.0453 0
232 231 232 winter 912.0 978.1 460.0 454.0 357.5 245.0 120.0 32.8 22.6 0 13.5 0.0 0.232 0.860 93.7 100.0 292.0 347.3 9747 5496 0 768 0 7904 0 3949 15336 5 0 1.000 10.0 30.0 20.0 20 0.0 33.9 0.3237 0.0454 0
233 232 233 winter 904.4 993.7 460.0 454.0 359.0 249.5 120.0 55.6 32.4 0 2.5 0.0 0.052 0.816 91.8 100.0 303.9 329.7 9747 4091 0 1911 0 28 7704 283 4149 15287 5 0 0.900 1.000 0.0 27.1 20.0 20 0.0 43.9 0.3237 0.0454 0
234 233 234 winter 894.4 1011.3 460.0 454.0 360.5 254.0 120.0 58.0 30.4 0 14.5 0.0 0.021 0.755 94.7 100.0 298.8 323.1 9747 4507 0 1125 0 7 7904 0 3949 15961 5 0 0.800 1.000 0.0 30.0 20.0 20 0.0 38.9 0.3237 0.0454 0
235 234 235 winter 894.4 1045.7 460.0 454.0 362.0 258.5 120.0 48.0 13.6 0 14.7 0.0 0.000 0.861 92.3 100.0 315.7 326.7 9771 4693 0 779 0 7680 0 4149 16128 5 0 0.700 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0454 0
236 235 236 winter 910.0 1073.7 460.0 454.0 363.5 263.0 120.0 32.4 20.0 0 14.5 0.0 0.000 0.801 89.5 100.0 306.6 299.6 9747 3004 0 352 0 7704 0 4149 18244 5 0 0.600 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0454 0
237 236 237 winter 906.0 1091.7 460.0 454.0 365.0 267.5 120.0 52.0 30.0 0 2.5 0.0 0.000 0.873 91.4 100.0 317.5 273.7 9747 1576 0 674 0 7904 0 3949 19350 5 0 0.500 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0454 0
238 237 238 winter 904.8 1112.5 460.0 454.0 366.5 272.0 120.0 49.2 27.2 0 14.5 0.0 0.000 0.830 92.2 100.0 314.8 260.9 9759 1992 0 341 0 7822 0 4019 19267 5 0 0.400 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0454 0
239 238 239 winter 908.8 1124.1 460.0 454.0 368.0 276.5 120.0 44.0 36.4 0 5.1 0.0 0.000 0.752 95.9 100.0 307.4 259.3 9828 1303 0 739 0 8183 0 3589 19558 5 0 0.300 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0454 0
240 239 240 winter spring 926.4 1244.9 460.0 454.0 369.5 281.0 120.0 360.0 30.4 23.2 0 2 14.5 1.4 0.000 0.566 93.0 100.0 296.0 251.5 9747 5180 0 311 0 7704 1146 4149 14963 5 0 0.200 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0454 0
241 240 241 spring 1017.6 1374.1 460.0 454.0 371.0 285.5 360.0 569.0 52.8 45.8 0 2.5 1.1 0.000 0.398 90.1 100.0 307.4 264.3 9747 7281 0 131 0 7704 4588 4149 9600 5 0 0.100 1.000 0.0 30.0 20.0 20 0.0 0.3237 0.0477 0
242 241 242 spring 1095.6 1498.7 460.0 454.0 372.5 290.0 600.0 639.0 66.0 179.6 0 1.2 5.9 0.000 0.800 92.1 100.0 290.8 334.5 9852 7545 0 1430 0 7799 5182 3949 7443 0 5 5 0 0.000 1.000 0.0 30.0 0.0 20.0 0 20 0.0 36.9 0.3237 0.0480 0
243 243 spring 1582.9 454.0 294.5 663.0 168.6 0 5.7 0.837 100.0 309.4 6060 2171 1 5508 7860 5 0 1.000 30.0 20.0 20 150.0 0.0481 0
244 244 spring 1610.1 454.0 299.0 681.0 220.0 0 0.0 0.792 100.0 373.5 4180 1024 365 3109 12922 5 0 1.000 30.0 20.0 20 150.0 0.0482 0
245 245 spring 1661.4 454.0 303.5 787.0 32.0 0 0.0 0.796 100.0 364.5 975 2592 483 0 17550 5 0 1.000 20.0 20.0 20 150.0 0.0483 0
246 246 spring 1664.1 454.0 308.0 789.0 60.4 0 0.0 0.834 100.0 363.5 1848 1012 525 0 18215 5 0 1.000 20.0 20.0 20 150.0 0.0484 0