docs(diagrams): add 4 remaining SVG figures for §8 HMM + §10 geometry
- fig_hmm_regime: 3-state Bull/Neutral/Bear HMM state machine + emission table - fig_viterbi_trellis: Viterbi trellis K=3 T=4 with MAP path highlighted - fig_std_vs_nat_gradient: standard vs natural gradient property comparison panels - fig_lie_group_hierarchy: GL/SL/O/SO/Sp/H Lie group tree with finance annotations All 27 SVGs regenerated; mathematical_foundations.md now 0 remaining ASCII blocks. _fix_diagrams3.py added for reproducibility.
@@ -0,0 +1,141 @@
|
||||
"""Replace the 4 remaining ASCII diagram blocks in mathematical_foundations.md
|
||||
with {figure} directives pointing to the new SVGs.
|
||||
"""
|
||||
import pathlib
|
||||
|
||||
MD = pathlib.Path(__file__).parent / "theory" / "mathematical_foundations.md"
|
||||
text = MD.read_text(encoding="utf-8")
|
||||
|
||||
# ── 1. HMM regime state machine → fig_hmm_regime ──────────────────────────
|
||||
old1 = '''\
|
||||
```
|
||||
HMM regime state machine (K = 3)
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
|
||||
A₁₂ → A₂₃ →
|
||||
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
|
||||
│ State 1 │──────▶│ State 2 │──────▶│ State 3 │
|
||||
│ Bull │◀──────│ Neutral │◀──────│ Bear │
|
||||
└─────────────┘ └─────────────┘ └─────────────┘
|
||||
← A₂₁ ← A₃₂
|
||||
|
||||
Emission B_k(y) = 𝒩(μ_k, σ_k²):
|
||||
┌────────┬────────┬────────┬──────────────────┐
|
||||
│ State │ μ │ σ │ Character │
|
||||
├────────┼────────┼────────┼──────────────────┤
|
||||
│ Bull │ +0.05 │ 0.12 │ high return, low vol │
|
||||
│ Neutral│ 0.00 │ 0.18 │ flat, medium vol │
|
||||
│ Bear │ -0.08 │ 0.35 │ crash, high vol │
|
||||
└────────┴────────┴────────┴──────────────────┘
|
||||
(self-transition: A₁₁=0.97, A₂₂=0.97, A₃₃=0.90)
|
||||
```'''
|
||||
|
||||
new1 = '''\
|
||||
```{figure} ../_static/diagrams/fig_hmm_regime.svg
|
||||
:align: center
|
||||
:width: 90%
|
||||
|
||||
HMM $K=3$ state machine with Bull / Neutral / Bear regimes and Gaussian emission
|
||||
parameters. Self-transitions $A_{11}=A_{22}=0.97$, $A_{33}=0.90$.
|
||||
```'''
|
||||
|
||||
# ── 2. Viterbi trellis → fig_viterbi_trellis ───────────────────────────────
|
||||
old2 = '''\
|
||||
```
|
||||
Viterbi trellis (K=3, T=4)
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
|
||||
State t=1 t=2 t=3 t=4
|
||||
|
||||
1 ○─────────▶○─────────▶○─────────▶○
|
||||
╲ ╳
|
||||
2 ○─────────▶●─────────▶●─────────▶○ ● = MAP path
|
||||
╲ ╲ ╲
|
||||
3 ○─────────▶○─────────▶○─────────▶○
|
||||
|
||||
δ_t(k) = max_j [δ_{t−1}(j) · A_jk · B_k(y_t)]
|
||||
ψ_t(k) = argmax_j ← backtrack pointer
|
||||
|
||||
Traceback: z_4★ ← z_3★ ← z_2★ ← z_1★ via ψ
|
||||
```'''
|
||||
|
||||
new2 = '''\
|
||||
```{figure} ../_static/diagrams/fig_viterbi_trellis.svg
|
||||
:align: center
|
||||
:width: 82%
|
||||
|
||||
Viterbi trellis ($K=3$, $T=4$). Filled nodes mark the MAP (most probable) state
|
||||
sequence; arrows show transition candidates. Backtracking via $\psi_t(k)$ recovers
|
||||
$z_1^\star \to z_4^\star$.
|
||||
```'''
|
||||
|
||||
# ── 3. Standard vs natural gradient (text comparison) → fig_std_vs_nat_gradient
|
||||
old3 = '''\
|
||||
```
|
||||
Standard vs natural gradient
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
|
||||
Standard: θ_{k+1} = θ_k − η·∇ℒ Natural: θ_{k+1} = θ_k − η·ℐ(θ)^{−1}∇ℒ
|
||||
────────────────────────────────────────────
|
||||
|
||||
┌────────────────────┐ ┌────────────────────┐
|
||||
│ Flat ℝᵈ geometry │ │ Riemannian metric ℐ(θ) │
|
||||
│ Ignores curvature │ │ Adapts to geometry │
|
||||
│ Slow on ill-cond ℐ │ │ Reparam invariant │
|
||||
│ O(κ(ℐ)) iters │ │ O(1) on exp families │
|
||||
└────────────────────┘ └────────────────────┘
|
||||
|
||||
On Gaussian / exponential family: ℐ⁻¹∇ℒ = MLE step → 1 iteration!
|
||||
```'''
|
||||
|
||||
new3 = '''\
|
||||
```{figure} ../_static/diagrams/fig_std_vs_nat_gradient.svg
|
||||
:align: center
|
||||
:width: 88%
|
||||
|
||||
Standard versus natural gradient: geometric properties. On exponential families
|
||||
the natural gradient equals the MLE Newton step, achieving convergence in one
|
||||
iteration.
|
||||
```'''
|
||||
|
||||
# ── 4. Matrix Lie group hierarchy → fig_lie_group_hierarchy ─────────────────
|
||||
old4 = '''\
|
||||
```
|
||||
Matrix Lie group hierarchy
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
|
||||
GL(n,ℝ) ─ all invertible n×n real matrices
|
||||
│
|
||||
├──▶ SL(n,ℝ) det = 1
|
||||
│
|
||||
├──▶ O(n) RᵀR = I (orthogonal)
|
||||
│ └─▶ SO(n) det = +1 (pure rotations)
|
||||
│ ↳ portfolio factor rotation, PCA constraints
|
||||
│
|
||||
└──▶ Sp(2n,ℝ) preserves symplectic form ω
|
||||
↳ Hamiltonian mechanics, PMP §4.2 / §10.4
|
||||
|
||||
H(n) Heisenberg ─ upper triangular, 1s on diagonal
|
||||
↳ path-signature feature maps
|
||||
```'''
|
||||
|
||||
new4 = '''\
|
||||
```{figure} ../_static/diagrams/fig_lie_group_hierarchy.svg
|
||||
:align: center
|
||||
:width: 90%
|
||||
|
||||
Matrix Lie group hierarchy: subgroup inclusions and their quantitative-finance
|
||||
applications. $SO(n)$ underpins PCA factor rotation; $\mathrm{Sp}(2n,\mathbb{R})$
|
||||
governs Hamiltonian mechanics (PMP §10.4); $H(n)$ drives path-signature features.
|
||||
```'''
|
||||
|
||||
replacements = [(old1, new1), (old2, new2), (old3, new3), (old4, new4)]
|
||||
for i, (old, new) in enumerate(replacements, 1):
|
||||
if old in text:
|
||||
text = text.replace(old, new, 1)
|
||||
print(f" Block {i}: replaced OK")
|
||||
else:
|
||||
print(f" Block {i}: NOT FOUND — check encoding/whitespace")
|
||||
|
||||
MD.write_text(text, encoding="utf-8")
|
||||
print("Done.")
|
||||
@@ -663,6 +663,226 @@ def fig_picard():
|
||||
save("fig_picard")
|
||||
|
||||
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
# §8 HMM REGIME STATE MACHINE (K = 3)
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
def fig_hmm_regime():
|
||||
from matplotlib.patches import FancyBboxPatch, FancyArrowPatch
|
||||
import matplotlib.patheffects as pe
|
||||
|
||||
fig, ax = plt.subplots(figsize=(9, 4.2))
|
||||
ax.set_xlim(0, 9); ax.set_ylim(0, 4); ax.axis("off")
|
||||
|
||||
states = [
|
||||
(1.5, 2.6, "State 1\nBull", C2),
|
||||
(4.5, 2.6, "State 2\nNeutral", GRAY),
|
||||
(7.5, 2.6, "State 3\nBear", C3),
|
||||
]
|
||||
box_w, box_h = 2.0, 1.1
|
||||
for (cx, cy, label, col) in states:
|
||||
fancy = FancyBboxPatch((cx - box_w/2, cy - box_h/2), box_w, box_h,
|
||||
boxstyle="round,pad=0.08", linewidth=1.6,
|
||||
edgecolor=col, facecolor=col + "22",
|
||||
zorder=2)
|
||||
ax.add_patch(fancy)
|
||||
ax.text(cx, cy, label, ha="center", va="center", fontsize=10,
|
||||
fontweight="bold", color=col, zorder=3)
|
||||
|
||||
# Forward arrows A₁₂, A₂₃
|
||||
for x0, x1, label in [(2.5, 3.5, r"$A_{12}$"), (5.5, 6.5, r"$A_{23}$")]:
|
||||
ax.annotate("", xy=(x1, 2.85), xytext=(x0, 2.85),
|
||||
arrowprops=dict(arrowstyle="-|>", color=C0, lw=1.5))
|
||||
ax.text((x0+x1)/2, 2.98, label, ha="center", fontsize=9, color=C0)
|
||||
# Backward arrows A₂₁, A₃₂
|
||||
for x0, x1, label in [(3.5, 2.5, r"$A_{21}$"), (6.5, 5.5, r"$A_{32}$")]:
|
||||
ax.annotate("", xy=(x1, 2.35), xytext=(x0, 2.35),
|
||||
arrowprops=dict(arrowstyle="-|>", color=C1, lw=1.5))
|
||||
ax.text((x0+x1)/2, 2.22, label, ha="center", fontsize=9, color=C1)
|
||||
|
||||
# Emission table
|
||||
col_labels = ["State", r"$\mu$", r"$\sigma$", "Character"]
|
||||
rows = [
|
||||
["Bull", "+0.05", "0.12", "high return, low vol"],
|
||||
["Neutral", " 0.00", "0.18", "flat, medium vol"],
|
||||
["Bear", "−0.08", "0.35", "crash, high vol"],
|
||||
]
|
||||
row_colors = [[C2+"33", C2+"33", C2+"33", C2+"33"],
|
||||
[GRAY+"33", GRAY+"33", GRAY+"33", GRAY+"33"],
|
||||
[C3+"33", C3+"33", C3+"33", C3+"33"]]
|
||||
tbl = ax.table(cellText=rows, colLabels=col_labels, loc="bottom",
|
||||
cellColours=row_colors, bbox=[0.05, 0.0, 0.90, 0.42])
|
||||
tbl.auto_set_font_size(False); tbl.set_fontsize(9)
|
||||
for (r, c), cell in tbl.get_celld().items():
|
||||
cell.set_edgecolor("#cccccc")
|
||||
if r == 0:
|
||||
cell.set_facecolor(C0 + "33")
|
||||
cell.set_text_props(fontweight="bold")
|
||||
|
||||
ax.set_title(r"HMM Regime State Machine ($K=3$) — Emission $B_k(y)=\mathcal{N}(\mu_k,\sigma_k^2)$",
|
||||
fontsize=11, pad=6)
|
||||
plt.tight_layout()
|
||||
save("fig_hmm_regime")
|
||||
|
||||
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
# §8.2 VITERBI TRELLIS (K=3, T=4)
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
def fig_viterbi_trellis():
|
||||
from matplotlib.patches import Circle, FancyArrowPatch
|
||||
|
||||
K, T = 3, 4
|
||||
state_labels = ["1 (Bull)", "2 (Neutral)", "3 (Bear)"]
|
||||
map_path = {(1, 1), (1, 2)} # state index 1 = "2 (Neutral)" at t=2,3 (0-indexed t)
|
||||
|
||||
fig, ax = plt.subplots(figsize=(8, 3.8))
|
||||
ax.set_xlim(-0.5, T + 0.5); ax.set_ylim(-0.5, K - 0.3); ax.axis("off")
|
||||
|
||||
# x-positions: t=1..4 → 0.5, 1.5, 2.5, 3.5
|
||||
xs = [0.6 * (t + 1) for t in range(T)]
|
||||
ys = [K - 1 - k for k in range(K)] # top = state 1
|
||||
|
||||
# Draw crossing / passing arrows (selective to show crossing)
|
||||
arrow_kw = dict(arrowstyle="-|>", connectionstyle="arc3,rad=0.0",
|
||||
color=GRAY, lw=1.1, alpha=0.55)
|
||||
cross_kw = dict(arrowstyle="-|>", connectionstyle="arc3,rad=0.18",
|
||||
color=GRAY, lw=1.1, alpha=0.45)
|
||||
for t in range(T - 1):
|
||||
for k in range(K):
|
||||
for k2 in range(K):
|
||||
rad = 0.0 if k == k2 else (0.18 if k2 > k else -0.18)
|
||||
col = C0 if (k == 1 and k2 == 1 and t >= 1) else GRAY
|
||||
alpha = 0.9 if col == C0 else 0.3
|
||||
ax.annotate("", xy=(xs[t+1], ys[k2]), xytext=(xs[t], ys[k]),
|
||||
arrowprops=dict(arrowstyle="-|>",
|
||||
connectionstyle=f"arc3,rad={rad}",
|
||||
color=col, lw=1.2 if col == C0 else 0.8,
|
||||
alpha=alpha))
|
||||
|
||||
# Draw nodes
|
||||
r = 0.14
|
||||
for k in range(K):
|
||||
for t in range(T):
|
||||
is_map = (k == 1 and 1 <= t <= 2)
|
||||
fc = C0 if is_map else "white"
|
||||
ec = C0 if is_map else GRAY
|
||||
circ = Circle((xs[t], ys[k]), r, facecolor=fc, edgecolor=ec, lw=1.8, zorder=4)
|
||||
ax.add_patch(circ)
|
||||
|
||||
# Labels on left
|
||||
for k in range(K):
|
||||
ax.text(-0.1, ys[k], state_labels[k], ha="right", va="center",
|
||||
fontsize=9, color=C0 if k == 1 else "black")
|
||||
|
||||
# x-axis ticks
|
||||
for t in range(T):
|
||||
ax.text(xs[t], -0.35, f"$t={t+1}$", ha="center", va="top", fontsize=9)
|
||||
|
||||
# Legend
|
||||
ax.scatter([], [], color=C0, s=80, label="● MAP (Viterbi) path", zorder=5)
|
||||
ax.scatter([], [], facecolor="white", edgecolors=GRAY, s=80, label="○ other nodes", zorder=5)
|
||||
ax.legend(loc="upper right", fontsize=9, framealpha=0.9)
|
||||
|
||||
ax.set_title(r"Viterbi Trellis ($K=3$, $T=4$) — $\delta_t(k)=\max_j\,\delta_{t-1}(j)\,A_{jk}\,B_k(y_t)$",
|
||||
fontsize=11)
|
||||
plt.tight_layout()
|
||||
save("fig_viterbi_trellis")
|
||||
|
||||
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
# §10.2 STANDARD VS NATURAL GRADIENT — PROPERTY COMPARISON
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
def fig_std_vs_nat_gradient():
|
||||
from matplotlib.patches import FancyBboxPatch
|
||||
|
||||
fig, axes = plt.subplots(1, 2, figsize=(9, 3.0))
|
||||
|
||||
panels = [
|
||||
("Standard Gradient\n" + r"$\theta_{k+1} = \theta_k - \eta\nabla\mathcal{L}$",
|
||||
["Flat $\\mathbb{R}^d$ geometry",
|
||||
"Ignores manifold curvature",
|
||||
"Slow on ill-conditioned $\\mathcal{I}$",
|
||||
"$O(\\kappa(\\mathcal{I}))$ iterations"],
|
||||
C3, C3 + "18"),
|
||||
("Natural Gradient\n" + r"$\theta_{k+1} = \theta_k - \eta\,\mathcal{I}(\theta)^{-1}\nabla\mathcal{L}$",
|
||||
["Riemannian metric $\\mathcal{I}(\\theta)$",
|
||||
"Adapts to manifold geometry",
|
||||
"Reparametrisation-invariant",
|
||||
"$O(1)$ on exp. families (MLE step)"],
|
||||
C2, C2 + "18"),
|
||||
]
|
||||
|
||||
for ax, (title, props, border, bg) in zip(axes, panels):
|
||||
ax.set_xlim(0, 1); ax.set_ylim(0, 1); ax.axis("off")
|
||||
fancy = FancyBboxPatch((0.03, 0.04), 0.94, 0.92,
|
||||
boxstyle="round,pad=0.04", linewidth=2,
|
||||
edgecolor=border, facecolor=bg)
|
||||
ax.add_patch(fancy)
|
||||
ax.text(0.5, 0.87, title, ha="center", va="top", fontsize=10,
|
||||
fontweight="bold", color=border, transform=ax.transAxes,
|
||||
multialignment="center")
|
||||
y = 0.68
|
||||
for prop in props:
|
||||
ax.text(0.12, y, "• " + prop, ha="left", va="top", fontsize=9.5,
|
||||
transform=ax.transAxes, color="#222222")
|
||||
y -= 0.17
|
||||
|
||||
fig.suptitle("Standard vs Natural Gradient — geometric properties", fontsize=11, y=1.02)
|
||||
plt.tight_layout()
|
||||
save("fig_std_vs_nat_gradient")
|
||||
|
||||
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
# §10.3 MATRIX LIE GROUP HIERARCHY
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
def fig_lie_group_hierarchy():
|
||||
from matplotlib.patches import FancyBboxPatch, FancyArrowPatch
|
||||
|
||||
fig, ax = plt.subplots(figsize=(9, 4.6))
|
||||
ax.set_xlim(0, 9); ax.set_ylim(0, 4.6); ax.axis("off")
|
||||
|
||||
nodes = {
|
||||
"GL": (4.5, 4.1, r"$\mathrm{GL}(n,\mathbb{R})$" + "\nall invertible $n\times n$", C0),
|
||||
"SL": (1.8, 2.85, r"$\mathrm{SL}(n,\mathbb{R})$" + "\n$\det=1$", C2),
|
||||
"On": (4.5, 2.85, r"$O(n)$" + "\n$R^\top R=I$", C1),
|
||||
"Sp": (7.2, 2.85, r"$\mathrm{Sp}(2n,\mathbb{R})$" + "\npreserves $\omega$", C2),
|
||||
"SO": (4.5, 1.55, r"$\mathrm{SO}(n)$" + "\n$\det=+1$ (rotations)", C2),
|
||||
"Hn": (1.8, 1.55, r"$H(n)$ Heisenberg" + "\nupper triangular", C3),
|
||||
}
|
||||
notes = {
|
||||
"SO": "portfolio factor\nrotation, PCA",
|
||||
"Sp": "Hamiltonian\nmechanics, PMP",
|
||||
"Hn": "path-signature\nfeature maps",
|
||||
}
|
||||
edges = [("GL","SL"), ("GL","On"), ("GL","Sp"), ("On","SO")]
|
||||
|
||||
bw, bh = 2.2, 0.76
|
||||
for key, (cx, cy, label, col) in nodes.items():
|
||||
fbp = FancyBboxPatch((cx-bw/2, cy-bh/2), bw, bh,
|
||||
boxstyle="round,pad=0.07", lw=1.6,
|
||||
edgecolor=col, facecolor=col+"22", zorder=2)
|
||||
ax.add_patch(fbp)
|
||||
ax.text(cx, cy, label, ha="center", va="center", fontsize=8.5,
|
||||
multialignment="center", color=col, fontweight="bold", zorder=3)
|
||||
if key in notes:
|
||||
ax.text(cx + bw/2 + 0.15, cy, notes[key], va="center",
|
||||
fontsize=7.5, color="#555555", fontstyle="italic")
|
||||
|
||||
for src, dst in edges:
|
||||
sx, sy = nodes[src][0], nodes[src][1]
|
||||
dx, dy = nodes[dst][0], nodes[dst][1]
|
||||
ax.annotate("", xy=(dx, dy + bh/2 + 0.04), xytext=(sx, sy - bh/2 - 0.04),
|
||||
arrowprops=dict(arrowstyle="-|>", color=GRAY, lw=1.4))
|
||||
|
||||
ax.set_title("Matrix Lie Group Hierarchy — subgroup inclusions and finance applications",
|
||||
fontsize=11, pad=5)
|
||||
plt.tight_layout()
|
||||
save("fig_lie_group_hierarchy")
|
||||
|
||||
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
# RUN ALL
|
||||
# ════════════════════════════════════════════════════════════════════════════
|
||||
@@ -680,6 +900,9 @@ if __name__ == "__main__":
|
||||
fig_mcmc_energy, fig_mcmc_trace,
|
||||
fig_kl_asymmetry, fig_fisher_curvature,
|
||||
fig_curvatures, fig_natural_gradient,
|
||||
# new §8 & §10 diagrams
|
||||
fig_hmm_regime, fig_viterbi_trellis,
|
||||
fig_std_vs_nat_gradient, fig_lie_group_hierarchy,
|
||||
]
|
||||
for fn in funcs:
|
||||
print(f" {fn.__name__} ... ", end="", flush=True)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:30.202001</dc:date>
|
||||
<dc:date>2026-03-07T13:33:12.904661</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="mea6b13c79d" d="M 68.455014 -153.98025
|
||||
<path id="m142c110aa2" d="M 68.455014 -153.98025
|
||||
L 68.455014 -153.98025
|
||||
L 69.166619 -149.242201
|
||||
L 69.878224 -147.279637
|
||||
@@ -1044,20 +1044,20 @@ L 68.455014 -153.98025
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.13"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pd553d71edc)">
|
||||
<use xlink:href="#mea6b13c79d" x="0" y="296.56425" style="fill: #2e6be5; fill-opacity: 0.13; stroke: #2e6be5; stroke-opacity: 0.13"/>
|
||||
<g clip-path="url(#p5848ee3cd1)">
|
||||
<use xlink:href="#m142c110aa2" x="0" y="296.56425" style="fill: #2e6be5; fill-opacity: 0.13; stroke: #2e6be5; stroke-opacity: 0.13"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m8d288fded1" d="M 0 0
|
||||
<path id="mba304ee3e6" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8d288fded1" x="68.455014" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mba304ee3e6" x="68.455014" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -1102,7 +1102,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m8d288fded1" x="139.473196" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mba304ee3e6" x="139.473196" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -1143,7 +1143,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m8d288fded1" x="210.491378" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mba304ee3e6" x="210.491378" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -1179,7 +1179,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m8d288fded1" x="281.50956" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mba304ee3e6" x="281.50956" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -1226,7 +1226,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m8d288fded1" x="352.527741" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mba304ee3e6" x="352.527741" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -1282,7 +1282,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m8d288fded1" x="423.545923" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mba304ee3e6" x="423.545923" y="259.008" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -1348,12 +1348,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m48c35e47ee" d="M 0 0
|
||||
<path id="mc3bf80bb22" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="248.424" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="248.424" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -1378,7 +1378,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="221.964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="221.964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -1421,7 +1421,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="195.504" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="195.504" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -1437,7 +1437,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="169.044" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="169.044" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -1453,7 +1453,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="142.584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="142.584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -1468,7 +1468,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="116.124" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="116.124" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -1483,7 +1483,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="89.664" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="89.664" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -1498,7 +1498,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="63.204" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="63.204" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -1513,7 +1513,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m48c35e47ee" x="50.700469" y="36.744" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc3bf80bb22" x="50.700469" y="36.744" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -1586,7 +1586,7 @@ L 373.021966 44.562478
|
||||
L 402.909377 39.865543
|
||||
L 423.545923 36.744
|
||||
L 423.545923 36.744
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke-dasharray: 4.44,1.92; stroke-dashoffset: 0; stroke: #2e6be5; stroke-opacity: 0.55; stroke-width: 1.2"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke-dasharray: 4.44,1.92; stroke-dashoffset: 0; stroke: #2e6be5; stroke-opacity: 0.55; stroke-width: 1.2"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -1623,7 +1623,7 @@ L 373.021966 240.605522
|
||||
L 402.909377 245.302457
|
||||
L 423.545923 248.424
|
||||
L 423.545923 248.424
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke-dasharray: 4.44,1.92; stroke-dashoffset: 0; stroke: #2e6be5; stroke-opacity: 0.55; stroke-width: 1.2"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke-dasharray: 4.44,1.92; stroke-dashoffset: 0; stroke: #2e6be5; stroke-opacity: 0.55; stroke-width: 1.2"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -2104,7 +2104,7 @@ L 422.122713 172.090903
|
||||
L 422.834318 175.25851
|
||||
L 423.545923 174.403548
|
||||
L 423.545923 174.403548
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #1f77b4; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #1f77b4; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -2576,7 +2576,7 @@ L 422.122713 222.314252
|
||||
L 422.834318 223.88652
|
||||
L 423.545923 224.430782
|
||||
L 423.545923 224.430782
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #ff7f0e; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #ff7f0e; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -3043,7 +3043,7 @@ L 422.122713 78.231451
|
||||
L 422.834318 81.716715
|
||||
L 423.545923 82.654286
|
||||
L 423.545923 82.654286
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #2ca02c; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #2ca02c; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -3523,7 +3523,7 @@ L 422.122713 220.222671
|
||||
L 422.834318 222.374972
|
||||
L 423.545923 221.501133
|
||||
L 423.545923 221.501133
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #d62728; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #d62728; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -4000,7 +4000,7 @@ L 421.411108 183.556938
|
||||
L 422.122713 181.995797
|
||||
L 423.545923 181.084772
|
||||
L 423.545923 181.084772
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #9467bd; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #9467bd; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -4477,7 +4477,7 @@ L 422.122713 206.448793
|
||||
L 422.834318 211.171516
|
||||
L 423.545923 212.623089
|
||||
L 423.545923 212.623089
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #8c564b; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #8c564b; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -4960,7 +4960,7 @@ L 421.411108 78.917025
|
||||
L 422.834318 84.76494
|
||||
L 423.545923 84.909751
|
||||
L 423.545923 84.909751
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #e377c2; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #e377c2; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -5429,7 +5429,7 @@ L 421.411108 102.576658
|
||||
L 422.834318 99.970158
|
||||
L 423.545923 102.030388
|
||||
L 423.545923 102.030388
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #7f7f7f; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #7f7f7f; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -5910,7 +5910,7 @@ L 422.122713 109.874261
|
||||
L 422.834318 106.431333
|
||||
L 423.545923 108.118974
|
||||
L 423.545923 108.118974
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #bcbd22; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #bcbd22; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_27">
|
||||
<path d="M 68.455014 142.584
|
||||
@@ -6385,12 +6385,12 @@ L 422.122713 82.412774
|
||||
L 422.834318 83.242008
|
||||
L 423.545923 87.714595
|
||||
L 423.545923 87.714595
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke: #17becf; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke: #17becf; stroke-opacity: 0.75; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_28">
|
||||
<path d="M 50.700469 142.584
|
||||
L 441.300469 142.584
|
||||
" clip-path="url(#pd553d71edc)" style="fill: none; stroke-dasharray: 0.8,1.32; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.8"/>
|
||||
" clip-path="url(#p5848ee3cd1)" style="fill: none; stroke-dasharray: 0.8,1.32; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.8"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 50.700469 259.008
|
||||
@@ -7082,7 +7082,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pd553d71edc">
|
||||
<clipPath id="p5848ee3cd1">
|
||||
<rect x="50.700469" y="26.16" width="390.6" height="232.848"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 174 KiB After Width: | Height: | Size: 174 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:38.462624</dc:date>
|
||||
<dc:date>2026-03-07T13:33:20.851575</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -99,7 +99,7 @@ L 17.592174 211.591564
|
||||
L 17.401788 216.41298
|
||||
L 17.389091 218.021455
|
||||
L 17.389091 218.021455
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #888888; stroke-opacity: 0.35; stroke-width: 1.5"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #888888; stroke-opacity: 0.35; stroke-width: 1.5"/>
|
||||
</g>
|
||||
<g id="line2d_2">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -162,7 +162,7 @@ L 77.214476 130.939201
|
||||
L 76.463306 129.384161
|
||||
L 75.712136 127.829121
|
||||
L 74.960966 126.274081
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_3">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -225,7 +225,7 @@ L 90.700236 125.630848
|
||||
L 90.189883 123.981016
|
||||
L 89.67953 122.331183
|
||||
L 89.169177 120.681351
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_4">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -288,7 +288,7 @@ L 104.827836 122.397388
|
||||
L 104.569762 120.689816
|
||||
L 104.311687 118.982243
|
||||
L 104.053613 117.274671
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_5">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -351,7 +351,7 @@ L 119.28 121.311439
|
||||
L 119.28 119.584475
|
||||
L 119.28 117.85751
|
||||
L 119.28 116.130545
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_6">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -414,7 +414,7 @@ L 133.732164 122.397388
|
||||
L 133.990238 120.689816
|
||||
L 134.248313 118.982243
|
||||
L 134.506387 117.274671
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_7">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -477,7 +477,7 @@ L 147.859764 125.630848
|
||||
L 148.370117 123.981016
|
||||
L 148.88047 122.331183
|
||||
L 149.390823 120.681351
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_8">
|
||||
<path d="M 119.28 218.021455
|
||||
@@ -540,7 +540,7 @@ L 161.345524 130.939201
|
||||
L 162.096694 129.384161
|
||||
L 162.847864 127.829121
|
||||
L 163.599034 126.274081
|
||||
" clip-path="url(#p489dedb766)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pc12faca17a)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- meet at N pole -->
|
||||
@@ -1104,7 +1104,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="ma857ff56f3" d="M 0 4.1833
|
||||
<path id="mefa2c4dada" d="M 0 4.1833
|
||||
C 1.109424 4.1833 2.173559 3.742521 2.95804 2.95804
|
||||
C 3.742521 2.173559 4.1833 1.109424 4.1833 0
|
||||
C 4.1833 -1.109424 3.742521 -2.173559 2.95804 -2.95804
|
||||
@@ -1116,8 +1116,8 @@ C -2.173559 3.742521 -1.109424 4.1833 0 4.1833
|
||||
z
|
||||
" style="stroke: #e8850a"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p489dedb766)">
|
||||
<use xlink:href="#ma857ff56f3" x="119.28" y="218.021455" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<g clip-path="url(#pc12faca17a)">
|
||||
<use xlink:href="#mefa2c4dada" x="119.28" y="218.021455" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1125,37 +1125,37 @@ z
|
||||
<g id="line2d_9">
|
||||
<path d="M 269.104615 225.612
|
||||
L 441.535385 225.612
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_10">
|
||||
<path d="M 269.104615 206.1
|
||||
L 441.535385 206.1
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_11">
|
||||
<path d="M 269.104615 186.588
|
||||
L 441.535385 186.588
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<path d="M 269.104615 167.076
|
||||
L 441.535385 167.076
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 269.104615 147.564
|
||||
L 441.535385 147.564
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 269.104615 128.052
|
||||
L 441.535385 128.052
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 269.104615 108.54
|
||||
L 441.535385 108.54
|
||||
" clip-path="url(#p79321488ee)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa6b947c794)" style="fill: none; stroke: #2e6be5; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- remain equidistant -->
|
||||
@@ -1412,7 +1412,7 @@ L 500.848391 163.04639
|
||||
L 498.778994 162.285107
|
||||
L 496.697264 161.5476
|
||||
L 494.603404 160.834
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 591.36 238.915636
|
||||
@@ -1475,7 +1475,7 @@ L 526.181029 138.619311
|
||||
L 524.616801 137.113401
|
||||
L 523.039671 135.619238
|
||||
L 521.449702 134.136906
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 591.36 238.915636
|
||||
@@ -1538,7 +1538,7 @@ L 557.266034 123.04388
|
||||
L 556.425721 121.049329
|
||||
L 555.577435 119.0579
|
||||
L 554.721185 117.069619
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 591.36 238.915636
|
||||
@@ -1601,7 +1601,7 @@ L 591.36 117.694706
|
||||
L 591.36 115.530046
|
||||
L 591.36 113.365387
|
||||
L 591.36 111.200727
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 591.36 238.915636
|
||||
@@ -1664,7 +1664,7 @@ L 625.453966 123.04388
|
||||
L 626.294279 121.049329
|
||||
L 627.142565 119.0579
|
||||
L 627.998815 117.069619
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 591.36 238.915636
|
||||
@@ -1727,7 +1727,7 @@ L 656.538971 138.619311
|
||||
L 658.103199 137.113401
|
||||
L 659.680329 135.619238
|
||||
L 661.270298 134.136906
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 591.36 238.915636
|
||||
@@ -1790,7 +1790,7 @@ L 681.871609 163.04639
|
||||
L 683.941006 162.285107
|
||||
L 686.022736 161.5476
|
||||
L 688.116596 160.834
|
||||
" clip-path="url(#pb330c8043e)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pd41133229d)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.75; stroke-width: 1.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- spread exponentially -->
|
||||
@@ -1950,8 +1950,8 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<g clip-path="url(#pb330c8043e)">
|
||||
<use xlink:href="#ma857ff56f3" x="591.36" y="238.915636" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<g clip-path="url(#pd41133229d)">
|
||||
<use xlink:href="#mefa2c4dada" x="591.36" y="238.915636" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -2044,13 +2044,13 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p489dedb766">
|
||||
<clipPath id="pc12faca17a">
|
||||
<rect x="7.2" y="111.036" width="224.16" height="112.08"/>
|
||||
</clipPath>
|
||||
<clipPath id="p79321488ee">
|
||||
<clipPath id="pa6b947c794">
|
||||
<rect x="243.24" y="79.272" width="224.16" height="175.608"/>
|
||||
</clipPath>
|
||||
<clipPath id="pb330c8043e">
|
||||
<clipPath id="pd41133229d">
|
||||
<rect x="479.28" y="79.272" width="224.16" height="175.608"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:29.190935</dc:date>
|
||||
<dc:date>2026-03-07T13:33:11.917745</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m5e1409fef7" d="M 0 0
|
||||
<path id="md130e94412" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m5e1409fef7" x="99.230514" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md130e94412" x="99.230514" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -116,7 +116,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m5e1409fef7" x="162.162405" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md130e94412" x="162.162405" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -147,7 +147,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m5e1409fef7" x="225.094297" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md130e94412" x="225.094297" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -162,7 +162,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m5e1409fef7" x="288.026189" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md130e94412" x="288.026189" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -203,7 +203,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m5e1409fef7" x="350.958081" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#md130e94412" x="350.958081" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -244,12 +244,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="m7c8eff11aa" d="M 0 0
|
||||
<path id="ma491478b3b" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="255.168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -265,7 +265,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="223.702054" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="223.702054" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -281,7 +281,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="192.236108" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="192.236108" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -297,7 +297,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="160.770162" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="160.770162" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -325,7 +325,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="129.304216" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="129.304216" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -341,7 +341,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="97.83827" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="97.83827" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -357,7 +357,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="66.372324" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="66.372324" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -373,7 +373,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m7c8eff11aa" x="48.885" y="34.906378" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma491478b3b" x="48.885" y="34.906378" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -1021,7 +1021,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="md15d5133dc" d="M 0 4.743416
|
||||
<path id="mb35f947a03" d="M 0 4.743416
|
||||
C 1.257969 4.743416 2.464584 4.24362 3.354102 3.354102
|
||||
C 4.24362 2.464584 4.743416 1.257969 4.743416 0
|
||||
C 4.743416 -1.257969 4.24362 -2.464584 3.354102 -3.354102
|
||||
@@ -1033,23 +1033,23 @@ C -2.464584 4.24362 -1.257969 4.743416 0 4.743416
|
||||
z
|
||||
" style="stroke: #2e6be5"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p052a16f295)">
|
||||
<use xlink:href="#md15d5133dc" x="99.230514" y="217.408865" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#pa4c7bf501e)">
|
||||
<use xlink:href="#mb35f947a03" x="99.230514" y="217.408865" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<g clip-path="url(#p052a16f295)">
|
||||
<use xlink:href="#md15d5133dc" x="187.335162" y="78.958703" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#pa4c7bf501e)">
|
||||
<use xlink:href="#mb35f947a03" x="187.335162" y="78.958703" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<g clip-path="url(#p052a16f295)">
|
||||
<use xlink:href="#md15d5133dc" x="262.853432" y="179.64973" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#pa4c7bf501e)">
|
||||
<use xlink:href="#mb35f947a03" x="262.853432" y="179.64973" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<defs>
|
||||
<path id="m9e70cc9d83" d="M 0 4.743416
|
||||
<path id="m21a90c84ef" d="M 0 4.743416
|
||||
C 1.257969 4.743416 2.464584 4.24362 3.354102 3.354102
|
||||
C 4.24362 2.464584 4.743416 1.257969 4.743416 0
|
||||
C 4.743416 -1.257969 4.24362 -2.464584 3.354102 -3.354102
|
||||
@@ -1061,14 +1061,14 @@ C -2.464584 4.24362 -1.257969 4.743416 0 4.743416
|
||||
z
|
||||
" style="stroke: #e8850a"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p052a16f295)">
|
||||
<use xlink:href="#m9e70cc9d83" x="46.367724" y="146.925146" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<g clip-path="url(#pa4c7bf501e)">
|
||||
<use xlink:href="#m21a90c84ef" x="46.367724" y="146.925146" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p052a16f295">
|
||||
<clipPath id="pa4c7bf501e">
|
||||
<rect x="48.885" y="22.32" width="302.073081" height="232.848"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:32.056760</dc:date>
|
||||
<dc:date>2026-03-07T13:33:14.707703</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -42,16 +42,16 @@ z
|
||||
<g id="line2d_1">
|
||||
<path d="M 69.308182 244.078125
|
||||
L 69.308182 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_2">
|
||||
<defs>
|
||||
<path id="m95a31aec9d" d="M 0 0
|
||||
<path id="m41b268705c" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m95a31aec9d" x="69.308182" y="244.078125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m41b268705c" x="69.308182" y="244.078125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -144,11 +144,11 @@ z
|
||||
<g id="line2d_3">
|
||||
<path d="M 221.49 244.078125
|
||||
L 221.49 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m95a31aec9d" x="221.49" y="244.078125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m41b268705c" x="221.49" y="244.078125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -191,11 +191,11 @@ z
|
||||
<g id="line2d_5">
|
||||
<path d="M 373.671818 244.078125
|
||||
L 373.671818 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m95a31aec9d" x="373.671818" y="244.078125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m41b268705c" x="373.671818" y="244.078125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -212,16 +212,16 @@ L 373.671818 22.318125
|
||||
<g id="line2d_7">
|
||||
<path d="M 54.56024 244.078125
|
||||
L 54.56024 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m33a4fd2cd0" d="M 0 0
|
||||
<path id="m8e276d54fd" d="M 0 0
|
||||
L 0 2
|
||||
" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="54.56024" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="54.56024" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -229,11 +229,11 @@ L 0 2
|
||||
<g id="line2d_9">
|
||||
<path d="M 62.344724 244.078125
|
||||
L 62.344724 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="62.344724" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="62.344724" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -241,11 +241,11 @@ L 62.344724 22.318125
|
||||
<g id="line2d_11">
|
||||
<path d="M 115.119474 244.078125
|
||||
L 115.119474 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="115.119474" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="115.119474" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -253,11 +253,11 @@ L 115.119474 22.318125
|
||||
<g id="line2d_13">
|
||||
<path d="M 141.917362 244.078125
|
||||
L 141.917362 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="141.917362" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="141.917362" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -265,11 +265,11 @@ L 141.917362 22.318125
|
||||
<g id="line2d_15">
|
||||
<path d="M 160.930766 244.078125
|
||||
L 160.930766 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="160.930766" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="160.930766" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -277,11 +277,11 @@ L 160.930766 22.318125
|
||||
<g id="line2d_17">
|
||||
<path d="M 175.678708 244.078125
|
||||
L 175.678708 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="175.678708" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="175.678708" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -289,11 +289,11 @@ L 175.678708 22.318125
|
||||
<g id="line2d_19">
|
||||
<path d="M 187.728654 244.078125
|
||||
L 187.728654 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="187.728654" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="187.728654" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -301,11 +301,11 @@ L 187.728654 22.318125
|
||||
<g id="line2d_21">
|
||||
<path d="M 197.916738 244.078125
|
||||
L 197.916738 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="197.916738" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="197.916738" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -313,11 +313,11 @@ L 197.916738 22.318125
|
||||
<g id="line2d_23">
|
||||
<path d="M 206.742058 244.078125
|
||||
L 206.742058 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="206.742058" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="206.742058" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -325,11 +325,11 @@ L 206.742058 22.318125
|
||||
<g id="line2d_25">
|
||||
<path d="M 214.526542 244.078125
|
||||
L 214.526542 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="214.526542" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="214.526542" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -337,11 +337,11 @@ L 214.526542 22.318125
|
||||
<g id="line2d_27">
|
||||
<path d="M 267.301292 244.078125
|
||||
L 267.301292 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="267.301292" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="267.301292" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -349,11 +349,11 @@ L 267.301292 22.318125
|
||||
<g id="line2d_29">
|
||||
<path d="M 294.09918 244.078125
|
||||
L 294.09918 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="294.09918" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="294.09918" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -361,11 +361,11 @@ L 294.09918 22.318125
|
||||
<g id="line2d_31">
|
||||
<path d="M 313.112584 244.078125
|
||||
L 313.112584 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="313.112584" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="313.112584" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -373,11 +373,11 @@ L 313.112584 22.318125
|
||||
<g id="line2d_33">
|
||||
<path d="M 327.860526 244.078125
|
||||
L 327.860526 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="327.860526" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="327.860526" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -385,11 +385,11 @@ L 327.860526 22.318125
|
||||
<g id="line2d_35">
|
||||
<path d="M 339.910472 244.078125
|
||||
L 339.910472 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="339.910472" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="339.910472" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -397,11 +397,11 @@ L 339.910472 22.318125
|
||||
<g id="line2d_37">
|
||||
<path d="M 350.098556 244.078125
|
||||
L 350.098556 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="350.098556" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="350.098556" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -409,11 +409,11 @@ L 350.098556 22.318125
|
||||
<g id="line2d_39">
|
||||
<path d="M 358.923876 244.078125
|
||||
L 358.923876 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_40">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="358.923876" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="358.923876" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -421,11 +421,11 @@ L 358.923876 22.318125
|
||||
<g id="line2d_41">
|
||||
<path d="M 366.70836 244.078125
|
||||
L 366.70836 22.318125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_42">
|
||||
<g>
|
||||
<use xlink:href="#m33a4fd2cd0" x="366.70836" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m8e276d54fd" x="366.70836" y="244.078125" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -652,16 +652,16 @@ z
|
||||
<g id="line2d_43">
|
||||
<path d="M 54.09 182.08748
|
||||
L 388.89 182.08748
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_44">
|
||||
<defs>
|
||||
<path id="m41e312afda" d="M 0 0
|
||||
<path id="m2364e111f6" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m41e312afda" x="54.09" y="182.08748" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m2364e111f6" x="54.09" y="182.08748" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -678,11 +678,11 @@ L -3.5 0
|
||||
<g id="line2d_45">
|
||||
<path d="M 54.09 110.113956
|
||||
L 388.89 110.113956
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_46">
|
||||
<g>
|
||||
<use xlink:href="#m41e312afda" x="54.09" y="110.113956" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m2364e111f6" x="54.09" y="110.113956" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -699,11 +699,11 @@ L 388.89 110.113956
|
||||
<g id="line2d_47">
|
||||
<path d="M 54.09 38.140432
|
||||
L 388.89 38.140432
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_48">
|
||||
<g>
|
||||
<use xlink:href="#m41e312afda" x="54.09" y="38.140432" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m2364e111f6" x="54.09" y="38.140432" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -720,16 +720,16 @@ L 388.89 38.140432
|
||||
<g id="line2d_49">
|
||||
<path d="M 54.09 232.394814
|
||||
L 388.89 232.394814
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_50">
|
||||
<defs>
|
||||
<path id="me6a44ec7af" d="M 0 0
|
||||
<path id="m55aa2dd5bf" d="M 0 0
|
||||
L -2 0
|
||||
" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="232.394814" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="232.394814" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -737,11 +737,11 @@ L -2 0
|
||||
<g id="line2d_51">
|
||||
<path d="M 54.09 219.720906
|
||||
L 388.89 219.720906
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_52">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="219.720906" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="219.720906" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -749,11 +749,11 @@ L 388.89 219.720906
|
||||
<g id="line2d_53">
|
||||
<path d="M 54.09 210.728625
|
||||
L 388.89 210.728625
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_54">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="210.728625" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="210.728625" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -761,11 +761,11 @@ L 388.89 210.728625
|
||||
<g id="line2d_55">
|
||||
<path d="M 54.09 203.75367
|
||||
L 388.89 203.75367
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_56">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="203.75367" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="203.75367" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -773,11 +773,11 @@ L 388.89 203.75367
|
||||
<g id="line2d_57">
|
||||
<path d="M 54.09 198.054716
|
||||
L 388.89 198.054716
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_58">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="198.054716" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="198.054716" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -785,11 +785,11 @@ L 388.89 198.054716
|
||||
<g id="line2d_59">
|
||||
<path d="M 54.09 193.23632
|
||||
L 388.89 193.23632
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_60">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="193.23632" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="193.23632" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -797,11 +797,11 @@ L 388.89 193.23632
|
||||
<g id="line2d_61">
|
||||
<path d="M 54.09 189.062435
|
||||
L 388.89 189.062435
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_62">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="189.062435" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="189.062435" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -809,11 +809,11 @@ L 388.89 189.062435
|
||||
<g id="line2d_63">
|
||||
<path d="M 54.09 185.380808
|
||||
L 388.89 185.380808
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_64">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="185.380808" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="185.380808" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -821,11 +821,11 @@ L 388.89 185.380808
|
||||
<g id="line2d_65">
|
||||
<path d="M 54.09 160.42129
|
||||
L 388.89 160.42129
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_66">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="160.42129" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="160.42129" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -833,11 +833,11 @@ L 388.89 160.42129
|
||||
<g id="line2d_67">
|
||||
<path d="M 54.09 147.747382
|
||||
L 388.89 147.747382
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_68">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="147.747382" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="147.747382" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -845,11 +845,11 @@ L 388.89 147.747382
|
||||
<g id="line2d_69">
|
||||
<path d="M 54.09 138.755101
|
||||
L 388.89 138.755101
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_70">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="138.755101" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="138.755101" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -857,11 +857,11 @@ L 388.89 138.755101
|
||||
<g id="line2d_71">
|
||||
<path d="M 54.09 131.780145
|
||||
L 388.89 131.780145
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_72">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="131.780145" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="131.780145" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -869,11 +869,11 @@ L 388.89 131.780145
|
||||
<g id="line2d_73">
|
||||
<path d="M 54.09 126.081192
|
||||
L 388.89 126.081192
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_74">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="126.081192" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="126.081192" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -881,11 +881,11 @@ L 388.89 126.081192
|
||||
<g id="line2d_75">
|
||||
<path d="M 54.09 121.262796
|
||||
L 388.89 121.262796
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_76">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="121.262796" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="121.262796" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -893,11 +893,11 @@ L 388.89 121.262796
|
||||
<g id="line2d_77">
|
||||
<path d="M 54.09 117.088911
|
||||
L 388.89 117.088911
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_78">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="117.088911" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="117.088911" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -905,11 +905,11 @@ L 388.89 117.088911
|
||||
<g id="line2d_79">
|
||||
<path d="M 54.09 113.407284
|
||||
L 388.89 113.407284
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_80">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="113.407284" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="113.407284" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -917,11 +917,11 @@ L 388.89 113.407284
|
||||
<g id="line2d_81">
|
||||
<path d="M 54.09 88.447766
|
||||
L 388.89 88.447766
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_82">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="88.447766" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="88.447766" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -929,11 +929,11 @@ L 388.89 88.447766
|
||||
<g id="line2d_83">
|
||||
<path d="M 54.09 75.773858
|
||||
L 388.89 75.773858
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_84">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="75.773858" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="75.773858" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -941,11 +941,11 @@ L 388.89 75.773858
|
||||
<g id="line2d_85">
|
||||
<path d="M 54.09 66.781576
|
||||
L 388.89 66.781576
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_86">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="66.781576" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="66.781576" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -953,11 +953,11 @@ L 388.89 66.781576
|
||||
<g id="line2d_87">
|
||||
<path d="M 54.09 59.806621
|
||||
L 388.89 59.806621
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_88">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="59.806621" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="59.806621" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -965,11 +965,11 @@ L 388.89 59.806621
|
||||
<g id="line2d_89">
|
||||
<path d="M 54.09 54.107668
|
||||
L 388.89 54.107668
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_90">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="54.107668" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="54.107668" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -977,11 +977,11 @@ L 388.89 54.107668
|
||||
<g id="line2d_91">
|
||||
<path d="M 54.09 49.289272
|
||||
L 388.89 49.289272
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_92">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="49.289272" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="49.289272" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -989,11 +989,11 @@ L 388.89 49.289272
|
||||
<g id="line2d_93">
|
||||
<path d="M 54.09 45.115387
|
||||
L 388.89 45.115387
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_94">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="45.115387" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="45.115387" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1001,11 +1001,11 @@ L 388.89 45.115387
|
||||
<g id="line2d_95">
|
||||
<path d="M 54.09 41.433759
|
||||
L 388.89 41.433759
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_96">
|
||||
<g>
|
||||
<use xlink:href="#me6a44ec7af" x="54.09" y="41.433759" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#m55aa2dd5bf" x="54.09" y="41.433759" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1189,9 +1189,9 @@ L 267.301292 57.551792
|
||||
L 221.49 68.384887
|
||||
L 175.678708 79.217982
|
||||
L 69.308182 104.371649
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="me52a014a8c" d="M 0 3.5
|
||||
<path id="mb910527830" d="M 0 3.5
|
||||
C 0.928211 3.5 1.81853 3.131218 2.474874 2.474874
|
||||
C 3.131218 1.81853 3.5 0.928211 3.5 0
|
||||
C 3.5 -0.928211 3.131218 -1.81853 2.474874 -2.474874
|
||||
@@ -1203,13 +1203,13 @@ C -1.81853 3.131218 -0.928211 3.5 0 3.5
|
||||
z
|
||||
" style="stroke: #2e6be5"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p4b48a9a7a6)">
|
||||
<use xlink:href="#me52a014a8c" x="373.671818" y="32.398125" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me52a014a8c" x="327.860526" y="43.23122" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me52a014a8c" x="267.301292" y="57.551792" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me52a014a8c" x="221.49" y="68.384887" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me52a014a8c" x="175.678708" y="79.217982" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me52a014a8c" x="69.308182" y="104.371649" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#p1fe6ec5b45)">
|
||||
<use xlink:href="#mb910527830" x="373.671818" y="32.398125" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#mb910527830" x="327.860526" y="43.23122" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#mb910527830" x="267.301292" y="57.551792" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#mb910527830" x="221.49" y="68.384887" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#mb910527830" x="175.678708" y="79.217982" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#mb910527830" x="69.308182" y="104.371649" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_98">
|
||||
@@ -1219,22 +1219,22 @@ L 267.301292 140.358411
|
||||
L 221.49 162.024601
|
||||
L 175.678708 183.690791
|
||||
L 69.308182 233.998125
|
||||
" clip-path="url(#p4b48a9a7a6)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
" clip-path="url(#p1fe6ec5b45)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
<defs>
|
||||
<path id="m97f0325d53" d="M -3.5 3.5
|
||||
<path id="mc5d967dfa4" d="M -3.5 3.5
|
||||
L 3.5 3.5
|
||||
L 3.5 -3.5
|
||||
L -3.5 -3.5
|
||||
z
|
||||
" style="stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p4b48a9a7a6)">
|
||||
<use xlink:href="#m97f0325d53" x="373.671818" y="90.051077" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#m97f0325d53" x="327.860526" y="111.717266" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#m97f0325d53" x="267.301292" y="140.358411" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#m97f0325d53" x="221.49" y="162.024601" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#m97f0325d53" x="175.678708" y="183.690791" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#m97f0325d53" x="69.308182" y="233.998125" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<g clip-path="url(#p1fe6ec5b45)">
|
||||
<use xlink:href="#mc5d967dfa4" x="373.671818" y="90.051077" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#mc5d967dfa4" x="327.860526" y="111.717266" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#mc5d967dfa4" x="267.301292" y="140.358411" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#mc5d967dfa4" x="221.49" y="162.024601" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#mc5d967dfa4" x="175.678708" y="183.690791" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#mc5d967dfa4" x="69.308182" y="233.998125" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
@@ -1531,7 +1531,7 @@ L 73.09 35.418125
|
||||
L 83.09 35.418125
|
||||
" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
<g>
|
||||
<use xlink:href="#me52a014a8c" x="73.09" y="35.418125" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#mb910527830" x="73.09" y="35.418125" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -1647,7 +1647,7 @@ L 73.09 50.116563
|
||||
L 83.09 50.116563
|
||||
" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
<g>
|
||||
<use xlink:href="#m97f0325d53" x="73.09" y="50.116563" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
<use xlink:href="#mc5d967dfa4" x="73.09" y="50.116563" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -1686,7 +1686,7 @@ L 83.09 50.116563
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p4b48a9a7a6">
|
||||
<clipPath id="p1fe6ec5b45">
|
||||
<rect x="54.09" y="22.318125" width="334.8" height="221.76"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:38.073865</dc:date>
|
||||
<dc:date>2026-03-07T13:33:20.479192</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="madd71d3907" d="M 0 0
|
||||
<path id="m5530aa1a90" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="68.809077" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="68.809077" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -101,7 +101,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="127.990895" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="127.990895" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -141,7 +141,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="187.172713" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="187.172713" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -171,7 +171,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="246.354531" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="246.354531" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -207,7 +207,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="305.536349" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="305.536349" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -220,7 +220,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="364.718168" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="364.718168" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -233,7 +233,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#madd71d3907" x="423.899986" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5530aa1a90" x="423.899986" y="234.792" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -281,12 +281,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m2abfefa414" d="M 0 0
|
||||
<path id="m8b9b6f2a74" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="225.4288" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="225.4288" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -330,7 +330,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="202.0208" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="202.0208" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -373,7 +373,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="178.6128" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="178.6128" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -389,7 +389,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="155.2048" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="155.2048" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -405,7 +405,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="131.7968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="131.7968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -421,7 +421,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="108.3888" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="108.3888" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -437,7 +437,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="84.9808" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="84.9808" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -453,7 +453,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="61.5728" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="61.5728" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -469,7 +469,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m2abfefa414" x="51.054531" y="38.1648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b9b6f2a74" x="51.054531" y="38.1648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -910,7 +910,7 @@ L 331.344962 231.261943
|
||||
L 335.794723 252.011417
|
||||
L 340.150153 273.34825
|
||||
L 340.150153 273.34825
|
||||
" clip-path="url(#p19a86612cd)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe404c23e42)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 68.809077 248.835477
|
||||
@@ -985,7 +985,7 @@ L 414.110512 226.243958
|
||||
L 420.340177 240.472168
|
||||
L 423.899986 248.835477
|
||||
L 423.899986 248.835477
|
||||
" clip-path="url(#p19a86612cd)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe404c23e42)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 68.809077 90.832469
|
||||
@@ -1033,12 +1033,12 @@ L 407.880847 81.757221
|
||||
L 416.780369 86.693161
|
||||
L 423.899986 90.832469
|
||||
L 423.899986 90.832469
|
||||
" clip-path="url(#p19a86612cd)" style="fill: none; stroke: #e8850a; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe404c23e42)" style="fill: none; stroke: #e8850a; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 246.354531 234.792
|
||||
L 246.354531 24.12
|
||||
" clip-path="url(#p19a86612cd)" style="fill: none; stroke-dasharray: 0.8,1.32; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.8"/>
|
||||
" clip-path="url(#pe404c23e42)" style="fill: none; stroke-dasharray: 0.8,1.32; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.8"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 51.054531 234.792
|
||||
@@ -1541,7 +1541,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p19a86612cd">
|
||||
<clipPath id="pe404c23e42">
|
||||
<rect x="51.054531" y="24.12" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:31.481104</dc:date>
|
||||
<dc:date>2026-03-07T13:33:14.168650</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="mb2e2192253" d="M 52.350795 -47.13225
|
||||
<path id="m2ed0fb37d5" d="M 52.350795 -47.13225
|
||||
L 52.350795 -47.13225
|
||||
L 52.943602 -47.13225
|
||||
L 53.536408 -47.13225
|
||||
@@ -1244,13 +1244,13 @@ L 52.350795 -47.13225
|
||||
z
|
||||
" style="stroke: #d62728; stroke-opacity: 0.1"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pcd2688a453)">
|
||||
<use xlink:href="#mb2e2192253" x="0" y="270.54825" style="fill: #d62728; fill-opacity: 0.1; stroke: #d62728; stroke-opacity: 0.1"/>
|
||||
<g clip-path="url(#p98d480943d)">
|
||||
<use xlink:href="#m2ed0fb37d5" x="0" y="270.54825" style="fill: #d62728; fill-opacity: 0.1; stroke: #d62728; stroke-opacity: 0.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m50b789e3bf" d="M 52.350795 -47.13225
|
||||
<path id="m56b375f819" d="M 52.350795 -47.13225
|
||||
L 52.350795 -47.139725
|
||||
L 52.943602 -47.141373
|
||||
L 53.536408 -47.143359
|
||||
@@ -2455,13 +2455,13 @@ L 52.350795 -47.13225
|
||||
z
|
||||
" style="stroke: #27ae60; stroke-opacity: 0.1"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pcd2688a453)">
|
||||
<use xlink:href="#m50b789e3bf" x="0" y="270.54825" style="fill: #27ae60; fill-opacity: 0.1; stroke: #27ae60; stroke-opacity: 0.1"/>
|
||||
<g clip-path="url(#p98d480943d)">
|
||||
<use xlink:href="#m56b375f819" x="0" y="270.54825" style="fill: #27ae60; fill-opacity: 0.1; stroke: #27ae60; stroke-opacity: 0.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="m0c69210dcd" d="M 52.350795 -47.13225
|
||||
<path id="m69fd0a6bb6" d="M 52.350795 -47.13225
|
||||
L 52.350795 -47.133035
|
||||
L 52.943602 -47.133141
|
||||
L 53.536408 -47.133259
|
||||
@@ -3666,20 +3666,20 @@ L 52.350795 -47.13225
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.1"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pcd2688a453)">
|
||||
<use xlink:href="#m0c69210dcd" x="0" y="270.54825" style="fill: #2e6be5; fill-opacity: 0.1; stroke: #2e6be5; stroke-opacity: 0.1"/>
|
||||
<g clip-path="url(#p98d480943d)">
|
||||
<use xlink:href="#m69fd0a6bb6" x="0" y="270.54825" style="fill: #2e6be5; fill-opacity: 0.1; stroke: #2e6be5; stroke-opacity: 0.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m63bbcc5ece" d="M 0 0
|
||||
<path id="m5cbc7b1ad8" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m63bbcc5ece" x="81.941705" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5cbc7b1ad8" x="81.941705" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -3715,7 +3715,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m63bbcc5ece" x="141.123523" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5cbc7b1ad8" x="141.123523" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -3744,7 +3744,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m63bbcc5ece" x="200.305341" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5cbc7b1ad8" x="200.305341" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -3783,7 +3783,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m63bbcc5ece" x="259.487159" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5cbc7b1ad8" x="259.487159" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -3830,7 +3830,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m63bbcc5ece" x="318.668977" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5cbc7b1ad8" x="318.668977" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -3864,7 +3864,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m63bbcc5ece" x="377.850795" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5cbc7b1ad8" x="377.850795" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -3929,12 +3929,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="me621f12727" d="M 0 0
|
||||
<path id="m55c09c731f" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -3947,7 +3947,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="191.209054" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="191.209054" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -3960,7 +3960,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="159.002109" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="159.002109" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -3973,7 +3973,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="126.795163" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="126.795163" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -3986,7 +3986,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="94.588217" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="94.588217" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -3999,7 +3999,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="62.381271" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="62.381271" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -4012,7 +4012,7 @@ L -3.5 0
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#me621f12727" x="34.59625" y="30.174326" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m55c09c731f" x="34.59625" y="30.174326" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -4205,7 +4205,7 @@ L 102.146516 223.408082
|
||||
L 119.930701 223.416
|
||||
L 407.441705 223.416
|
||||
L 407.441705 223.416
|
||||
" clip-path="url(#pcd2688a453)" style="fill: none; stroke: #d62728; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p98d480943d)" style="fill: none; stroke: #d62728; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 52.350795 223.408525
|
||||
@@ -4260,7 +4260,7 @@ L 157.277491 223.403265
|
||||
L 189.289026 223.416
|
||||
L 407.441705 223.416
|
||||
L 407.441705 223.416
|
||||
" clip-path="url(#pcd2688a453)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p98d480943d)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 52.350795 223.415215
|
||||
@@ -4312,7 +4312,7 @@ L 237.899134 223.399002
|
||||
L 281.766792 223.415999
|
||||
L 407.441705 223.416
|
||||
L 407.441705 223.416
|
||||
" clip-path="url(#pcd2688a453)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p98d480943d)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 34.59625 232.992
|
||||
@@ -5016,7 +5016,7 @@ L 304.50625 60.548906
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pcd2688a453">
|
||||
<clipPath id="p98d480943d">
|
||||
<rect x="34.59625" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:30.495308</dc:date>
|
||||
<dc:date>2026-03-07T13:33:13.209265</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mc973e00268" d="M 0 0
|
||||
<path id="mda413df603" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc973e00268" x="60.913295" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mda413df603" x="60.913295" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -91,7 +91,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mc973e00268" x="131.931477" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mda413df603" x="131.931477" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -132,7 +132,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mc973e00268" x="202.949659" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mda413df603" x="202.949659" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -168,7 +168,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mc973e00268" x="273.967841" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mda413df603" x="273.967841" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -215,7 +215,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mc973e00268" x="344.986023" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mda413df603" x="344.986023" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -271,7 +271,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#mc973e00268" x="416.004205" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mda413df603" x="416.004205" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -337,12 +337,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m2921564623" d="M 0 0
|
||||
<path id="m63ec7a4607" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="230.134641" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="230.134641" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -357,7 +357,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="201.364303" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="201.364303" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -372,7 +372,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="172.593966" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="172.593966" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -387,7 +387,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="143.823628" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="143.823628" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -402,7 +402,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="115.053291" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="115.053291" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -417,7 +417,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="86.282953" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="86.282953" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -432,7 +432,7 @@ L -3.5 0
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="57.512616" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="57.512616" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -447,7 +447,7 @@ L -3.5 0
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m2921564623" x="43.15875" y="28.742279" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m63ec7a4607" x="43.15875" y="28.742279" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -506,14 +506,14 @@ L 199.676276 138.090887
|
||||
L 335.592836 132.254321
|
||||
L 416.004205 128.694614
|
||||
L 416.004205 128.694614
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke-dasharray: 6.66,2.88; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.8"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke-dasharray: 6.66,2.88; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.8"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 60.913295 143.823628
|
||||
L 312.821475 138.099879
|
||||
L 416.004205 135.690166
|
||||
L 416.004205 135.690166
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #27ae60; stroke-width: 1.5"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #27ae60; stroke-width: 1.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 60.913295 143.821254
|
||||
@@ -984,7 +984,7 @@ L 414.580994 223.397784
|
||||
L 415.2926 222.487123
|
||||
L 416.004205 223.416
|
||||
L 416.004205 223.416
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #94c4df; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #94c4df; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 60.913295 144.37342
|
||||
@@ -1456,7 +1456,7 @@ L 414.580994 150.733413
|
||||
L 415.2926 149.86595
|
||||
L 416.004205 151.368729
|
||||
L 416.004205 151.368729
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #75b4d8; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #75b4d8; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 60.913295 143.129477
|
||||
@@ -1927,7 +1927,7 @@ L 414.580994 156.192914
|
||||
L 415.2926 156.880461
|
||||
L 416.004205 157.212107
|
||||
L 416.004205 157.212107
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #5ba3d0; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #5ba3d0; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 60.913295 146.155753
|
||||
@@ -2398,7 +2398,7 @@ L 414.580994 123.258233
|
||||
L 415.2926 125.987827
|
||||
L 416.004205 127.840513
|
||||
L 416.004205 127.840513
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #4191c6; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #4191c6; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 60.913295 144.527568
|
||||
@@ -2862,7 +2862,7 @@ L 414.580994 138.126709
|
||||
L 415.2926 137.893651
|
||||
L 416.004205 140.212327
|
||||
L 416.004205 140.212327
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #2e7ebc; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #2e7ebc; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 60.913295 144.205687
|
||||
@@ -3332,7 +3332,7 @@ L 414.580994 152.912938
|
||||
L 415.2926 154.791532
|
||||
L 416.004205 157.751215
|
||||
L 416.004205 157.751215
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #1c6ab0; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #1c6ab0; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<path d="M 60.913295 143.291438
|
||||
@@ -3809,7 +3809,7 @@ L 414.580994 61.839115
|
||||
L 415.2926 60.85654
|
||||
L 416.004205 63.820326
|
||||
L 416.004205 63.820326
|
||||
" clip-path="url(#p446dd11d3c)" style="fill: none; stroke: #0d57a1; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa63f0609b5)" style="fill: none; stroke: #0d57a1; stroke-opacity: 0.7; stroke-width: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 43.15875 232.992
|
||||
@@ -4510,7 +4510,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p446dd11d3c">
|
||||
<clipPath id="pa63f0609b5">
|
||||
<rect x="43.15875" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
|
After Width: | Height: | Size: 50 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:30.803941</dc:date>
|
||||
<dc:date>2026-03-07T13:33:13.513833</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mbf18c85402" d="M 0 0
|
||||
<path id="mfb596b0919" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mbf18c85402" x="66.663608" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfb596b0919" x="66.663608" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -91,7 +91,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mbf18c85402" x="147.366087" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfb596b0919" x="147.366087" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -133,7 +133,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mbf18c85402" x="228.068567" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfb596b0919" x="228.068567" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -164,7 +164,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mbf18c85402" x="308.771046" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfb596b0919" x="308.771046" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -179,7 +179,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mbf18c85402" x="389.473525" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfb596b0919" x="389.473525" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -255,12 +255,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="m09eb3a2fe9" d="M 0 0
|
||||
<path id="mfdf5d009db" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m09eb3a2fe9" x="48.909063" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfdf5d009db" x="48.909063" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -276,7 +276,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m09eb3a2fe9" x="48.909063" y="187.143273" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfdf5d009db" x="48.909063" y="187.143273" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -292,7 +292,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m09eb3a2fe9" x="48.909063" y="150.870545" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfdf5d009db" x="48.909063" y="150.870545" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -308,7 +308,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m09eb3a2fe9" x="48.909063" y="114.597818" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfdf5d009db" x="48.909063" y="114.597818" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -324,7 +324,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m09eb3a2fe9" x="48.909063" y="78.325091" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfdf5d009db" x="48.909063" y="78.325091" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -340,7 +340,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m09eb3a2fe9" x="48.909063" y="42.052364" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfdf5d009db" x="48.909063" y="42.052364" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -522,18 +522,18 @@ z
|
||||
<path d="M 66.663608 223.416
|
||||
L 421.754517 31.896
|
||||
L 421.754517 31.896
|
||||
" clip-path="url(#p9c421e4e4c)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
" clip-path="url(#p512eb072cb)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 66.663608 223.416
|
||||
L 421.754517 103.716
|
||||
L 421.754517 103.716
|
||||
" clip-path="url(#p9c421e4e4c)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p512eb072cb)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 48.909063 223.416
|
||||
L 439.509063 223.416
|
||||
" clip-path="url(#p9c421e4e4c)" style="fill: none; stroke-dasharray: 0.6,0.99; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.6"/>
|
||||
" clip-path="url(#p512eb072cb)" style="fill: none; stroke-dasharray: 0.6,0.99; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.6"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 48.909063 232.992
|
||||
@@ -1222,7 +1222,7 @@ L 75.009062 48.69
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p9c421e4e4c">
|
||||
<clipPath id="p512eb072cb">
|
||||
<rect x="48.909063" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:34.251637</dc:date>
|
||||
<dc:date>2026-03-07T13:33:16.858807</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m4a3a989998" d="M 0 0
|
||||
<path id="m0b34cddf61" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m4a3a989998" x="66.639545" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0b34cddf61" x="66.639545" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -91,7 +91,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m4a3a989998" x="137.657727" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0b34cddf61" x="137.657727" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -132,7 +132,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m4a3a989998" x="208.675909" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0b34cddf61" x="208.675909" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -168,7 +168,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m4a3a989998" x="279.694091" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0b34cddf61" x="279.694091" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -215,7 +215,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m4a3a989998" x="350.712273" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0b34cddf61" x="350.712273" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -271,7 +271,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m4a3a989998" x="421.730455" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0b34cddf61" x="421.730455" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -337,12 +337,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m06ac12f138" d="M 0 0
|
||||
<path id="m17658df2a0" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m06ac12f138" x="48.885" y="193.101978" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m17658df2a0" x="48.885" y="193.101978" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -415,7 +415,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m06ac12f138" x="48.885" y="148.143703" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m17658df2a0" x="48.885" y="148.143703" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -431,7 +431,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m06ac12f138" x="48.885" y="103.185429" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m17658df2a0" x="48.885" y="103.185429" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -447,7 +447,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m06ac12f138" x="48.885" y="58.227155" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m17658df2a0" x="48.885" y="58.227155" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -1405,7 +1405,7 @@ L 421.019562 154.837379
|
||||
L 421.375008 159.835962
|
||||
L 421.730455 161.602716
|
||||
L 421.730455 161.602716
|
||||
" clip-path="url(#p01cef8a2fd)" style="fill: none; stroke: #2e6be5; stroke-width: 1.3; stroke-linecap: square"/>
|
||||
" clip-path="url(#p9ed04951ec)" style="fill: none; stroke: #2e6be5; stroke-width: 1.3; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 48.885 232.992
|
||||
@@ -1952,14 +1952,14 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="mc2601ea813" d="M -0 3.535534
|
||||
<path id="md5740d9ece" d="M -0 3.535534
|
||||
L 3.535534 -3.535534
|
||||
L -3.535534 -3.535534
|
||||
z
|
||||
" style="stroke: #d62728"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p01cef8a2fd)">
|
||||
<use xlink:href="#mc2601ea813" x="280.262805" y="200.510651" style="fill: #d62728; stroke: #d62728"/>
|
||||
<g clip-path="url(#p9ed04951ec)">
|
||||
<use xlink:href="#md5740d9ece" x="280.262805" y="200.510651" style="fill: #d62728; stroke: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="legend_1">
|
||||
@@ -2068,7 +2068,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<g>
|
||||
<use xlink:href="#mc2601ea813" x="306.015" y="48.1275" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#md5740d9ece" x="306.015" y="48.1275" style="fill: #d62728; stroke: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -2149,7 +2149,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p01cef8a2fd">
|
||||
<clipPath id="p9ed04951ec">
|
||||
<rect x="48.885" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:35.272395</dc:date>
|
||||
<dc:date>2026-03-07T13:33:17.811206</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="mfd4c98e873" d="M 60.913295 -68.97225
|
||||
<path id="m3bf308b8d0" d="M 60.913295 -68.97225
|
||||
L 60.913295 -222.35625
|
||||
L 62.10089 -217.063335
|
||||
L 63.288485 -211.953066
|
||||
@@ -644,20 +644,20 @@ L 60.913295 -68.97225
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.1"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p1ef418d3f3)">
|
||||
<use xlink:href="#mfd4c98e873" x="0" y="253.91625" style="fill: #2e6be5; fill-opacity: 0.1; stroke: #2e6be5; stroke-opacity: 0.1"/>
|
||||
<g clip-path="url(#p8f6554bfa8)">
|
||||
<use xlink:href="#m3bf308b8d0" x="0" y="253.91625" style="fill: #2e6be5; fill-opacity: 0.1; stroke: #2e6be5; stroke-opacity: 0.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m1356c9a6cb" d="M 0 0
|
||||
<path id="m28e86f0221" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="60.913295" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="60.913295" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -693,7 +693,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="120.095114" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="120.095114" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -733,7 +733,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="179.276932" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="179.276932" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -763,7 +763,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="238.45875" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="238.45875" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -777,7 +777,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="297.640568" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="297.640568" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -817,7 +817,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="356.822386" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="356.822386" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -831,7 +831,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m1356c9a6cb" x="416.004205" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m28e86f0221" x="416.004205" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -914,12 +914,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="mc77e3db747" d="M 0 0
|
||||
<path id="m23ee7f8867" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc77e3db747" x="43.15875" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m23ee7f8867" x="43.15875" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -943,7 +943,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mc77e3db747" x="43.15875" y="179.4" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m23ee7f8867" x="43.15875" y="179.4" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -958,7 +958,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mc77e3db747" x="43.15875" y="142.44" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m23ee7f8867" x="43.15875" y="142.44" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -994,7 +994,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#mc77e3db747" x="43.15875" y="105.48" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m23ee7f8867" x="43.15875" y="105.48" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -1041,7 +1041,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mc77e3db747" x="43.15875" y="68.52" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m23ee7f8867" x="43.15875" y="68.52" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -1097,7 +1097,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mc77e3db747" x="43.15875" y="31.56" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m23ee7f8867" x="43.15875" y="31.56" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -1185,12 +1185,12 @@ L 306.745463 184.837145
|
||||
L 370.875594 184.927959
|
||||
L 416.004205 184.939776
|
||||
L 416.004205 184.939776
|
||||
" clip-path="url(#p1ef418d3f3)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8f6554bfa8)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 43.15875 184.944
|
||||
L 433.75875 184.944
|
||||
" clip-path="url(#p1ef418d3f3)" style="fill: none; stroke-dasharray: 5.92,2.56; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.6"/>
|
||||
" clip-path="url(#p8f6554bfa8)" style="fill: none; stroke-dasharray: 5.92,2.56; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.6"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 43.15875 216.36
|
||||
@@ -1895,7 +1895,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p1ef418d3f3">
|
||||
<clipPath id="p8f6554bfa8">
|
||||
<rect x="43.15875" y="22.32" width="390.6" height="194.04"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:37.635386</dc:date>
|
||||
<dc:date>2026-03-07T13:33:20.074213</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="meeb27cec75" d="M 66.639545 -47.13225
|
||||
<path id="m9c6deca2d1" d="M 66.639545 -47.13225
|
||||
L 66.639545 -47.13225
|
||||
L 67.083965 -47.13225
|
||||
L 67.528384 -47.13225
|
||||
@@ -1644,13 +1644,13 @@ L 66.639545 -47.13225
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.12"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pa09cd1ba4e)">
|
||||
<use xlink:href="#meeb27cec75" x="0" y="270.66825" style="fill: #2e6be5; fill-opacity: 0.12; stroke: #2e6be5; stroke-opacity: 0.12"/>
|
||||
<g clip-path="url(#p0aaf5e2aac)">
|
||||
<use xlink:href="#m9c6deca2d1" x="0" y="270.66825" style="fill: #2e6be5; fill-opacity: 0.12; stroke: #2e6be5; stroke-opacity: 0.12"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="mf1eb8b37f5" d="M 66.639545 -47.13225
|
||||
<path id="m26b1055784" d="M 66.639545 -47.13225
|
||||
L 66.639545 -49.236115
|
||||
L 67.083965 -49.269246
|
||||
L 67.528384 -49.302814
|
||||
@@ -3255,20 +3255,20 @@ L 66.639545 -47.13225
|
||||
z
|
||||
" style="stroke: #e8850a; stroke-opacity: 0.08"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pa09cd1ba4e)">
|
||||
<use xlink:href="#mf1eb8b37f5" x="0" y="270.66825" style="fill: #e8850a; fill-opacity: 0.08; stroke: #e8850a; stroke-opacity: 0.08"/>
|
||||
<g clip-path="url(#p0aaf5e2aac)">
|
||||
<use xlink:href="#m26b1055784" x="0" y="270.66825" style="fill: #e8850a; fill-opacity: 0.08; stroke: #e8850a; stroke-opacity: 0.08"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m90f24b5f3e" d="M 0 0
|
||||
<path id="m4981b39527" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="66.639545" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="66.639545" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -3336,7 +3336,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="111.025909" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="111.025909" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -3389,7 +3389,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="155.412273" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="155.412273" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -3405,7 +3405,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="199.798636" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="199.798636" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -3447,7 +3447,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="244.185" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="244.185" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -3462,7 +3462,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="288.571364" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="288.571364" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -3477,7 +3477,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="332.957727" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="332.957727" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -3492,7 +3492,7 @@ z
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="377.344091" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="377.344091" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -3507,7 +3507,7 @@ z
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m90f24b5f3e" x="421.730455" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m4981b39527" x="421.730455" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -3548,12 +3548,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_10">
|
||||
<defs>
|
||||
<path id="me9cce2ff33" d="M 0 0
|
||||
<path id="m3dad835850" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="223.536" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="223.536" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -3569,7 +3569,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="199.530648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="199.530648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -3585,7 +3585,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="175.525295" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="175.525295" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -3601,7 +3601,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="151.519943" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="151.519943" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -3617,7 +3617,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="127.51459" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="127.51459" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -3633,7 +3633,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="103.509238" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="103.509238" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -3649,7 +3649,7 @@ L -3.5 0
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="79.503886" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="79.503886" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -3699,7 +3699,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="55.498533" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="55.498533" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
@@ -3715,7 +3715,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#me9cce2ff33" x="48.885" y="31.493181" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3dad835850" x="48.885" y="31.493181" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
@@ -3985,7 +3985,7 @@ L 325.735916 223.530978
|
||||
L 419.952778 223.536
|
||||
L 421.730455 223.536
|
||||
L 421.730455 223.536
|
||||
" clip-path="url(#pa09cd1ba4e)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p0aaf5e2aac)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 66.639545 221.432135
|
||||
@@ -4035,7 +4035,7 @@ L 405.286946 219.882011
|
||||
L 414.175329 220.806619
|
||||
L 421.730455 221.432135
|
||||
L 421.730455 221.432135
|
||||
" clip-path="url(#pa09cd1ba4e)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
" clip-path="url(#p0aaf5e2aac)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 48.885 233.112
|
||||
@@ -4854,7 +4854,7 @@ L 331.485 48.18
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pa09cd1ba4e">
|
||||
<clipPath id="p0aaf5e2aac">
|
||||
<rect x="48.885" y="22.44" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 123 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:34.755818</dc:date>
|
||||
<dc:date>2026-03-07T13:33:17.327346</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -42,16 +42,16 @@ z
|
||||
<g id="line2d_1">
|
||||
<path d="M 63.615785 244.558125
|
||||
L 63.615785 22.798125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_2">
|
||||
<defs>
|
||||
<path id="m8920678f4a" d="M 0 0
|
||||
<path id="m84cb7582b1" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8920678f4a" x="63.615785" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m84cb7582b1" x="63.615785" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -88,11 +88,11 @@ z
|
||||
<g id="line2d_3">
|
||||
<path d="M 130.227355 244.558125
|
||||
L 130.227355 22.798125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m8920678f4a" x="130.227355" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m84cb7582b1" x="130.227355" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -122,11 +122,11 @@ z
|
||||
<g id="line2d_5">
|
||||
<path d="M 196.838926 244.558125
|
||||
L 196.838926 22.798125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m8920678f4a" x="196.838926" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m84cb7582b1" x="196.838926" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -166,11 +166,11 @@ z
|
||||
<g id="line2d_7">
|
||||
<path d="M 263.450496 244.558125
|
||||
L 263.450496 22.798125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m8920678f4a" x="263.450496" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m84cb7582b1" x="263.450496" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -218,11 +218,11 @@ z
|
||||
<g id="line2d_9">
|
||||
<path d="M 330.062066 244.558125
|
||||
L 330.062066 22.798125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m8920678f4a" x="330.062066" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m84cb7582b1" x="330.062066" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -257,11 +257,11 @@ z
|
||||
<g id="line2d_11">
|
||||
<path d="M 396.673636 244.558125
|
||||
L 396.673636 22.798125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m8920678f4a" x="396.673636" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m84cb7582b1" x="396.673636" y="244.558125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -518,16 +518,16 @@ z
|
||||
<g id="line2d_13">
|
||||
<path d="M 50.46 218.577157
|
||||
L 413.16 218.577157
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<defs>
|
||||
<path id="m4bd2cf00f0" d="M 0 0
|
||||
<path id="m7f59994548" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m4bd2cf00f0" x="50.46" y="218.577157" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7f59994548" x="50.46" y="218.577157" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -553,11 +553,11 @@ z
|
||||
<g id="line2d_15">
|
||||
<path d="M 50.46 181.43735
|
||||
L 413.16 181.43735
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m4bd2cf00f0" x="50.46" y="181.43735" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7f59994548" x="50.46" y="181.43735" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -574,11 +574,11 @@ L 413.16 181.43735
|
||||
<g id="line2d_17">
|
||||
<path d="M 50.46 144.297544
|
||||
L 413.16 144.297544
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#m4bd2cf00f0" x="50.46" y="144.297544" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7f59994548" x="50.46" y="144.297544" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -595,11 +595,11 @@ L 413.16 144.297544
|
||||
<g id="line2d_19">
|
||||
<path d="M 50.46 107.157738
|
||||
L 413.16 107.157738
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m4bd2cf00f0" x="50.46" y="107.157738" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7f59994548" x="50.46" y="107.157738" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -616,11 +616,11 @@ L 413.16 107.157738
|
||||
<g id="line2d_21">
|
||||
<path d="M 50.46 70.017931
|
||||
L 413.16 70.017931
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#m4bd2cf00f0" x="50.46" y="70.017931" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7f59994548" x="50.46" y="70.017931" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -637,11 +637,11 @@ L 413.16 70.017931
|
||||
<g id="line2d_23">
|
||||
<path d="M 50.46 32.878125
|
||||
L 413.16 32.878125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#m4bd2cf00f0" x="50.46" y="32.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7f59994548" x="50.46" y="32.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -657,16 +657,16 @@ L 413.16 32.878125
|
||||
<g id="line2d_25">
|
||||
<path d="M 50.46 244.536767
|
||||
L 413.16 244.536767
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
<defs>
|
||||
<path id="m3100d51921" d="M 0 0
|
||||
<path id="mebe3a8d417" d="M 0 0
|
||||
L -2 0
|
||||
" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="244.536767" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="244.536767" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -674,11 +674,11 @@ L -2 0
|
||||
<g id="line2d_27">
|
||||
<path d="M 50.46 237.996772
|
||||
L 413.16 237.996772
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="237.996772" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="237.996772" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -686,11 +686,11 @@ L 413.16 237.996772
|
||||
<g id="line2d_29">
|
||||
<path d="M 50.46 233.356572
|
||||
L 413.16 233.356572
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="233.356572" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="233.356572" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -698,11 +698,11 @@ L 413.16 233.356572
|
||||
<g id="line2d_31">
|
||||
<path d="M 50.46 229.757353
|
||||
L 413.16 229.757353
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="229.757353" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="229.757353" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -710,11 +710,11 @@ L 413.16 229.757353
|
||||
<g id="line2d_33">
|
||||
<path d="M 50.46 226.816576
|
||||
L 413.16 226.816576
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="226.816576" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="226.816576" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -722,11 +722,11 @@ L 413.16 226.816576
|
||||
<g id="line2d_35">
|
||||
<path d="M 50.46 224.330186
|
||||
L 413.16 224.330186
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="224.330186" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="224.330186" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -734,11 +734,11 @@ L 413.16 224.330186
|
||||
<g id="line2d_37">
|
||||
<path d="M 50.46 222.176376
|
||||
L 413.16 222.176376
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="222.176376" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="222.176376" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -746,11 +746,11 @@ L 413.16 222.176376
|
||||
<g id="line2d_39">
|
||||
<path d="M 50.46 220.276581
|
||||
L 413.16 220.276581
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_40">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="220.276581" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="220.276581" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -758,11 +758,11 @@ L 413.16 220.276581
|
||||
<g id="line2d_41">
|
||||
<path d="M 50.46 207.396961
|
||||
L 413.16 207.396961
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_42">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="207.396961" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="207.396961" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -770,11 +770,11 @@ L 413.16 207.396961
|
||||
<g id="line2d_43">
|
||||
<path d="M 50.46 200.856966
|
||||
L 413.16 200.856966
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_44">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="200.856966" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="200.856966" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -782,11 +782,11 @@ L 413.16 200.856966
|
||||
<g id="line2d_45">
|
||||
<path d="M 50.46 196.216765
|
||||
L 413.16 196.216765
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_46">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="196.216765" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="196.216765" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -794,11 +794,11 @@ L 413.16 196.216765
|
||||
<g id="line2d_47">
|
||||
<path d="M 50.46 192.617546
|
||||
L 413.16 192.617546
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_48">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="192.617546" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="192.617546" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -806,11 +806,11 @@ L 413.16 192.617546
|
||||
<g id="line2d_49">
|
||||
<path d="M 50.46 189.67677
|
||||
L 413.16 189.67677
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_50">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="189.67677" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="189.67677" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -818,11 +818,11 @@ L 413.16 189.67677
|
||||
<g id="line2d_51">
|
||||
<path d="M 50.46 187.190379
|
||||
L 413.16 187.190379
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_52">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="187.190379" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="187.190379" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -830,11 +830,11 @@ L 413.16 187.190379
|
||||
<g id="line2d_53">
|
||||
<path d="M 50.46 185.03657
|
||||
L 413.16 185.03657
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_54">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="185.03657" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="185.03657" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -842,11 +842,11 @@ L 413.16 185.03657
|
||||
<g id="line2d_55">
|
||||
<path d="M 50.46 183.136775
|
||||
L 413.16 183.136775
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_56">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="183.136775" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="183.136775" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -854,11 +854,11 @@ L 413.16 183.136775
|
||||
<g id="line2d_57">
|
||||
<path d="M 50.46 170.257155
|
||||
L 413.16 170.257155
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_58">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="170.257155" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="170.257155" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -866,11 +866,11 @@ L 413.16 170.257155
|
||||
<g id="line2d_59">
|
||||
<path d="M 50.46 163.717159
|
||||
L 413.16 163.717159
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_60">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="163.717159" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="163.717159" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -878,11 +878,11 @@ L 413.16 163.717159
|
||||
<g id="line2d_61">
|
||||
<path d="M 50.46 159.076959
|
||||
L 413.16 159.076959
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_62">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="159.076959" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="159.076959" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -890,11 +890,11 @@ L 413.16 159.076959
|
||||
<g id="line2d_63">
|
||||
<path d="M 50.46 155.47774
|
||||
L 413.16 155.47774
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_64">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="155.47774" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="155.47774" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -902,11 +902,11 @@ L 413.16 155.47774
|
||||
<g id="line2d_65">
|
||||
<path d="M 50.46 152.536964
|
||||
L 413.16 152.536964
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_66">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="152.536964" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="152.536964" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -914,11 +914,11 @@ L 413.16 152.536964
|
||||
<g id="line2d_67">
|
||||
<path d="M 50.46 150.050573
|
||||
L 413.16 150.050573
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_68">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="150.050573" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="150.050573" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -926,11 +926,11 @@ L 413.16 150.050573
|
||||
<g id="line2d_69">
|
||||
<path d="M 50.46 147.896763
|
||||
L 413.16 147.896763
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_70">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="147.896763" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="147.896763" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -938,11 +938,11 @@ L 413.16 147.896763
|
||||
<g id="line2d_71">
|
||||
<path d="M 50.46 145.996968
|
||||
L 413.16 145.996968
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_72">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="145.996968" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="145.996968" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -950,11 +950,11 @@ L 413.16 145.996968
|
||||
<g id="line2d_73">
|
||||
<path d="M 50.46 133.117348
|
||||
L 413.16 133.117348
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_74">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="133.117348" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="133.117348" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -962,11 +962,11 @@ L 413.16 133.117348
|
||||
<g id="line2d_75">
|
||||
<path d="M 50.46 126.577353
|
||||
L 413.16 126.577353
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_76">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="126.577353" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="126.577353" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -974,11 +974,11 @@ L 413.16 126.577353
|
||||
<g id="line2d_77">
|
||||
<path d="M 50.46 121.937153
|
||||
L 413.16 121.937153
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_78">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="121.937153" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="121.937153" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -986,11 +986,11 @@ L 413.16 121.937153
|
||||
<g id="line2d_79">
|
||||
<path d="M 50.46 118.337933
|
||||
L 413.16 118.337933
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_80">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="118.337933" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="118.337933" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -998,11 +998,11 @@ L 413.16 118.337933
|
||||
<g id="line2d_81">
|
||||
<path d="M 50.46 115.397157
|
||||
L 413.16 115.397157
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_82">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="115.397157" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="115.397157" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1010,11 +1010,11 @@ L 413.16 115.397157
|
||||
<g id="line2d_83">
|
||||
<path d="M 50.46 112.910767
|
||||
L 413.16 112.910767
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_84">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="112.910767" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="112.910767" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1022,11 +1022,11 @@ L 413.16 112.910767
|
||||
<g id="line2d_85">
|
||||
<path d="M 50.46 110.756957
|
||||
L 413.16 110.756957
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_86">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="110.756957" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="110.756957" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1034,11 +1034,11 @@ L 413.16 110.756957
|
||||
<g id="line2d_87">
|
||||
<path d="M 50.46 108.857162
|
||||
L 413.16 108.857162
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_88">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="108.857162" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="108.857162" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1046,11 +1046,11 @@ L 413.16 108.857162
|
||||
<g id="line2d_89">
|
||||
<path d="M 50.46 95.977542
|
||||
L 413.16 95.977542
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_90">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="95.977542" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="95.977542" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1058,11 +1058,11 @@ L 413.16 95.977542
|
||||
<g id="line2d_91">
|
||||
<path d="M 50.46 89.437547
|
||||
L 413.16 89.437547
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_92">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="89.437547" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="89.437547" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1070,11 +1070,11 @@ L 413.16 89.437547
|
||||
<g id="line2d_93">
|
||||
<path d="M 50.46 84.797346
|
||||
L 413.16 84.797346
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_94">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="84.797346" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="84.797346" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1082,11 +1082,11 @@ L 413.16 84.797346
|
||||
<g id="line2d_95">
|
||||
<path d="M 50.46 81.198127
|
||||
L 413.16 81.198127
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_96">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="81.198127" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="81.198127" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1094,11 +1094,11 @@ L 413.16 81.198127
|
||||
<g id="line2d_97">
|
||||
<path d="M 50.46 78.257351
|
||||
L 413.16 78.257351
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_98">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="78.257351" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="78.257351" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1106,11 +1106,11 @@ L 413.16 78.257351
|
||||
<g id="line2d_99">
|
||||
<path d="M 50.46 75.77096
|
||||
L 413.16 75.77096
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_100">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="75.77096" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="75.77096" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1118,11 +1118,11 @@ L 413.16 75.77096
|
||||
<g id="line2d_101">
|
||||
<path d="M 50.46 73.61715
|
||||
L 413.16 73.61715
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_102">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="73.61715" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="73.61715" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1130,11 +1130,11 @@ L 413.16 73.61715
|
||||
<g id="line2d_103">
|
||||
<path d="M 50.46 71.717356
|
||||
L 413.16 71.717356
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_104">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="71.717356" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="71.717356" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1142,11 +1142,11 @@ L 413.16 71.717356
|
||||
<g id="line2d_105">
|
||||
<path d="M 50.46 58.837736
|
||||
L 413.16 58.837736
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_106">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="58.837736" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="58.837736" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1154,11 +1154,11 @@ L 413.16 58.837736
|
||||
<g id="line2d_107">
|
||||
<path d="M 50.46 52.29774
|
||||
L 413.16 52.29774
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_108">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="52.29774" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="52.29774" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1166,11 +1166,11 @@ L 413.16 52.29774
|
||||
<g id="line2d_109">
|
||||
<path d="M 50.46 47.65754
|
||||
L 413.16 47.65754
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_110">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="47.65754" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="47.65754" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1178,11 +1178,11 @@ L 413.16 47.65754
|
||||
<g id="line2d_111">
|
||||
<path d="M 50.46 44.058321
|
||||
L 413.16 44.058321
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_112">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="44.058321" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="44.058321" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1190,11 +1190,11 @@ L 413.16 44.058321
|
||||
<g id="line2d_113">
|
||||
<path d="M 50.46 41.117545
|
||||
L 413.16 41.117545
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_114">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="41.117545" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="41.117545" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1202,11 +1202,11 @@ L 413.16 41.117545
|
||||
<g id="line2d_115">
|
||||
<path d="M 50.46 38.631154
|
||||
L 413.16 38.631154
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_116">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="38.631154" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="38.631154" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1214,11 +1214,11 @@ L 413.16 38.631154
|
||||
<g id="line2d_117">
|
||||
<path d="M 50.46 36.477344
|
||||
L 413.16 36.477344
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_118">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="36.477344" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="36.477344" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1226,11 +1226,11 @@ L 413.16 36.477344
|
||||
<g id="line2d_119">
|
||||
<path d="M 50.46 34.577549
|
||||
L 413.16 34.577549
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.25; stroke-width: 0.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_120">
|
||||
<g>
|
||||
<use xlink:href="#m3100d51921" x="50.46" y="34.577549" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
<use xlink:href="#mebe3a8d417" x="50.46" y="34.577549" style="stroke: #000000; stroke-width: 0.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1649,7 +1649,7 @@ L 379.058824 213.715455
|
||||
L 388.967156 225.255669
|
||||
L 396.673636 234.478125
|
||||
L 396.673636 234.478125
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_122">
|
||||
<path d="M 66.946364 32.878125
|
||||
@@ -1686,7 +1686,7 @@ L 338.875033 202.852359
|
||||
L 374.104658 217.590904
|
||||
L 396.673636 226.920114
|
||||
L 396.673636 226.920114
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_123">
|
||||
<path d="M 66.946364 32.878125
|
||||
@@ -1732,7 +1732,7 @@ L 346.03105 161.792743
|
||||
L 371.352343 164.285703
|
||||
L 396.673636 166.581428
|
||||
L 396.673636 166.581428
|
||||
" clip-path="url(#p96b1e01236)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
" clip-path="url(#p8711bdbc2d)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 50.46 244.558125
|
||||
@@ -2286,7 +2286,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p96b1e01236">
|
||||
<clipPath id="p8711bdbc2d">
|
||||
<rect x="50.46" y="22.798125" width="362.7" height="221.76"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 58 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:35.565718</dc:date>
|
||||
<dc:date>2026-03-07T13:33:18.069715</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m70a5ae7daf" d="M 58.077045 -47.13225
|
||||
<path id="m1d5ed5e787" d="M 58.077045 -47.13225
|
||||
L 58.077045 -238.65225
|
||||
L 58.669852 -236.830225
|
||||
L 59.262658 -235.016911
|
||||
@@ -1244,20 +1244,20 @@ L 58.077045 -47.13225
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.08"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pd9423abab1)">
|
||||
<use xlink:href="#m70a5ae7daf" x="0" y="270.54825" style="fill: #2e6be5; fill-opacity: 0.08; stroke: #2e6be5; stroke-opacity: 0.08"/>
|
||||
<g clip-path="url(#pef680ee904)">
|
||||
<use xlink:href="#m1d5ed5e787" x="0" y="270.54825" style="fill: #2e6be5; fill-opacity: 0.08; stroke: #2e6be5; stroke-opacity: 0.08"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="ma58f2ac1c7" d="M 0 0
|
||||
<path id="mcb80b267c7" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#ma58f2ac1c7" x="93.586136" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcb80b267c7" x="93.586136" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -1299,7 +1299,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#ma58f2ac1c7" x="164.604318" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcb80b267c7" x="164.604318" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -1339,7 +1339,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#ma58f2ac1c7" x="235.6225" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcb80b267c7" x="235.6225" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -1375,7 +1375,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#ma58f2ac1c7" x="306.640682" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcb80b267c7" x="306.640682" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -1388,7 +1388,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#ma58f2ac1c7" x="377.658864" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcb80b267c7" x="377.658864" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -1426,12 +1426,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="mf1e83b8cba" d="M 0 0
|
||||
<path id="mf87332fc1f" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mf1e83b8cba" x="40.3225" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf87332fc1f" x="40.3225" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -1444,7 +1444,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#mf1e83b8cba" x="40.3225" y="183.406771" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf87332fc1f" x="40.3225" y="183.406771" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -1457,7 +1457,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#mf1e83b8cba" x="40.3225" y="143.397542" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf87332fc1f" x="40.3225" y="143.397542" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -1470,7 +1470,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mf1e83b8cba" x="40.3225" y="103.388314" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf87332fc1f" x="40.3225" y="103.388314" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -1515,7 +1515,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mf1e83b8cba" x="40.3225" y="63.379085" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf87332fc1f" x="40.3225" y="63.379085" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -1569,7 +1569,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#mf1e83b8cba" x="40.3225" y="23.369856" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf87332fc1f" x="40.3225" y="23.369856" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -1855,7 +1855,7 @@ L 403.683055 91.928758
|
||||
L 409.018311 79.653572
|
||||
L 413.167955 69.720744
|
||||
L 413.167955 69.720744
|
||||
" clip-path="url(#pd9423abab1)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pef680ee904)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 40.3225 232.992
|
||||
@@ -2371,7 +2371,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="md8fbbe2bdb" d="M 0 4.743416
|
||||
<path id="m803adfcdaa" d="M 0 4.743416
|
||||
C 1.257969 4.743416 2.464584 4.24362 3.354102 3.354102
|
||||
C 4.24362 2.464584 4.743416 1.257969 4.743416 0
|
||||
C 4.743416 -1.257969 4.24362 -2.464584 3.354102 -3.354102
|
||||
@@ -2383,21 +2383,21 @@ C -2.464584 4.24362 -1.257969 4.743416 0 4.743416
|
||||
z
|
||||
" style="stroke: #27ae60"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pd9423abab1)">
|
||||
<use xlink:href="#md8fbbe2bdb" x="182.358864" y="223.416" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#md8fbbe2bdb" x="288.886136" y="221.010216" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<g clip-path="url(#pef680ee904)">
|
||||
<use xlink:href="#m803adfcdaa" x="182.358864" y="223.416" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#m803adfcdaa" x="288.886136" y="221.010216" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<defs>
|
||||
<path id="m6d0a08dac2" d="M 0 -4.743416
|
||||
<path id="m068ca3295c" d="M 0 -4.743416
|
||||
L -4.743416 4.743416
|
||||
L 4.743416 4.743416
|
||||
z
|
||||
" style="stroke: #d62728"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pd9423abab1)">
|
||||
<use xlink:href="#m6d0a08dac2" x="235.918903" y="204.722222" style="fill: #d62728; stroke: #d62728"/>
|
||||
<g clip-path="url(#pef680ee904)">
|
||||
<use xlink:href="#m068ca3295c" x="235.918903" y="204.722222" style="fill: #d62728; stroke: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="legend_1">
|
||||
@@ -2416,7 +2416,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<g>
|
||||
<use xlink:href="#md8fbbe2bdb" x="342.190938" y="34.896094" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#m803adfcdaa" x="342.190938" y="34.896094" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -2459,7 +2459,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<g>
|
||||
<use xlink:href="#m6d0a08dac2" x="342.190938" y="48.106406" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#m068ca3295c" x="342.190938" y="48.106406" style="fill: #d62728; stroke: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -2485,7 +2485,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pd9423abab1">
|
||||
<clipPath id="pef680ee904">
|
||||
<rect x="40.3225" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:37.224477</dc:date>
|
||||
<dc:date>2026-03-07T13:33:19.702883</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m17a37e65fa" d="M 0 0
|
||||
<path id="m3cbe051c7b" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="54.249062" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="54.249062" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -82,7 +82,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="94.713068" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="94.713068" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -124,7 +124,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="135.177073" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="135.177073" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -156,7 +156,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="175.641079" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="175.641079" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -172,7 +172,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="216.105085" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="216.105085" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -214,7 +214,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="256.569091" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="256.569091" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -230,7 +230,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="297.033097" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="297.033097" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -454,12 +454,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m109a036b0f" d="M 0 0
|
||||
<path id="m3848f02fe2" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="224.442651" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="224.442651" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -501,7 +501,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="200.993835" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="200.993835" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -515,7 +515,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="177.545019" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="177.545019" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -529,7 +529,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="154.096202" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="154.096202" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -543,7 +543,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="130.647386" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="130.647386" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -556,7 +556,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="107.19857" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="107.19857" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -569,7 +569,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="83.749753" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="83.749753" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -582,7 +582,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="60.300937" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="60.300937" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -595,7 +595,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="42.113906" y="36.852121" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="42.113906" y="36.852121" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -2489,12 +2489,12 @@ L 296.709385 40.048486
|
||||
L 296.790313 31.570852
|
||||
L 296.952169 36.119862
|
||||
L 296.952169 36.119862
|
||||
" clip-path="url(#pb63b8b4f92)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.8; stroke-width: 0.6; stroke-linecap: square"/>
|
||||
" clip-path="url(#p939980a4a0)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.8; stroke-width: 0.6; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 42.113906 130.647386
|
||||
L 309.087324 130.647386
|
||||
" clip-path="url(#pb63b8b4f92)" style="fill: none; stroke-dasharray: 0.7,1.155; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p939980a4a0)" style="fill: none; stroke-dasharray: 0.7,1.155; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.7"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 42.113906 225.878125
|
||||
@@ -2809,7 +2809,7 @@ L 412.347827 225.878125
|
||||
L 412.347827 220.176164
|
||||
L 408.517073 220.176164
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_7">
|
||||
<path d="M 412.347827 225.878125
|
||||
@@ -2817,7 +2817,7 @@ L 416.17858 225.878125
|
||||
L 416.17858 220.176164
|
||||
L 412.347827 220.176164
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path d="M 416.17858 225.878125
|
||||
@@ -2825,7 +2825,7 @@ L 420.009333 225.878125
|
||||
L 420.009333 210.197733
|
||||
L 416.17858 210.197733
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_9">
|
||||
<path d="M 420.009333 225.878125
|
||||
@@ -2833,7 +2833,7 @@ L 423.840086 225.878125
|
||||
L 423.840086 193.09185
|
||||
L 420.009333 193.09185
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_10">
|
||||
<path d="M 423.840086 225.878125
|
||||
@@ -2841,7 +2841,7 @@ L 427.670839 225.878125
|
||||
L 427.670839 191.66636
|
||||
L 423.840086 191.66636
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_11">
|
||||
<path d="M 427.670839 225.878125
|
||||
@@ -2849,7 +2849,7 @@ L 431.501592 225.878125
|
||||
L 431.501592 157.454596
|
||||
L 427.670839 157.454596
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_12">
|
||||
<path d="M 431.501592 225.878125
|
||||
@@ -2857,7 +2857,7 @@ L 435.332345 225.878125
|
||||
L 435.332345 164.582047
|
||||
L 431.501592 164.582047
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_13">
|
||||
<path d="M 435.332345 225.878125
|
||||
@@ -2865,7 +2865,7 @@ L 439.163099 225.878125
|
||||
L 439.163099 128.944792
|
||||
L 435.332345 128.944792
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_14">
|
||||
<path d="M 439.163099 225.878125
|
||||
@@ -2873,7 +2873,7 @@ L 442.993852 225.878125
|
||||
L 442.993852 138.923223
|
||||
L 439.163099 138.923223
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_15">
|
||||
<path d="M 442.993852 225.878125
|
||||
@@ -2881,7 +2881,7 @@ L 446.824605 225.878125
|
||||
L 446.824605 101.860478
|
||||
L 442.993852 101.860478
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_16">
|
||||
<path d="M 446.824605 225.878125
|
||||
@@ -2889,7 +2889,7 @@ L 450.655358 225.878125
|
||||
L 450.655358 94.733027
|
||||
L 446.824605 94.733027
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_17">
|
||||
<path d="M 450.655358 225.878125
|
||||
@@ -2897,7 +2897,7 @@ L 454.486111 225.878125
|
||||
L 454.486111 54.819301
|
||||
L 450.655358 54.819301
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_18">
|
||||
<path d="M 454.486111 225.878125
|
||||
@@ -2905,7 +2905,7 @@ L 458.316864 225.878125
|
||||
L 458.316864 74.776164
|
||||
L 454.486111 74.776164
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_19">
|
||||
<path d="M 458.316864 225.878125
|
||||
@@ -2913,7 +2913,7 @@ L 462.147617 225.878125
|
||||
L 462.147617 60.521262
|
||||
L 458.316864 60.521262
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_20">
|
||||
<path d="M 462.147617 225.878125
|
||||
@@ -2921,7 +2921,7 @@ L 465.97837 225.878125
|
||||
L 465.97837 61.946752
|
||||
L 462.147617 61.946752
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_21">
|
||||
<path d="M 465.97837 225.878125
|
||||
@@ -2929,7 +2929,7 @@ L 469.809124 225.878125
|
||||
L 469.809124 84.754596
|
||||
L 465.97837 84.754596
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_22">
|
||||
<path d="M 469.809124 225.878125
|
||||
@@ -2937,7 +2937,7 @@ L 473.639877 225.878125
|
||||
L 473.639877 32.011458
|
||||
L 469.809124 32.011458
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_23">
|
||||
<path d="M 473.639877 225.878125
|
||||
@@ -2945,7 +2945,7 @@ L 477.47063 225.878125
|
||||
L 477.47063 96.158517
|
||||
L 473.639877 96.158517
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_24">
|
||||
<path d="M 477.47063 225.878125
|
||||
@@ -2953,7 +2953,7 @@ L 481.301383 225.878125
|
||||
L 481.301383 66.223223
|
||||
L 477.47063 66.223223
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_25">
|
||||
<path d="M 481.301383 225.878125
|
||||
@@ -2961,7 +2961,7 @@ L 485.132136 225.878125
|
||||
L 485.132136 126.093811
|
||||
L 481.301383 126.093811
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_26">
|
||||
<path d="M 485.132136 225.878125
|
||||
@@ -2969,7 +2969,7 @@ L 488.962889 225.878125
|
||||
L 488.962889 124.668321
|
||||
L 485.132136 124.668321
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_27">
|
||||
<path d="M 488.962889 225.878125
|
||||
@@ -2977,7 +2977,7 @@ L 492.793642 225.878125
|
||||
L 492.793642 147.476164
|
||||
L 488.962889 147.476164
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_28">
|
||||
<path d="M 492.793642 225.878125
|
||||
@@ -2985,7 +2985,7 @@ L 496.624396 225.878125
|
||||
L 496.624396 164.582047
|
||||
L 492.793642 164.582047
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_29">
|
||||
<path d="M 496.624396 225.878125
|
||||
@@ -2993,7 +2993,7 @@ L 500.455149 225.878125
|
||||
L 500.455149 151.752635
|
||||
L 496.624396 151.752635
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_30">
|
||||
<path d="M 500.455149 225.878125
|
||||
@@ -3001,7 +3001,7 @@ L 504.285902 225.878125
|
||||
L 504.285902 170.284007
|
||||
L 500.455149 170.284007
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_31">
|
||||
<path d="M 504.285902 225.878125
|
||||
@@ -3009,7 +3009,7 @@ L 508.116655 225.878125
|
||||
L 508.116655 150.327145
|
||||
L 504.285902 150.327145
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_32">
|
||||
<path d="M 508.116655 225.878125
|
||||
@@ -3017,7 +3017,7 @@ L 511.947408 225.878125
|
||||
L 511.947408 124.668321
|
||||
L 508.116655 124.668321
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_33">
|
||||
<path d="M 511.947408 225.878125
|
||||
@@ -3025,7 +3025,7 @@ L 515.778161 225.878125
|
||||
L 515.778161 123.242831
|
||||
L 511.947408 123.242831
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_34">
|
||||
<path d="M 515.778161 225.878125
|
||||
@@ -3033,7 +3033,7 @@ L 519.608914 225.878125
|
||||
L 519.608914 157.454596
|
||||
L 515.778161 157.454596
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_35">
|
||||
<path d="M 519.608914 225.878125
|
||||
@@ -3041,7 +3041,7 @@ L 523.439667 225.878125
|
||||
L 523.439667 131.795772
|
||||
L 519.608914 131.795772
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_36">
|
||||
<path d="M 523.439667 225.878125
|
||||
@@ -3049,7 +3049,7 @@ L 527.270421 225.878125
|
||||
L 527.270421 117.54087
|
||||
L 523.439667 117.54087
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_37">
|
||||
<path d="M 527.270421 225.878125
|
||||
@@ -3057,7 +3057,7 @@ L 531.101174 225.878125
|
||||
L 531.101174 99.009498
|
||||
L 527.270421 99.009498
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_38">
|
||||
<path d="M 531.101174 225.878125
|
||||
@@ -3065,7 +3065,7 @@ L 534.931927 225.878125
|
||||
L 534.931927 101.860478
|
||||
L 531.101174 101.860478
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_39">
|
||||
<path d="M 534.931927 225.878125
|
||||
@@ -3073,7 +3073,7 @@ L 538.76268 225.878125
|
||||
L 538.76268 86.180086
|
||||
L 534.931927 86.180086
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_40">
|
||||
<path d="M 538.76268 225.878125
|
||||
@@ -3081,7 +3081,7 @@ L 542.593433 225.878125
|
||||
L 542.593433 86.180086
|
||||
L 538.76268 86.180086
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_41">
|
||||
<path d="M 542.593433 225.878125
|
||||
@@ -3089,7 +3089,7 @@ L 546.424186 225.878125
|
||||
L 546.424186 97.584007
|
||||
L 542.593433 97.584007
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_42">
|
||||
<path d="M 546.424186 225.878125
|
||||
@@ -3097,7 +3097,7 @@ L 550.254939 225.878125
|
||||
L 550.254939 138.923223
|
||||
L 546.424186 138.923223
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_43">
|
||||
<path d="M 550.254939 225.878125
|
||||
@@ -3105,7 +3105,7 @@ L 554.085693 225.878125
|
||||
L 554.085693 133.221262
|
||||
L 550.254939 133.221262
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_44">
|
||||
<path d="M 554.085693 225.878125
|
||||
@@ -3113,7 +3113,7 @@ L 557.916446 225.878125
|
||||
L 557.916446 157.454596
|
||||
L 554.085693 157.454596
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_45">
|
||||
<path d="M 557.916446 225.878125
|
||||
@@ -3121,7 +3121,7 @@ L 561.747199 225.878125
|
||||
L 561.747199 166.007537
|
||||
L 557.916446 166.007537
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_46">
|
||||
<path d="M 561.747199 225.878125
|
||||
@@ -3129,7 +3129,7 @@ L 565.577952 225.878125
|
||||
L 565.577952 156.029105
|
||||
L 561.747199 156.029105
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_47">
|
||||
<path d="M 565.577952 225.878125
|
||||
@@ -3137,7 +3137,7 @@ L 569.408705 225.878125
|
||||
L 569.408705 134.646752
|
||||
L 565.577952 134.646752
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_48">
|
||||
<path d="M 569.408705 225.878125
|
||||
@@ -3145,7 +3145,7 @@ L 573.239458 225.878125
|
||||
L 573.239458 153.178125
|
||||
L 569.408705 153.178125
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_49">
|
||||
<path d="M 573.239458 225.878125
|
||||
@@ -3153,7 +3153,7 @@ L 577.070211 225.878125
|
||||
L 577.070211 201.644792
|
||||
L 573.239458 201.644792
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_50">
|
||||
<path d="M 577.070211 225.878125
|
||||
@@ -3161,7 +3161,7 @@ L 580.900964 225.878125
|
||||
L 580.900964 190.24087
|
||||
L 577.070211 190.24087
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_51">
|
||||
<path d="M 580.900964 225.878125
|
||||
@@ -3169,7 +3169,7 @@ L 584.731718 225.878125
|
||||
L 584.731718 208.772243
|
||||
L 580.900964 208.772243
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_52">
|
||||
<path d="M 584.731718 225.878125
|
||||
@@ -3177,7 +3177,7 @@ L 588.562471 225.878125
|
||||
L 588.562471 205.921262
|
||||
L 584.731718 205.921262
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_53">
|
||||
<path d="M 588.562471 225.878125
|
||||
@@ -3185,7 +3185,7 @@ L 592.393224 225.878125
|
||||
L 592.393224 218.750674
|
||||
L 588.562471 218.750674
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_54">
|
||||
<path d="M 592.393224 225.878125
|
||||
@@ -3193,7 +3193,7 @@ L 596.223977 225.878125
|
||||
L 596.223977 218.750674
|
||||
L 592.393224 218.750674
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_55">
|
||||
<path d="M 596.223977 225.878125
|
||||
@@ -3201,13 +3201,13 @@ L 600.05473 225.878125
|
||||
L 600.05473 220.176164
|
||||
L 596.223977 220.176164
|
||||
z
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3">
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="400.425954" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="400.425954" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
@@ -3221,7 +3221,7 @@ z
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="448.966576" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="448.966576" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
@@ -3235,7 +3235,7 @@ z
|
||||
<g id="xtick_10">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="497.507197" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="497.507197" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
@@ -3248,7 +3248,7 @@ z
|
||||
<g id="xtick_11">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="546.047819" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="546.047819" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
@@ -3261,7 +3261,7 @@ z
|
||||
<g id="xtick_12">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#m17a37e65fa" x="594.58844" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3cbe051c7b" x="594.58844" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
@@ -3282,7 +3282,7 @@ z
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="225.878125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
@@ -3307,7 +3307,7 @@ z
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_25">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="192.12886" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="192.12886" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
@@ -3323,7 +3323,7 @@ z
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="158.379594" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="158.379594" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_28">
|
||||
@@ -3339,7 +3339,7 @@ z
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="124.630329" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="124.630329" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_29">
|
||||
@@ -3355,7 +3355,7 @@ z
|
||||
<g id="ytick_14">
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="90.881064" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="90.881064" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_30">
|
||||
@@ -3371,7 +3371,7 @@ z
|
||||
<g id="ytick_15">
|
||||
<g id="line2d_29">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="57.131799" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="57.131799" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_31">
|
||||
@@ -3387,7 +3387,7 @@ z
|
||||
<g id="ytick_16">
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m109a036b0f" x="364.020488" y="23.382533" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3848f02fe2" x="364.020488" y="23.382533" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_32">
|
||||
@@ -3569,7 +3569,7 @@ L 609.734574 225.516292
|
||||
L 615.817359 225.745732
|
||||
L 618.858751 225.800337
|
||||
L 618.858751 225.800337
|
||||
" clip-path="url(#p3395cf4e96)" style="fill: none; stroke: #e8850a; stroke-width: 2.2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p02dcf46a93)" style="fill: none; stroke: #e8850a; stroke-width: 2.2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_56">
|
||||
<path d="M 364.020488 225.878125
|
||||
@@ -3818,10 +3818,10 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pb63b8b4f92">
|
||||
<clipPath id="p939980a4a0">
|
||||
<rect x="42.113906" y="22.318125" width="266.973418" height="203.56"/>
|
||||
</clipPath>
|
||||
<clipPath id="p3395cf4e96">
|
||||
<clipPath id="p02dcf46a93">
|
||||
<rect x="364.020488" y="22.318125" width="266.973418" height="203.56"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 95 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:38.912784</dc:date>
|
||||
<dc:date>2026-03-07T13:33:21.320800</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m402ff8402d" d="M 0 0
|
||||
<path id="m031e3253f1" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="50.700469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="50.700469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -123,7 +123,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="82.432719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="82.432719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -180,7 +180,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="114.164969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="114.164969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -196,7 +196,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="145.897219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="145.897219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -212,7 +212,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="177.629469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="177.629469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -227,7 +227,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="209.361719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="209.361719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -242,7 +242,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="241.093969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="241.093969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -257,7 +257,7 @@ z
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="272.826219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="272.826219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -272,7 +272,7 @@ z
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="304.558469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="304.558469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -323,12 +323,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_10">
|
||||
<defs>
|
||||
<path id="m9e74fe22c1" d="M 0 0
|
||||
<path id="m0c34bfe6de" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -344,7 +344,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="197.967125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="197.967125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -360,7 +360,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="174.460125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="174.460125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -376,7 +376,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="150.953125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="150.953125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -392,7 +392,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="127.446125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="127.446125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -407,7 +407,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="103.939125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="103.939125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -422,7 +422,7 @@ L -3.5 0
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="80.432125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="80.432125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -437,7 +437,7 @@ L -3.5 0
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="56.925125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="56.925125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
@@ -452,7 +452,7 @@ L -3.5 0
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="50.700469" y="33.418125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="50.700469" y="33.418125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
@@ -473,7 +473,7 @@ L -3.5 0
|
||||
</g>
|
||||
</g>
|
||||
<g id="QuadContourSet_1">
|
||||
<path clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 172.110817 220.939096
|
||||
L 171.661036 220.845175
|
||||
L 171.261793 220.761244
|
||||
@@ -1316,7 +1316,7 @@ L 173.808863 221.217691
|
||||
L 172.95984 221.091057
|
||||
L 172.110817 220.939096
|
||||
z
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 125.812654 221.474125
|
||||
L 123.494553 217.071476
|
||||
L 121.088364 212.039878
|
||||
@@ -1380,7 +1380,7 @@ L 232.390097 215.813577
|
||||
L 229.791925 220.845175
|
||||
L 229.446284 221.474125
|
||||
L 229.446284 221.474125
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 104.347724 221.474125
|
||||
L 102.238893 215.813577
|
||||
L 99.907682 208.895128
|
||||
@@ -1436,7 +1436,7 @@ L 253.463636 214.555677
|
||||
L 251.069994 221.066785
|
||||
L 250.911213 221.474125
|
||||
L 250.911213 221.474125
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 87.877782 221.474125
|
||||
L 85.601325 213.926727
|
||||
L 83.724898 207.008279
|
||||
@@ -1486,7 +1486,7 @@ L 271.040858 208.895128
|
||||
L 268.899485 216.533879
|
||||
L 267.381155 221.474125
|
||||
L 267.381155 221.474125
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 73.993229 221.474125
|
||||
L 71.859547 213.297777
|
||||
L 69.957534 205.121429
|
||||
@@ -1534,7 +1534,7 @@ L 283.857863 211.410928
|
||||
L 281.779504 219.587276
|
||||
L 281.265709 221.474125
|
||||
L 281.265709 221.474125
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 61.759753 221.474125
|
||||
L 59.848467 213.297777
|
||||
L 58.013636 204.49248
|
||||
@@ -1580,8 +1580,8 @@ L 296.35617 208.895128
|
||||
L 294.406974 217.700426
|
||||
L 293.499184 221.474125
|
||||
L 293.499184 221.474125
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path clip-path="url(#p3fca90080b)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 279.172669 52.223725
|
||||
@@ -1589,9 +1589,9 @@ L 180.802694 75.730725
|
||||
L 225.227844 120.394025
|
||||
L 179.533404 124.625285
|
||||
L 177.629469 127.446125
|
||||
" clip-path="url(#p3fca90080b)" style="fill: none; stroke: #2e6be5; stroke-width: 1.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#pa1f0762d88)" style="fill: none; stroke: #2e6be5; stroke-width: 1.8; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="me2becd2749" d="M 0 2.5
|
||||
<path id="meafd930fc3" d="M 0 2.5
|
||||
C 0.663008 2.5 1.29895 2.236584 1.767767 1.767767
|
||||
C 2.236584 1.29895 2.5 0.663008 2.5 0
|
||||
C 2.5 -0.663008 2.236584 -1.29895 1.767767 -1.767767
|
||||
@@ -1603,12 +1603,12 @@ C -1.29895 2.236584 -0.663008 2.5 0 2.5
|
||||
z
|
||||
" style="stroke: #2e6be5"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p3fca90080b)">
|
||||
<use xlink:href="#me2becd2749" x="279.172669" y="52.223725" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me2becd2749" x="180.802694" y="75.730725" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me2becd2749" x="225.227844" y="120.394025" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me2becd2749" x="179.533404" y="124.625285" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#me2becd2749" x="177.629469" y="127.446125" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#pa1f0762d88)">
|
||||
<use xlink:href="#meafd930fc3" x="279.172669" y="52.223725" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#meafd930fc3" x="180.802694" y="75.730725" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#meafd930fc3" x="225.227844" y="120.394025" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#meafd930fc3" x="179.533404" y="124.625285" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<use xlink:href="#meafd930fc3" x="177.629469" y="127.446125" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
@@ -2080,7 +2080,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="m363412c89d" d="M 0 -5.477226
|
||||
<path id="m055db4f4c7" d="M 0 -5.477226
|
||||
L -1.229714 -1.692556
|
||||
L -5.209151 -1.692556
|
||||
L -1.989719 0.646499
|
||||
@@ -2093,8 +2093,8 @@ L 1.229714 -1.692556
|
||||
z
|
||||
" style="stroke: #e8850a"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p3fca90080b)">
|
||||
<use xlink:href="#m363412c89d" x="177.629469" y="127.446125" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<g clip-path="url(#pa1f0762d88)">
|
||||
<use xlink:href="#m055db4f4c7" x="177.629469" y="127.446125" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -2111,7 +2111,7 @@ z
|
||||
<g id="xtick_10">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="368.760469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="368.760469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
@@ -2127,7 +2127,7 @@ z
|
||||
<g id="xtick_11">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="400.492719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="400.492719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
@@ -2143,7 +2143,7 @@ z
|
||||
<g id="xtick_12">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="432.224969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="432.224969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
@@ -2159,7 +2159,7 @@ z
|
||||
<g id="xtick_13">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="463.957219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="463.957219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_25">
|
||||
@@ -2175,7 +2175,7 @@ z
|
||||
<g id="xtick_14">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="495.689469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="495.689469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
@@ -2190,7 +2190,7 @@ z
|
||||
<g id="xtick_15">
|
||||
<g id="line2d_25">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="527.421719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="527.421719" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_27">
|
||||
@@ -2205,7 +2205,7 @@ z
|
||||
<g id="xtick_16">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="559.153969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="559.153969" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_28">
|
||||
@@ -2220,7 +2220,7 @@ z
|
||||
<g id="xtick_17">
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="590.886219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="590.886219" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_29">
|
||||
@@ -2235,7 +2235,7 @@ z
|
||||
<g id="xtick_18">
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m402ff8402d" x="622.618469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m031e3253f1" x="622.618469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_30">
|
||||
@@ -2259,7 +2259,7 @@ z
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_29">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="221.474125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_32">
|
||||
@@ -2275,7 +2275,7 @@ z
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="197.967125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="197.967125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_33">
|
||||
@@ -2291,7 +2291,7 @@ z
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_31">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="174.460125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="174.460125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_34">
|
||||
@@ -2307,7 +2307,7 @@ z
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="150.953125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="150.953125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_35">
|
||||
@@ -2323,7 +2323,7 @@ z
|
||||
<g id="ytick_14">
|
||||
<g id="line2d_33">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="127.446125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="127.446125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_36">
|
||||
@@ -2338,7 +2338,7 @@ z
|
||||
<g id="ytick_15">
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="103.939125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="103.939125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_37">
|
||||
@@ -2353,7 +2353,7 @@ z
|
||||
<g id="ytick_16">
|
||||
<g id="line2d_35">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="80.432125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="80.432125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_38">
|
||||
@@ -2368,7 +2368,7 @@ z
|
||||
<g id="ytick_17">
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="56.925125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="56.925125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_39">
|
||||
@@ -2383,7 +2383,7 @@ z
|
||||
<g id="ytick_18">
|
||||
<g id="line2d_37">
|
||||
<g>
|
||||
<use xlink:href="#m9e74fe22c1" x="368.760469" y="33.418125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m0c34bfe6de" x="368.760469" y="33.418125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_40">
|
||||
@@ -2404,7 +2404,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<g id="QuadContourSet_2">
|
||||
<path clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 491.01984 174.332501
|
||||
L 486.774723 173.992928
|
||||
L 482.529606 173.437274
|
||||
@@ -2507,7 +2507,7 @@ L 496.963004 174.449905
|
||||
L 492.717887 174.407975
|
||||
L 491.01984 174.332501
|
||||
L 491.01984 174.332501
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 490.170817 193.80812
|
||||
L 490.011625 193.800332
|
||||
L 489.321793 193.766264
|
||||
@@ -3358,7 +3358,7 @@ L 491.868863 193.873388
|
||||
L 491.01984 193.843721
|
||||
L 490.170817 193.80812
|
||||
z
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 482.529606 208.291013
|
||||
L 482.259311 208.266179
|
||||
L 481.680582 208.212589
|
||||
@@ -4393,7 +4393,7 @@ L 484.227653 208.432405
|
||||
L 483.378629 208.364147
|
||||
L 482.529606 208.291013
|
||||
z
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 481.680582 220.899522
|
||||
L 475.737419 220.304937
|
||||
L 469.794255 219.496272
|
||||
@@ -4536,7 +4536,7 @@ L 491.868863 221.431386
|
||||
L 485.9257 221.195002
|
||||
L 481.680582 220.899522
|
||||
L 481.680582 220.899522
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 432.22603 221.474125
|
||||
L 426.494061 219.228241
|
||||
L 421.39992 217.016803
|
||||
@@ -4602,7 +4602,7 @@ L 617.118556 73.041964
|
||||
L 620.071399 76.83409
|
||||
L 622.618469 80.432911
|
||||
L 622.618469 80.432911
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 405.937782 221.474125
|
||||
L 401.023358 218.791058
|
||||
L 395.929218 215.766124
|
||||
@@ -4644,7 +4644,7 @@ L 617.674308 56.060319
|
||||
L 621.769445 60.078324
|
||||
L 622.618469 60.958785
|
||||
L 622.618469 60.958785
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path d="M 385.765824 221.474125
|
||||
L 381.047921 218.329376
|
||||
L 376.401679 214.986524
|
||||
@@ -4666,17 +4666,17 @@ L 614.977258 39.905726
|
||||
L 619.572561 43.481322
|
||||
L 622.618469 46.015557
|
||||
L 622.618469 46.015557
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
<path clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #888888; stroke-opacity: 0.45; stroke-width: 0.9"/>
|
||||
</g>
|
||||
<g id="line2d_38">
|
||||
<path d="M 597.232669 52.223725
|
||||
L 546.461069 89.834925
|
||||
L 514.728819 113.341925
|
||||
L 495.689469 127.446125
|
||||
" clip-path="url(#pe1059f13c2)" style="fill: none; stroke: #27ae60; stroke-width: 1.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe39c9128f1)" style="fill: none; stroke: #27ae60; stroke-width: 1.8; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="mef68982983" d="M 0 2.5
|
||||
<path id="m5cce0bb2d1" d="M 0 2.5
|
||||
C 0.663008 2.5 1.29895 2.236584 1.767767 1.767767
|
||||
C 2.236584 1.29895 2.5 0.663008 2.5 0
|
||||
C 2.5 -0.663008 2.236584 -1.29895 1.767767 -1.767767
|
||||
@@ -4688,11 +4688,11 @@ C -1.29895 2.236584 -0.663008 2.5 0 2.5
|
||||
z
|
||||
" style="stroke: #27ae60"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pe1059f13c2)">
|
||||
<use xlink:href="#mef68982983" x="597.232669" y="52.223725" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#mef68982983" x="546.461069" y="89.834925" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#mef68982983" x="514.728819" y="113.341925" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#mef68982983" x="495.689469" y="127.446125" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<g clip-path="url(#pe39c9128f1)">
|
||||
<use xlink:href="#m5cce0bb2d1" x="597.232669" y="52.223725" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#m5cce0bb2d1" x="546.461069" y="89.834925" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#m5cce0bb2d1" x="514.728819" y="113.341925" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
<use xlink:href="#m5cce0bb2d1" x="495.689469" y="127.446125" style="fill: #27ae60; stroke: #27ae60"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
@@ -4919,17 +4919,17 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<g clip-path="url(#pe1059f13c2)">
|
||||
<use xlink:href="#m363412c89d" x="495.689469" y="127.446125" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<g clip-path="url(#pe39c9128f1)">
|
||||
<use xlink:href="#m055db4f4c7" x="495.689469" y="127.446125" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p3fca90080b">
|
||||
<clipPath id="pa1f0762d88">
|
||||
<rect x="50.700469" y="33.418125" width="253.858" height="188.056"/>
|
||||
</clipPath>
|
||||
<clipPath id="pe1059f13c2">
|
||||
<clipPath id="pe39c9128f1">
|
||||
<rect x="368.760469" y="33.418125" width="253.858" height="188.056"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 128 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:33.199313</dc:date>
|
||||
<dc:date>2026-03-07T13:33:15.773450</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -54,7 +54,7 @@ L 316.407237 24.24
|
||||
L 319.289295 26.672162
|
||||
L 320.127313 27.397975
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #f2f8fd"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #f2f8fd"/>
|
||||
<path d="M 46.109142 36.871899
|
||||
L 49.518462 33.713924
|
||||
L 49.52808 33.705216
|
||||
@@ -97,7 +97,7 @@ L 319.289295 33.705216
|
||||
L 319.298913 33.713924
|
||||
L 322.708233 36.871899
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #e8f1fa"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #e8f1fa"/>
|
||||
<path d="M 47.411258 43.187848
|
||||
L 49.52808 41.13186
|
||||
L 50.69253 40.029873
|
||||
@@ -156,7 +156,7 @@ L 318.124845 40.029873
|
||||
L 319.289295 41.13186
|
||||
L 321.406117 43.187848
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #deebf7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #deebf7"/>
|
||||
<path d="M 49.029185 49.503797
|
||||
L 49.52808 48.994506
|
||||
L 52.190973 46.345823
|
||||
@@ -235,7 +235,7 @@ L 316.626402 46.345823
|
||||
L 319.289295 48.994506
|
||||
L 319.78819 49.503797
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #d5e5f4"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #d5e5f4"/>
|
||||
<path d="M 48.106271 58.977722
|
||||
L 49.52808 57.405938
|
||||
L 51.000681 55.819747
|
||||
@@ -338,7 +338,7 @@ L 317.816694 55.819747
|
||||
L 319.289295 57.405938
|
||||
L 320.711104 58.977722
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #cbdef1"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #cbdef1"/>
|
||||
<path d="M 46.024688 272.543153
|
||||
L 46.024688 273.72
|
||||
L 46.960855 273.72
|
||||
@@ -477,7 +477,7 @@ L 318.277713 65.293671
|
||||
L 319.289295 66.481796
|
||||
L 320.923443 68.451646
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #bed8ec"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #bed8ec"/>
|
||||
<path d="M 49.52808 273.72
|
||||
L 53.031472 273.72
|
||||
L 55.037452 273.72
|
||||
@@ -670,7 +670,7 @@ L 319.289295 76.420204
|
||||
L 320.425209 77.92557
|
||||
L 322.729191 81.083544
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #aed1e7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #aed1e7"/>
|
||||
<path d="M 53.031472 271.327619
|
||||
L 55.037452 273.72
|
||||
L 56.534865 273.72
|
||||
@@ -923,7 +923,7 @@ L 319.214482 87.399494
|
||||
L 319.289295 87.510855
|
||||
L 321.283525 90.557468
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #9dcae1"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #9dcae1"/>
|
||||
<path d="M 63.54165 273.612766
|
||||
L 63.639498 273.72
|
||||
L 67.045042 273.72
|
||||
@@ -1260,7 +1260,7 @@ L 319.289295 100.32353
|
||||
L 320.878598 103.189367
|
||||
L 322.550959 106.347342
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #8abfdd"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #8abfdd"/>
|
||||
<path d="M 70.548434 271.267981
|
||||
L 72.925669 273.72
|
||||
L 74.051827 273.72
|
||||
@@ -1664,7 +1664,7 @@ L 46.024688 118.979241
|
||||
L 46.024688 122.137215
|
||||
L 46.024688 124.635128
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #75b4d8"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #75b4d8"/>
|
||||
<path d="M 81.058612 271.85925
|
||||
L 83.049231 273.72
|
||||
L 84.562004 273.72
|
||||
@@ -2150,7 +2150,7 @@ L 46.024688 150.558987
|
||||
L 46.024688 153.716962
|
||||
L 46.024688 156.792419
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #63a8d3"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #63a8d3"/>
|
||||
<path d="M 91.568789 271.434192
|
||||
L 94.296286 273.72
|
||||
L 95.072181 273.72
|
||||
@@ -2668,7 +2668,7 @@ L 87.088238 267.404051
|
||||
L 88.065396 268.314579
|
||||
L 90.566636 270.562025
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #529dcc"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #529dcc"/>
|
||||
<path d="M 105.582358 272.590087
|
||||
L 107.175742 273.72
|
||||
L 109.085751 273.72
|
||||
@@ -3172,7 +3172,7 @@ L 98.860861 267.404051
|
||||
L 102.078966 269.974338
|
||||
L 102.846766 270.562025
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #4191c6"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #4191c6"/>
|
||||
<path d="M 119.595928 271.93918
|
||||
L 122.665273 273.72
|
||||
L 123.09932 273.72
|
||||
@@ -3668,7 +3668,7 @@ L 112.589143 267.436879
|
||||
L 116.092536 269.768667
|
||||
L 117.347251 270.562025
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #3585bf"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #3585bf"/>
|
||||
<path d="M 137.11289 271.062422
|
||||
L 140.616282 272.530449
|
||||
L 143.691671 273.72
|
||||
@@ -4179,7 +4179,7 @@ L 179.153599 271.314915
|
||||
L 175.650206 271.089065
|
||||
L 172.146814 270.750289
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #2777b8"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #2777b8"/>
|
||||
<path d="M 172.146814 270.750289
|
||||
L 175.650206 271.089065
|
||||
L 179.153599 271.314915
|
||||
@@ -4644,7 +4644,7 @@ L 168.643422 259.605991
|
||||
L 165.140029 258.960177
|
||||
L 161.636637 258.185201
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #1c6ab0"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #1c6ab0"/>
|
||||
<path d="M 161.636637 258.185201
|
||||
L 165.140029 258.960177
|
||||
L 168.643422 259.605991
|
||||
@@ -5053,7 +5053,7 @@ L 182.656991 248.931943
|
||||
L 179.153599 248.787167
|
||||
L 175.650206 248.497616
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #125da6"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #125da6"/>
|
||||
<path d="M 175.650206 248.497616
|
||||
L 179.153599 248.787167
|
||||
L 182.656991 248.931943
|
||||
@@ -5402,7 +5402,7 @@ L 175.650206 234.189749
|
||||
L 172.146814 233.645843
|
||||
L 168.643422 232.920636
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #08509b"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #08509b"/>
|
||||
<path d="M 168.643422 232.920636
|
||||
L 172.146814 233.645843
|
||||
L 175.650206 234.189749
|
||||
@@ -5669,7 +5669,7 @@ L 179.153599 215.978494
|
||||
L 175.650206 215.458443
|
||||
L 172.146814 214.678368
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #084488"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #084488"/>
|
||||
<path d="M 172.146814 214.678368
|
||||
L 175.650206 215.458443
|
||||
L 179.153599 215.978494
|
||||
@@ -5779,18 +5779,18 @@ L 165.140029 212.230457
|
||||
L 168.643422 213.63201
|
||||
L 168.913605 213.718481
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: #083674"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: #083674"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m6c66a74206" d="M 0 0
|
||||
<path id="m73f058428b" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="63.322688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="63.322688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -5832,7 +5832,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="97.918688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="97.918688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -5872,7 +5872,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="132.514688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="132.514688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -5908,7 +5908,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="167.110688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="167.110688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -5921,7 +5921,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="201.706688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="201.706688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -5934,7 +5934,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="236.302688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="236.302688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -5979,7 +5979,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="270.898688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="270.898688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -6033,7 +6033,7 @@ z
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m6c66a74206" x="305.494688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m73f058428b" x="305.494688" y="273.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -6149,12 +6149,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="mccf4db59d1" d="M 0 0
|
||||
<path id="mb81e05c5dd" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mccf4db59d1" x="46.024688" y="251.04" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb81e05c5dd" x="46.024688" y="251.04" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -6168,7 +6168,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mccf4db59d1" x="46.024688" y="205.68" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb81e05c5dd" x="46.024688" y="205.68" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -6182,7 +6182,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#mccf4db59d1" x="46.024688" y="160.32" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb81e05c5dd" x="46.024688" y="160.32" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -6196,7 +6196,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mccf4db59d1" x="46.024688" y="114.96" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb81e05c5dd" x="46.024688" y="114.96" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -6210,7 +6210,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mccf4db59d1" x="46.024688" y="69.6" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb81e05c5dd" x="46.024688" y="69.6" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -6225,7 +6225,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mccf4db59d1" x="46.024688" y="24.24" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb81e05c5dd" x="46.024688" y="24.24" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -6262,7 +6262,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<g id="QuadContourSet_2">
|
||||
<path clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 322.792688 40.705907
|
||||
L 322.096651 40.029873
|
||||
L 319.289295 37.367836
|
||||
@@ -6287,7 +6287,7 @@ L 50.064854 36.871899
|
||||
L 49.52808 37.367836
|
||||
L 46.720724 40.029873
|
||||
L 46.024688 40.705907
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 322.792688 61.344282
|
||||
L 320.711104 58.977722
|
||||
L 319.289295 57.405938
|
||||
@@ -6338,7 +6338,7 @@ L 51.000681 55.819747
|
||||
L 49.52808 57.405938
|
||||
L 48.106271 58.977722
|
||||
L 46.024688 61.344282
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 309.551074 273.72
|
||||
L 312.272548 270.562025
|
||||
L 312.28251 270.55009
|
||||
@@ -6445,7 +6445,7 @@ L 50.043344 81.083544
|
||||
L 49.52808 81.796105
|
||||
L 47.805103 84.241519
|
||||
L 46.024688 86.861419
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 285.768144 273.72
|
||||
L 289.100267 270.562025
|
||||
L 292.2311 267.404051
|
||||
@@ -6531,7 +6531,7 @@ L 49.52808 116.004862
|
||||
L 46.972798 122.137215
|
||||
L 46.024688 124.635128
|
||||
L 46.024688 124.635128
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 254.321005 273.72
|
||||
L 259.731624 270.104682
|
||||
L 263.412259 267.404051
|
||||
@@ -6643,7 +6643,7 @@ L 105.582358 267.539715
|
||||
L 109.740165 270.562025
|
||||
L 114.49637 273.72
|
||||
L 114.49637 273.72
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 172.146814 270.750289
|
||||
L 175.650206 271.089065
|
||||
L 179.153599 271.314915
|
||||
@@ -6892,7 +6892,7 @@ L 168.643422 270.290041
|
||||
L 170.686637 270.562025
|
||||
L 172.146814 270.750289
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path d="M 182.656991 242.202139
|
||||
L 186.160384 242.202139
|
||||
L 187.537252 242.140253
|
||||
@@ -7069,8 +7069,8 @@ L 179.153599 242.040292
|
||||
L 181.280123 242.140253
|
||||
L 182.656991 242.202139
|
||||
z
|
||||
" clip-path="url(#p64de9fffce)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path clip-path="url(#p64de9fffce)" style="fill: none; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
" clip-path="url(#p52b8424936)" style="fill: none; stroke-dasharray: 2.59,1.12; stroke-dashoffset: 0; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
<path clip-path="url(#p52b8424936)" style="fill: none; stroke: #ffffff; stroke-opacity: 0.55; stroke-width: 0.7"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 46.024688 273.72
|
||||
@@ -7581,7 +7581,7 @@ z
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<defs>
|
||||
<path id="md52e42ca8c" d="M 0 -8
|
||||
<path id="mbc55251822" d="M 0 -8
|
||||
L -1.796112 -2.472136
|
||||
L -7.608452 -2.472136
|
||||
L -2.90617 0.944272
|
||||
@@ -7594,8 +7594,8 @@ L 1.796112 -2.472136
|
||||
z
|
||||
" style="stroke: #e8850a; stroke-linejoin: bevel"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p64de9fffce)">
|
||||
<use xlink:href="#md52e42ca8c" x="184.408688" y="171.66" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: bevel"/>
|
||||
<g clip-path="url(#p52b8424936)">
|
||||
<use xlink:href="#mbc55251822" x="184.408688" y="171.66" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: bevel"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="legend_1">
|
||||
@@ -7614,7 +7614,7 @@ z
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#md52e42ca8c" x="254.892688" y="40.260313" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: bevel"/>
|
||||
<use xlink:href="#mbc55251822" x="254.892688" y="40.260313" style="fill: #e8850a; stroke: #e8850a; stroke-linejoin: bevel"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
@@ -7690,133 +7690,133 @@ L 352.564688 273.72
|
||||
L 352.564688 261.246
|
||||
L 340.090688 261.246
|
||||
L 340.090688 273.72
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #f2f8fd"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #f2f8fd"/>
|
||||
<path d="M 340.090688 261.246
|
||||
L 352.564688 261.246
|
||||
L 352.564688 248.772
|
||||
L 340.090688 248.772
|
||||
L 340.090688 261.246
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #e8f1fa"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #e8f1fa"/>
|
||||
<path d="M 340.090688 248.772
|
||||
L 352.564688 248.772
|
||||
L 352.564688 236.298
|
||||
L 340.090688 236.298
|
||||
L 340.090688 248.772
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #deebf7"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #deebf7"/>
|
||||
<path d="M 340.090688 236.298
|
||||
L 352.564688 236.298
|
||||
L 352.564688 223.824
|
||||
L 340.090688 223.824
|
||||
L 340.090688 236.298
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #d5e5f4"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #d5e5f4"/>
|
||||
<path d="M 340.090688 223.824
|
||||
L 352.564688 223.824
|
||||
L 352.564688 211.35
|
||||
L 340.090688 211.35
|
||||
L 340.090688 223.824
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #cbdef1"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #cbdef1"/>
|
||||
<path d="M 340.090688 211.35
|
||||
L 352.564688 211.35
|
||||
L 352.564688 198.876
|
||||
L 340.090688 198.876
|
||||
L 340.090688 211.35
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #bed8ec"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #bed8ec"/>
|
||||
<path d="M 340.090688 198.876
|
||||
L 352.564688 198.876
|
||||
L 352.564688 186.402
|
||||
L 340.090688 186.402
|
||||
L 340.090688 198.876
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #aed1e7"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #aed1e7"/>
|
||||
<path d="M 340.090688 186.402
|
||||
L 352.564688 186.402
|
||||
L 352.564688 173.928
|
||||
L 340.090688 173.928
|
||||
L 340.090688 186.402
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #9dcae1"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #9dcae1"/>
|
||||
<path d="M 340.090688 173.928
|
||||
L 352.564688 173.928
|
||||
L 352.564688 161.454
|
||||
L 340.090688 161.454
|
||||
L 340.090688 173.928
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #8abfdd"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #8abfdd"/>
|
||||
<path d="M 340.090688 161.454
|
||||
L 352.564688 161.454
|
||||
L 352.564688 148.98
|
||||
L 340.090688 148.98
|
||||
L 340.090688 161.454
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #75b4d8"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #75b4d8"/>
|
||||
<path d="M 340.090688 148.98
|
||||
L 352.564688 148.98
|
||||
L 352.564688 136.506
|
||||
L 340.090688 136.506
|
||||
L 340.090688 148.98
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #63a8d3"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #63a8d3"/>
|
||||
<path d="M 340.090688 136.506
|
||||
L 352.564688 136.506
|
||||
L 352.564688 124.032
|
||||
L 340.090688 124.032
|
||||
L 340.090688 136.506
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #529dcc"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #529dcc"/>
|
||||
<path d="M 340.090688 124.032
|
||||
L 352.564688 124.032
|
||||
L 352.564688 111.558
|
||||
L 340.090688 111.558
|
||||
L 340.090688 124.032
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #4191c6"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #4191c6"/>
|
||||
<path d="M 340.090688 111.558
|
||||
L 352.564688 111.558
|
||||
L 352.564688 99.084
|
||||
L 340.090688 99.084
|
||||
L 340.090688 111.558
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #3585bf"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #3585bf"/>
|
||||
<path d="M 340.090688 99.084
|
||||
L 352.564688 99.084
|
||||
L 352.564688 86.61
|
||||
L 340.090688 86.61
|
||||
L 340.090688 99.084
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #2777b8"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #2777b8"/>
|
||||
<path d="M 340.090688 86.61
|
||||
L 352.564688 86.61
|
||||
L 352.564688 74.136
|
||||
L 340.090688 74.136
|
||||
L 340.090688 86.61
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #1c6ab0"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #1c6ab0"/>
|
||||
<path d="M 340.090688 74.136
|
||||
L 352.564688 74.136
|
||||
L 352.564688 61.662
|
||||
L 340.090688 61.662
|
||||
L 340.090688 74.136
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #125da6"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #125da6"/>
|
||||
<path d="M 340.090688 61.662
|
||||
L 352.564688 61.662
|
||||
L 352.564688 49.188
|
||||
L 340.090688 49.188
|
||||
L 340.090688 61.662
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #08509b"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #08509b"/>
|
||||
<path d="M 340.090688 49.188
|
||||
L 352.564688 49.188
|
||||
L 352.564688 36.714
|
||||
L 340.090688 36.714
|
||||
L 340.090688 49.188
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #084488"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #084488"/>
|
||||
<path d="M 340.090688 36.714
|
||||
L 352.564688 36.714
|
||||
L 352.564688 24.24
|
||||
L 340.090688 24.24
|
||||
L 340.090688 36.714
|
||||
" clip-path="url(#pf25db7ca2d)" style="fill: #083674"/>
|
||||
" clip-path="url(#pe3a7327c3f)" style="fill: #083674"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3"/>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_17">
|
||||
<defs>
|
||||
<path id="m69fab92e07" d="M 0 0
|
||||
<path id="m56e558eba4" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="248.772" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="248.772" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
@@ -7842,7 +7842,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="211.35" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="211.35" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
@@ -7859,7 +7859,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="173.928" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="173.928" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
@@ -7907,7 +7907,7 @@ z
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="136.506" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="136.506" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
@@ -7935,7 +7935,7 @@ z
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_21">
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="99.084" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="99.084" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
@@ -7951,7 +7951,7 @@ z
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="61.662" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="61.662" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
@@ -7967,7 +7967,7 @@ z
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#m69fab92e07" x="352.564688" y="24.24" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m56e558eba4" x="352.564688" y="24.24" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_25">
|
||||
@@ -8078,10 +8078,10 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p64de9fffce">
|
||||
<clipPath id="p52b8424936">
|
||||
<rect x="46.024688" y="24.24" width="276.768" height="249.48"/>
|
||||
</clipPath>
|
||||
<clipPath id="pf25db7ca2d">
|
||||
<clipPath id="pe3a7327c3f">
|
||||
<rect x="340.090688" y="24.24" width="12.474" height="249.48"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 194 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:32.455250</dc:date>
|
||||
<dc:date>2026-03-07T13:33:15.077217</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m46d1c34b30" d="M 66.639545 -114.529386
|
||||
<path id="m5e3f44cb65" d="M 66.639545 -114.529386
|
||||
L 66.639545 -47.13225
|
||||
L 66.81718 -47.13225
|
||||
L 66.994814 -47.13225
|
||||
@@ -4044,20 +4044,20 @@ L 66.639545 -114.529386
|
||||
z
|
||||
" style="stroke: #888888; stroke-opacity: 0.1"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p281a9ef039)">
|
||||
<use xlink:href="#m46d1c34b30" x="0" y="270.546375" style="fill: #888888; fill-opacity: 0.1; stroke: #888888; stroke-opacity: 0.1"/>
|
||||
<g clip-path="url(#p1f8ccc08cc)">
|
||||
<use xlink:href="#m5e3f44cb65" x="0" y="270.546375" style="fill: #888888; fill-opacity: 0.1; stroke: #888888; stroke-opacity: 0.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mab12a9313f" d="M 0 0
|
||||
<path id="m037011d455" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mab12a9313f" x="66.639545" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m037011d455" x="66.639545" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -4093,7 +4093,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mab12a9313f" x="137.657727" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m037011d455" x="137.657727" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -4122,7 +4122,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mab12a9313f" x="208.675909" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m037011d455" x="208.675909" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -4161,7 +4161,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mab12a9313f" x="279.694091" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m037011d455" x="279.694091" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -4208,7 +4208,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mab12a9313f" x="350.712273" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m037011d455" x="350.712273" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -4242,7 +4242,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#mab12a9313f" x="421.730455" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m037011d455" x="421.730455" y="232.990125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -4317,12 +4317,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m5caf690b09" d="M 0 0
|
||||
<path id="m33330b3341" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="215.51065" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="215.51065" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -4347,7 +4347,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="189.715557" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="189.715557" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -4363,7 +4363,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="163.920465" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="163.920465" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -4391,7 +4391,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="138.125372" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="138.125372" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -4407,7 +4407,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="112.330279" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="112.330279" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -4423,7 +4423,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="86.535187" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="86.535187" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -4439,7 +4439,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="60.740094" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="60.740094" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -4455,7 +4455,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m5caf690b09" x="48.885" y="34.945002" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m33330b3341" x="48.885" y="34.945002" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -6080,12 +6080,12 @@ L 421.375186 201.217981
|
||||
L 421.55282 202.718061
|
||||
L 421.730455 202.383921
|
||||
L 421.730455 202.383921
|
||||
" clip-path="url(#p281a9ef039)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.9; stroke-linecap: square"/>
|
||||
" clip-path="url(#p1f8ccc08cc)" style="fill: none; stroke: #2e6be5; stroke-opacity: 0.9; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 48.885 189.715557
|
||||
L 439.485 189.715557
|
||||
" clip-path="url(#p281a9ef039)" style="fill: none; stroke-dasharray: 6.66,2.88; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.8"/>
|
||||
" clip-path="url(#p1f8ccc08cc)" style="fill: none; stroke-dasharray: 6.66,2.88; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.8"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 48.885 232.990125
|
||||
@@ -6832,7 +6832,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p281a9ef039">
|
||||
<clipPath id="p1f8ccc08cc">
|
||||
<rect x="48.885" y="22.318125" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 168 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:33.608879</dc:date>
|
||||
<dc:date>2026-03-07T13:33:16.256090</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -43,7 +43,7 @@ L 111.090303 234.912
|
||||
L 111.090303 221.536
|
||||
L 104.376762 221.536
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 111.090303 234.912
|
||||
@@ -51,7 +51,7 @@ L 117.803845 234.912
|
||||
L 117.803845 225.994667
|
||||
L 111.090303 225.994667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 117.803845 234.912
|
||||
@@ -59,7 +59,7 @@ L 124.517386 234.912
|
||||
L 124.517386 230.453333
|
||||
L 117.803845 230.453333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 124.517386 234.912
|
||||
@@ -67,7 +67,7 @@ L 131.230928 234.912
|
||||
L 131.230928 217.077333
|
||||
L 124.517386 217.077333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_7">
|
||||
<path d="M 131.230928 234.912
|
||||
@@ -75,7 +75,7 @@ L 137.944469 234.912
|
||||
L 137.944469 230.453333
|
||||
L 131.230928 230.453333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path d="M 137.944469 234.912
|
||||
@@ -83,7 +83,7 @@ L 144.658011 234.912
|
||||
L 144.658011 212.618667
|
||||
L 137.944469 212.618667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_9">
|
||||
<path d="M 144.658011 234.912
|
||||
@@ -91,7 +91,7 @@ L 151.371552 234.912
|
||||
L 151.371552 176.949333
|
||||
L 144.658011 176.949333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_10">
|
||||
<path d="M 151.371552 234.912
|
||||
@@ -99,7 +99,7 @@ L 158.085094 234.912
|
||||
L 158.085094 172.490667
|
||||
L 151.371552 172.490667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_11">
|
||||
<path d="M 158.085094 234.912
|
||||
@@ -107,7 +107,7 @@ L 164.798635 234.912
|
||||
L 164.798635 172.490667
|
||||
L 158.085094 172.490667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_12">
|
||||
<path d="M 164.798635 234.912
|
||||
@@ -115,7 +115,7 @@ L 171.512177 234.912
|
||||
L 171.512177 181.408
|
||||
L 164.798635 181.408
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_13">
|
||||
<path d="M 171.512177 234.912
|
||||
@@ -123,7 +123,7 @@ L 178.225718 234.912
|
||||
L 178.225718 127.904
|
||||
L 171.512177 127.904
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_14">
|
||||
<path d="M 178.225718 234.912
|
||||
@@ -131,7 +131,7 @@ L 184.93926 234.912
|
||||
L 184.93926 56.565333
|
||||
L 178.225718 56.565333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_15">
|
||||
<path d="M 184.93926 234.912
|
||||
@@ -139,7 +139,7 @@ L 191.652801 234.912
|
||||
L 191.652801 118.986667
|
||||
L 184.93926 118.986667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_16">
|
||||
<path d="M 191.652801 234.912
|
||||
@@ -147,7 +147,7 @@ L 198.366343 234.912
|
||||
L 198.366343 69.941333
|
||||
L 191.652801 69.941333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_17">
|
||||
<path d="M 198.366343 234.912
|
||||
@@ -155,7 +155,7 @@ L 205.079885 234.912
|
||||
L 205.079885 92.234667
|
||||
L 198.366343 92.234667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_18">
|
||||
<path d="M 205.079885 234.912
|
||||
@@ -163,7 +163,7 @@ L 211.793426 234.912
|
||||
L 211.793426 83.317333
|
||||
L 205.079885 83.317333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_19">
|
||||
<path d="M 211.793426 234.912
|
||||
@@ -171,7 +171,7 @@ L 218.506968 234.912
|
||||
L 218.506968 52.106667
|
||||
L 211.793426 52.106667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_20">
|
||||
<path d="M 218.506968 234.912
|
||||
@@ -179,7 +179,7 @@ L 225.220509 234.912
|
||||
L 225.220509 34.272
|
||||
L 218.506968 34.272
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_21">
|
||||
<path d="M 225.220509 234.912
|
||||
@@ -187,7 +187,7 @@ L 231.934051 234.912
|
||||
L 231.934051 83.317333
|
||||
L 225.220509 83.317333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_22">
|
||||
<path d="M 231.934051 234.912
|
||||
@@ -195,7 +195,7 @@ L 238.647592 234.912
|
||||
L 238.647592 52.106667
|
||||
L 231.934051 52.106667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_23">
|
||||
<path d="M 238.647592 234.912
|
||||
@@ -203,7 +203,7 @@ L 245.361134 234.912
|
||||
L 245.361134 96.693333
|
||||
L 238.647592 96.693333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_24">
|
||||
<path d="M 245.361134 234.912
|
||||
@@ -211,7 +211,7 @@ L 252.074675 234.912
|
||||
L 252.074675 74.4
|
||||
L 245.361134 74.4
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_25">
|
||||
<path d="M 252.074675 234.912
|
||||
@@ -219,7 +219,7 @@ L 258.788217 234.912
|
||||
L 258.788217 114.528
|
||||
L 252.074675 114.528
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_26">
|
||||
<path d="M 258.788217 234.912
|
||||
@@ -227,7 +227,7 @@ L 265.501758 234.912
|
||||
L 265.501758 136.821333
|
||||
L 258.788217 136.821333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_27">
|
||||
<path d="M 265.501758 234.912
|
||||
@@ -235,7 +235,7 @@ L 272.2153 234.912
|
||||
L 272.2153 159.114667
|
||||
L 265.501758 159.114667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_28">
|
||||
<path d="M 272.2153 234.912
|
||||
@@ -243,7 +243,7 @@ L 278.928841 234.912
|
||||
L 278.928841 172.490667
|
||||
L 272.2153 172.490667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_29">
|
||||
<path d="M 278.928841 234.912
|
||||
@@ -251,7 +251,7 @@ L 285.642383 234.912
|
||||
L 285.642383 208.16
|
||||
L 278.928841 208.16
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_30">
|
||||
<path d="M 285.642383 234.912
|
||||
@@ -259,7 +259,7 @@ L 292.355924 234.912
|
||||
L 292.355924 181.408
|
||||
L 285.642383 181.408
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_31">
|
||||
<path d="M 292.355924 234.912
|
||||
@@ -267,7 +267,7 @@ L 299.069466 234.912
|
||||
L 299.069466 217.077333
|
||||
L 292.355924 217.077333
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_32">
|
||||
<path d="M 299.069466 234.912
|
||||
@@ -275,7 +275,7 @@ L 305.783008 234.912
|
||||
L 305.783008 221.536
|
||||
L 299.069466 221.536
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_33">
|
||||
<path d="M 305.783008 234.912
|
||||
@@ -283,7 +283,7 @@ L 312.496549 234.912
|
||||
L 312.496549 225.994667
|
||||
L 305.783008 225.994667
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_34">
|
||||
<path d="M 312.496549 234.912
|
||||
@@ -291,18 +291,18 @@ L 319.210091 234.912
|
||||
L 319.210091 221.536
|
||||
L 312.496549 221.536
|
||||
z
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: #2e6be5; opacity: 0.5"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m671e90381b" d="M 0 0
|
||||
<path id="mc554dbe4fa" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="64.103182" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="64.103182" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -344,7 +344,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="102.148636" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="102.148636" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -392,7 +392,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="140.194091" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="140.194091" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -432,7 +432,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="178.239545" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="178.239545" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -462,7 +462,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="216.285" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="216.285" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -498,7 +498,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="254.330455" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="254.330455" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -511,7 +511,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="292.375909" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="292.375909" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -524,7 +524,7 @@ z
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="330.421364" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="330.421364" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -537,7 +537,7 @@ z
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m671e90381b" x="368.466818" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc554dbe4fa" x="368.466818" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -591,12 +591,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_10">
|
||||
<defs>
|
||||
<path id="m9756febbe7" d="M 0 0
|
||||
<path id="m91a5fc3038" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="234.912" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -621,7 +621,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="211.308568" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="211.308568" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -664,7 +664,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="187.705135" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="187.705135" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -680,7 +680,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="164.101703" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="164.101703" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -696,7 +696,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="140.49827" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="140.49827" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -712,7 +712,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="116.894838" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="116.894838" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -728,7 +728,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="93.291405" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="93.291405" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -744,7 +744,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="69.687973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="69.687973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
@@ -760,7 +760,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#m9756febbe7" x="48.885" y="46.084541" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m91a5fc3038" x="48.885" y="46.084541" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
@@ -1021,7 +1021,7 @@ L 349.125985 234.487815
|
||||
L 358.287432 234.734249
|
||||
L 368.466818 234.848823
|
||||
L 368.466818 234.848823
|
||||
" clip-path="url(#pd2503bb62f)" style="fill: none; stroke: #e8850a; stroke-width: 2.2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pbd94ce1168)" style="fill: none; stroke: #e8850a; stroke-width: 2.2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_35">
|
||||
<path d="M 48.885 234.912
|
||||
@@ -1663,7 +1663,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pd2503bb62f">
|
||||
<clipPath id="pbd94ce1168">
|
||||
<rect x="48.885" y="24.24" width="334.8" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:32.779442</dc:date>
|
||||
<dc:date>2026-03-07T13:33:15.379636</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m9449d46e40" d="M 61.267358 -47.13225
|
||||
<path id="m093648a96e" d="M 61.267358 -47.13225
|
||||
L 61.267358 -47.13225
|
||||
L 61.978963 -47.13225
|
||||
L 62.690568 -47.13225
|
||||
@@ -1044,13 +1044,13 @@ L 61.267358 -47.13225
|
||||
z
|
||||
" style="stroke: #d62728; stroke-opacity: 0.09"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p9b05fcc7e2)">
|
||||
<use xlink:href="#m9449d46e40" x="0" y="270.66825" style="fill: #d62728; fill-opacity: 0.09; stroke: #d62728; stroke-opacity: 0.09"/>
|
||||
<g clip-path="url(#pbfcd3c9241)">
|
||||
<use xlink:href="#m093648a96e" x="0" y="270.66825" style="fill: #d62728; fill-opacity: 0.09; stroke: #d62728; stroke-opacity: 0.09"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="ma1341e1689" d="M 61.267358 -47.13225
|
||||
<path id="mfed8867b3b" d="M 61.267358 -47.13225
|
||||
L 61.267358 -47.13225
|
||||
L 61.978963 -47.13225
|
||||
L 62.690568 -47.13225
|
||||
@@ -2055,13 +2055,13 @@ L 61.267358 -47.13225
|
||||
z
|
||||
" style="stroke: #27ae60; stroke-opacity: 0.09"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p9b05fcc7e2)">
|
||||
<use xlink:href="#ma1341e1689" x="0" y="270.66825" style="fill: #27ae60; fill-opacity: 0.09; stroke: #27ae60; stroke-opacity: 0.09"/>
|
||||
<g clip-path="url(#pbfcd3c9241)">
|
||||
<use xlink:href="#mfed8867b3b" x="0" y="270.66825" style="fill: #27ae60; fill-opacity: 0.09; stroke: #27ae60; stroke-opacity: 0.09"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="maf7a393b6f" d="M 61.267358 -47.13225
|
||||
<path id="ma649b81a59" d="M 61.267358 -47.13225
|
||||
L 61.267358 -47.132957
|
||||
L 61.978963 -47.133092
|
||||
L 62.690568 -47.133251
|
||||
@@ -3066,20 +3066,20 @@ L 61.267358 -47.13225
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.09"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p9b05fcc7e2)">
|
||||
<use xlink:href="#maf7a393b6f" x="0" y="270.66825" style="fill: #2e6be5; fill-opacity: 0.09; stroke: #2e6be5; stroke-opacity: 0.09"/>
|
||||
<g clip-path="url(#pbfcd3c9241)">
|
||||
<use xlink:href="#ma649b81a59" x="0" y="270.66825" style="fill: #2e6be5; fill-opacity: 0.09; stroke: #2e6be5; stroke-opacity: 0.09"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m4481f5eb4a" d="M 0 0
|
||||
<path id="mdb6fa5cc84" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m4481f5eb4a" x="98.0009" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdb6fa5cc84" x="98.0009" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -3124,7 +3124,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m4481f5eb4a" x="159.223471" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdb6fa5cc84" x="159.223471" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -3166,7 +3166,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m4481f5eb4a" x="220.446041" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdb6fa5cc84" x="220.446041" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -3197,7 +3197,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m4481f5eb4a" x="281.668612" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdb6fa5cc84" x="281.668612" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -3212,7 +3212,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m4481f5eb4a" x="342.891182" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdb6fa5cc84" x="342.891182" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -3253,7 +3253,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m4481f5eb4a" x="404.113753" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdb6fa5cc84" x="404.113753" y="233.112" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -3293,12 +3293,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m8a7759b22d" d="M 0 0
|
||||
<path id="m7d3290d429" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="223.536" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="223.536" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -3313,7 +3313,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="197.206122" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="197.206122" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -3328,7 +3328,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="170.876245" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="170.876245" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -3343,7 +3343,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="144.546367" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="144.546367" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -3358,7 +3358,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="118.21649" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="118.21649" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -3373,7 +3373,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="91.886612" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="91.886612" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -3388,7 +3388,7 @@ L -3.5 0
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="65.556735" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="65.556735" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -3437,7 +3437,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m8a7759b22d" x="43.512813" y="39.226857" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7d3290d429" x="43.512813" y="39.226857" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -3616,7 +3616,7 @@ L 355.87184 223.528691
|
||||
L 409.242217 223.536
|
||||
L 416.358267 223.536
|
||||
L 416.358267 223.536
|
||||
" clip-path="url(#p9b05fcc7e2)" style="fill: none; stroke: #d62728; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pbfcd3c9241)" style="fill: none; stroke: #d62728; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 61.267358 223.536
|
||||
@@ -3687,7 +3687,7 @@ L 284.711337 223.525069
|
||||
L 338.081714 223.536
|
||||
L 416.358267 223.536
|
||||
L 416.358267 223.536
|
||||
" clip-path="url(#p9b05fcc7e2)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pbfcd3c9241)" style="fill: none; stroke: #27ae60; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 61.267358 223.535293
|
||||
@@ -3761,12 +3761,12 @@ L 244.14985 223.518862
|
||||
L 281.864917 223.535999
|
||||
L 416.358267 223.536
|
||||
L 416.358267 223.536
|
||||
" clip-path="url(#p9b05fcc7e2)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pbfcd3c9241)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 159.223471 233.112
|
||||
L 159.223471 22.44
|
||||
" clip-path="url(#p9b05fcc7e2)" style="fill: none; stroke-dasharray: 4.81,2.08; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.3"/>
|
||||
" clip-path="url(#pbfcd3c9241)" style="fill: none; stroke-dasharray: 4.81,2.08; stroke-dashoffset: 0; stroke: #e8850a; stroke-width: 1.3"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 43.512813 233.112
|
||||
@@ -4440,7 +4440,7 @@ L 69.612813 73.859531
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p9b05fcc7e2">
|
||||
<clipPath id="pbfcd3c9241">
|
||||
<rect x="43.512813" y="22.44" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:31.133645</dc:date>
|
||||
<dc:date>2026-03-07T13:33:13.834745</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="me369ede25e" d="M 0 0
|
||||
<path id="mf6034b67b3" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="64.017358" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="64.017358" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -91,7 +91,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="111.362812" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="111.362812" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -132,7 +132,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="158.708267" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="158.708267" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -168,7 +168,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="206.053722" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="206.053722" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -215,7 +215,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="253.399176" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="253.399176" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -271,7 +271,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="300.744631" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="300.744631" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -302,7 +302,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="348.090085" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="348.090085" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -317,7 +317,7 @@ z
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#me369ede25e" x="395.43554" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mf6034b67b3" x="395.43554" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -367,12 +367,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m1c6569fd03" d="M 0 0
|
||||
<path id="mcaae199d5f" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="222.96" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="222.96" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -387,7 +387,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="197.88" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="197.88" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -429,7 +429,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="172.8" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="172.8" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -444,7 +444,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="147.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="147.72" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -459,7 +459,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="122.64" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="122.64" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -508,7 +508,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="97.56" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="97.56" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -523,7 +523,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="72.48" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="72.48" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -538,7 +538,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="47.4" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="47.4" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -553,7 +553,7 @@ z
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#m1c6569fd03" x="46.262812" y="22.32" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcaae199d5f" x="46.262812" y="22.32" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
@@ -646,13 +646,13 @@ z
|
||||
<path d="M 64.017358 222.96
|
||||
L 419.108267 222.96
|
||||
L 419.108267 222.96
|
||||
" clip-path="url(#pb819314c9a)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #888888; stroke-width: 1.5"/>
|
||||
" clip-path="url(#p351da5ab96)" style="fill: none; stroke-dasharray: 1.5,2.475; stroke-dashoffset: 0; stroke: #888888; stroke-width: 1.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 64.017358 222.96
|
||||
L 419.108267 147.72
|
||||
L 419.108267 147.72
|
||||
" clip-path="url(#pb819314c9a)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 1.5"/>
|
||||
" clip-path="url(#p351da5ab96)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 1.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 64.017358 222.96
|
||||
@@ -679,7 +679,7 @@ L 391.793582 105.425325
|
||||
L 408.419912 96.900746
|
||||
L 419.108267 91.29
|
||||
L 419.108267 91.29
|
||||
" clip-path="url(#pb819314c9a)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #27ae60; stroke-width: 1.5"/>
|
||||
" clip-path="url(#p351da5ab96)" style="fill: none; stroke-dasharray: 5.55,2.4; stroke-dashoffset: 0; stroke: #27ae60; stroke-width: 1.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 64.017358 222.96
|
||||
@@ -712,7 +712,7 @@ L 398.919152 78.131384
|
||||
L 409.607507 70.272073
|
||||
L 419.108267 63.075
|
||||
L 419.108267 63.075
|
||||
" clip-path="url(#pb819314c9a)" style="fill: none; stroke: #e8850a; stroke-width: 1.8; stroke-linecap: square"/>
|
||||
" clip-path="url(#p351da5ab96)" style="fill: none; stroke: #e8850a; stroke-width: 1.8; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 64.017358 222.96
|
||||
@@ -749,7 +749,7 @@ L 407.232317 59.317932
|
||||
L 415.545482 51.676444
|
||||
L 419.108267 48.318476
|
||||
L 419.108267 48.318476
|
||||
" clip-path="url(#pb819314c9a)" style="fill: none; stroke: #2e6be5; stroke-width: 2.2; stroke-linecap: square"/>
|
||||
" clip-path="url(#p351da5ab96)" style="fill: none; stroke: #2e6be5; stroke-width: 2.2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 46.262812 232.992
|
||||
@@ -1499,7 +1499,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pb819314c9a">
|
||||
<clipPath id="p351da5ab96">
|
||||
<rect x="46.262812" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:33.945317</dc:date>
|
||||
<dc:date>2026-03-07T13:33:16.569659</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m557961146f" d="M 0 0
|
||||
<path id="m515b801075" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="52.326733" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="52.326733" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -91,7 +91,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="96.713097" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="96.713097" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -133,7 +133,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="141.09946" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="141.09946" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -164,7 +164,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="185.485824" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="185.485824" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -179,7 +179,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="229.872188" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="229.872188" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -220,7 +220,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="274.258551" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="274.258551" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -235,7 +235,7 @@ z
|
||||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="318.644915" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="318.644915" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -284,7 +284,7 @@ z
|
||||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="363.031278" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="363.031278" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -299,7 +299,7 @@ z
|
||||
<g id="xtick_9">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m557961146f" x="407.417642" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m515b801075" x="407.417642" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -370,12 +370,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_10">
|
||||
<defs>
|
||||
<path id="me5213978e1" d="M 0 0
|
||||
<path id="m3ccee1484d" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me5213978e1" x="34.572188" y="207.54" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3ccee1484d" x="34.572188" y="207.54" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -388,7 +388,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#me5213978e1" x="34.572188" y="172.26" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3ccee1484d" x="34.572188" y="172.26" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -401,7 +401,7 @@ L -3.5 0
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#me5213978e1" x="34.572188" y="136.98" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3ccee1484d" x="34.572188" y="136.98" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -414,7 +414,7 @@ L -3.5 0
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#me5213978e1" x="34.572188" y="101.7" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3ccee1484d" x="34.572188" y="101.7" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -427,7 +427,7 @@ L -3.5 0
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#me5213978e1" x="34.572188" y="66.42" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3ccee1484d" x="34.572188" y="66.42" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -440,7 +440,7 @@ L -3.5 0
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#me5213978e1" x="34.572188" y="31.14" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3ccee1484d" x="34.572188" y="31.14" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
@@ -476,57 +476,57 @@ z
|
||||
<g id="LineCollection_1">
|
||||
<path d="M 52.326733 207.54
|
||||
L 99.95459 207.54
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 99.95459 207.54
|
||||
L 99.95459 172.26
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 99.95459 172.26
|
||||
L 113.645703 172.26
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
</g>
|
||||
<g id="LineCollection_4">
|
||||
<path d="M 113.645703 172.26
|
||||
L 113.645703 136.98
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="LineCollection_5">
|
||||
<path d="M 113.645703 136.98
|
||||
L 352.241799 136.98
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
</g>
|
||||
<g id="LineCollection_6">
|
||||
<path d="M 352.241799 136.98
|
||||
L 352.241799 101.7
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="LineCollection_7">
|
||||
<path d="M 352.241799 101.7
|
||||
L 368.506166 101.7
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
</g>
|
||||
<g id="LineCollection_8">
|
||||
<path d="M 368.506166 101.7
|
||||
L 368.506166 66.42
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="LineCollection_9">
|
||||
<path d="M 368.506166 66.42
|
||||
L 373.626667 66.42
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
</g>
|
||||
<g id="LineCollection_10">
|
||||
<path d="M 373.626667 66.42
|
||||
L 373.626667 31.14
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke-dasharray: 2,3.3; stroke-dashoffset: 0; stroke: #2e6be5; stroke-width: 2"/>
|
||||
</g>
|
||||
<g id="LineCollection_11">
|
||||
<path d="M 373.626667 31.14
|
||||
L 407.417642 31.14
|
||||
" clip-path="url(#paeb1016b3b)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
" clip-path="url(#p57dd7ccd21)" style="fill: none; stroke: #2e6be5; stroke-width: 2.8"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 34.572188 216.36
|
||||
@@ -1069,7 +1069,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="m6564aa1df2" d="M 0 3.354102
|
||||
<path id="mbe4f18bea0" d="M 0 3.354102
|
||||
C 0.889518 3.354102 1.742724 3.000693 2.371708 2.371708
|
||||
C 3.000693 1.742724 3.354102 0.889518 3.354102 0
|
||||
C 3.354102 -0.889518 3.000693 -1.742724 2.371708 -2.371708
|
||||
@@ -1081,13 +1081,13 @@ C -1.742724 3.000693 -0.889518 3.354102 0 3.354102
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
</defs>
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m6564aa1df2" x="99.95459" y="207.54" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#mbe4f18bea0" x="99.95459" y="207.54" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<defs>
|
||||
<path id="m8714dfb9ce" d="M 0 3.354102
|
||||
<path id="m053ad6aead" d="M 0 3.354102
|
||||
C 0.889518 3.354102 1.742724 3.000693 2.371708 2.371708
|
||||
C 3.000693 1.742724 3.354102 0.889518 3.354102 0
|
||||
C 3.354102 -0.889518 3.000693 -1.742724 2.371708 -2.371708
|
||||
@@ -1099,54 +1099,54 @@ C -1.742724 3.000693 -0.889518 3.354102 0 3.354102
|
||||
z
|
||||
" style="stroke: #2e6be5"/>
|
||||
</defs>
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m8714dfb9ce" x="99.95459" y="172.26" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#m053ad6aead" x="99.95459" y="172.26" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m6564aa1df2" x="113.645703" y="172.26" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#mbe4f18bea0" x="113.645703" y="172.26" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m8714dfb9ce" x="113.645703" y="136.98" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#m053ad6aead" x="113.645703" y="136.98" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_5">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m6564aa1df2" x="352.241799" y="136.98" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#mbe4f18bea0" x="352.241799" y="136.98" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_6">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m8714dfb9ce" x="352.241799" y="101.7" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#m053ad6aead" x="352.241799" y="101.7" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_7">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m6564aa1df2" x="368.506166" y="101.7" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#mbe4f18bea0" x="368.506166" y="101.7" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_8">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m8714dfb9ce" x="368.506166" y="66.42" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#m053ad6aead" x="368.506166" y="66.42" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_9">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m6564aa1df2" x="373.626667" y="66.42" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#mbe4f18bea0" x="373.626667" y="66.42" style="fill: #ffffff; stroke: #2e6be5; stroke-width: 1.5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_10">
|
||||
<g clip-path="url(#paeb1016b3b)">
|
||||
<use xlink:href="#m8714dfb9ce" x="373.626667" y="31.14" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
<g clip-path="url(#p57dd7ccd21)">
|
||||
<use xlink:href="#m053ad6aead" x="373.626667" y="31.14" style="fill: #2e6be5; stroke: #2e6be5"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="paeb1016b3b">
|
||||
<clipPath id="p57dd7ccd21">
|
||||
<rect x="34.572188" y="22.32" width="390.6" height="194.04"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:29.907235</dc:date>
|
||||
<dc:date>2026-03-07T13:33:12.616712</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -41,12 +41,12 @@ z
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m04c16c7aa7" d="M 0 0
|
||||
<path id="mea22db5413" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m04c16c7aa7" x="71.559077" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mea22db5413" x="71.559077" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -91,7 +91,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m04c16c7aa7" x="142.577259" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mea22db5413" x="142.577259" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -132,7 +132,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m04c16c7aa7" x="213.59544" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mea22db5413" x="213.59544" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -168,7 +168,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m04c16c7aa7" x="284.613622" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mea22db5413" x="284.613622" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -215,7 +215,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m04c16c7aa7" x="355.631804" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mea22db5413" x="355.631804" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -271,7 +271,7 @@ z
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m04c16c7aa7" x="426.649986" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mea22db5413" x="426.649986" y="216.36" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
@@ -337,12 +337,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="mc1a34b9c43" d="M 0 0
|
||||
<path id="m9401ecfd13" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="203.073441" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="203.073441" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -367,7 +367,7 @@ z
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="177.612294" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="177.612294" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -383,7 +383,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="152.151147" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="152.151147" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -399,7 +399,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="126.69" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="126.69" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -414,7 +414,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="101.228853" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="101.228853" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -429,7 +429,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="75.767706" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="75.767706" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
@@ -444,7 +444,7 @@ z
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="50.306559" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="50.306559" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
@@ -459,7 +459,7 @@ z
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mc1a34b9c43" x="53.804531" y="24.845413" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m9401ecfd13" x="53.804531" y="24.845413" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
@@ -718,12 +718,12 @@ L 419.524416 200.19
|
||||
L 423.087201 178.14
|
||||
L 426.649986 200.19
|
||||
L 426.649986 200.19
|
||||
" clip-path="url(#p4ed1376e72)" style="fill: none; stroke: #2e6be5; stroke-width: 1.4; stroke-linecap: square"/>
|
||||
" clip-path="url(#pe69f06c934)" style="fill: none; stroke: #2e6be5; stroke-width: 1.4; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 53.804531 126.69
|
||||
L 444.404531 126.69
|
||||
" clip-path="url(#p4ed1376e72)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #888888; stroke-opacity: 0.6; stroke-width: 0.8"/>
|
||||
" clip-path="url(#pe69f06c934)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #888888; stroke-opacity: 0.6; stroke-width: 0.8"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 53.804531 216.36
|
||||
@@ -1265,7 +1265,7 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p4ed1376e72">
|
||||
<clipPath id="pe69f06c934">
|
||||
<rect x="53.804531" y="22.32" width="390.6" height="194.04"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
@@ -6,7 +6,7 @@
|
||||
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<cc:Work>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:date>2026-03-07T11:02:29.611418</dc:date>
|
||||
<dc:date>2026-03-07T13:33:12.326153</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
@@ -39,7 +39,7 @@ z
|
||||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m3036e1cb83" d="M 58.052983 -47.13225
|
||||
<path id="m8543fb50ed" d="M 58.052983 -47.13225
|
||||
L 58.052983 -238.65225
|
||||
L 58.497402 -238.36786
|
||||
L 58.941821 -237.971348
|
||||
@@ -1644,20 +1644,20 @@ L 58.052983 -47.13225
|
||||
z
|
||||
" style="stroke: #2e6be5; stroke-opacity: 0.07"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pa4e6fc9e59)">
|
||||
<use xlink:href="#m3036e1cb83" x="0" y="270.54825" style="fill: #2e6be5; fill-opacity: 0.07; stroke: #2e6be5; stroke-opacity: 0.07"/>
|
||||
<g clip-path="url(#pf1141bd1fb)">
|
||||
<use xlink:href="#m8543fb50ed" x="0" y="270.54825" style="fill: #2e6be5; fill-opacity: 0.07; stroke: #2e6be5; stroke-opacity: 0.07"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m0dc255d7e3" d="M 0 0
|
||||
<path id="med81985545" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m0dc255d7e3" x="93.562074" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#med81985545" x="93.562074" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
@@ -1704,7 +1704,7 @@ z
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m0dc255d7e3" x="164.580256" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#med81985545" x="164.580256" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
@@ -1734,7 +1734,7 @@ z
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m0dc255d7e3" x="235.598438" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#med81985545" x="235.598438" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
@@ -1770,7 +1770,7 @@ z
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m0dc255d7e3" x="306.616619" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#med81985545" x="306.616619" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
@@ -1783,7 +1783,7 @@ z
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m0dc255d7e3" x="377.634801" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#med81985545" x="377.634801" y="232.992" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
@@ -1821,12 +1821,12 @@ z
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="m39fa888b66" d="M 0 0
|
||||
<path id="mcd91b9e05d" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m39fa888b66" x="40.298438" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcd91b9e05d" x="40.298438" y="223.416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
@@ -1839,7 +1839,7 @@ L -3.5 0
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m39fa888b66" x="40.298438" y="186.936" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcd91b9e05d" x="40.298438" y="186.936" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
@@ -1879,7 +1879,7 @@ z
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m39fa888b66" x="40.298438" y="150.456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcd91b9e05d" x="40.298438" y="150.456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
@@ -1893,7 +1893,7 @@ z
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m39fa888b66" x="40.298438" y="113.976" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcd91b9e05d" x="40.298438" y="113.976" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
@@ -1907,7 +1907,7 @@ z
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m39fa888b66" x="40.298438" y="77.496" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcd91b9e05d" x="40.298438" y="77.496" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
@@ -1921,7 +1921,7 @@ z
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m39fa888b66" x="40.298438" y="41.016" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcd91b9e05d" x="40.298438" y="41.016" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
@@ -2225,12 +2225,12 @@ L 411.366215 33.705074
|
||||
L 412.255054 32.576902
|
||||
L 413.143892 31.896
|
||||
L 413.143892 31.896
|
||||
" clip-path="url(#pa4e6fc9e59)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
" clip-path="url(#pf1141bd1fb)" style="fill: none; stroke: #2e6be5; stroke-width: 2; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 40.298438 223.416
|
||||
L 430.898438 223.416
|
||||
" clip-path="url(#pa4e6fc9e59)" style="fill: none; stroke-dasharray: 0.7,1.155; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.7"/>
|
||||
" clip-path="url(#pf1141bd1fb)" style="fill: none; stroke-dasharray: 0.7,1.155; stroke-dashoffset: 0; stroke: #888888; stroke-width: 0.7"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 40.298438 232.992
|
||||
@@ -2783,7 +2783,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<defs>
|
||||
<path id="mc92ba0d3bd" d="M 0 3.708099
|
||||
<path id="m298894949c" d="M 0 3.708099
|
||||
C 0.983399 3.708099 1.926654 3.317391 2.622022 2.622022
|
||||
C 3.317391 1.926654 3.708099 0.983399 3.708099 0
|
||||
C 3.708099 -0.983399 3.317391 -1.926654 2.622022 -2.622022
|
||||
@@ -2795,11 +2795,11 @@ C -1.926654 3.317391 -0.983399 3.708099 0 3.708099
|
||||
z
|
||||
" style="stroke: #d62728"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pa4e6fc9e59)">
|
||||
<use xlink:href="#mc92ba0d3bd" x="93.562074" y="194.232" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#mc92ba0d3bd" x="164.580256" y="216.12" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#mc92ba0d3bd" x="306.616619" y="216.12" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#mc92ba0d3bd" x="377.634801" y="194.232" style="fill: #d62728; stroke: #d62728"/>
|
||||
<g clip-path="url(#pf1141bd1fb)">
|
||||
<use xlink:href="#m298894949c" x="93.562074" y="194.232" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#m298894949c" x="164.580256" y="216.12" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#m298894949c" x="306.616619" y="216.12" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#m298894949c" x="377.634801" y="194.232" style="fill: #d62728; stroke: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="legend_1">
|
||||
@@ -2890,7 +2890,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<defs>
|
||||
<path id="me069366122" d="M 0 -5.244044
|
||||
<path id="m3af3edf633" d="M 0 -5.244044
|
||||
L -1.177361 -1.620499
|
||||
L -4.987382 -1.620499
|
||||
L -1.905011 0.618975
|
||||
@@ -2904,7 +2904,7 @@ z
|
||||
" style="stroke: #e8850a"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me069366122" x="171.878438" y="50.1975" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<use xlink:href="#m3af3edf633" x="171.878438" y="50.1975" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
@@ -2979,7 +2979,7 @@ z
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<g>
|
||||
<use xlink:href="#mc92ba0d3bd" x="171.878438" y="63.426094" style="fill: #d62728; stroke: #d62728"/>
|
||||
<use xlink:href="#m298894949c" x="171.878438" y="63.426094" style="fill: #d62728; stroke: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
@@ -3001,14 +3001,14 @@ z
|
||||
</g>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<g clip-path="url(#pa4e6fc9e59)">
|
||||
<use xlink:href="#me069366122" x="235.598438" y="223.416" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
<g clip-path="url(#pf1141bd1fb)">
|
||||
<use xlink:href="#m3af3edf633" x="235.598438" y="223.416" style="fill: #e8850a; stroke: #e8850a"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pa4e6fc9e59">
|
||||
<clipPath id="pf1141bd1fb">
|
||||
<rect x="40.298438" y="22.32" width="390.6" height="210.672"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 48 KiB |
@@ -1132,26 +1132,12 @@ $Y_t \mid Z_t=k \sim B_k(y)$.
|
||||
|
||||
**State machine diagram ($K=3$ regimes):**
|
||||
|
||||
```
|
||||
HMM regime state machine (K = 3)
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
```{figure} ../_static/diagrams/fig_hmm_regime.svg
|
||||
:align: center
|
||||
:width: 90%
|
||||
|
||||
A₁₂ → A₂₃ →
|
||||
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
|
||||
│ State 1 │──────▶│ State 2 │──────▶│ State 3 │
|
||||
│ Bull │◀──────│ Neutral │◀──────│ Bear │
|
||||
└─────────────┘ └─────────────┘ └─────────────┘
|
||||
← A₂₁ ← A₃₂
|
||||
|
||||
Emission B_k(y) = 𝒩(μ_k, σ_k²):
|
||||
┌────────┬────────┬────────┬──────────────────┐
|
||||
│ State │ μ │ σ │ Character │
|
||||
├────────┼────────┼────────┼──────────────────┤
|
||||
│ Bull │ +0.05 │ 0.12 │ high return, low vol │
|
||||
│ Neutral│ 0.00 │ 0.18 │ flat, medium vol │
|
||||
│ Bear │ -0.08 │ 0.35 │ crash, high vol │
|
||||
└────────┴────────┴────────┴──────────────────┘
|
||||
(self-transition: A₁₁=0.97, A₂₂=0.97, A₃₃=0.90)
|
||||
HMM $K=3$ state machine with Bull / Neutral / Bear regimes and Gaussian emission
|
||||
parameters. Self-transitions $A_{11}=A_{22}=0.97$, $A_{33}=0.90$.
|
||||
```
|
||||
|
||||
### 8.2 Baum-Welch (EM)
|
||||
@@ -1174,22 +1160,13 @@ iteration monotonically increases $\mathcal{L}(\theta)$ by Jensen's inequality.
|
||||
|
||||
**Viterbi trellis diagram ($K=3$, $T=4$):**
|
||||
|
||||
```
|
||||
Viterbi trellis (K=3, T=4)
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
```{figure} ../_static/diagrams/fig_viterbi_trellis.svg
|
||||
:align: center
|
||||
:width: 82%
|
||||
|
||||
State t=1 t=2 t=3 t=4
|
||||
|
||||
1 ○─────────▶○─────────▶○─────────▶○
|
||||
╲ ╳
|
||||
2 ○─────────▶●─────────▶●─────────▶○ ● = MAP path
|
||||
╲ ╲ ╲
|
||||
3 ○─────────▶○─────────▶○─────────▶○
|
||||
|
||||
δ_t(k) = max_j [δ_{t−1}(j) · A_jk · B_k(y_t)]
|
||||
ψ_t(k) = argmax_j ← backtrack pointer
|
||||
|
||||
Traceback: z_4★ ← z_3★ ← z_2★ ← z_1★ via ψ
|
||||
Viterbi trellis ($K=3$, $T=4$). Filled nodes mark the MAP (most probable) state
|
||||
sequence; arrows show transition candidates. Backtracking via $\psi_t(k)$ recovers
|
||||
$z_1^\star o z_4^\star$.
|
||||
```
|
||||
|
||||
**Viterbi (MAP path):** $\delta_t(k) = \max_j \delta_{t-1}(j)A_{jk} \cdot B_k(y_t)$, $O(TK^2)$.
|
||||
@@ -1288,21 +1265,13 @@ The statistical manifold $\mathcal{M} = \{p(\cdot;\theta)\}$ carries the
|
||||
|
||||
**Standard vs natural gradient:**
|
||||
|
||||
```
|
||||
Standard vs natural gradient
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
```{figure} ../_static/diagrams/fig_std_vs_nat_gradient.svg
|
||||
:align: center
|
||||
:width: 88%
|
||||
|
||||
Standard: θ_{k+1} = θ_k − η·∇ℒ Natural: θ_{k+1} = θ_k − η·ℐ(θ)^{−1}∇ℒ
|
||||
────────────────────────────────────────────
|
||||
|
||||
┌────────────────────┐ ┌────────────────────┐
|
||||
│ Flat ℝᵈ geometry │ │ Riemannian metric ℐ(θ) │
|
||||
│ Ignores curvature │ │ Adapts to geometry │
|
||||
│ Slow on ill-cond ℐ │ │ Reparam invariant │
|
||||
│ O(κ(ℐ)) iters │ │ O(1) on exp families │
|
||||
└────────────────────┘ └────────────────────┘
|
||||
|
||||
On Gaussian / exponential family: ℐ⁻¹∇ℒ = MLE step → 1 iteration!
|
||||
Standard versus natural gradient: geometric properties. On exponential families
|
||||
the natural gradient equals the MLE Newton step, achieving convergence in one
|
||||
iteration.
|
||||
```
|
||||
|
||||
**Natural gradient (Amari 1998):**
|
||||
@@ -1344,23 +1313,13 @@ linearises the group at the identity.
|
||||
|
||||
**Matrix Lie group hierarchy:**
|
||||
|
||||
```
|
||||
Matrix Lie group hierarchy
|
||||
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
|
||||
```{figure} ../_static/diagrams/fig_lie_group_hierarchy.svg
|
||||
:align: center
|
||||
:width: 90%
|
||||
|
||||
GL(n,ℝ) ─ all invertible n×n real matrices
|
||||
│
|
||||
├──▶ SL(n,ℝ) det = 1
|
||||
│
|
||||
├──▶ O(n) RᵀR = I (orthogonal)
|
||||
│ └─▶ SO(n) det = +1 (pure rotations)
|
||||
│ ↳ portfolio factor rotation, PCA constraints
|
||||
│
|
||||
└──▶ Sp(2n,ℝ) preserves symplectic form ω
|
||||
↳ Hamiltonian mechanics, PMP §4.2 / §10.4
|
||||
|
||||
H(n) Heisenberg ─ upper triangular, 1s on diagonal
|
||||
↳ path-signature feature maps
|
||||
Matrix Lie group hierarchy: subgroup inclusions and their quantitative-finance
|
||||
applications. $SO(n)$ underpins PCA factor rotation; $\mathrm{Sp}(2n,\mathbb{R})$
|
||||
governs Hamiltonian mechanics (PMP §10.4); $H(n)$ drives path-signature features.
|
||||
```
|
||||
|
||||
**Left-invariant control system on $G$:**
|
||||
|
||||