Run 13: the full world - four towns, resources, bonds, spatial grid
World scaled 3x (768x768) with all four towns at compass points, each running its own soul culture: North generational, South nature, West materialist (new profile), East selfish. Two new resources: Ore (metal tier) and Herb (medicine - mends health, reason to forage, trade good). Spatial hash grid replaces O(n^2) proximity scans (soul pressure, neighbor, teacher) - 3.6x headless speedup at ~80 NPCs. First social verb beyond work: pair-bonds - settled adults who keep warm company pair up; warmth now accrues from proximity not only gifts; bonds break at death. Reproduction deferred (bonds-first per plan). The four-town thesis fully realized on one engine (240-day run): North know 1.27 clean, South nourish 0.85 clean, West prosperous but debris 0.23, East hungriest 0.60 and lowest knowledge 1.08. Positive cultures stay soul-clean, negative ones carry real debris, all from behavior weights - nothing scripted. 99 bonds, 80 deaths, four living societies. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+32
@@ -273,6 +273,38 @@ a falsifiable claim.
|
||||
|
||||
---
|
||||
|
||||
## Run 13 — The full world: four towns, one engine
|
||||
|
||||
**Built:** world scaled 3× (768×768), all four towns at compass points
|
||||
each running its own soul culture (North generational, South nature,
|
||||
West materialist — new profile — East selfish); two new resources (Ore,
|
||||
Herb — herbs are medicine, mended health; a reason to forage and a trade
|
||||
good); a **spatial hash grid** so proximity queries stop being O(n²)
|
||||
(3.6× headless speedup at ~80 NPCs, live view viable); and the first
|
||||
social verb beyond work: **pair-bonds** (settled adults who keep warm
|
||||
company pair up; warmth now accrues from proximity, not only gifts;
|
||||
bonds break at death). Reproduction deferred (bonds-first, per plan).
|
||||
|
||||
**Result — the four-town thesis, fully realized on one engine:**
|
||||
|
||||
| Town | Nourish | Knowledge | Debris | Character |
|
||||
|-------|---------|-----------|--------|-----------|
|
||||
| North | 0.84 | **1.27** | 0.000 | wise, whole — teaching wins |
|
||||
| South | **0.85** | 1.18 | 0.000 | content, clean, lives with the land |
|
||||
| West | 0.80 | 1.24 | **0.227** | prosperous but soul-marked |
|
||||
| East | 0.60 | 1.08 | 0.223 | scheming and hungriest — selfishness starves itself |
|
||||
|
||||
The two positive cultures stay soul-clean; the two negative carry real
|
||||
debris. The North leads knowledge (its purpose); the East trails it and
|
||||
is hungriest (teaches no one, shares nothing). 99 bonds, 80 deaths — a
|
||||
living, pairing, generational population in four distinct societies, all
|
||||
from behavior weights. Nothing is scripted; the cultures are emergent.
|
||||
|
||||
**Next:** reproduction on top of bonds (Phase B); crisis-recovery
|
||||
experiment (North's resilience); save/load; then the player pivot.
|
||||
|
||||
---
|
||||
|
||||
Soul layer: done and validated (runs 5–6). The expansion phase begins:
|
||||
|
||||
1. **Towns as spatial structure**: multiple settlements with their own
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
[node name="Main" type="Node2D" unique_id=1549676286]
|
||||
script = ExtResource("1_gm")
|
||||
TicksPerRealSecond = 1500.0
|
||||
TicksPerRealSecond = 1800.0
|
||||
StopAfterDays = 240
|
||||
|
||||
[node name="Visualization" type="Node2D" parent="." unique_id=1946930493]
|
||||
|
||||
+33
-30
@@ -19,18 +19,28 @@ public partial class GameManager : Node2D
|
||||
// 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; // east souls living in the South
|
||||
[Export] public int NorthPopulation = 10; // generational souls
|
||||
[Export] public int TownPopulationEach = 20; // per settlement (~80 total)
|
||||
|
||||
public record TownDef(string Name, Vector2 Center, SoulType Soul);
|
||||
|
||||
// Four towns at the compass points of the world, each its own culture
|
||||
// (per DESIGN.md): North reveres lineage, South lives with the land,
|
||||
// West performs material wealth, East schemes for self.
|
||||
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),
|
||||
new("North", new Vector2(384f, 130f), SoulType.Generational),
|
||||
new("South", new Vector2(384f, 638f), SoulType.Nature),
|
||||
new("West", new Vector2(130f, 384f), SoulType.Materialist),
|
||||
new("East", new Vector2(638f, 384f), SoulType.Selfish),
|
||||
};
|
||||
|
||||
private static SoulProfile ProfileFor(SoulType t) => t switch
|
||||
{
|
||||
SoulType.Generational => SoulProfile.GenerationalSoul(),
|
||||
SoulType.Nature => SoulProfile.NatureSoul(),
|
||||
SoulType.Materialist => SoulProfile.MaterialistSoul(),
|
||||
_ => SoulProfile.SelfishSoul(),
|
||||
};
|
||||
|
||||
[Export(PropertyHint.Range, "1,2000,1")]
|
||||
@@ -45,6 +55,10 @@ public partial class GameManager : Node2D
|
||||
public List<Npc> Npcs { get; } = new();
|
||||
public List<Building> Buildings { get; } = new();
|
||||
|
||||
/// <summary>Rebuilt each tick; proximity queries go through it so the
|
||||
/// hot loops stay near-linear as population grows.</summary>
|
||||
public SpatialGrid Grid { get; } = new(cellSize: 12f);
|
||||
|
||||
public long TotalTicks { get; private set; }
|
||||
public int Day => (int)(TotalTicks / 1440);
|
||||
public int MinuteOfDay => (int)(TotalTicks % 1440);
|
||||
@@ -114,18 +128,7 @@ public partial class GameManager : Node2D
|
||||
}
|
||||
|
||||
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");
|
||||
}
|
||||
}
|
||||
Spawn(town.Name, town.Center, ProfileFor(town.Soul), TownPopulationEach, town.Name);
|
||||
}
|
||||
|
||||
/// <summary>How many villagers (other than <paramref name="except"/>)
|
||||
@@ -189,23 +192,21 @@ public partial class GameManager : Node2D
|
||||
const float radius = 8f;
|
||||
const float strength = 0.00004f;
|
||||
|
||||
for (int i = 0; i < Npcs.Count; i++)
|
||||
// Spatial grid: each soul presses only on the few within reach,
|
||||
// not on everyone. Directed pass (a→b for every nearby b) so each
|
||||
// ordered pair is handled once from the source's side.
|
||||
foreach (var a in Npcs)
|
||||
{
|
||||
for (int j = i + 1; j < Npcs.Count; j++)
|
||||
Grid.ForEachNear(a.Position, radius, b =>
|
||||
{
|
||||
var a = Npcs[i];
|
||||
var b = Npcs[j];
|
||||
if (b == a) return;
|
||||
float dist = a.Position.DistanceTo(b.Position);
|
||||
if (dist > radius) continue;
|
||||
|
||||
if (dist > radius) return;
|
||||
float falloff = 1f - dist / radius;
|
||||
|
||||
float fromA = Mathf.Lerp(-strength, strength, a.Imprint.Total) * falloff;
|
||||
b.Imprint.ExternalPerception = Mathf.Clamp(b.Imprint.ExternalPerception + fromA, 0f, 1f);
|
||||
|
||||
float fromB = Mathf.Lerp(-strength, strength, b.Imprint.Total) * falloff;
|
||||
a.Imprint.ExternalPerception = Mathf.Clamp(a.Imprint.ExternalPerception + fromB, 0f, 1f);
|
||||
}
|
||||
b.Imprint.ExternalPerception =
|
||||
Mathf.Clamp(b.Imprint.ExternalPerception + fromA, 0f, 1f);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -280,6 +281,8 @@ public partial class GameManager : Node2D
|
||||
|
||||
private void Tick()
|
||||
{
|
||||
Grid.Rebuild(Npcs);
|
||||
|
||||
TotalTicks++;
|
||||
|
||||
foreach (var npc in Npcs)
|
||||
|
||||
@@ -41,7 +41,8 @@ public class Knowledge
|
||||
public static KnowledgeDomain DomainFor(MaterialKind kind) => kind switch
|
||||
{
|
||||
MaterialKind.Food => KnowledgeDomain.Forage,
|
||||
MaterialKind.Herb => KnowledgeDomain.Forage, // gathering the living land
|
||||
MaterialKind.Wood => KnowledgeDomain.Woodcraft,
|
||||
_ => KnowledgeDomain.Masonry, // stone, clay — builder's craft
|
||||
_ => KnowledgeDomain.Masonry, // stone, clay, ore — builder's craft
|
||||
};
|
||||
}
|
||||
|
||||
+64
-8
@@ -40,6 +40,15 @@ public class Npc
|
||||
// --- Knowledge (SPEC §5) ----------------------------------------------
|
||||
public Knowledge Know = new();
|
||||
|
||||
// --- Bonds: the first social verb beyond work (relationships) ---------
|
||||
// A pair-bond forms between two settled adults who keep warm company.
|
||||
// Reproduction is deferred (bonds-first); for now a bond is a standing
|
||||
// relationship — chosen companionship, warmth that compounds, someone
|
||||
// whose grave you would tend.
|
||||
public Npc? Partner;
|
||||
public bool IsBonded => Partner != null;
|
||||
public bool IsAdult => AgeDays >= 20f; // childhood is the first ~20 days
|
||||
|
||||
// --- State -----------------------------------------------------------
|
||||
public NpcState State = NpcState.Gathering;
|
||||
|
||||
@@ -110,6 +119,7 @@ public class Npc
|
||||
{
|
||||
if (_targetNpc == dead) _targetNpc = null;
|
||||
if (_giftSource == dead) _giftSource = null;
|
||||
if (Partner == dead) Partner = null; // a bond outlives nothing but memory
|
||||
}
|
||||
|
||||
// --- Diagnostics (read-only views for the stats logger) ---------------
|
||||
@@ -209,6 +219,16 @@ public class Npc
|
||||
Nourishment = Mathf.Min(1f, Nourishment + 0.25f * (1f - debris * 0.5f));
|
||||
}
|
||||
if (Nourishment <= 0.05f) Health = Mathf.Max(0f, Health - 0.01f);
|
||||
|
||||
// Herbs are medicine: the hurt who carry them mend faster, and a
|
||||
// skilled forager gets more from the same leaf. Reason to gather
|
||||
// herbs, and a trade good worth carrying between towns.
|
||||
if (Health < 90f &&
|
||||
Inventory.TryGetValue(MaterialKind.Herb, out float herb) && herb >= 1f)
|
||||
{
|
||||
Inventory[MaterialKind.Herb] = herb - 1f;
|
||||
Health = Mathf.Min(100f, Health + 6f * (1f + Know[KnowledgeDomain.Forage]));
|
||||
}
|
||||
if (Nourishment < 0.3f) _hungerMemory = true; // real hunger is not forgotten
|
||||
Nourishment = Mathf.Clamp(Nourishment, 0f, 1f);
|
||||
|
||||
@@ -694,12 +714,12 @@ public class Npc
|
||||
{
|
||||
Npc? teacher = null;
|
||||
float bestWorth = 0.15f; // must actually know more than us
|
||||
foreach (var other in gm.Npcs)
|
||||
gm.Grid.ForEachNear(Position, 40f, other =>
|
||||
{
|
||||
if (other == this || other.HomeTown != HomeTown) continue;
|
||||
if (other == this || other.HomeTown != HomeTown) return;
|
||||
float worth = (other.Know.Total - Know.Total) * (1f + other.Soul.TeachingDrive);
|
||||
if (worth > bestWorth) { bestWorth = worth; teacher = other; }
|
||||
}
|
||||
});
|
||||
if (teacher != null)
|
||||
{
|
||||
if (Position.DistanceTo(teacher.Position) > 3f)
|
||||
@@ -717,13 +737,46 @@ public class Npc
|
||||
}
|
||||
}
|
||||
|
||||
// Otherwise: drift toward the nearest neighbor — community forms
|
||||
// where feet do.
|
||||
foreach (var other in gm.Npcs)
|
||||
// A bonded soul keeps their partner's company by preference —
|
||||
// relationships are a pull the work queue doesn't override.
|
||||
if (IsBonded && Partner!.Health > 0f)
|
||||
{
|
||||
if (other == this) continue;
|
||||
if (Position.DistanceTo(Partner.Position) > 3f)
|
||||
{
|
||||
Activity = $"with {Partner.Name}";
|
||||
MoveToward(Partner.Position);
|
||||
}
|
||||
else
|
||||
{
|
||||
RecordEcho(Partner.Name, 0.02f);
|
||||
Activity = $"beside {Partner.Name}";
|
||||
}
|
||||
if (!gm.IsNight && _stateTimer > 20f) Enter(NpcState.Gathering);
|
||||
return;
|
||||
}
|
||||
|
||||
// Otherwise: drift toward the nearest neighbor — community forms
|
||||
// where feet do. Grid-scoped so it stays cheap at scale.
|
||||
Npc? found = null;
|
||||
float fBest = float.MaxValue;
|
||||
gm.Grid.ForEachNear(Position, 30f, other =>
|
||||
{
|
||||
if (other == this) return;
|
||||
float d = Position.DistanceSquaredTo(other.Position);
|
||||
if (d < bestDist) { bestDist = d; nearest = other; }
|
||||
if (d < fBest) { fBest = d; found = other; }
|
||||
});
|
||||
nearest = found;
|
||||
|
||||
// Consider bonding: an unbonded adult who keeps warm company with a
|
||||
// compatible, unbonded neighbor may pair with them. Same town, real
|
||||
// warmth, both grown — companionship chosen, not assigned.
|
||||
if (!IsBonded && IsAdult && nearest is { IsBonded: false, IsAdult: true } n &&
|
||||
n.HomeTown == HomeTown && Position.DistanceTo(n.Position) < 4f &&
|
||||
GetWarmth(n.Name) > 0.4f && n.GetWarmth(Name) > 0.4f)
|
||||
{
|
||||
Partner = n;
|
||||
n.Partner = this;
|
||||
Godot.GD.Print($"[Bond] day {gm.Day}: {Name} and {n.Name} ({HomeTown}) pair up.");
|
||||
}
|
||||
if (nearest != null && Position.DistanceTo(nearest.Position) > 3f)
|
||||
{
|
||||
@@ -732,6 +785,9 @@ public class Npc
|
||||
}
|
||||
else if (nearest != null)
|
||||
{
|
||||
// Company that isn't teaching still warms — this is how bonds
|
||||
// become possible: familiarity accrues just by spending time.
|
||||
RecordEcho(nearest.Name, 0.01f);
|
||||
Activity = LearnFrom(nearest)
|
||||
? $"learning from {nearest.Name}"
|
||||
: $"chatting with {nearest.Name}";
|
||||
|
||||
@@ -89,6 +89,25 @@ public class SoulProfile
|
||||
TeachingDrive = 0.9f, // and to hand it down in turn — the whole culture
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
/// West-weighted profile: worth measured in visible possessions
|
||||
/// (DESIGN.md). They build — even communally — but for display, so they
|
||||
/// expand shelters hard (status is size); moderate generosity, moderate
|
||||
/// hoarding, little interest in learning or teaching. A functioning town
|
||||
/// whose surplus goes to ostentation rather than resilience.
|
||||
/// </summary>
|
||||
public static SoulProfile MaterialistSoul() => new()
|
||||
{
|
||||
Type = SoulType.Materialist,
|
||||
Generosity = 0.4f,
|
||||
Sustainability = 0.6f,
|
||||
CommunityBias = 0.6f,
|
||||
StatusBias = 0.9f,
|
||||
Accumulation = 0.6f,
|
||||
Absorption = 0.9f,
|
||||
TeachingDrive = 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
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
using System.Collections.Generic;
|
||||
using Godot;
|
||||
|
||||
namespace WorldSim;
|
||||
|
||||
/// <summary>
|
||||
/// A coarse spatial hash over NPC positions so proximity queries stop being
|
||||
/// O(n²). Rebuilt once per tick from the live NPC list; queries return only
|
||||
/// the buckets within range. At ~80 NPCs this turns every soul-pressure,
|
||||
/// neighbor, and teacher scan from "look at everyone" into "look at the few
|
||||
/// nearby" — the difference between a live view that stutters and one that
|
||||
/// doesn't.
|
||||
/// </summary>
|
||||
public class SpatialGrid
|
||||
{
|
||||
private readonly float _cell;
|
||||
private readonly Dictionary<(int, int), List<Npc>> _buckets = new();
|
||||
|
||||
public SpatialGrid(float cellSize) => _cell = cellSize;
|
||||
|
||||
private (int, int) Key(Vector2 p) =>
|
||||
(Mathf.FloorToInt(p.X / _cell), Mathf.FloorToInt(p.Y / _cell));
|
||||
|
||||
public void Rebuild(IReadOnlyList<Npc> npcs)
|
||||
{
|
||||
foreach (var list in _buckets.Values) list.Clear();
|
||||
foreach (var npc in npcs)
|
||||
{
|
||||
var key = Key(npc.Position);
|
||||
if (!_buckets.TryGetValue(key, out var list))
|
||||
_buckets[key] = list = new List<Npc>();
|
||||
list.Add(npc);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invoke <paramref name="action"/> for every NPC within <paramref
|
||||
/// name="radius"/> of <paramref name="center"/> (excluding none — caller
|
||||
/// filters). Scans only the buckets the radius touches.
|
||||
/// </summary>
|
||||
public void ForEachNear(Vector2 center, float radius, System.Action<Npc> action)
|
||||
{
|
||||
int reach = Mathf.CeilToInt(radius / _cell);
|
||||
var (cx, cy) = Key(center);
|
||||
for (int dx = -reach; dx <= reach; dx++)
|
||||
for (int dy = -reach; dy <= reach; dy++)
|
||||
{
|
||||
if (_buckets.TryGetValue((cx + dx, cy + dy), out var list))
|
||||
foreach (var npc in list) action(npc);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -63,6 +63,8 @@ public partial class Visualization : Node2D
|
||||
MaterialKind.Clay => new Color(0.75f, 0.45f, 0.25f),
|
||||
MaterialKind.Water => new Color(0.25f, 0.45f, 0.85f),
|
||||
MaterialKind.Food => new Color(0.80f, 0.30f, 0.40f),
|
||||
MaterialKind.Ore => new Color(0.65f, 0.55f, 0.75f),
|
||||
MaterialKind.Herb => new Color(0.45f, 0.80f, 0.55f),
|
||||
_ => Colors.Magenta,
|
||||
};
|
||||
// Fade toward depletion so dying groves read at a glance
|
||||
|
||||
+10
-7
@@ -4,7 +4,7 @@ using Godot;
|
||||
|
||||
namespace WorldSim;
|
||||
|
||||
public enum MaterialKind { Wood, Stone, Clay, Water, Food }
|
||||
public enum MaterialKind { Wood, Stone, Clay, Water, Food, Ore, Herb }
|
||||
|
||||
/// <summary>
|
||||
/// A harvestable resource node on the grid (SPEC §6).
|
||||
@@ -28,7 +28,7 @@ public class ResourceNode
|
||||
/// </summary>
|
||||
public class World
|
||||
{
|
||||
public const int GridSize = 256;
|
||||
public const int GridSize = 768;
|
||||
|
||||
public List<ResourceNode> Nodes { get; } = new();
|
||||
|
||||
@@ -49,11 +49,14 @@ public class World
|
||||
/// </summary>
|
||||
public void Generate()
|
||||
{
|
||||
PlaceMany(MaterialKind.Water, count: 6, amount: float.PositiveInfinity, regen: 0f);
|
||||
PlaceMany(MaterialKind.Clay, count: 10, amount: 40f, regen: 0.5f); // TODO: constrain near water
|
||||
PlaceMany(MaterialKind.Wood, count: 60, amount: 30f, regen: 2f);
|
||||
PlaceMany(MaterialKind.Stone, count: 12, amount: 80f, regen: 0f);
|
||||
PlaceMany(MaterialKind.Food, count: 40, amount: 20f, regen: 4f); // South: flora most abundant
|
||||
// Resource counts scale ~9× with the 3× larger world so density holds.
|
||||
PlaceMany(MaterialKind.Water, count: 40, amount: float.PositiveInfinity, regen: 0f);
|
||||
PlaceMany(MaterialKind.Clay, count: 80, amount: 40f, regen: 0.5f);
|
||||
PlaceMany(MaterialKind.Wood, count: 480, amount: 30f, regen: 2f);
|
||||
PlaceMany(MaterialKind.Stone, count: 140, amount: 80f, regen: 0f); // more deposits — housing was stone-capped
|
||||
PlaceMany(MaterialKind.Food, count: 360, amount: 20f, regen: 4f);
|
||||
PlaceMany(MaterialKind.Ore, count: 40, amount: 60f, regen: 0f); // metal source (post-MVP tier)
|
||||
PlaceMany(MaterialKind.Herb, count: 120, amount: 15f, regen: 3f); // medicine / trade good
|
||||
}
|
||||
|
||||
private void PlaceMany(MaterialKind kind, int count, float amount, float regen)
|
||||
|
||||
+2071
-533
File diff suppressed because it is too large
Load Diff
+19199
-5999
File diff suppressed because it is too large
Load Diff
+240
-240
@@ -1,241 +1,241 @@
|
||||
day,season,wood,stone,clay,food,harvested,trades,avg_fatigue,avg_nourish,avg_health,carried,gather_ticks,build_ticks,trade_ticks,rest_ticks,social_ticks,shelters_done,ruins,avg_cond,upkeep_stock,burn_per_day,modules,granary_food,avg_debris,refusals,incomplete_sites,avg_knowledge,deaths
|
||||
1,spring,1572.9,960.0,400.0,649.9,572.0,0,0.0,0.766,100.0,572.0,7926,654,0,3486,11934,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.007,0
|
||||
2,spring,1624.2,960.0,400.0,732.8,46.2,0,0.0,0.914,100.0,568.2,1557,1177,0,12000,21266,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.008,0
|
||||
3,spring,1667.4,960.0,400.0,784.9,38.1,0,0.0,0.813,100.0,581.3,1365,1188,0,12000,21447,0,0,0.000,0.0,0.0,0,0.0,0.0031,0,0,0.008,0
|
||||
4,spring,1447.2,653.5,400.0,730.7,761.6,3,0.4,0.741,100.0,507.3,9396,5333,920,14434,5917,3,0,1.000,19.5,10.5,9,0.0,0.0031,0,0,0.019,0
|
||||
5,spring,1173.7,750.5,400.0,592.5,763.4,2,3.9,0.859,100.0,507.9,13306,1508,796,14653,5737,3,0,1.000,18.0,12.0,12,0.0,0.0031,0,0,0.029,0
|
||||
6,spring,1000.7,750.5,400.0,577.2,560.3,0,3.9,0.778,100.0,562.0,10070,728,0,13608,11594,3,0,1.000,18.0,12.0,12,0.0,0.0032,0,0,0.036,0
|
||||
7,spring,1027.2,750.5,400.0,573.3,351.8,0,2.0,0.906,100.0,542.0,8876,644,0,13605,12875,3,0,1.000,18.0,12.0,12,0.0,0.0032,0,0,0.041,0
|
||||
8,spring,1016.1,750.5,400.0,587.3,376.2,0,6.2,0.814,100.0,557.9,11121,509,0,13628,10742,3,0,1.000,18.0,12.0,12,0.0,0.0034,0,0,0.046,0
|
||||
9,spring,989.3,750.5,400.0,588.6,399.0,0,7.1,0.732,100.0,562.1,9166,932,20,13592,12290,3,0,1.000,18.0,12.0,12,0.0,0.0036,0,0,0.052,0
|
||||
10,spring,987.3,750.5,400.0,588.4,381.4,0,6.8,0.850,100.0,558.1,9941,666,0,13601,11792,3,0,1.000,18.0,12.0,12,0.0,0.0036,0,0,0.058,0
|
||||
11,spring,962.5,750.5,400.0,580.1,412.4,0,5.6,0.778,100.0,567.2,9466,1216,0,13613,11705,3,0,1.000,18.0,12.0,12,0.0,0.0037,0,0,0.074,0
|
||||
12,spring,1008.6,750.5,400.0,628.0,276.4,0,5.7,0.897,100.0,543.0,9298,704,0,13599,12399,3,0,1.000,18.0,12.0,12,0.0,0.0038,0,0,0.082,0
|
||||
13,spring,1008.3,750.5,400.0,607.7,381.7,1,4.9,0.824,100.0,555.2,9456,1209,144,13427,11764,3,0,1.000,18.0,12.0,12,0.0,0.0039,0,0,0.091,0
|
||||
14,spring,989.5,750.5,400.0,588.1,417.7,0,3.4,0.722,100.0,569.5,8338,694,0,13282,13686,3,0,1.000,18.0,12.0,12,0.0,0.0039,0,0,0.103,0
|
||||
15,spring,979.8,750.5,400.0,614.4,357.9,0,5.7,0.860,100.0,564.6,8260,699,16,13296,13729,3,0,1.000,18.0,12.0,12,0.0,0.0040,0,0,0.112,0
|
||||
16,spring,934.1,750.5,400.0,622.6,392.7,0,4.1,0.768,100.0,567.4,7997,717,0,13283,14003,3,0,1.000,18.0,12.0,12,0.0,0.0042,0,0,0.122,0
|
||||
17,spring,991.5,750.5,400.0,585.3,363.9,0,1.2,0.906,100.0,542.7,7778,715,0,13292,14215,3,0,1.000,18.0,12.0,12,0.0,0.0043,0,0,0.130,0
|
||||
18,spring,972.2,778.6,400.0,590.9,395.5,1,4.6,0.813,100.0,571.1,7761,963,86,12987,14203,3,0,1.000,18.0,12.0,12,0.0,0.0044,0,0,0.141,0
|
||||
19,spring,964.1,778.6,400.0,637.9,331.4,1,2.9,0.731,100.0,578.9,5712,1078,28,12891,16291,3,0,1.000,18.0,12.0,12,0.0,0.0046,0,0,0.149,0
|
||||
20,spring,975.5,778.6,400.0,620.7,367.7,0,1.7,0.859,100.0,575.4,5539,1166,0,12631,16664,3,0,1.000,18.0,12.0,12,0.0,0.0047,0,0,0.166,0
|
||||
21,spring,1021.6,786.7,400.0,678.8,250.3,1,1.1,0.776,100.0,590.0,5046,1226,50,12405,17273,3,0,1.000,18.0,12.0,12,0.0,0.0048,0,0,0.184,0
|
||||
22,spring,1098.2,786.7,400.0,704.0,194.3,0,1.5,0.903,100.0,567.6,3213,1140,0,12314,19333,3,0,1.000,18.0,12.0,12,0.0,0.0049,0,0,0.195,0
|
||||
23,spring,1187.3,799.7,400.0,727.3,145.1,0,0.6,0.821,100.0,585.8,2762,1271,0,12160,19807,3,0,1.000,18.0,12.0,12,0.0,0.0050,0,0,0.213,0
|
||||
24,spring,1240.1,799.7,400.0,736.8,179.0,0,0.7,0.728,100.0,582.9,2452,1324,0,12156,20068,3,0,1.000,18.0,12.0,12,0.0,0.0051,0,0,0.227,0
|
||||
25,spring,1200.3,698.8,400.0,703.5,442.8,0,0.6,0.865,100.0,573.1,6812,2885,0,13490,12813,4,0,1.000,24.0,16.0,16,0.0,0.0052,0,0,0.236,0
|
||||
26,spring,1138.4,729.1,400.0,601.4,501.6,1,2.6,0.772,100.0,578.8,6811,1211,74,12814,15090,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0,0.248,0
|
||||
27,spring,1165.9,751.3,400.0,724.5,174.9,0,0.0,0.909,100.0,562.4,3251,1548,0,12155,19046,4,0,1.000,24.0,16.0,16,0.0,0.0055,0,0,0.251,0
|
||||
28,spring,1245.9,751.3,400.0,759.6,86.4,0,0.0,0.816,100.0,585.9,2591,1520,0,12000,19889,4,0,1.000,24.0,16.0,16,0.0,0.0056,0,0,0.262,0
|
||||
29,spring,1341.2,751.3,400.0,771.7,48.2,0,0.0,0.733,100.0,591.1,1890,1162,0,12000,20948,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0,0.276,0
|
||||
30,summer,1406.2,751.3,400.0,769.1,56.2,0,0.0,0.850,100.0,584.4,1996,1218,0,12000,20786,4,0,1.000,24.0,16.0,16,0.0,0.0058,0,0,0.280,0
|
||||
31,summer,1488.6,751.3,400.0,762.7,45.1,0,0.0,0.777,100.0,585.5,1811,1168,0,12000,21021,4,0,1.000,24.0,16.0,16,0.0,0.0060,0,0,0.289,0
|
||||
32,summer,1564.9,751.3,400.0,764.1,45.6,0,0.0,0.894,100.0,568.1,1905,1284,0,12000,20811,4,0,1.000,24.0,16.0,16,0.0,0.0062,0,0,0.298,0
|
||||
33,summer,1629.4,751.3,400.0,752.0,65.2,0,0.0,0.820,100.0,589.3,2087,1376,0,12000,20537,4,0,1.000,24.0,16.0,16,0.0,0.0064,0,0,0.302,0
|
||||
34,summer,1673.4,751.3,400.0,758.0,40.3,0,0.0,0.727,100.0,587.6,1692,1169,0,12000,21139,4,0,1.000,24.0,16.0,16,0.0,0.0067,0,0,0.307,0
|
||||
35,summer,1680.9,751.3,400.0,749.8,66.1,0,0.0,0.863,100.0,588.7,2238,1658,0,12000,20104,4,0,1.000,24.0,16.0,16,0.0,0.0069,0,0,0.311,0
|
||||
36,summer,1688.6,751.3,400.0,752.4,42.3,0,0.0,0.769,100.0,589.0,1803,1166,0,12000,21031,4,0,1.000,24.0,16.0,16,0.0,0.0071,0,0,0.312,0
|
||||
37,summer,1688.8,751.3,400.0,761.0,40.8,0,0.0,0.905,100.0,564.8,1924,1228,0,12000,20848,4,0,1.000,24.0,16.0,16,0.0,0.0072,0,0,0.313,0
|
||||
38,summer,1694.4,751.3,400.0,745.6,66.9,0,0.0,0.811,100.0,589.8,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0075,0,0,0.315,0
|
||||
39,summer,1693.9,751.3,400.0,752.8,40.8,0,0.0,0.727,100.0,587.6,1897,1172,0,12000,20931,4,0,1.000,24.0,16.0,16,0.0,0.0077,0,0,0.320,0
|
||||
40,summer,1692.6,751.3,400.0,748.8,63.9,0,0.0,0.853,100.0,587.5,2247,1455,0,12000,20298,4,0,1.000,24.0,16.0,16,0.0,0.0079,0,0,0.323,0
|
||||
41,summer,1697.0,751.3,400.0,747.2,40.9,0,0.0,0.769,100.0,585.4,1688,1174,0,12000,21138,4,0,1.000,24.0,16.0,16,0.0,0.0082,0,0,0.326,0
|
||||
42,summer,1692.7,751.3,400.0,755.9,44.4,0,0.0,0.904,100.0,564.7,1836,1221,0,12000,20943,4,0,1.000,24.0,16.0,16,0.0,0.0083,0,0,0.327,0
|
||||
43,summer,1695.9,751.3,400.0,742.6,63.6,0,0.0,0.819,100.0,585.3,2007,1153,0,12000,20840,4,0,1.000,24.0,16.0,16,0.0,0.0086,0,0,0.329,0
|
||||
44,summer,1695.8,751.3,400.0,748.1,43.5,0,0.0,0.735,100.0,585.8,1762,1166,0,12000,21072,4,0,1.000,24.0,16.0,16,0.0,0.0088,0,0,0.333,0
|
||||
45,summer,1697.8,751.3,400.0,731.6,68.4,0,0.0,0.860,100.0,590.2,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0092,0,0,0.337,0
|
||||
46,summer,1699.2,751.3,400.0,740.6,42.0,0,0.0,0.775,100.0,589.1,1757,1165,0,12000,21078,4,0,1.000,24.0,16.0,16,0.0,0.0093,0,0,0.339,0
|
||||
47,summer,1698.3,751.3,400.0,751.6,41.4,0,0.0,0.900,100.0,566.5,1940,1309,0,12000,20751,4,0,1.000,24.0,16.0,16,0.0,0.0095,0,0,0.342,0
|
||||
48,summer,1693.5,751.3,400.0,739.7,79.9,0,0.0,0.824,100.0,594.6,2214,1218,0,12000,20568,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0,0.344,0
|
||||
49,summer,1697.5,751.3,400.0,756.4,29.3,0,0.0,0.719,100.0,582.8,1623,1172,0,12000,21205,4,0,1.000,24.0,16.0,16,0.0,0.0099,0,0,0.345,0
|
||||
50,summer,1697.0,751.3,400.0,737.5,80.1,0,0.0,0.863,100.0,590.8,2189,1143,0,12000,20668,4,0,1.000,24.0,16.0,16,0.0,0.0102,0,0,0.346,0
|
||||
51,summer,1696.1,751.3,400.0,755.2,32.6,0,0.0,0.768,100.0,581.3,1670,1177,0,12000,21153,4,0,1.000,24.0,16.0,16,0.0,0.0103,0,0,0.347,0
|
||||
52,summer,1699.2,751.3,400.0,752.2,51.2,0,0.0,0.902,100.0,567.5,1965,1150,0,12000,20885,4,0,1.000,24.0,16.0,16,0.0,0.0104,0,0,0.347,0
|
||||
53,summer,1698.9,751.3,400.0,740.3,67.6,0,0.0,0.826,100.0,591.1,2164,1138,0,12000,20698,4,0,1.000,24.0,16.0,16,0.0,0.0105,0,0,0.348,0
|
||||
54,summer,1704.4,751.3,400.0,750.9,40.9,0,0.0,0.721,100.0,591.0,1839,1665,0,12000,20496,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0,0.349,0
|
||||
55,summer,1698.5,751.3,400.0,754.3,63.1,0,0.0,0.865,100.0,588.1,2060,1279,0,12000,20661,4,0,1.000,24.0,16.0,16,0.0,0.0106,0,0,0.351,0
|
||||
56,summer,1700.5,751.3,400.0,760.0,38.8,0,0.0,0.769,100.0,584.9,1708,1169,0,12000,21123,4,0,1.000,24.0,16.0,16,0.0,0.0107,0,0,0.352,0
|
||||
57,summer,1697.9,751.3,400.0,760.7,54.0,0,0.0,0.903,100.0,573.9,2010,1292,0,12000,20698,4,0,1.000,24.0,16.0,16,0.0,0.0109,0,0,0.353,0
|
||||
58,summer,1699.9,751.3,400.0,756.0,54.5,0,0.0,0.817,100.0,585.4,2005,1159,0,12000,20836,4,0,1.000,24.0,16.0,16,0.0,0.0111,0,0,0.354,0
|
||||
59,summer,1704.6,751.3,400.0,751.5,47.5,0,0.0,0.721,100.0,590.9,1885,1163,0,12000,20952,4,0,1.000,24.0,16.0,16,0.0,0.0114,0,0,0.355,0
|
||||
60,autumn,1697.0,751.3,400.0,733.6,78.7,0,0.0,0.864,100.0,595.2,2304,1503,0,12000,20193,4,0,1.000,24.0,16.0,16,0.0,0.0116,0,0,0.356,0
|
||||
61,autumn,1697.3,751.3,400.0,747.0,30.1,0,0.0,0.768,100.0,583.3,1609,1178,0,12000,21213,4,0,1.000,24.0,16.0,16,0.0,0.0117,0,0,0.356,0
|
||||
62,autumn,1702.6,751.3,400.0,734.1,49.2,0,0.0,0.902,100.0,567.5,1911,1154,0,12000,20935,4,0,1.000,24.0,16.0,16,0.0,0.0119,0,0,0.357,0
|
||||
63,autumn,1706.7,751.3,400.0,723.4,60.9,0,0.0,0.815,100.0,585.4,2193,1137,0,12000,20670,4,0,1.000,24.0,16.0,16,0.0,0.0120,0,0,0.358,0
|
||||
64,autumn,1701.7,751.3,400.0,733.4,41.3,0,0.0,0.728,100.0,583.7,1713,1169,0,12000,21118,4,0,1.000,24.0,16.0,16,0.0,0.0121,0,0,0.359,0
|
||||
65,autumn,1699.9,751.3,400.0,720.1,70.6,0,0.0,0.862,100.0,589.3,2372,1224,0,12000,20404,4,0,1.000,24.0,16.0,16,0.0,0.0122,0,0,0.361,0
|
||||
66,autumn,1699.4,751.3,400.0,732.0,35.4,0,0.0,0.765,100.0,582.7,1660,1174,0,12000,21166,4,0,1.000,24.0,16.0,16,0.0,0.0123,0,0,0.363,0
|
||||
67,autumn,1687.3,751.3,400.0,743.8,55.1,0,0.0,0.908,100.0,571.8,2150,1632,0,12000,20218,4,0,1.000,24.0,16.0,16,0.0,0.0124,0,0,0.365,0
|
||||
68,autumn,1682.3,751.3,400.0,734.2,72.5,0,0.0,0.811,100.0,589.6,2440,1526,0,12000,20034,4,0,1.000,24.0,16.0,16,0.0,0.0125,0,0,0.366,0
|
||||
69,autumn,1689.7,751.3,400.0,737.2,42.2,0,0.0,0.724,100.0,588.8,1940,1158,0,12000,20902,4,0,1.000,24.0,16.0,16,0.0,0.0127,0,0,0.366,0
|
||||
70,autumn,1694.6,751.3,400.0,727.4,59.6,0,0.0,0.867,100.0,582.3,2053,1148,0,12000,20799,4,0,1.000,24.0,16.0,16,0.0,0.0129,0,0,0.367,0
|
||||
71,autumn,1698.8,751.3,400.0,723.4,52.2,0,0.0,0.779,100.0,570.3,1903,1106,0,11520,20031,4,0,1.000,24.0,16.0,16,0.0,0.0131,0,0,0.353,1
|
||||
72,autumn,1688.0,751.3,400.0,728.7,58.1,0,0.0,0.902,100.0,564.3,2113,1237,0,11999,20651,4,0,1.000,24.0,16.0,16,0.0,0.0132,0,0,0.366,0
|
||||
73,autumn,1695.1,751.3,400.0,708.5,70.7,0,0.0,0.824,100.0,591.0,2393,1132,0,12000,20475,4,0,1.000,24.0,16.0,16,0.0,0.0133,0,0,0.367,0
|
||||
74,autumn,1698.1,751.3,400.0,726.5,34.9,0,0.0,0.727,100.0,583.9,1731,1173,0,12000,21096,4,0,1.000,24.0,16.0,16,0.0,0.0135,0,0,0.367,0
|
||||
75,autumn,1700.8,751.3,400.0,713.4,71.7,0,0.0,0.859,100.0,590.6,2247,1252,0,12000,20501,4,0,1.000,24.0,16.0,16,0.0,0.0136,0,0,0.368,0
|
||||
76,autumn,1706.8,751.3,400.0,724.1,37.7,0,0.0,0.772,100.0,585.3,1750,1170,0,12000,21080,4,0,1.000,24.0,16.0,16,0.0,0.0137,0,0,0.368,0
|
||||
77,autumn,1706.4,751.3,400.0,726.1,49.8,0,0.0,0.895,100.0,571.1,2060,1244,0,12000,20696,4,0,1.000,24.0,16.0,16,0.0,0.0139,0,0,0.369,0
|
||||
78,autumn,1699.3,751.3,400.0,730.8,56.9,0,0.0,0.816,100.0,584.0,2050,1691,0,12000,20259,4,0,1.000,24.0,16.0,16,0.0,0.0141,0,0,0.371,0
|
||||
79,autumn,1707.0,751.3,400.0,722.3,48.0,0,0.0,0.738,100.0,588.0,1960,1156,0,12000,20884,4,0,1.000,24.0,16.0,16,0.0,0.0144,0,0,0.372,0
|
||||
80,autumn,1706.1,751.3,400.0,716.2,62.5,0,0.0,0.851,100.0,587.4,2246,1250,0,12000,20504,4,0,1.000,24.0,16.0,16,0.0,0.0146,0,0,0.372,0
|
||||
81,autumn,1707.1,751.3,400.0,725.7,39.5,0,0.0,0.772,100.0,582.9,1692,1185,0,12000,21123,4,0,1.000,24.0,16.0,16,0.0,0.0148,0,0,0.373,0
|
||||
82,autumn,1688.6,751.3,400.0,741.7,56.5,0,0.0,0.904,100.0,574.5,2085,1559,0,12000,20356,4,0,1.000,24.0,16.0,16,0.0,0.0151,0,0,0.373,0
|
||||
83,autumn,1696.9,751.3,400.0,720.6,66.3,0,0.0,0.815,100.0,591.3,2303,1132,0,12000,20565,4,0,1.000,24.0,16.0,16,0.0,0.0153,0,0,0.374,0
|
||||
84,autumn,1698.2,751.3,400.0,728.7,40.0,0,0.0,0.737,100.0,587.4,1876,1165,0,12000,20959,4,0,1.000,24.0,16.0,16,0.0,0.0155,0,0,0.375,0
|
||||
85,autumn,1705.8,751.3,400.0,706.8,72.9,0,0.0,0.858,100.0,590.2,2347,1130,0,12000,20523,4,0,1.000,24.0,16.0,16,0.0,0.0158,0,0,0.376,0
|
||||
86,autumn,1710.7,751.3,400.0,718.7,38.4,0,0.0,0.769,100.0,585.6,1785,1176,0,12000,21039,4,0,1.000,24.0,16.0,16,0.0,0.0161,0,0,0.376,0
|
||||
87,autumn,1710.1,751.3,400.0,717.2,58.4,0,0.0,0.912,100.0,549.8,2020,1093,0,11520,19927,4,0,1.000,24.0,16.0,16,0.0,0.0164,0,0,0.362,1
|
||||
88,autumn,1706.1,751.3,400.0,701.0,80.0,0,0.0,0.814,100.0,587.8,2565,1118,0,11999,20318,4,0,1.000,24.0,16.0,16,0.0,0.0166,0,0,0.377,0
|
||||
89,autumn,1706.5,751.3,400.0,717.5,38.9,0,0.0,0.744,100.0,581.7,1825,1164,0,12000,21011,4,0,1.000,24.0,16.0,16,0.0,0.0167,0,0,0.378,0
|
||||
90,winter,1692.5,751.3,400.0,626.8,66.6,0,0.0,0.864,100.0,584.2,2238,1172,0,12000,20590,4,0,1.000,24.0,16.0,16,0.0,0.0171,0,0,0.379,0
|
||||
91,winter,1683.3,751.3,400.0,553.6,49.6,0,0.0,0.784,100.0,568.9,2144,1091,0,11520,19805,4,0,1.000,24.0,16.0,16,0.0,0.0173,0,0,0.366,1
|
||||
92,winter,1660.2,751.3,400.0,484.4,65.9,0,0.0,0.895,100.0,563.6,2484,1542,0,11999,19975,4,0,1.000,24.0,16.0,16,0.0,0.0174,0,0,0.377,0
|
||||
93,winter,1648.1,751.3,400.0,407.7,71.8,0,0.0,0.822,100.0,563.0,3193,1030,0,11520,18817,4,0,1.000,24.0,16.0,16,0.0,0.0177,0,0,0.364,1
|
||||
94,winter,1637.4,751.3,400.0,341.7,65.6,0,0.0,0.761,100.0,582.7,5738,918,0,12306,17038,4,0,1.000,24.0,16.0,16,0.0,0.0180,0,0,0.368,0
|
||||
95,winter,1632.8,751.3,400.0,274.5,64.8,0,0.0,0.861,100.0,585.4,5010,1102,0,12000,17888,4,0,1.000,24.0,16.0,16,0.0,0.0183,0,0,0.380,0
|
||||
96,winter,1625.2,751.3,400.0,238.9,40.4,0,0.0,0.781,100.0,581.8,3064,1094,0,12000,19842,4,0,1.000,24.0,16.0,16,0.0,0.0185,0,0,0.381,0
|
||||
97,winter,1638.0,751.3,400.0,219.8,6.8,0,0.0,0.890,100.0,525.7,3243,314,0,12000,20443,4,0,1.000,24.0,16.0,16,0.0,0.0188,0,0,0.381,0
|
||||
98,winter,1631.0,751.3,400.0,202.8,24.6,0,0.0,0.819,100.0,505.2,2018,255,0,12000,21727,4,0,1.000,24.0,16.0,16,0.0,0.0190,0,0,0.382,0
|
||||
99,winter,1609.5,751.3,400.0,185.6,42.1,0,0.0,0.758,100.0,494.9,2606,683,0,12000,20711,4,0,1.000,24.0,16.0,16,0.0,0.0194,0,0,0.382,0
|
||||
100,winter,1601.7,751.3,400.0,174.2,23.0,0,0.0,0.867,100.0,454.9,2384,145,0,12000,21471,4,0,1.000,24.0,16.0,16,0.0,0.0196,0,0,0.383,0
|
||||
101,winter,1606.0,751.3,400.0,162.4,12.7,0,0.0,0.746,100.0,427.6,2162,220,0,12000,21618,4,0,1.000,24.0,16.0,16,0.0,0.0198,0,0,0.383,0
|
||||
102,winter,1603.0,751.3,400.0,151.1,21.9,0,2.1,0.714,100.0,400.5,5670,151,0,12523,17656,4,0,1.000,24.0,16.0,16,0.0,0.0218,6,0,0.383,0
|
||||
103,winter,938.8,751.3,400.0,142.3,712.2,0,3.7,0.499,100.0,419.6,9415,280,0,13606,12699,4,0,1.000,24.0,16.0,16,0.0,0.0366,54,0,0.391,0
|
||||
104,winter,795.7,430.1,400.0,135.4,1322.3,55,1.1,0.297,100.0,471.1,11581,1341,997,13608,7033,4,0,1.000,14.0,16.0,16,0.0,0.0400,54,0,0.392,1
|
||||
105,winter,792.0,330.7,400.0,130.0,2045.3,101,1.4,0.171,100.0,359.0,9538,3315,3148,13544,5015,4,0,0.950,5.6,16.0,16,0.0,0.0267,16,0,0.404,1
|
||||
106,winter,799.6,171.1,400.0,120.0,220.9,1,4.4,0.110,100.0,553.3,11281,2818,4824,15277,1800,4,0,0.875,0.1,16.0,16,0.0,0.0369,36,0,0.409,0
|
||||
107,winter,771.5,150.9,400.0,120.0,96.3,1,3.5,0.133,100.0,536.8,6108,2453,1485,12721,11793,4,0,0.775,0.0,16.0,16,0.0,0.0369,0,0,0.407,1
|
||||
108,winter,803.5,128.8,400.0,120.0,38.1,1,3.8,0.128,100.0,514.7,5837,2024,1764,12603,12332,4,0,0.675,0.0,16.0,16,0.0,0.0235,0,0,0.407,1
|
||||
109,winter,772.8,128.8,400.0,120.0,78.8,1,3.9,0.106,100.0,514.9,6128,1703,1500,13087,13582,4,0,0.575,0.0,16.0,16,0.0,0.0241,2,0,0.426,0
|
||||
110,winter,761.2,126.8,400.0,120.0,61.6,0,4.5,0.077,100.0,556.4,6292,1746,741,13069,14152,4,0,0.475,0.0,16.0,16,0.0,0.0265,4,0,0.426,0
|
||||
111,winter,762.8,126.8,400.0,120.0,46.4,0,3.6,0.063,100.0,545.5,5424,1773,784,12951,15068,4,0,0.412,0.6,16.0,16,0.0,0.0265,0,0,0.428,0
|
||||
112,winter,790.8,126.8,400.0,120.0,20.0,0,4.6,0.060,100.0,543.0,5777,1764,766,12920,14773,4,0,0.312,0.0,16.0,16,0.0,0.0265,0,0,0.428,0
|
||||
113,winter,791.6,126.8,400.0,120.0,47.2,0,3.6,0.066,100.0,536.0,5334,2513,746,12951,14456,4,0,0.250,0.8,16.0,16,0.0,0.0265,0,0,0.429,0
|
||||
114,winter,801.4,126.8,400.0,120.0,38.2,0,4.2,0.046,100.0,553.0,5819,2233,745,12926,14277,3,1,0.200,0.0,12.0,12,0.0,0.0265,0,0,0.430,0
|
||||
115,winter,807.8,126.8,400.0,120.0,41.6,0,3.6,0.020,100.0,547.3,5539,2129,759,12926,14647,2,2,0.150,0.0,8.0,8,0.0,0.0265,0,0,0.430,0
|
||||
116,winter,806.5,126.8,400.0,120.0,49.2,0,4.5,0.002,100.0,572.0,5585,2025,768,12918,14704,1,3,0.100,0.0,4.0,4,0.0,0.0275,0,0,0.439,0
|
||||
117,winter,741.3,80.0,400.0,120.0,240.0,0,8.9,0.000,100.0,472.8,12976,2326,1681,15199,3818,1,3,0.150,1.5,4.0,4,0.0,0.0275,0,0,0.444,0
|
||||
118,winter,761.3,0.0,333.7,120.0,3413.6,174,4.3,0.040,100.0,395.2,11399,2081,1548,13015,6517,1,3,0.050,0.0,4.0,4,0.0,0.0275,0,0,0.460,1
|
||||
119,winter,760.9,0.0,192.6,120.0,194.6,2,3.7,0.026,100.0,506.0,12209,1684,709,14080,7318,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,1,0.477,0
|
||||
120,spring,863.0,0.0,181.3,360.0,174.6,1,5.2,0.012,100.0,463.1,11765,921,766,13863,8685,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,1,0.489,0
|
||||
121,spring,885.0,0.0,182.2,600.0,126.0,0,6.5,0.000,100.0,508.0,12640,202,242,13620,9296,0,4,0.000,0.0,0.0,0,0.0,0.0275,0,2,0.492,0
|
||||
122,spring,961.5,0.0,187.2,614.0,286.5,6,6.9,0.664,100.0,492.4,12372,3235,786,14610,3557,2,4,1.000,15.5,4.5,1,0.0,0.0275,0,0,0.473,1
|
||||
123,spring,1080.8,0.0,192.2,622.3,236.3,24,3.3,0.760,100.0,527.6,6563,3821,1354,12696,10126,2,4,1.000,14.5,5.5,3,0.0,0.0275,0,0,0.464,1
|
||||
124,spring,1167.1,0.0,172.0,743.9,144.6,5,2.4,0.730,100.0,501.6,7346,2481,205,12680,11848,2,4,1.000,12.5,7.5,7,0.0,0.0275,0,1,0.456,1
|
||||
125,spring,1188.1,0.0,168.5,570.5,544.8,2,6.4,0.702,100.0,482.0,14540,2699,403,15041,3317,3,4,1.000,16.0,10.0,8,0.0,0.0275,0,1,0.465,0
|
||||
126,spring,1300.0,0.0,173.5,563.0,279.6,1,11.8,0.720,100.0,445.2,15127,906,61,14520,3946,3,4,0.967,13.0,11.0,10,0.0,0.0275,0,1,0.445,1
|
||||
127,spring,1387.5,0.0,178.5,576.4,283.2,0,13.5,0.652,100.0,490.5,17236,585,0,15374,2805,3,4,0.933,12.0,12.0,12,0.0,0.0275,0,2,0.449,0
|
||||
128,spring,1374.8,0.0,183.5,579.0,373.5,1,7.4,0.744,100.0,481.3,16469,0,0,14987,4544,3,4,0.900,4.0,12.0,12,0.0,0.0275,0,2,0.457,0
|
||||
129,spring,1408.5,28.4,171.0,590.8,305.5,0,6.9,0.726,100.0,471.8,15917,860,121,15226,3876,3,4,0.850,6.0,12.0,12,0.0,0.0275,0,1,0.476,0
|
||||
130,spring,1495.0,28.4,176.0,614.8,205.0,0,11.3,0.728,100.0,486.1,15488,1027,0,15069,4416,3,4,0.800,6.0,12.0,12,59.7,0.0275,0,1,0.481,0
|
||||
131,spring,1575.2,28.4,181.0,637.3,169.3,0,12.3,0.740,100.0,482.4,15546,1454,0,15221,3779,3,4,0.750,6.0,12.0,12,136.6,0.0275,0,1,0.484,0
|
||||
132,spring,1594.4,28.4,175.5,643.8,243.0,0,10.7,0.662,100.0,479.9,15750,1708,0,15381,3161,3,4,0.700,6.0,12.0,12,174.7,0.0275,0,1,0.489,0
|
||||
133,spring,1669.9,28.4,180.5,632.0,197.8,0,12.4,0.684,100.0,493.5,15838,1468,0,15197,3497,3,4,0.650,6.0,12.0,12,264.1,0.0275,0,1,0.492,0
|
||||
134,spring,1715.6,0.0,170.5,648.0,218.9,0,10.2,0.681,100.0,475.9,15895,1182,0,15030,3893,3,4,0.600,6.0,12.0,12,300.0,0.0275,0,2,0.496,0
|
||||
135,spring,1743.3,0.0,172.5,586.9,292.0,0,15.7,0.713,100.0,451.0,17632,200,0,15443,2725,3,4,0.533,2.0,12.0,12,300.0,0.0275,0,2,0.500,0
|
||||
136,spring,1721.7,0.0,177.5,584.1,287.3,0,15.9,0.755,100.0,476.2,17811,0,0,15480,2709,3,4,0.433,0.0,12.0,12,300.0,0.0275,0,2,0.503,0
|
||||
137,spring,1743.3,0.0,175.0,599.6,230.1,0,15.5,0.697,100.0,479.7,17693,129,0,15453,2725,3,4,0.333,0.0,12.0,12,300.0,0.0275,0,2,0.506,0
|
||||
138,spring,1764.9,0.0,180.0,643.5,175.4,0,15.9,0.739,100.0,464.2,17866,0,0,15425,2709,1,6,0.700,0.0,4.0,4,300.0,0.0275,0,2,0.509,0
|
||||
139,spring,1780.8,0.0,170.0,623.6,272.1,0,16.3,0.721,100.0,484.4,17775,0,0,15516,2709,1,6,0.600,0.0,4.0,4,300.0,0.0275,0,2,0.512,0
|
||||
140,spring,1718.9,18.0,172.5,649.6,286.5,0,12.3,0.733,100.0,513.0,15515,1429,0,15079,3977,1,6,0.650,6.0,4.0,4,305.2,0.0275,0,1,0.515,0
|
||||
141,spring,1739.3,18.0,177.5,595.8,284.9,0,9.7,0.755,100.0,493.8,14493,1955,0,15164,4388,1,6,0.700,6.0,4.0,4,424.6,0.0275,0,1,0.519,0
|
||||
142,spring,1737.6,25.0,182.5,636.7,217.1,0,8.7,0.697,100.0,547.1,14374,678,0,14592,6356,1,6,0.750,6.0,4.0,4,450.0,0.0275,0,1,0.522,0
|
||||
143,spring,1631.8,16.8,187.5,645.8,371.2,0,8.7,0.739,100.0,533.8,12444,1794,0,14105,7657,2,6,0.900,12.0,8.0,8,450.0,0.0275,0,1,0.527,0
|
||||
144,spring,1659.1,16.8,192.5,643.3,224.6,0,8.7,0.721,100.0,529.0,10605,521,0,13944,10930,2,6,0.925,12.0,8.0,8,450.0,0.0275,0,1,0.529,0
|
||||
145,spring,1681.2,16.8,197.5,702.7,131.3,0,8.7,0.733,100.0,527.7,10521,526,0,13944,11009,2,6,0.950,12.0,8.0,8,450.0,0.0275,0,1,0.531,0
|
||||
146,spring,1703.3,16.8,195.0,686.5,188.9,0,8.0,0.755,100.0,524.5,10505,525,0,13944,11026,2,6,0.975,12.0,8.0,8,450.0,0.0275,0,1,0.533,0
|
||||
147,spring,1719.2,16.8,200.0,635.4,272.0,0,8.0,0.697,100.0,535.6,10446,531,0,13944,11079,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.537,0
|
||||
148,spring,1735.7,16.8,190.0,702.1,165.3,0,6.8,0.739,100.0,533.3,9819,1085,121,13843,11132,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.540,0
|
||||
149,spring,1746.9,16.8,192.5,629.3,307.2,1,6.6,0.721,100.0,537.8,10384,622,14,13874,11106,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.546,0
|
||||
150,summer,1752.9,16.8,197.5,622.5,172.6,0,8.0,0.735,100.0,534.2,9757,523,0,13302,10978,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.521,1
|
||||
151,summer,1755.9,16.8,195.0,555.1,236.4,0,4.8,0.757,100.0,527.3,10547,524,0,13900,11029,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.524,0
|
||||
152,summer,1758.9,16.8,200.0,570.1,152.0,0,8.7,0.707,100.0,501.7,10635,462,0,13464,9999,2,6,1.000,12.0,8.0,8,450.0,0.0275,0,1,0.510,1
|
||||
153,summer,1634.4,16.8,190.0,623.9,283.2,1,1.5,0.749,100.0,529.7,9168,2012,1,13707,11112,3,6,1.000,20.0,10.0,8,450.0,0.0275,0,0,0.546,0
|
||||
154,summer,1661.3,16.8,195.0,624.5,133.3,0,4.4,0.727,100.0,531.1,7616,3011,0,12899,11034,3,6,1.000,20.0,10.0,8,505.4,0.0275,0,0,0.566,1
|
||||
155,summer,1678.5,16.8,200.0,616.5,136.8,0,4.4,0.739,100.0,543.2,6880,3446,0,13517,12157,3,6,1.000,18.0,10.0,8,590.1,0.0275,0,0,0.598,0
|
||||
156,summer,1630.0,0.0,194.0,632.3,199.4,1,4.3,0.751,100.0,526.3,8632,2329,43,13829,11167,3,6,1.000,18.0,12.0,12,600.0,0.0275,0,1,0.630,0
|
||||
157,summer,1650.0,0.0,199.0,531.2,264.2,0,8.4,0.703,100.0,526.4,10493,586,0,13944,10977,3,6,1.000,14.0,12.0,12,600.0,0.0275,0,1,0.635,0
|
||||
158,summer,1671.0,0.0,189.0,574.2,131.0,1,6.2,0.764,100.0,505.3,9522,798,15,12759,10026,3,6,0.967,12.0,12.0,12,600.0,0.0275,0,1,0.582,2
|
||||
159,summer,1684.6,0.0,194.0,570.1,170.2,0,8.6,0.726,100.0,526.3,10897,502,0,13942,10659,3,6,0.933,12.0,12.0,12,600.0,0.0275,0,1,0.610,0
|
||||
160,summer,1704.3,0.0,199.0,606.1,110.5,0,8.7,0.718,100.0,512.7,10458,529,0,13944,11069,3,6,0.900,12.0,12.0,12,600.0,0.0275,0,1,0.612,0
|
||||
161,summer,1707.8,0.0,194.0,652.3,105.0,0,0.8,0.760,100.0,518.7,10270,1363,0,13859,10508,3,6,0.867,12.0,12.0,12,600.0,0.0275,0,1,0.614,0
|
||||
162,summer,1716.8,0.0,199.0,552.1,261.2,0,8.0,0.721,100.0,514.8,9871,799,0,13302,10588,3,6,0.833,12.0,12.0,12,600.0,0.0275,0,1,0.584,1
|
||||
163,summer,1648.8,57.6,191.5,607.7,204.9,0,1.9,0.743,100.0,505.2,8751,1928,0,13585,11736,3,6,0.850,18.0,12.0,12,629.9,0.0275,0,0,0.600,0
|
||||
164,summer,1671.7,57.6,196.5,613.6,144.8,0,2.8,0.725,100.0,535.6,7460,3418,0,13801,11321,3,6,0.867,18.0,12.0,12,703.3,0.0275,0,0,0.608,0
|
||||
165,summer,1690.1,0.0,198.0,568.7,255.0,0,5.4,0.737,100.0,516.1,8382,2499,0,13731,11388,3,6,0.883,18.0,12.0,12,750.0,0.0275,0,1,0.620,0
|
||||
166,summer,1708.0,0.0,193.0,611.4,116.8,0,8.7,0.765,100.0,492.9,10430,473,0,13458,10199,3,6,0.900,14.0,12.0,12,750.0,0.0275,0,1,0.591,1
|
||||
167,summer,1718.0,0.0,198.0,591.8,188.3,0,8.7,0.717,100.0,521.1,11242,480,0,14105,10173,3,6,0.867,12.0,12.0,12,750.0,0.0275,0,1,0.593,0
|
||||
168,summer,1732.7,0.0,190.5,604.1,135.3,0,8.7,0.739,100.0,519.3,10433,633,0,13901,11033,3,6,0.833,12.0,12.0,12,750.0,0.0275,0,1,0.622,0
|
||||
169,summer,1746.2,0.0,195.5,626.8,105.5,0,8.7,0.737,100.0,491.7,10437,475,0,13464,10184,3,6,0.800,12.0,12.0,12,750.0,0.0275,0,1,0.592,1
|
||||
170,summer,1753.2,0.0,198.0,562.1,240.9,0,0.7,0.739,100.0,530.9,10611,729,0,13873,10787,3,6,0.767,12.0,12.0,12,750.0,0.0275,0,1,0.622,0
|
||||
171,summer,1652.5,18.8,193.0,648.1,210.7,0,1.4,0.751,100.0,537.5,8552,2641,0,13944,10863,3,6,0.783,17.8,12.0,12,750.0,0.0275,0,0,0.627,0
|
||||
172,summer,1675.4,47.4,198.0,601.3,201.7,0,1.5,0.723,100.0,550.2,7124,3129,0,13620,12127,3,6,0.800,18.0,12.0,12,862.4,0.0275,0,0,0.637,0
|
||||
173,summer,1694.1,19.8,190.8,631.3,145.2,0,4.0,0.747,100.0,481.1,7999,2212,0,13175,11174,3,6,0.817,18.0,12.0,12,900.0,0.0275,0,1,0.625,1
|
||||
174,summer,1710.2,19.8,195.8,523.7,275.2,0,8.7,0.729,100.0,517.3,10585,523,0,13943,10949,3,6,0.833,14.0,12.0,12,900.0,0.0275,0,1,0.628,0
|
||||
175,summer,1725.7,19.8,198.3,568.4,124.8,0,4.8,0.741,100.0,503.0,10453,737,0,13852,10958,3,6,0.800,12.0,12.0,12,900.0,0.0275,0,1,0.630,0
|
||||
176,summer,1738.2,19.8,193.3,604.2,140.7,0,8.4,0.753,100.0,509.0,10308,661,0,13944,11087,3,6,0.767,12.0,12.0,12,900.0,0.0275,0,1,0.632,0
|
||||
177,summer,1752.3,19.8,196.0,586.5,178.2,0,8.3,0.725,100.0,514.2,10534,528,0,13933,11005,3,6,0.733,12.0,12.0,12,900.0,0.0275,0,1,0.637,0
|
||||
178,summer,1766.4,19.8,191.0,589.7,148.8,0,7.6,0.737,100.0,513.0,10692,526,0,13881,10901,3,6,0.700,12.0,12.0,12,900.0,0.0275,0,1,0.638,0
|
||||
179,summer,1768.8,19.8,196.0,567.9,169.1,0,8.7,0.729,100.0,499.4,10636,518,0,13944,10902,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.640,0
|
||||
180,autumn,1767.3,19.8,198.5,595.6,98.9,0,8.8,0.741,100.0,508.1,10468,534,0,13902,11096,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.642,0
|
||||
181,autumn,1766.3,19.8,193.5,642.8,87.0,0,8.7,0.753,100.0,521.4,10509,525,0,13944,11022,2,7,1.000,12.0,8.0,8,900.0,0.0275,0,1,0.643,0
|
||||
182,autumn,1682.4,16.0,196.0,633.2,213.4,0,3.6,0.725,100.0,581.6,8867,2027,0,13741,11365,2,7,1.000,12.0,8.0,8,917.4,0.0275,0,0,0.647,0
|
||||
183,autumn,1695.4,16.0,191.0,570.4,190.3,0,2.5,0.737,100.0,510.4,7305,3437,0,13601,11657,2,7,1.000,12.0,8.0,8,1050.0,0.0275,0,1,0.656,0
|
||||
184,autumn,1708.4,16.0,196.0,574.1,113.1,0,8.6,0.769,100.0,458.1,10449,532,0,13464,10115,2,7,1.000,12.0,8.0,8,1050.0,0.0142,0,1,0.629,1
|
||||
185,autumn,1705.0,16.0,198.5,533.8,197.7,0,8.0,0.777,100.0,502.9,10426,702,0,13935,10937,2,7,1.000,12.0,8.0,8,1050.0,0.0156,0,1,0.661,0
|
||||
186,autumn,1718.0,16.0,193.5,570.6,110.9,0,8.5,0.784,100.0,511.1,10585,592,0,13940,10883,2,7,1.000,12.0,8.0,8,1050.0,0.0157,0,1,0.663,0
|
||||
187,autumn,1729.0,16.0,196.0,562.2,148.4,0,8.7,0.761,100.0,526.7,10574,633,0,13944,10849,2,7,1.000,12.0,8.0,8,1050.0,0.0159,0,1,0.667,0
|
||||
188,autumn,1618.1,0.0,196.0,580.2,259.6,0,3.1,0.768,100.0,522.9,8842,2003,0,13873,11282,3,7,1.000,18.5,11.5,11,1065.8,0.0159,0,0,0.676,0
|
||||
189,autumn,1645.0,0.0,201.0,512.7,192.6,0,5.3,0.765,100.0,514.6,9284,1900,0,13922,10894,3,7,1.000,18.5,11.5,11,1142.7,0.0160,0,0,0.683,0
|
||||
190,autumn,1663.5,0.0,206.0,528.2,108.1,0,6.4,0.772,100.0,481.6,9849,1217,0,13921,11013,3,7,1.000,18.5,11.5,11,1185.3,0.0160,0,0,0.689,0
|
||||
191,autumn,1587.3,0.0,211.0,542.4,224.4,0,0.7,0.789,100.0,572.1,6745,1447,0,12951,14857,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.722,0
|
||||
192,autumn,1603.3,0.0,216.0,568.0,120.8,0,0.0,0.756,100.0,586.4,2514,1111,0,12158,20217,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.825,0
|
||||
193,autumn,1621.6,0.0,221.0,663.1,44.7,0,0.0,0.773,100.0,585.1,1840,1936,0,12000,20224,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.847,0
|
||||
194,autumn,1647.7,0.0,226.0,708.1,52.0,0,0.0,0.760,100.0,594.1,2019,1150,0,12000,20831,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.863,0
|
||||
195,autumn,1664.1,0.0,231.0,728.3,41.8,0,0.0,0.777,100.0,589.9,1696,1170,0,12000,21134,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.876,0
|
||||
196,autumn,1685.6,0.0,236.0,722.5,45.1,0,0.0,0.784,100.0,589.9,2019,1151,0,12000,20830,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.880,0
|
||||
197,autumn,1696.4,0.0,241.0,726.9,46.8,0,0.0,0.761,100.0,594.7,2059,1155,0,12000,20786,3,7,1.000,18.0,12.0,12,1200.0,0.0160,0,0,0.882,0
|
||||
198,autumn,1707.4,0.0,246.0,726.6,42.6,0,0.0,0.768,100.0,592.3,1774,1168,0,12000,21058,3,7,1.000,18.0,12.0,12,1200.0,0.0161,0,0,0.889,0
|
||||
199,autumn,1710.2,0.0,251.0,727.9,45.4,0,0.0,0.765,100.0,593.6,1957,1156,0,12000,20887,3,7,1.000,18.0,12.0,12,1200.0,0.0161,0,0,0.894,0
|
||||
200,autumn,1718.8,0.0,256.0,731.8,34.4,0,0.0,0.772,100.0,583.0,1643,1195,0,12000,21162,3,7,1.000,18.0,12.0,12,1200.0,0.0162,0,0,0.896,0
|
||||
201,autumn,1721.8,0.0,261.0,727.3,45.3,0,0.0,0.789,100.0,582.4,2007,1151,0,12000,20842,3,7,1.000,18.0,12.0,12,1200.0,0.0162,0,0,0.897,0
|
||||
202,autumn,1723.3,0.0,266.0,592.8,233.4,0,0.7,0.756,100.0,599.5,3281,1063,0,12243,19413,3,7,1.000,18.0,12.0,12,1200.0,0.0163,0,0,0.910,0
|
||||
203,autumn,1721.8,0.0,271.0,599.0,98.1,0,0.7,0.773,100.0,586.6,2647,1110,0,12162,20081,3,7,1.000,18.0,12.0,12,1200.0,0.0163,0,0,0.911,0
|
||||
204,autumn,1714.4,0.0,276.0,617.7,91.1,0,0.0,0.760,100.0,592.8,2213,1252,0,12061,20474,3,7,1.000,18.0,12.0,12,1200.0,0.0165,0,0,0.916,0
|
||||
205,autumn,1721.9,0.0,281.0,670.8,41.8,0,0.0,0.776,100.0,588.6,1932,1163,0,12000,20905,3,7,1.000,18.0,12.0,12,1200.0,0.0165,0,0,0.921,0
|
||||
206,autumn,1723.9,0.0,286.0,709.5,46.5,0,0.0,0.783,100.0,590.2,1878,1156,0,12000,20966,3,7,1.000,18.0,12.0,12,1200.0,0.0166,0,0,0.924,0
|
||||
207,autumn,1725.4,0.0,291.0,724.7,43.6,0,0.0,0.760,100.0,591.8,1805,1161,0,12000,21034,3,7,1.000,18.0,12.0,12,1200.0,0.0166,0,0,0.928,0
|
||||
208,autumn,1721.9,0.0,296.0,728.2,46.1,0,0.0,0.767,100.0,584.7,1824,1160,0,12000,21016,3,7,1.000,18.0,12.0,12,1200.0,0.0167,0,0,0.931,0
|
||||
209,autumn,1722.8,0.0,301.0,727.8,46.3,0,0.0,0.763,100.0,586.9,1912,1253,0,12000,20835,3,7,1.000,18.0,12.0,12,1200.0,0.0167,0,0,0.933,0
|
||||
210,winter,1715.8,0.0,306.0,648.5,43.1,0,0.0,0.770,100.0,585.1,1855,1155,0,12000,20990,3,7,1.000,18.0,12.0,12,1200.0,0.0168,0,0,0.933,0
|
||||
211,winter,1706.1,0.0,311.0,564.3,59.8,0,0.0,0.786,100.0,591.0,2454,1126,0,12000,20420,3,7,1.000,18.0,12.0,12,1200.0,0.0169,0,0,0.936,0
|
||||
212,winter,1704.7,0.0,316.0,380.3,165.8,0,0.7,0.753,100.0,592.7,3433,1054,0,12162,19351,3,7,1.000,18.0,12.0,12,1200.0,0.0169,0,0,0.939,0
|
||||
213,winter,1691.1,0.0,321.0,286.9,95.9,0,0.0,0.769,100.0,588.0,4607,962,0,12552,17879,3,7,1.000,18.0,12.0,12,1200.0,0.0171,0,0,0.944,0
|
||||
214,winter,1690.2,0.0,326.0,260.6,16.8,0,0.0,0.773,100.0,558.8,4237,1469,0,11780,17074,3,7,1.000,18.0,12.0,12,1174.7,0.0171,0,0,0.908,1
|
||||
215,winter,1682.2,0.0,331.0,242.7,18.0,0,0.0,0.780,100.0,579.7,3214,1134,0,11999,19653,3,7,1.000,18.0,12.0,12,1126.7,0.0172,0,0,0.944,0
|
||||
216,winter,1664.7,0.0,336.0,224.3,28.6,0,0.0,0.786,100.0,586.8,2972,1470,0,12000,19558,3,7,1.000,18.0,12.0,12,1095.7,0.0173,0,0,0.948,0
|
||||
217,winter,1663.8,0.0,341.0,209.2,8.8,0,0.0,0.762,100.0,574.7,2961,1112,0,12000,19927,3,7,1.000,18.0,12.0,12,1074.7,0.0173,0,0,0.949,0
|
||||
218,winter,1642.9,0.0,346.0,193.4,33.4,0,0.0,0.776,100.0,535.4,4171,4159,0,11520,14710,3,7,1.000,18.0,12.0,12,1069.0,0.0175,0,0,0.911,1
|
||||
219,winter,1644.8,0.0,351.0,180.7,7.7,0,3.3,0.763,100.0,527.5,8689,5180,0,12936,9195,3,7,1.000,18.0,12.0,12,1034.8,0.0175,0,0,0.925,0
|
||||
220,winter,1651.2,0.0,356.0,167.8,5.6,0,1.4,0.779,100.0,547.5,9597,5162,0,13216,8025,3,7,1.000,18.0,12.0,12,963.3,0.0176,0,0,0.931,0
|
||||
221,winter,1644.6,0.0,361.0,156.7,17.3,0,3.1,0.795,100.0,548.5,9749,5542,0,13281,7428,3,7,1.000,18.0,12.0,12,914.3,0.0177,0,0,0.939,0
|
||||
222,winter,1649.2,0.0,366.0,146.6,5.7,0,1.4,0.761,100.0,524.3,8976,4270,0,13056,9698,3,7,1.000,18.0,12.0,12,903.3,0.0178,0,0,0.943,0
|
||||
223,winter,1654.8,0.0,371.0,137.8,4.5,0,1.1,0.767,100.0,510.8,9610,5167,0,13194,8029,3,7,1.000,18.0,12.0,12,876.3,0.0178,0,0,0.947,0
|
||||
224,winter,1635.7,0.0,376.0,130.0,29.3,0,0.7,0.763,100.0,503.2,9057,5016,0,12991,8936,3,7,1.000,18.0,12.0,12,863.3,0.0179,0,0,0.949,0
|
||||
225,winter,1615.4,0.0,381.0,123.3,31.3,0,2.2,0.779,100.0,548.5,10192,5061,0,13267,7480,3,7,1.000,18.0,12.0,12,803.3,0.0180,0,0,0.951,0
|
||||
226,winter,1615.0,0.0,386.0,120.4,11.9,0,0.6,0.794,100.0,529.3,9917,5295,0,13446,7342,3,7,1.000,18.0,12.0,12,781.0,0.0180,0,0,0.952,0
|
||||
227,winter,1619.0,0.0,390.0,120.0,8.8,0,0.1,0.761,100.0,625.0,9592,5657,0,13395,7356,3,7,1.000,18.0,12.0,12,653.0,0.0182,0,0,0.952,0
|
||||
228,winter,1629.4,0.0,394.0,120.0,0.0,0,1.8,0.766,100.0,593.2,8296,6042,0,12717,8945,3,7,1.000,18.0,12.0,12,619.3,0.0182,0,0,0.953,0
|
||||
229,winter,1639.2,0.0,397.5,120.0,0.0,0,3.8,0.762,100.0,542.7,8680,6070,0,12765,8485,3,7,1.000,18.0,12.0,12,615.3,0.0182,0,0,0.954,0
|
||||
230,winter,1606.4,0.0,399.0,120.0,43.2,0,1.1,0.778,100.0,523.8,10154,5319,0,13166,7361,3,7,1.000,18.0,12.0,12,612.3,0.0182,0,0,0.955,0
|
||||
231,winter,1592.5,0.0,400.0,120.0,25.1,0,1.6,0.793,100.0,511.1,10480,4396,0,13246,7878,3,7,1.000,18.0,12.0,12,586.8,0.0182,0,0,0.955,0
|
||||
232,winter,1550.9,0.0,400.0,120.0,55.2,0,2.9,0.760,100.0,557.3,8925,4309,0,12737,10029,3,7,1.000,18.0,12.0,12,539.8,0.0182,0,0,0.956,0
|
||||
233,winter,1551.0,0.0,400.0,120.0,13.5,0,0.9,0.765,100.0,598.9,8166,5788,0,12892,9154,3,7,1.000,18.0,12.0,12,458.0,0.0182,0,0,0.957,0
|
||||
234,winter,1563.9,0.0,400.0,120.0,0.0,0,1.8,0.771,100.0,553.9,9720,4123,0,13192,8965,3,7,1.000,18.0,12.0,12,458.0,0.0182,0,0,0.957,0
|
||||
235,winter,1563.0,0.0,400.0,120.0,14.5,0,0.5,0.777,100.0,500.4,10355,3474,0,13391,8780,3,7,1.000,18.0,12.0,12,473.0,0.0182,0,0,0.958,0
|
||||
236,winter,1544.6,0.0,400.0,120.0,32.0,0,6.0,0.792,100.0,500.3,12884,2372,0,14131,6613,3,7,1.000,18.0,12.0,12,433.0,0.0182,0,0,0.958,0
|
||||
237,winter,1519.4,0.0,400.0,120.0,39.7,0,3.0,0.759,100.0,508.3,11578,3413,0,14097,6912,3,7,1.000,18.0,12.0,12,393.4,0.0182,0,0,0.959,0
|
||||
238,winter,1527.4,0.0,400.0,120.0,6.4,0,1.1,0.764,100.0,522.7,12352,3010,0,13908,6730,3,7,1.000,18.0,12.0,12,340.4,0.0182,0,0,0.959,0
|
||||
239,winter,1541.8,0.0,400.0,120.0,0.0,0,1.7,0.770,100.0,486.7,13633,2290,0,14422,5655,3,7,1.000,18.0,12.0,12,331.4,0.0182,0,0,0.959,0
|
||||
240,spring,1555.6,0.0,400.0,360.0,29.3,0,2.1,0.776,100.0,495.4,13944,1918,0,14428,5710,3,7,1.000,18.0,12.0,12,300.0,0.0182,0,0,0.960,0
|
||||
1,spring,13392.2,11200.0,3200.0,6571.3,2437.1,0,0.0,0.766,100.0,2437.1,34906,1253,0,13245,27396,0,0,0.000,0.0,0.0,0,0.0,0.0051,0,0,0.009,0
|
||||
2,spring,13585.8,11200.0,3200.0,6961.3,143.4,0,0.0,0.913,100.0,2420.5,4574,2828,0,38400,69398,0,0,0.000,0.0,0.0,0,0.0,0.0053,0,0,0.010,0
|
||||
3,spring,13769.6,11200.0,3200.0,7133.3,134.5,0,0.0,0.810,100.0,2475.0,3917,2787,0,38400,70096,0,0,0.000,0.0,0.0,0,0.0,0.0054,0,0,0.010,0
|
||||
4,spring,13174.5,10243.9,3200.0,7068.4,2090.3,1,0.7,0.766,100.0,2180.9,26974,18839,531,46403,22453,10,0,1.000,59.9,37.0,34,0.0,0.0066,0,0,0.020,0
|
||||
5,spring,12494.1,10395.7,3200.0,6634.8,1981.9,0,3.2,0.853,100.0,2363.1,31737,6608,968,43899,31988,10,0,1.000,60.0,40.0,40,0.0,0.0107,0,0,0.028,0
|
||||
6,spring,12174.4,10399.7,3200.0,6582.2,1332.7,0,3.0,0.752,100.0,2421.0,20592,2565,0,41311,50732,10,0,1.000,60.0,40.0,40,0.0,0.0167,0,0,0.033,0
|
||||
7,spring,11915.5,10399.7,3200.0,6648.6,1199.3,0,2.8,0.885,100.0,2403.7,18111,2660,0,40733,53696,10,0,1.000,60.0,40.0,40,0.0,0.0215,0,0,0.038,0
|
||||
8,spring,11903.1,10399.7,3200.0,6628.9,1022.8,0,2.6,0.803,100.0,2431.7,16439,2773,0,40333,55655,10,0,1.000,60.0,40.0,40,0.0,0.0260,0,0,0.047,0
|
||||
9,spring,11832.9,10399.7,3200.0,6531.3,1227.4,0,2.4,0.785,100.0,2431.0,17684,2570,0,40309,54637,10,0,1.000,60.0,40.0,40,0.0,0.0315,0,0,0.056,0
|
||||
10,spring,11754.0,10399.7,3200.0,6569.0,1142.4,0,2.5,0.825,100.0,2438.9,17759,2242,0,40336,54863,10,0,1.000,60.0,40.0,40,0.0,0.0369,0,0,0.064,0
|
||||
11,spring,11736.4,10299.6,3200.0,6519.1,1302.0,0,2.9,0.817,100.0,2361.0,20614,7400,0,42800,44386,11,0,1.000,66.0,44.0,44,0.0,0.0421,0,0,0.070,0
|
||||
12,spring,11555.5,10317.1,3200.0,6516.7,1414.9,0,3.0,0.855,100.0,2390.8,21677,2829,0,41193,49501,11,0,1.000,66.0,44.0,44,0.0,0.0459,0,0,0.078,0
|
||||
13,spring,11489.7,10222.4,3200.0,6565.4,1370.0,0,1.9,0.832,100.0,2384.8,26037,4681,0,42717,41765,12,0,1.000,72.0,48.0,48,0.0,0.0487,0,0,0.086,0
|
||||
14,spring,11671.3,10284.8,3200.0,6393.4,1264.9,0,2.2,0.760,100.0,2437.0,18943,3647,0,40567,52043,12,0,1.000,72.0,48.0,48,0.0,0.0502,0,0,0.093,0
|
||||
15,spring,11926.0,10298.9,3200.0,6497.1,858.2,0,1.5,0.847,100.0,2427.3,15335,2681,0,39846,57338,12,0,1.000,72.0,48.0,48,0.0,0.0510,0,0,0.101,0
|
||||
16,spring,12137.1,10323.0,3200.0,6621.6,778.2,1,1.6,0.795,100.0,2440.2,13474,3800,3,39849,58074,12,0,1.000,72.0,48.0,48,0.0,0.0518,0,0,0.111,0
|
||||
17,spring,12332.8,10323.0,3200.0,6636.4,808.5,0,1.2,0.867,100.0,2411.4,12062,2860,0,39520,60758,12,0,1.000,72.0,48.0,48,0.0,0.0524,0,0,0.118,0
|
||||
18,spring,12544.4,10323.0,3200.0,6582.3,871.1,0,1.2,0.826,100.0,2449.8,14551,2496,0,39520,58633,12,0,1.000,72.0,48.0,48,0.0,0.0531,0,0,0.124,0
|
||||
19,spring,12616.6,10323.0,3200.0,6551.0,972.9,0,1.4,0.768,100.0,2449.7,11831,2573,0,39519,61277,12,0,1.000,72.0,48.0,48,0.0,0.0537,0,0,0.135,0
|
||||
20,spring,12882.1,10333.1,3200.0,6557.0,794.6,0,1.0,0.852,100.0,2444.4,12600,2801,0,39353,60446,12,0,1.000,72.0,48.0,48,0.0,0.0542,0,0,0.145,0
|
||||
21,spring,13022.6,10333.1,3200.0,6663.4,670.0,0,1.1,0.792,100.0,2461.2,11878,2453,0,39366,61503,12,0,1.000,72.0,48.0,48,0.0,0.0548,0,0,0.148,0
|
||||
22,spring,12848.6,10333.1,3200.0,6808.1,832.8,0,1.2,0.880,100.0,2416.4,10891,2512,0,39372,62425,12,0,1.000,72.0,48.0,48,0.0,0.0554,0,0,0.153,0
|
||||
23,spring,12739.8,10333.1,3200.0,6825.4,837.5,1,0.9,0.813,100.0,2452.7,11871,2207,1,39372,61749,12,0,1.000,72.0,48.0,48,0.0,0.0559,0,0,0.157,0
|
||||
24,spring,12793.9,10333.1,3200.0,6821.0,673.5,0,1.1,0.770,100.0,2455.0,10708,2669,0,39206,62617,12,0,1.000,72.0,48.0,48,0.0,0.0565,0,0,0.159,0
|
||||
25,spring,12711.0,10333.1,3200.0,6755.0,922.5,0,0.7,0.834,100.0,2461.0,11782,2398,0,39197,61823,12,0,1.000,72.0,48.0,48,0.0,0.0570,0,0,0.163,0
|
||||
26,spring,12660.0,10333.1,3200.0,6842.4,748.7,0,0.9,0.788,100.0,2462.8,10090,2708,0,39192,63210,12,0,1.000,72.0,48.0,48,0.0,0.0577,0,0,0.166,0
|
||||
27,spring,12681.0,10333.1,3200.0,6827.8,711.4,0,0.8,0.865,100.0,2420.7,10472,2456,0,39202,63070,12,0,1.000,72.0,48.0,48,0.0,0.0584,0,0,0.168,0
|
||||
28,spring,12736.5,10333.1,3200.0,6706.0,829.9,0,0.8,0.817,100.0,2453.7,11541,2469,0,39196,61994,12,0,1.000,72.0,48.0,48,0.0,0.0591,0,0,0.171,0
|
||||
29,spring,12736.0,10333.1,3200.0,6736.3,768.7,0,0.9,0.770,100.0,2461.4,10204,2445,0,39202,63349,12,0,1.000,72.0,48.0,48,0.0,0.0600,0,0,0.173,0
|
||||
30,summer,12879.5,10333.1,3200.0,6576.1,614.5,0,0.9,0.835,100.0,2473.3,10478,2992,0,39048,62682,12,0,1.000,72.0,48.0,48,0.0,0.0606,0,0,0.175,0
|
||||
31,summer,12976.1,10333.1,3200.0,6509.1,550.0,0,0.5,0.789,100.0,2452.4,9841,2546,0,39024,63789,12,0,1.000,72.0,48.0,48,0.0,0.0613,0,0,0.180,0
|
||||
32,summer,12937.0,10333.1,3200.0,6516.1,612.6,0,0.7,0.864,100.0,2411.4,10334,2419,0,39037,63410,12,0,1.000,72.0,48.0,48,0.0,0.0620,0,0,0.182,0
|
||||
33,summer,12941.3,10333.1,3200.0,6491.4,630.2,0,0.9,0.815,100.0,2455.3,11162,2687,0,39038,62313,12,0,1.000,72.0,48.0,48,0.0,0.0628,0,0,0.184,0
|
||||
34,summer,12964.4,10333.1,3200.0,6503.6,583.7,0,0.2,0.765,100.0,2467.4,9775,2566,0,38880,63979,12,0,1.000,72.0,48.0,48,0.0,0.0636,0,0,0.186,0
|
||||
35,summer,13064.8,10333.1,3200.0,6450.6,566.7,0,0.6,0.834,100.0,2474.4,11310,2359,0,38883,62648,12,0,1.000,72.0,48.0,48,0.0,0.0645,0,0,0.188,0
|
||||
36,summer,13157.4,10333.1,3200.0,6434.0,557.7,0,0.6,0.803,100.0,2465.3,9125,2935,0,38886,64254,12,0,1.000,72.0,48.0,48,0.0,0.0651,0,0,0.190,0
|
||||
37,summer,13236.5,10333.1,3200.0,6439.7,557.8,0,0.4,0.872,100.0,2436.1,9645,2928,0,38881,63746,12,0,1.000,72.0,48.0,48,0.0,0.0658,0,0,0.192,0
|
||||
38,summer,13354.3,10333.1,3200.0,6534.8,420.5,0,0.7,0.821,100.0,2463.2,10784,2691,0,38873,62852,12,0,1.000,72.0,48.0,48,0.0,0.0665,0,0,0.193,0
|
||||
39,summer,13374.7,10333.1,3200.0,6591.8,490.6,0,0.6,0.765,100.0,2476.8,9111,4045,0,38885,63159,12,0,1.000,72.0,48.0,48,0.0,0.0673,0,0,0.195,0
|
||||
40,summer,13409.0,10333.1,3200.0,6506.7,605.1,0,0.5,0.855,100.0,2463.4,9977,2527,0,38886,63810,12,0,1.000,72.0,48.0,48,0.0,0.0681,0,0,0.197,0
|
||||
41,summer,13470.8,10333.1,3200.0,6439.3,577.3,0,0.5,0.788,100.0,2464.7,9020,3888,0,38886,63406,12,0,1.000,72.0,48.0,48,0.0,0.0688,0,0,0.199,0
|
||||
42,summer,13522.5,10333.1,3200.0,6499.2,444.8,0,0.7,0.869,100.0,2425.5,9333,3377,0,38886,63604,12,0,1.000,72.0,48.0,48,0.0,0.0696,0,0,0.200,0
|
||||
43,summer,13542.6,10333.1,3200.0,6593.9,428.4,0,0.3,0.815,100.0,2466.2,10311,2609,0,38879,63401,12,0,1.000,72.0,48.0,48,0.0,0.0703,0,0,0.202,0
|
||||
44,summer,13506.9,10333.1,3200.0,6592.8,544.4,0,0.7,0.767,100.0,2468.5,9820,2692,0,38886,63802,12,0,1.000,72.0,48.0,48,0.0,0.0709,0,0,0.203,0
|
||||
45,summer,13521.6,10333.1,3200.0,6554.2,516.0,0,0.7,0.835,100.0,2461.3,10480,2627,0,38883,63210,12,0,1.000,72.0,48.0,48,0.0,0.0716,0,0,0.205,0
|
||||
46,summer,13457.9,10333.1,3200.0,6574.7,538.9,0,0.6,0.792,100.0,2468.4,9100,2524,0,38880,64696,12,0,1.000,72.0,48.0,48,0.0,0.0723,0,0,0.206,0
|
||||
47,summer,13461.0,10333.1,3200.0,6549.1,517.7,0,0.6,0.880,100.0,2414.8,9668,2612,0,38886,64034,12,0,1.000,72.0,48.0,48,0.0,0.0730,0,0,0.207,0
|
||||
48,summer,13465.3,10333.1,3200.0,6528.2,519.5,0,0.7,0.812,100.0,2468.6,10042,2265,0,38880,64013,12,0,1.000,72.0,48.0,48,0.0,0.0737,0,0,0.208,0
|
||||
49,summer,13463.1,10333.1,3200.0,6589.9,423.2,0,0.5,0.763,100.0,2463.2,8646,2505,0,38878,65171,12,0,1.000,72.0,48.0,48,0.0,0.0745,0,0,0.209,0
|
||||
50,summer,13346.6,10333.1,3200.0,6590.5,585.6,0,0.3,0.840,100.0,2474.9,10710,2438,0,38875,63177,12,0,1.000,72.0,48.0,48,0.0,0.0752,0,0,0.211,0
|
||||
51,summer,13349.9,10333.1,3200.0,6588.5,478.3,0,0.7,0.781,100.0,2469.6,8798,2747,0,38869,64786,12,0,1.000,72.0,48.0,48,0.0,0.0760,0,0,0.212,0
|
||||
52,summer,13320.3,10333.1,3200.0,6547.7,587.1,0,0.6,0.869,100.0,2414.9,9755,3258,0,38886,63301,12,0,1.000,72.0,48.0,48,0.0,0.0766,0,0,0.213,0
|
||||
53,summer,13348.0,10333.1,3200.0,6560.9,481.4,0,0.5,0.815,100.0,2459.2,10417,2549,0,38880,63354,12,0,1.000,72.0,48.0,48,0.0,0.0773,0,0,0.214,0
|
||||
54,summer,13362.7,10343.1,3200.0,6597.7,472.1,0,0.2,0.763,100.0,2473.0,9195,2820,0,38724,64461,12,0,1.000,72.0,48.0,48,0.0,0.0781,0,0,0.215,0
|
||||
55,summer,13363.5,10343.1,3200.0,6618.1,486.8,0,0.2,0.836,100.0,2462.3,10247,3573,0,38710,62670,12,0,1.000,72.0,48.0,48,0.0,0.0789,0,0,0.216,0
|
||||
56,summer,13402.4,10343.1,3200.0,6618.2,442.3,0,0.3,0.786,100.0,2474.5,8859,2313,0,38724,65304,12,0,1.000,72.0,48.0,48,0.0,0.0798,0,0,0.217,0
|
||||
57,summer,13505.3,10343.1,3200.0,6674.3,310.3,0,0.5,0.874,100.0,2419.0,8063,2447,0,38724,65966,12,0,1.000,72.0,48.0,48,0.0,0.0805,0,0,0.218,0
|
||||
58,summer,13584.3,10343.1,3200.0,6638.1,406.8,0,0.3,0.812,100.0,2467.8,9032,2418,0,38717,65033,12,0,1.000,72.0,48.0,48,0.0,0.0813,0,0,0.219,0
|
||||
59,summer,13661.1,10343.1,3200.0,6613.8,392.2,0,0.3,0.764,100.0,2472.5,8087,2584,0,38721,65808,12,0,1.000,72.0,48.0,48,0.0,0.0821,0,0,0.221,0
|
||||
60,autumn,13700.0,10343.1,3200.0,6566.2,391.7,0,0.3,0.840,100.0,2472.8,8763,2798,0,38718,64921,12,0,1.000,72.0,48.0,48,0.0,0.0828,0,0,0.222,0
|
||||
61,autumn,13733.0,10343.1,3200.0,6538.0,378.3,0,0.5,0.796,100.0,2459.8,8181,2715,0,38724,65580,12,0,1.000,72.0,48.0,48,0.0,0.0836,0,0,0.222,0
|
||||
62,autumn,13782.4,10343.1,3200.0,6514.6,345.4,0,0.4,0.869,100.0,2423.5,8546,3518,0,38724,64412,12,0,1.000,72.0,48.0,48,0.0,0.0844,0,0,0.223,0
|
||||
63,autumn,13794.9,10343.1,3200.0,6495.4,389.3,0,0.4,0.799,100.0,2470.8,9415,3248,0,38722,63815,12,0,1.000,72.0,48.0,48,0.0,0.0853,0,0,0.224,0
|
||||
64,autumn,13833.8,10343.1,3200.0,6431.9,405.8,0,0.3,0.766,100.0,2470.2,8812,4545,0,38724,63119,12,0,1.000,72.0,48.0,48,0.0,0.0864,0,0,0.225,0
|
||||
65,autumn,13818.8,10343.1,3200.0,6414.7,418.6,0,0.5,0.846,100.0,2423.1,9514,3629,0,38244,62373,12,0,1.000,72.0,48.0,48,0.0,0.0831,0,0,0.209,1
|
||||
66,autumn,13775.0,10343.1,3200.0,6402.7,476.6,0,0.5,0.783,100.0,2460.9,8700,2498,0,38723,65279,12,0,1.000,72.0,48.0,48,0.0,0.0841,0,0,0.213,0
|
||||
67,autumn,13720.7,10343.1,3200.0,6470.2,404.2,0,0.4,0.861,100.0,2427.8,8164,3866,0,38715,64455,12,0,1.000,72.0,48.0,48,0.0,0.0850,0,0,0.214,0
|
||||
68,autumn,13729.3,10343.1,3200.0,6486.4,394.2,0,0.3,0.819,100.0,2477.1,10095,3751,0,38707,62647,12,0,1.000,72.0,48.0,48,0.0,0.0861,0,0,0.215,0
|
||||
69,autumn,13709.9,10343.1,3200.0,6529.4,368.9,0,0.5,0.768,100.0,2453.3,7498,2494,0,38724,66484,12,0,1.000,72.0,48.0,48,0.0,0.0870,0,0,0.216,0
|
||||
70,autumn,13712.1,10343.1,3200.0,6521.0,381.5,0,0.5,0.838,100.0,2462.6,10024,2664,0,38724,63788,12,0,1.000,72.0,48.0,48,0.0,0.0880,0,0,0.217,0
|
||||
71,autumn,13684.2,10343.1,3200.0,6513.6,428.7,0,0.2,0.792,100.0,2447.9,8683,2644,0,38244,64189,12,0,1.000,72.0,48.0,48,0.0,0.0892,0,0,0.214,1
|
||||
72,autumn,13609.8,10343.1,3200.0,6527.2,479.0,0,0.5,0.862,100.0,2422.1,9202,3372,0,38723,63903,12,0,1.000,72.0,48.0,48,0.0,0.0902,0,0,0.215,0
|
||||
73,autumn,13676.2,10343.1,3200.0,6506.9,381.4,0,0.3,0.811,100.0,2476.7,9795,2308,0,38724,64373,12,0,1.000,72.0,48.0,48,0.0,0.0912,0,0,0.220,0
|
||||
74,autumn,13703.1,10343.1,3200.0,6486.7,429.4,0,0.5,0.767,100.0,2448.0,8443,2547,0,38244,64526,12,0,1.000,72.0,48.0,48,0.0,0.0921,0,0,0.220,1
|
||||
75,autumn,13694.5,10343.1,3200.0,6472.9,454.3,0,0.3,0.840,100.0,2467.8,10109,3285,0,38804,63002,12,0,1.000,72.0,48.0,48,0.0,0.0930,0,0,0.226,0
|
||||
76,autumn,13727.6,10343.1,3200.0,6499.4,357.1,0,0.5,0.786,100.0,2426.8,8379,3432,0,38244,63705,12,0,1.000,72.0,48.0,48,0.0,0.0916,0,0,0.226,1
|
||||
77,autumn,13743.5,10343.1,3200.0,6589.1,267.7,0,0.6,0.856,100.0,2402.5,9442,3513,0,38885,63360,12,0,1.000,72.0,48.0,48,0.0,0.0927,0,0,0.227,0
|
||||
78,autumn,13745.5,10343.1,3200.0,6596.9,342.5,0,0.2,0.818,100.0,2470.3,9891,2673,0,38724,63912,12,0,1.000,72.0,48.0,48,0.0,0.0937,0,0,0.229,0
|
||||
79,autumn,13769.9,10343.1,3200.0,6513.5,408.3,0,0.5,0.772,100.0,2465.9,8969,2624,0,38886,64721,12,0,1.000,72.0,48.0,48,0.0,0.0945,0,0,0.233,0
|
||||
80,autumn,13801.6,10343.1,3200.0,6543.5,289.4,0,0.5,0.838,100.0,2467.7,10055,2670,0,38724,63751,12,0,1.000,72.0,48.0,48,0.0,0.0952,0,0,0.237,0
|
||||
81,autumn,13761.3,10343.1,3200.0,6553.1,400.2,0,0.5,0.785,100.0,2463.3,8547,2666,0,38724,65263,12,0,1.000,72.0,48.0,48,0.0,0.0961,0,0,0.238,0
|
||||
82,autumn,13763.3,10343.1,3200.0,6573.0,334.5,0,0.4,0.861,100.0,2440.2,8924,2701,0,38724,64851,12,0,1.000,72.0,48.0,48,0.0,0.0970,0,0,0.242,0
|
||||
83,autumn,13748.2,10343.1,3200.0,6553.5,403.6,0,0.5,0.819,100.0,2481.6,10231,4126,0,38724,62119,12,0,1.000,72.0,48.0,48,0.0,0.0978,0,0,0.245,0
|
||||
84,autumn,13780.8,10343.1,3200.0,6594.7,273.9,0,0.4,0.767,100.0,2459.8,7865,2640,0,38724,65971,12,0,1.000,72.0,48.0,48,0.0,0.0987,0,0,0.249,0
|
||||
85,autumn,13802.6,10343.1,3200.0,6602.5,309.7,0,0.3,0.848,100.0,2459.5,11271,2572,0,38886,62471,12,0,1.000,72.0,48.0,48,0.0,0.0995,0,0,0.251,0
|
||||
86,autumn,13773.9,10343.1,3200.0,6582.1,383.4,0,0.5,0.792,100.0,2463.4,9251,2349,0,38724,64876,12,0,1.000,72.0,48.0,48,0.0,0.1005,0,0,0.253,0
|
||||
87,autumn,13790.3,10343.1,3200.0,6599.8,283.9,0,0.3,0.859,100.0,2371.9,9283,2875,0,37761,62401,12,0,1.000,72.0,48.0,48,0.0,0.0992,0,0,0.252,2
|
||||
88,autumn,13776.4,10343.1,3200.0,6464.8,507.0,0,0.5,0.814,100.0,2474.3,11267,2547,0,38722,62664,12,0,1.000,72.0,48.0,48,0.0,0.1002,0,0,0.257,0
|
||||
89,autumn,13773.8,10343.1,3200.0,6489.3,373.6,0,0.5,0.769,100.0,2462.8,8436,2582,0,38724,65458,12,0,1.000,72.0,48.0,48,0.0,0.1010,0,0,0.269,0
|
||||
90,winter,13664.0,10343.1,3200.0,5637.1,601.6,0,0.3,0.852,100.0,2423.6,9819,2567,0,38234,63140,12,0,1.000,72.0,48.0,48,0.0,0.1000,0,0,0.274,1
|
||||
91,winter,13548.9,10343.1,3200.0,4981.8,471.0,0,0.5,0.799,100.0,2403.5,10069,3800,0,37763,60688,12,0,1.000,72.0,48.0,48,0.0,0.0985,0,0,0.274,2
|
||||
92,winter,13422.4,10343.1,3200.0,4367.5,502.9,0,0.5,0.862,100.0,2394.5,10600,3680,0,38242,61238,12,0,1.000,72.0,48.0,48,0.0,0.0961,0,0,0.278,1
|
||||
93,winter,13362.5,10343.1,3200.0,3771.6,467.5,0,0.5,0.816,100.0,2448.4,13937,3781,0,38243,57799,12,0,1.000,72.0,48.0,48,0.0,0.0970,0,0,0.296,1
|
||||
94,winter,13377.3,10343.1,3200.0,3295.6,315.1,0,0.5,0.776,100.0,2461.7,13008,2717,0,38885,60590,12,0,1.000,72.0,48.0,48,0.0,0.0977,0,0,0.312,0
|
||||
95,winter,13409.1,10343.1,3200.0,2918.8,231.9,0,1.3,0.842,100.0,2447.1,19953,2180,0,39372,53695,12,0,1.000,72.0,48.0,48,0.0,0.0985,0,0,0.337,0
|
||||
96,winter,13398.9,10343.1,3200.0,2509.7,342.3,0,0.6,0.792,100.0,2426.8,16267,2787,0,38406,56300,12,0,1.000,72.0,48.0,48,0.0,0.0955,0,0,0.342,1
|
||||
97,winter,13365.8,10343.1,3200.0,2200.1,300.8,0,1.0,0.866,100.0,2387.0,18716,4950,0,39701,50393,12,0,1.000,72.0,48.0,48,0.0,0.0966,0,0,0.350,1
|
||||
98,winter,13358.6,10343.1,3200.0,1897.8,298.3,0,1.6,0.818,100.0,2455.5,25103,3329,0,41101,45667,12,0,1.000,72.0,48.0,48,0.0,0.0977,0,0,0.358,0
|
||||
99,winter,13400.1,10343.1,3200.0,1696.7,164.9,0,2.5,0.782,100.0,2365.8,25095,6637,0,41889,40139,12,0,1.000,72.0,48.0,48,0.0,0.0956,0,0,0.364,1
|
||||
100,winter,13305.0,9898.0,3200.0,1558.5,719.6,0,4.0,0.841,100.0,2193.1,31752,6343,0,43745,33360,13,0,1.000,78.0,52.0,52,0.0,0.0967,0,1,0.369,0
|
||||
101,winter,13199.6,9906.0,3200.0,1430.1,282.4,0,7.5,0.785,100.0,2091.3,33546,6393,0,44182,29639,14,0,1.000,84.0,56.0,56,0.0,0.0958,0,0,0.369,1
|
||||
102,winter,13125.2,9956.5,3200.0,1338.5,233.2,1,4.4,0.829,100.0,2037.5,26524,4794,0,41831,42051,14,0,1.000,80.0,56.0,56,0.0,0.0971,0,0,0.382,0
|
||||
103,winter,13133.0,9956.5,3200.0,1264.4,130.4,1,4.2,0.737,100.0,1958.2,27572,3086,0,42380,42162,14,0,1.000,84.0,56.0,56,0.0,0.0985,4,0,0.385,0
|
||||
104,winter,13169.7,9956.5,3200.0,1206.6,88.1,4,6.7,0.623,100.0,1891.4,34668,2001,0,43413,33678,14,0,1.000,84.0,56.0,56,0.0,0.1034,52,0,0.383,1
|
||||
105,winter,13184.2,9966.5,3200.0,1170.0,112.9,16,0.6,0.550,100.0,1835.7,31793,2044,0,41791,38132,14,0,1.000,72.0,56.0,56,0.0,0.1074,40,0,0.401,1
|
||||
106,winter,13233.5,9966.5,3200.0,1141.2,63.5,5,5.3,0.398,100.0,1806.2,47377,391,0,46879,20553,14,0,1.000,52.0,56.0,56,0.0,0.1203,172,0,0.410,0
|
||||
107,winter,13310.7,9966.5,3200.0,1122.1,18.2,11,12.1,0.317,100.0,1762.0,55726,0,0,48778,9256,14,0,0.943,12.0,56.0,56,0.0,0.1239,74,0,0.405,1
|
||||
108,winter,13363.7,9966.5,3200.0,1098.4,53.5,15,12.0,0.314,100.0,1698.0,55288,174,0,47794,7624,14,0,0.850,6.0,56.0,56,0.0,0.1257,208,0,0.393,3
|
||||
109,winter,13390.7,9966.5,3200.0,1084.6,66.8,9,14.9,0.272,100.0,1675.8,58153,289,0,50036,6722,14,0,0.800,26.0,56.0,56,0.0,0.1309,172,0,0.394,0
|
||||
110,winter,13459.4,9966.5,3200.0,1080.4,11.0,14,16.3,0.246,100.0,1634.8,61234,0,0,50491,3475,14,0,0.743,8.0,56.0,56,0.0,0.1328,266,0,0.395,0
|
||||
111,winter,13207.3,9966.5,3200.0,1080.0,333.4,25,12.1,0.261,100.0,1568.3,57683,219,0,48601,5817,14,0,0.686,24.0,56.0,56,0.0,0.1311,409,0,0.394,2
|
||||
112,winter,12347.7,9966.5,3200.0,1080.0,974.5,39,8.0,0.251,100.0,1532.7,46015,354,0,47121,21710,14,0,0.629,8.0,56.0,56,0.0,0.1309,357,0,0.401,0
|
||||
113,winter,11047.7,9966.5,3200.0,1080.0,1466.2,12,2.1,0.211,100.0,1471.4,48482,0,0,47052,18226,14,0,0.529,0.0,56.0,56,0.0,0.1271,91,0,0.407,1
|
||||
114,winter,9799.9,9966.5,3200.0,1080.0,1460.6,0,7.0,0.171,100.0,1500.9,51781,0,0,48329,15090,14,0,0.429,0.0,56.0,56,0.0,0.1277,21,0,0.421,0
|
||||
115,winter,8769.8,9966.5,3200.0,1080.0,1283.7,0,10.3,0.124,100.0,1530.8,55129,0,0,49038,11033,14,0,0.329,0.0,56.0,56,0.0,0.1298,15,0,0.425,0
|
||||
116,winter,8228.8,9966.5,3200.0,1080.0,812.2,0,10.2,0.087,100.0,1571.6,56992,0,0,49528,8680,9,5,0.356,0.0,36.0,36,0.0,0.1317,21,0,0.428,0
|
||||
117,winter,7351.2,9966.5,3200.0,1080.0,1181.6,0,12.9,0.056,100.0,1680.7,58451,0,0,49896,6853,6,8,0.383,0.0,24.0,24,0.0,0.1334,0,0,0.432,0
|
||||
118,winter,6757.3,9966.5,3200.0,1080.0,921.1,0,15.9,0.044,100.0,1859.8,58398,0,0,49579,5783,6,8,0.283,0.0,24.0,24,0.0,0.1351,0,0,0.428,1
|
||||
119,winter,6447.7,9966.5,3200.0,1080.0,648.8,0,13.9,0.033,100.0,1978.8,53298,0,0,48287,12175,5,9,0.220,0.0,20.0,20,0.0,0.1364,0,0,0.428,1
|
||||
120,spring,7083.7,9966.5,3200.0,3240.0,388.8,0,13.0,0.013,100.0,2023.5,49716,0,0,48160,17324,3,11,0.200,0.0,12.0,12,0.0,0.1377,0,0,0.429,0
|
||||
121,spring,8097.2,9966.5,3147.6,5116.8,348.9,13,12.4,0.219,100.0,2087.8,47702,794,0,48098,18606,3,11,0.100,0.0,12.0,12,0.0,0.1388,0,0,0.431,0
|
||||
122,spring,9071.7,9743.5,3149.6,6530.5,775.7,0,8.9,0.504,100.0,2178.5,39028,8293,0,47203,19236,5,11,0.490,32.5,17.5,15,150.0,0.1399,0,1,0.429,1
|
||||
123,spring,9961.5,9528.9,2840.2,6711.1,1129.6,0,6.1,0.635,100.0,2157.5,31473,14874,0,45330,19203,7,11,0.657,38.1,26.0,24,157.9,0.1369,0,1,0.421,3
|
||||
124,spring,10793.0,9476.9,2806.4,6600.7,942.5,0,6.0,0.642,100.0,2245.4,32222,13389,46,45517,21146,8,11,0.719,49.4,30.0,28,362.1,0.1388,0,0,0.422,2
|
||||
125,spring,11597.3,9489.3,2815.9,6588.3,797.0,1,6.5,0.609,100.0,2252.8,33206,13643,6,46508,20397,9,11,0.767,57.0,33.0,30,543.9,0.1364,0,0,0.419,1
|
||||
126,spring,12325.8,9649.0,2727.0,6629.5,859.2,0,6.5,0.628,100.0,2134.0,33975,12985,0,46768,20032,9,11,0.783,54.0,36.0,36,739.9,0.1375,0,1,0.418,1
|
||||
127,spring,12686.1,9598.5,2601.8,6701.9,1090.2,0,6.5,0.628,100.0,2145.1,32516,15500,0,47588,19596,9,11,0.800,54.0,36.0,36,900.0,0.1389,0,2,0.425,0
|
||||
128,spring,12882.4,9615.7,2324.3,6626.7,1177.5,0,5.5,0.626,100.0,2234.9,32485,14812,0,47048,19415,9,11,0.817,54.0,36.0,36,1048.3,0.1361,0,0,0.424,1
|
||||
129,spring,12878.7,9442.5,2271.3,6642.4,1149.2,0,4.9,0.631,100.0,2325.3,31925,13878,0,46894,22503,9,11,0.833,54.0,36.0,36,1301.2,0.1371,0,2,0.431,0
|
||||
130,spring,12740.3,9442.6,2233.9,6587.2,1328.4,0,3.7,0.624,100.0,2215.6,31860,14319,0,47132,21889,10,11,0.865,61.5,38.5,37,1547.2,0.1391,0,0,0.440,0
|
||||
131,spring,12736.9,9566.7,2253.9,6558.6,954.1,0,3.3,0.654,100.0,2251.8,27853,10537,0,43790,30140,10,11,0.880,60.5,39.5,39,1739.9,0.1329,0,0,0.450,2
|
||||
132,spring,12592.5,9375.3,2256.3,6698.1,1131.5,0,4.6,0.682,100.0,2060.9,36291,10502,0,45279,18808,11,11,0.905,66.0,44.0,44,1800.0,0.1239,0,2,0.462,3
|
||||
133,spring,12609.2,9428.3,2089.0,6726.2,888.1,0,7.2,0.667,100.0,2378.5,33668,8036,0,45587,27909,11,11,0.918,38.0,44.0,44,1800.0,0.1262,0,2,0.483,0
|
||||
134,spring,12628.4,9555.2,2111.9,6656.7,864.9,0,3.1,0.691,100.0,2370.7,23884,13010,0,44689,33617,11,11,0.932,61.6,44.0,44,1887.5,0.1267,0,0,0.508,0
|
||||
135,spring,12853.0,9454.8,2136.9,6743.6,615.0,0,3.3,0.674,100.0,2327.9,21982,12187,0,43827,37204,11,11,0.945,65.6,44.0,44,2093.3,0.1270,0,1,0.528,0
|
||||
136,spring,12990.3,9411.8,2067.9,6895.5,572.3,0,5.9,0.673,100.0,2379.3,30261,6766,0,45192,32981,11,11,0.959,57.6,44.0,44,2100.0,0.1273,0,2,0.547,0
|
||||
137,spring,13012.3,9456.3,2094.0,6752.2,945.2,0,1.2,0.675,100.0,2377.9,20076,13641,0,43822,37661,11,11,0.973,64.0,44.0,44,2302.4,0.1277,0,1,0.563,0
|
||||
138,spring,13118.1,9418.7,2107.0,6736.3,840.3,0,2.3,0.687,100.0,2276.2,23057,11463,0,43807,35433,11,11,0.986,66.0,44.0,44,2421.8,0.1237,0,1,0.569,1
|
||||
139,spring,13191.8,9459.8,2102.9,6733.8,761.8,0,4.3,0.725,100.0,2349.0,26655,5242,0,43141,38722,11,11,1.000,46.0,44.0,44,2550.0,0.1206,0,1,0.588,1
|
||||
140,spring,13219.5,9492.9,2126.5,6811.0,629.5,0,2.3,0.690,100.0,2433.6,16117,9808,0,41613,47662,11,11,1.000,64.0,44.0,44,2612.2,0.1216,0,0,0.613,0
|
||||
141,spring,13273.2,9525.7,2152.5,6828.9,565.6,0,0.0,0.695,100.0,2458.2,12294,5924,0,39263,56279,11,11,1.000,66.0,44.0,44,2700.0,0.1219,0,0,0.654,1
|
||||
142,spring,13342.5,9525.7,2178.5,6947.0,409.3,0,0.5,0.701,100.0,2461.2,8019,3943,0,38324,63474,11,11,1.000,66.0,44.0,44,2700.0,0.1223,0,0,0.668,1
|
||||
143,spring,13439.2,9525.7,2204.5,6956.5,370.0,0,0.1,0.700,100.0,2482.3,7903,3208,0,38788,65301,11,11,1.000,66.0,44.0,44,2700.0,0.1225,0,0,0.699,0
|
||||
144,spring,13531.7,9525.7,2230.5,6899.7,421.7,0,0.4,0.710,100.0,2477.9,7649,3316,0,38708,65527,11,11,1.000,66.0,44.0,44,2700.0,0.1227,0,0,0.718,0
|
||||
145,spring,13590.9,9525.7,2256.5,6873.9,451.2,0,0.4,0.683,100.0,2498.9,7352,4249,0,38714,64885,11,11,1.000,66.0,44.0,44,2700.0,0.1232,0,0,0.725,0
|
||||
146,spring,13630.2,9525.7,2282.5,6934.6,381.5,0,0.5,0.688,100.0,2467.1,7100,4115,0,38717,65268,11,11,1.000,66.0,44.0,44,2700.0,0.1233,0,0,0.742,0
|
||||
147,spring,13692.6,9525.7,2308.5,6925.9,385.1,0,0.3,0.707,100.0,2455.0,8231,2738,0,38228,64563,11,11,1.000,66.0,44.0,44,2700.0,0.1196,0,0,0.766,1
|
||||
148,spring,13692.1,9525.7,2334.5,6924.7,413.4,0,0.5,0.708,100.0,2474.4,7183,3444,0,38782,65791,11,11,1.000,66.0,44.0,44,2700.0,0.1204,0,0,0.784,0
|
||||
149,spring,13683.3,9525.7,2359.9,6895.7,448.8,0,0.4,0.725,100.0,2443.4,7452,4339,0,38236,63733,11,11,1.000,66.0,44.0,44,2700.0,0.1167,0,0,0.779,1
|
||||
150,summer,13664.4,9525.7,2384.9,6782.5,433.7,0,0.3,0.711,100.0,2456.8,7555,3087,0,38235,64883,11,11,1.000,66.0,44.0,44,2700.0,0.1174,0,0,0.773,1
|
||||
151,summer,13673.7,9525.7,2409.9,6723.6,390.2,0,0.5,0.730,100.0,2458.3,8454,3273,0,38240,63793,11,11,1.000,66.0,44.0,44,2700.0,0.1178,0,0,0.783,1
|
||||
152,summer,13640.9,9525.7,2434.9,6675.5,448.9,0,0.4,0.736,100.0,2418.0,8743,2726,0,37757,63094,11,11,1.000,66.0,44.0,44,2700.0,0.1140,0,0,0.804,2
|
||||
153,summer,13603.7,9525.7,2459.9,6663.1,408.3,0,0.4,0.725,100.0,2443.0,9050,3859,0,38226,62625,11,11,1.000,66.0,44.0,44,2700.0,0.1109,0,0,0.829,1
|
||||
154,summer,13609.6,9525.7,2484.9,6643.0,373.7,0,0.4,0.741,100.0,2449.8,9594,3111,0,38324,62731,11,11,1.000,66.0,44.0,44,2700.0,0.1117,0,0,0.843,1
|
||||
155,summer,13583.4,9525.7,2509.9,6661.7,409.9,0,0.5,0.730,100.0,2470.9,8535,4138,0,38885,63642,11,11,1.000,66.0,44.0,44,2700.0,0.1121,0,0,0.858,0
|
||||
156,summer,13583.0,9525.7,2534.9,6741.4,326.5,0,0.5,0.741,100.0,2485.2,7886,3949,0,38724,64641,11,11,1.000,66.0,44.0,44,2700.0,0.1126,0,0,0.882,0
|
||||
157,summer,13598.4,9525.7,2559.9,6736.1,347.3,0,0.2,0.718,100.0,2489.5,7864,4124,0,38724,64488,11,11,1.000,66.0,44.0,44,2700.0,0.1131,0,0,0.887,0
|
||||
158,summer,13613.2,9525.7,2584.9,6713.0,370.6,0,0.4,0.738,100.0,2406.3,8105,2766,0,37276,62733,11,11,1.000,66.0,44.0,44,2700.0,0.1093,0,0,0.866,3
|
||||
159,summer,13564.9,9525.7,2609.9,6679.5,479.7,0,0.4,0.741,100.0,2427.8,8754,5996,0,38234,60776,11,11,1.000,66.0,44.0,44,2700.0,0.1059,0,0,0.890,1
|
||||
160,summer,13513.2,9525.7,2634.9,6682.4,441.9,0,0.5,0.736,100.0,2472.1,8989,4922,0,38723,62566,11,11,1.000,66.0,44.0,44,2700.0,0.1068,0,0,0.905,0
|
||||
161,summer,13511.9,9525.7,2659.9,6636.1,471.3,0,0.4,0.754,100.0,2438.4,8612,3633,0,38238,63277,11,11,1.000,66.0,44.0,44,2700.0,0.1032,0,0,0.907,1
|
||||
162,summer,13496.2,9525.7,2684.4,6648.4,448.1,0,0.3,0.736,100.0,2473.4,8716,4987,0,38243,61814,11,11,1.000,66.0,44.0,44,2700.0,0.1044,0,0,0.909,1
|
||||
163,summer,13493.9,9525.7,2708.9,6614.5,478.8,0,0.3,0.737,100.0,2490.8,8986,3268,0,38715,64231,11,11,1.000,66.0,44.0,44,2700.0,0.1052,0,0,0.924,0
|
||||
164,summer,13543.2,9525.7,2733.4,6668.1,316.5,0,0.5,0.758,100.0,2432.9,8567,3888,0,38244,63061,11,11,1.000,66.0,44.0,44,2700.0,0.1016,0,0,0.933,1
|
||||
165,summer,13539.7,9525.7,2757.9,6660.3,438.2,0,0.2,0.743,100.0,2458.9,7537,2627,0,38081,65515,11,11,1.000,66.0,44.0,44,2700.0,0.0983,0,0,0.928,1
|
||||
166,summer,13567.9,9525.7,2782.4,6724.7,299.9,0,0.2,0.760,100.0,2371.3,7216,3817,0,37121,62726,11,11,1.000,66.0,44.0,44,2700.0,0.0907,0,0,0.898,3
|
||||
167,summer,13556.2,9525.7,2806.9,6718.3,413.2,0,0.2,0.733,100.0,2499.4,8510,2904,0,38702,65084,11,11,1.000,66.0,44.0,44,2700.0,0.0923,0,0,0.954,0
|
||||
168,summer,13600.3,9525.7,2831.4,6768.2,280.2,0,0.2,0.747,100.0,2491.5,7223,3540,0,38562,65875,11,11,1.000,66.0,44.0,44,2700.0,0.0930,0,0,0.967,0
|
||||
169,summer,13648.1,9525.7,2855.9,6767.9,295.7,0,0.2,0.753,100.0,2437.9,6812,2750,0,37602,65156,11,11,1.000,66.0,44.0,44,2700.0,0.0898,0,0,0.960,2
|
||||
170,summer,13648.8,9525.7,2880.4,6776.2,331.8,0,0.2,0.746,100.0,2474.4,7576,3459,0,38633,65532,11,11,1.000,66.0,44.0,44,2700.0,0.0906,0,0,0.964,0
|
||||
171,summer,13693.9,9525.7,2904.9,6821.2,229.0,0,0.2,0.757,100.0,2457.8,7286,3234,0,38080,65160,11,11,1.000,66.0,44.0,44,2700.0,0.0914,0,0,0.984,1
|
||||
172,summer,13719.5,9525.7,2929.4,6835.1,267.9,0,0.2,0.746,100.0,2452.0,7342,3911,0,38075,64432,11,11,1.000,66.0,44.0,44,2700.0,0.0879,0,0,0.998,1
|
||||
173,summer,13698.9,9525.7,2953.9,6808.7,371.4,0,0.2,0.744,100.0,2482.7,7306,3830,0,38162,64462,11,11,1.000,66.0,44.0,44,2700.0,0.0886,0,0,1.006,1
|
||||
174,summer,13708.9,9525.7,2978.4,6817.0,306.7,0,0.2,0.757,100.0,2499.3,7180,3737,0,38551,65732,11,11,1.000,66.0,44.0,44,2700.0,0.0892,0,0,1.028,0
|
||||
175,summer,13760.6,9525.7,3002.9,6845.8,244.3,0,0.0,0.739,100.0,2486.0,6369,2820,0,38555,67456,11,11,1.000,66.0,44.0,44,2700.0,0.0897,0,0,1.047,0
|
||||
176,summer,13783.9,9525.7,3027.4,6791.1,332.7,0,0.2,0.761,100.0,2506.2,7558,3930,0,38562,65150,11,11,1.000,66.0,44.0,44,2700.0,0.0905,0,0,1.049,0
|
||||
177,summer,13791.2,9525.7,3050.4,6830.5,244.3,0,0.1,0.753,100.0,2483.2,6458,3139,0,38556,67047,11,11,1.000,66.0,44.0,44,2700.0,0.0910,0,0,1.049,0
|
||||
178,summer,13814.2,9525.7,3073.4,6823.4,263.9,0,0.2,0.735,100.0,2492.9,7653,2895,0,38562,66090,11,11,1.000,66.0,44.0,44,2700.0,0.0915,0,0,1.054,0
|
||||
179,summer,13811.0,9525.7,3096.4,6830.4,291.9,0,0.2,0.749,100.0,2505.1,6935,4238,0,38562,65465,11,11,1.000,66.0,44.0,44,2700.0,0.0922,0,0,1.057,0
|
||||
180,autumn,13856.8,9525.7,3119.4,6782.2,261.4,0,0.2,0.758,100.0,2461.6,6596,4230,0,38082,64852,11,11,1.000,66.0,44.0,44,2700.0,0.0927,0,0,1.049,1
|
||||
181,autumn,13859.0,9525.7,3140.0,6719.9,322.7,0,0.2,0.753,100.0,2493.9,7241,2678,0,38081,65760,11,11,1.000,66.0,44.0,44,2700.0,0.0935,0,0,1.067,1
|
||||
182,autumn,13850.1,9525.7,3160.5,6714.1,278.8,0,0.2,0.745,100.0,2496.9,6736,3209,0,38561,66694,11,11,1.000,66.0,44.0,44,2700.0,0.0941,0,0,1.074,0
|
||||
183,autumn,13867.2,9525.7,3180.0,6693.4,272.6,0,0.2,0.735,100.0,2504.8,6870,3363,0,38562,66405,11,11,1.000,66.0,44.0,44,2700.0,0.0949,0,0,1.084,0
|
||||
184,autumn,13853.5,9525.7,3187.5,6707.7,283.9,0,0.2,0.756,100.0,2465.0,6738,3939,0,38082,65001,11,11,1.000,66.0,44.0,44,2700.0,0.0954,0,0,1.069,1
|
||||
185,autumn,13861.9,9525.7,3194.5,6649.8,337.9,0,0.0,0.755,100.0,2460.7,6818,3085,0,37919,65938,11,11,1.000,66.0,44.0,44,2700.0,0.0921,0,0,1.068,1
|
||||
186,autumn,13873.1,9525.7,3199.5,6730.8,192.2,0,0.0,0.751,100.0,2489.7,6302,3747,0,38463,66688,11,11,1.000,66.0,44.0,44,2700.0,0.0930,0,0,1.082,0
|
||||
187,autumn,13895.1,9525.7,3200.0,6812.0,156.9,0,0.0,0.746,100.0,2483.5,6039,4551,0,38400,66210,11,11,1.000,66.0,44.0,44,2700.0,0.0938,0,0,1.088,0
|
||||
188,autumn,13936.0,9525.7,3200.0,6831.1,180.4,0,0.0,0.736,100.0,2502.3,6366,3677,0,38400,66757,11,11,1.000,66.0,44.0,44,2700.0,0.0945,0,0,1.090,0
|
||||
189,autumn,13954.3,9525.7,3200.0,6857.5,165.0,0,0.0,0.756,100.0,2503.3,5893,4030,0,38400,66877,11,11,1.000,66.0,44.0,44,2700.0,0.0952,0,0,1.095,0
|
||||
190,autumn,13992.7,9525.7,3200.0,6876.8,140.1,0,0.0,0.744,100.0,2482.7,5930,3118,0,38400,67752,11,11,1.000,66.0,44.0,44,2700.0,0.0957,0,0,1.097,0
|
||||
191,autumn,13981.0,9525.7,3200.0,6881.0,200.5,0,0.0,0.743,100.0,2503.1,6434,4665,0,38400,65701,11,11,1.000,66.0,44.0,44,2700.0,0.0965,0,0,1.098,0
|
||||
192,autumn,14007.3,9525.7,3200.0,6875.1,165.3,0,0.0,0.749,100.0,2508.3,5985,2918,0,38400,67897,11,11,1.000,66.0,44.0,44,2700.0,0.0973,0,0,1.098,0
|
||||
193,autumn,14021.3,9525.7,3200.0,6885.9,154.0,0,0.0,0.747,100.0,2505.3,6038,3464,0,38400,67298,11,11,1.000,66.0,44.0,44,2700.0,0.0978,0,0,1.099,0
|
||||
194,autumn,14040.8,9525.7,3200.0,6873.8,166.7,0,0.0,0.749,100.0,2514.0,5881,3458,0,38400,67461,11,11,1.000,66.0,44.0,44,2700.0,0.0986,0,0,1.099,0
|
||||
195,autumn,14046.3,9525.7,3200.0,6900.3,144.4,0,0.0,0.743,100.0,2493.7,5358,3587,0,38400,67855,11,11,1.000,66.0,44.0,44,2700.0,0.0993,0,0,1.100,0
|
||||
196,autumn,14044.7,9525.7,3200.0,6906.9,170.9,0,0.0,0.758,100.0,2455.7,5854,4328,0,37920,65658,11,11,1.000,66.0,44.0,44,2700.0,0.0958,0,0,1.085,1
|
||||
197,autumn,14037.6,9525.7,3200.0,6865.5,216.1,0,0.0,0.759,100.0,2511.7,6107,4223,0,38399,66471,11,11,1.000,66.0,44.0,44,2700.0,0.0968,0,0,1.097,0
|
||||
198,autumn,14041.5,9525.7,3200.0,6867.1,162.6,0,0.0,0.747,100.0,2510.3,5986,3462,0,38400,67352,11,11,1.000,66.0,44.0,44,2700.0,0.0974,0,0,1.098,0
|
||||
199,autumn,14033.5,9525.7,3200.0,6892.6,153.4,0,0.0,0.764,100.0,2450.8,5775,3496,0,37920,66569,11,11,1.000,66.0,44.0,44,2700.0,0.0938,0,0,1.090,1
|
||||
200,autumn,14014.8,9525.7,3200.0,6874.5,212.2,0,0.0,0.745,100.0,2502.0,6237,4412,0,38399,66152,11,11,1.000,66.0,44.0,44,2700.0,0.0949,0,0,1.094,0
|
||||
201,autumn,14024.8,9525.7,3200.0,6866.0,179.4,0,0.0,0.764,100.0,2499.7,6179,3110,0,38400,67511,11,11,1.000,66.0,44.0,44,2700.0,0.0957,0,0,1.109,0
|
||||
202,autumn,14034.6,9525.7,3200.0,6879.1,145.7,0,0.0,0.754,100.0,2489.4,5425,2922,0,38400,68453,11,11,1.000,66.0,44.0,44,2700.0,0.0963,0,0,1.114,0
|
||||
203,autumn,14033.5,9525.7,3200.0,6884.6,166.3,0,0.0,0.751,100.0,2496.7,5623,4270,0,38400,66907,11,11,1.000,66.0,44.0,44,2700.0,0.0969,0,0,1.119,0
|
||||
204,autumn,14062.2,9525.7,3200.0,6854.4,179.7,0,0.0,0.764,100.0,2504.1,6155,2571,0,38400,68074,11,11,1.000,66.0,44.0,44,2700.0,0.0977,0,0,1.119,0
|
||||
205,autumn,14054.6,9525.7,3200.0,6854.6,180.5,0,0.0,0.758,100.0,2508.9,5841,4483,0,38400,66476,11,11,1.000,66.0,44.0,44,2700.0,0.0983,0,0,1.120,0
|
||||
206,autumn,14070.0,9525.7,3200.0,6874.2,135.5,0,0.0,0.753,100.0,2486.4,5528,4530,0,38400,66742,11,11,1.000,66.0,44.0,44,2700.0,0.0990,0,0,1.120,0
|
||||
207,autumn,14071.8,9525.7,3200.0,6859.6,185.6,0,0.0,0.755,100.0,2511.1,6576,3179,0,38400,67045,11,11,1.000,66.0,44.0,44,2700.0,0.0997,0,0,1.120,0
|
||||
208,autumn,14066.0,9525.7,3200.0,6864.2,161.4,0,0.0,0.769,100.0,2418.4,5650,3623,0,37440,65607,11,11,1.000,66.0,44.0,44,2700.0,0.0921,0,0,1.119,2
|
||||
209,autumn,14041.2,9525.7,3200.0,6813.8,259.7,0,0.0,0.788,100.0,2480.6,6746,3748,0,37918,65348,11,11,1.000,66.0,44.0,44,2700.0,0.0936,0,0,1.138,1
|
||||
210,winter,14002.8,9525.7,3200.0,6237.9,172.8,0,0.0,0.774,100.0,2494.4,6381,4605,0,38399,65815,11,11,1.000,66.0,44.0,44,2700.0,0.0943,0,0,1.166,0
|
||||
211,winter,13984.9,9525.7,3200.0,5666.5,203.1,0,0.0,0.778,100.0,2508.7,7564,3460,0,38400,65776,11,11,1.000,66.0,44.0,44,2700.0,0.0949,0,0,1.171,0
|
||||
212,winter,13980.2,9525.7,3200.0,5150.1,174.8,0,0.0,0.776,100.0,2520.4,7925,2453,0,38400,66422,11,11,1.000,66.0,44.0,44,2700.0,0.0956,0,0,1.173,0
|
||||
213,winter,13944.4,9525.7,3200.0,4724.8,148.3,0,0.0,0.761,100.0,2509.7,6921,4818,0,38400,65061,11,11,1.000,66.0,44.0,44,2700.0,0.0961,0,0,1.174,0
|
||||
214,winter,13930.3,9525.7,3200.0,4282.6,180.4,0,0.0,0.787,100.0,2496.8,9137,4222,0,37920,62481,11,11,1.000,66.0,44.0,44,2700.0,0.0968,0,0,1.165,1
|
||||
215,winter,13922.5,9525.7,3200.0,3891.6,154.6,0,0.0,0.789,100.0,2478.5,9113,2562,0,38399,65126,11,11,1.000,66.0,44.0,44,2700.0,0.0973,0,0,1.170,0
|
||||
216,winter,13896.8,9525.7,3200.0,3520.6,189.1,0,0.0,0.774,100.0,2508.6,11927,2985,0,38400,61888,11,11,1.000,66.0,44.0,44,2700.0,0.0981,0,0,1.188,0
|
||||
217,winter,13897.8,9525.7,3200.0,3181.2,157.0,0,0.0,0.778,100.0,2499.6,12340,2268,0,38562,62030,11,11,1.000,66.0,44.0,44,2700.0,0.0989,0,0,1.188,0
|
||||
218,winter,13890.9,9525.7,3200.0,2899.1,129.7,0,0.0,0.779,100.0,2434.3,11887,4491,0,38082,59300,11,11,1.000,66.0,44.0,44,2700.0,0.0995,0,0,1.174,1
|
||||
219,winter,13847.0,9525.7,3200.0,2600.6,212.6,0,0.0,0.774,100.0,2468.4,15637,2770,0,38885,57908,11,11,1.000,66.0,44.0,44,2700.0,0.1006,0,0,1.181,0
|
||||
220,winter,13814.9,9525.7,3200.0,2341.1,184.3,0,0.6,0.778,100.0,2486.7,19082,5352,0,39909,50857,11,11,1.000,66.0,44.0,44,2700.0,0.1019,0,0,1.191,0
|
||||
221,winter,13814.5,9525.7,3200.0,2120.4,125.2,0,2.5,0.780,100.0,2445.9,21932,3573,0,41398,48297,11,11,1.000,66.0,44.0,44,2700.0,0.1027,0,0,1.192,0
|
||||
222,winter,13791.9,9525.7,3200.0,1930.4,136.5,0,1.9,0.773,100.0,2495.4,22549,4528,0,41610,46513,11,11,1.000,66.0,44.0,44,2624.0,0.1037,0,0,1.192,0
|
||||
223,winter,13777.9,9525.7,3200.0,1771.4,118.1,0,2.9,0.765,100.0,2382.4,19163,6228,0,41640,48169,11,11,1.000,66.0,44.0,44,2692.0,0.1050,0,0,1.193,0
|
||||
224,winter,13763.7,9525.7,3200.0,1644.2,87.3,0,3.6,0.781,100.0,2314.7,21115,4215,0,41640,48230,11,11,1.000,66.0,44.0,44,2668.0,0.1057,0,0,1.193,0
|
||||
225,winter,13717.2,9489.2,3200.0,1542.9,155.4,0,1.2,0.781,100.0,2330.7,21469,7717,0,40253,45761,11,11,1.000,66.0,44.0,44,2565.5,0.1063,0,0,1.193,0
|
||||
226,winter,13718.9,9489.2,3200.0,1452.7,64.4,0,2.6,0.775,100.0,2289.6,27952,10016,0,42183,33609,11,11,1.000,66.0,44.0,44,2492.0,0.1069,0,0,1.180,1
|
||||
227,winter,13733.3,9489.2,3200.0,1378.8,44.0,0,3.0,0.781,100.0,2249.2,33298,11789,0,44463,25650,11,11,1.000,66.0,44.0,44,2400.0,0.1073,0,0,1.181,0
|
||||
228,winter,13690.5,9489.2,3200.0,1314.5,108.9,0,1.6,0.765,100.0,2238.8,36985,13860,0,45497,18858,11,11,1.000,66.0,44.0,44,2327.8,0.1082,0,0,1.181,0
|
||||
229,winter,13694.9,9489.2,3200.0,1258.0,54.5,0,2.1,0.776,100.0,2185.2,38885,11688,0,46081,18546,11,11,1.000,66.0,44.0,44,2247.3,0.1088,0,0,1.182,0
|
||||
230,winter,13633.6,9489.2,3200.0,1211.1,129.1,0,2.6,0.771,100.0,2265.5,39760,14020,0,46412,15008,11,11,1.000,66.0,44.0,44,2049.4,0.1094,0,0,1.184,0
|
||||
231,winter,13617.3,9489.2,3200.0,1172.9,72.4,0,4.4,0.772,100.0,2160.4,41883,11981,0,47001,14335,11,11,1.000,66.0,44.0,44,2050.0,0.1099,0,0,1.185,0
|
||||
232,winter,13611.0,9489.2,3200.0,1139.1,72.4,0,5.0,0.776,100.0,2198.9,46826,9591,0,47512,11271,11,11,1.000,66.0,44.0,44,1896.0,0.1105,0,0,1.186,0
|
||||
233,winter,13561.8,9489.2,3200.0,1112.3,117.3,0,4.5,0.764,100.0,2239.9,45213,11184,0,47549,11254,11,11,1.000,66.0,44.0,44,1745.9,0.1110,0,0,1.186,0
|
||||
234,winter,13543.8,9489.2,3200.0,1094.0,77.1,0,4.1,0.776,100.0,2172.6,47004,8564,0,47714,11918,11,11,1.000,66.0,44.0,44,1674.0,0.1114,0,0,1.187,0
|
||||
235,winter,13523.8,9489.2,3200.0,1081.3,80.5,0,3.0,0.778,100.0,2155.1,44416,9574,0,47664,13546,11,11,1.000,66.0,44.0,44,1595.9,0.1118,0,0,1.187,0
|
||||
236,winter,13521.6,9489.2,3200.0,1080.0,56.4,0,3.9,0.775,100.0,1996.7,53333,5351,0,48953,7563,11,11,1.000,66.0,44.0,44,1598.9,0.1120,0,0,1.191,0
|
||||
237,winter,13450.4,9489.2,3200.0,1080.0,118.4,0,5.0,0.781,100.0,1967.9,52328,6238,0,48580,8054,11,11,1.000,66.0,44.0,44,1559.9,0.1121,0,0,1.192,0
|
||||
238,winter,13447.5,9499.5,3200.0,1080.0,52.4,0,5.1,0.753,100.0,2061.9,53284,2421,0,48694,10801,11,11,1.000,66.0,44.0,44,1350.0,0.1123,0,0,1.193,0
|
||||
239,winter,13422.6,9499.5,3200.0,1080.0,76.1,0,5.0,0.770,100.0,2105.6,44459,7231,0,47045,16465,11,11,1.000,66.0,44.0,44,1175.0,0.1124,0,0,1.193,0
|
||||
240,spring,13546.9,9499.5,3200.0,3240.0,27.8,0,3.9,0.773,100.0,2120.5,47253,4935,0,47782,15230,11,11,1.000,66.0,44.0,44,1011.2,0.1125,0,0,1.193,0
|
||||
|
||||
|
Reference in New Issue
Block a user