horrible: tabula raza
|
@ -18,7 +18,14 @@ val_path = Path(os.getcwd()) / "values"
|
|||
|
||||
|
||||
def export_fig(
|
||||
name, fig=None, x_scaling=1, y_scaling=0.4, tikz=True, save_pickle=True, **kwargs
|
||||
name,
|
||||
fig=None,
|
||||
x_scaling=1,
|
||||
y_scaling=0.4,
|
||||
tikz=True,
|
||||
save_pickle=True,
|
||||
data=None,
|
||||
**kwargs,
|
||||
):
|
||||
fig_path.mkdir(parents=True, exist_ok=True)
|
||||
if fig is None:
|
||||
|
@ -51,6 +58,10 @@ def export_fig(
|
|||
with open(fig_path / f"{name}.pickle", "wb") as file:
|
||||
pickle.dump(fig, file)
|
||||
|
||||
if data is not None:
|
||||
with open(fig_path / f"{name}.data.pickle", "wb") as file:
|
||||
pickle.dump(data, file)
|
||||
|
||||
|
||||
def scientific_round(val, *err, retprec=False):
|
||||
"""Scientifically rounds the values to the given errors."""
|
||||
|
@ -145,16 +156,16 @@ MPL_RC = {
|
|||
"axes.labelcolor": "black",
|
||||
"xtick.color": "black",
|
||||
"ytick.color": "black",
|
||||
"figure.figsize": (3.4, 3.2),
|
||||
"figure.figsize": (5.78, 2.4),
|
||||
"text.usetex": True,
|
||||
"font.family": "serif",
|
||||
# "font.serif": ["Roman"],
|
||||
"font.size": 9,
|
||||
"axes.labelsize": 10,
|
||||
"axes.titlesize": 10,
|
||||
"legend.fontsize": 9,
|
||||
"xtick.labelsize": 8,
|
||||
"ytick.labelsize": 8,
|
||||
"font.size": 15,
|
||||
"axes.labelsize": 13,
|
||||
"axes.titlesize": 15,
|
||||
"legend.fontsize": 13,
|
||||
"xtick.labelsize": 13,
|
||||
"ytick.labelsize": 13,
|
||||
"figure.constrained_layout.use": True,
|
||||
# "text.latex.preamble": r"\usepackage{mathtools}",
|
||||
}
|
||||
|
|
|
@ -17,7 +17,9 @@ def plot_power_eff_convergence(models, steady_idx=2):
|
|||
try:
|
||||
Ns = model.power(steady_idx=steady_idx).Ns
|
||||
a_power.plot(Ns, model.power(steady_idx=steady_idx).values)
|
||||
a_efficiency.plot(Ns, np.abs(model.efficiency(steady_idx=steady_idx).values))
|
||||
a_efficiency.plot(
|
||||
Ns, np.abs(model.efficiency(steady_idx=steady_idx).values)
|
||||
)
|
||||
except:
|
||||
pass
|
||||
|
||||
|
@ -449,6 +451,58 @@ def plot_3d_heatmap(models, value_accessor, x_spec, y_spec, normalize=False, ax=
|
|||
ax.set_yticks(y_labels)
|
||||
|
||||
|
||||
@pu.wrap_plot
|
||||
def plot_contour(
|
||||
models, value_accessor, x_spec, y_spec, normalize=False, ax=None, levels=None
|
||||
):
|
||||
value_dict = {}
|
||||
x_labels = set()
|
||||
y_labels = set()
|
||||
|
||||
for model in models:
|
||||
x_label = x_spec(model)
|
||||
y_label = y_spec(model)
|
||||
value = value_accessor(model)
|
||||
|
||||
if x_label not in value_dict:
|
||||
value_dict[x_label] = {}
|
||||
|
||||
if y_label in value_dict[x_label]:
|
||||
raise ValueError(
|
||||
f"Dublicate value for model with x={x_label}, y={y_label}."
|
||||
)
|
||||
|
||||
value_dict[x_label][y_label] = value_accessor(model)
|
||||
|
||||
x_labels.add(x_label)
|
||||
y_labels.add(y_label)
|
||||
|
||||
x_labels = np.sort(list(x_labels))
|
||||
y_labels = np.sort(list(y_labels))
|
||||
|
||||
_xx, _yy = np.meshgrid(x_labels, y_labels, indexing="ij")
|
||||
x, y = _xx.ravel(), _yy.ravel()
|
||||
|
||||
values = (
|
||||
np.fromiter((value_dict[_x][_y] for _x, _y in zip(x, y)), dtype=float)
|
||||
.reshape(len(x_labels), len(y_labels))
|
||||
.T
|
||||
)
|
||||
|
||||
normalized_values = abs(values) - abs(values).min()
|
||||
normalized_values /= abs(normalized_values).max()
|
||||
|
||||
cont = ax.contourf(
|
||||
x_labels,
|
||||
y_labels,
|
||||
values / abs(values).max() if normalize else values,
|
||||
levels=levels,
|
||||
)
|
||||
ax.set_xticks(x_labels)
|
||||
ax.set_yticks(y_labels)
|
||||
return cont, (x_labels, y_labels, values)
|
||||
|
||||
|
||||
def val_relative_to_steady(model, val, steady_idx, shift=0):
|
||||
shift_idx = int(1 / model.dt * shift)
|
||||
begin_idx = model.strobe[1][steady_idx] - shift_idx
|
||||
|
@ -578,3 +632,20 @@ def plot_bloch_components(model, ax=None, **kwargs):
|
|||
)
|
||||
ax.legend()
|
||||
ax.set_xlabel(r"$\tau$")
|
||||
|
||||
|
||||
@pu.wrap_plot
|
||||
def plot_energy_deviation(models, ax=None, labels=None):
|
||||
ax.set_xlabel(r"$\tau$")
|
||||
ax.set_ylabel(r"$\Delta||H||/\max||H||$")
|
||||
|
||||
for i, model in enumerate(models):
|
||||
ax.plot(
|
||||
model.t,
|
||||
abs(model.total_energy_from_power().value - model.total_energy().value)
|
||||
/ max(abs(model.total_energy_from_power().value)),
|
||||
label=labels[i] if labels else None,
|
||||
)
|
||||
|
||||
if labels:
|
||||
ax.legend()
|
||||
|
|
17492
python/otto_motor/subprojects/bath_memory/.data.b/model_data.json
Normal file
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 3.8 MiB |
After Width: | Height: | Size: 53 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mead12c3f44" d="M 0 0
|
||||
<path id="mb36e5a665d" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mead12c3f44" x="81.775009" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb36e5a665d" x="81.775009" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -114,7 +114,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mead12c3f44" x="116.34859" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb36e5a665d" x="116.34859" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -159,7 +159,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mead12c3f44" x="150.922171" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb36e5a665d" x="150.922171" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -194,7 +194,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mead12c3f44" x="185.495753" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb36e5a665d" x="185.495753" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -233,7 +233,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mead12c3f44" x="220.069334" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb36e5a665d" x="220.069334" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -331,12 +331,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="mc24546bec9" d="M 0 0
|
||||
<path id="m1cc10f2d6b" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc24546bec9" x="55.844823" y="139.605769" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1cc10f2d6b" x="55.844823" y="139.605769" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -365,7 +365,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#mc24546bec9" x="55.844823" y="107.655902" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1cc10f2d6b" x="55.844823" y="107.655902" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -383,7 +383,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#mc24546bec9" x="55.844823" y="75.706035" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1cc10f2d6b" x="55.844823" y="75.706035" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -400,7 +400,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mc24546bec9" x="55.844823" y="43.756168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1cc10f2d6b" x="55.844823" y="43.756168" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -417,7 +417,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mc24546bec9" x="55.844823" y="11.806302" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1cc10f2d6b" x="55.844823" y="11.806302" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -504,9 +504,9 @@ L 107.705195 116.289968
|
|||
L 150.922171 108.880695
|
||||
L 194.139148 104.486972
|
||||
L 237.356125 101.465076
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m74bdae88d6" d="M 0 1.4
|
||||
<path id="mf03fdfe96c" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -518,12 +518,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m74bdae88d6" x="64.488218" y="136.119464" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m74bdae88d6" x="107.705195" y="116.289968" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m74bdae88d6" x="150.922171" y="108.880695" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m74bdae88d6" x="194.139148" y="104.486972" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m74bdae88d6" x="237.356125" y="101.465076" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#mf03fdfe96c" x="64.488218" y="136.119464" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mf03fdfe96c" x="107.705195" y="116.289968" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mf03fdfe96c" x="150.922171" y="108.880695" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mf03fdfe96c" x="194.139148" y="104.486972" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mf03fdfe96c" x="237.356125" y="101.465076" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
|
@ -532,9 +532,9 @@ L 107.705195 117.739191
|
|||
L 150.922171 110.270714
|
||||
L 194.139148 106.548315
|
||||
L 237.356125 103.584225
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m09f09bad27" d="M 0 1.4
|
||||
<path id="m6aa1f596ab" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -546,12 +546,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m09f09bad27" x="64.488218" y="137.121974" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m09f09bad27" x="107.705195" y="117.739191" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m09f09bad27" x="150.922171" y="110.270714" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m09f09bad27" x="194.139148" y="106.548315" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m09f09bad27" x="237.356125" y="103.584225" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m6aa1f596ab" x="64.488218" y="137.121974" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m6aa1f596ab" x="107.705195" y="117.739191" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m6aa1f596ab" x="150.922171" y="110.270714" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m6aa1f596ab" x="194.139148" y="106.548315" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m6aa1f596ab" x="237.356125" y="103.584225" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
|
@ -560,9 +560,9 @@ L 107.705195 118.640504
|
|||
L 150.922171 111.524165
|
||||
L 194.139148 107.507287
|
||||
L 237.356125 104.890406
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="ma243c266f7" d="M 0 1.4
|
||||
<path id="md9b66b109e" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -574,12 +574,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#ma243c266f7" x="64.488218" y="137.322964" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#ma243c266f7" x="107.705195" y="118.640504" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#ma243c266f7" x="150.922171" y="111.524165" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#ma243c266f7" x="194.139148" y="107.507287" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#ma243c266f7" x="237.356125" y="104.890406" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#md9b66b109e" x="64.488218" y="137.322964" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md9b66b109e" x="107.705195" y="118.640504" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md9b66b109e" x="150.922171" y="111.524165" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md9b66b109e" x="194.139148" y="107.507287" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md9b66b109e" x="237.356125" y="104.890406" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
|
@ -588,9 +588,9 @@ L 107.705195 118.663155
|
|||
L 150.922171 112.172044
|
||||
L 194.139148 108.156813
|
||||
L 237.356125 105.735049
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m32e944373e" d="M 0 1.4
|
||||
<path id="m754b44085f" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -602,12 +602,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m32e944373e" x="64.488218" y="137.191177" style="fill: #d62728"/>
|
||||
<use xlink:href="#m32e944373e" x="107.705195" y="118.663155" style="fill: #d62728"/>
|
||||
<use xlink:href="#m32e944373e" x="150.922171" y="112.172044" style="fill: #d62728"/>
|
||||
<use xlink:href="#m32e944373e" x="194.139148" y="108.156813" style="fill: #d62728"/>
|
||||
<use xlink:href="#m32e944373e" x="237.356125" y="105.735049" style="fill: #d62728"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m754b44085f" x="64.488218" y="137.191177" style="fill: #d62728"/>
|
||||
<use xlink:href="#m754b44085f" x="107.705195" y="118.663155" style="fill: #d62728"/>
|
||||
<use xlink:href="#m754b44085f" x="150.922171" y="112.172044" style="fill: #d62728"/>
|
||||
<use xlink:href="#m754b44085f" x="194.139148" y="108.156813" style="fill: #d62728"/>
|
||||
<use xlink:href="#m754b44085f" x="237.356125" y="105.735049" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
|
@ -616,9 +616,9 @@ L 107.705195 118.60015
|
|||
L 150.922171 112.459626
|
||||
L 194.139148 108.180236
|
||||
L 237.356125 105.869792
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m17fd6ef9a3" d="M 0 1.4
|
||||
<path id="m346e5b509d" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -630,12 +630,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m17fd6ef9a3" x="64.488218" y="135.938768" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m17fd6ef9a3" x="107.705195" y="118.60015" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m17fd6ef9a3" x="150.922171" y="112.459626" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m17fd6ef9a3" x="194.139148" y="108.180236" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m17fd6ef9a3" x="237.356125" y="105.869792" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m346e5b509d" x="64.488218" y="135.938768" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m346e5b509d" x="107.705195" y="118.60015" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m346e5b509d" x="150.922171" y="112.459626" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m346e5b509d" x="194.139148" y="108.180236" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m346e5b509d" x="237.356125" y="105.869792" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
|
@ -644,9 +644,9 @@ L 107.705195 20.054477
|
|||
L 150.922171 34.003402
|
||||
L 194.139148 42.900852
|
||||
L 237.356125 49.294905
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m55dc097199" d="M 0 -2.8
|
||||
<path id="m1091f8cb69" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -659,12 +659,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m55dc097199" x="64.488218" y="13.396332" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m55dc097199" x="107.705195" y="20.054477" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m55dc097199" x="150.922171" y="34.003402" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m55dc097199" x="194.139148" y="42.900852" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m55dc097199" x="237.356125" y="49.294905" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m1091f8cb69" x="64.488218" y="13.396332" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m1091f8cb69" x="107.705195" y="20.054477" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m1091f8cb69" x="150.922171" y="34.003402" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m1091f8cb69" x="194.139148" y="42.900852" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m1091f8cb69" x="237.356125" y="49.294905" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
|
@ -673,9 +673,9 @@ L 107.705195 24.73294
|
|||
L 150.922171 37.373972
|
||||
L 194.139148 45.417589
|
||||
L 237.356125 51.344871
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m33b97caa44" d="M 0 -2.8
|
||||
<path id="m38942b7b81" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -688,12 +688,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m33b97caa44" x="64.488218" y="21.626742" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m33b97caa44" x="107.705195" y="24.73294" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m33b97caa44" x="150.922171" y="37.373972" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m33b97caa44" x="194.139148" y="45.417589" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m33b97caa44" x="237.356125" y="51.344871" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m38942b7b81" x="64.488218" y="21.626742" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m38942b7b81" x="107.705195" y="24.73294" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m38942b7b81" x="150.922171" y="37.373972" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m38942b7b81" x="194.139148" y="45.417589" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m38942b7b81" x="237.356125" y="51.344871" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
|
@ -702,9 +702,9 @@ L 107.705195 29.776297
|
|||
L 150.922171 40.869605
|
||||
L 194.139148 48.845401
|
||||
L 237.356125 53.599974
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="mf5aedd9718" d="M 0 -2.8
|
||||
<path id="m76f13f1e08" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -717,12 +717,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#mf5aedd9718" x="64.488218" y="29.935577" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf5aedd9718" x="107.705195" y="29.776297" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf5aedd9718" x="150.922171" y="40.869605" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf5aedd9718" x="194.139148" y="48.845401" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf5aedd9718" x="237.356125" y="53.599974" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m76f13f1e08" x="64.488218" y="29.935577" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m76f13f1e08" x="107.705195" y="29.776297" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m76f13f1e08" x="150.922171" y="40.869605" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m76f13f1e08" x="194.139148" y="48.845401" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m76f13f1e08" x="237.356125" y="53.599974" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
|
@ -731,9 +731,9 @@ L 107.705195 34.724397
|
|||
L 150.922171 44.541198
|
||||
L 194.139148 51.856754
|
||||
L 237.356125 55.943494
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m69472084c6" d="M 0 -2.8
|
||||
<path id="m3eac76ba48" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -746,12 +746,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#m69472084c6" x="64.488218" y="37.653487" style="fill: #d62728"/>
|
||||
<use xlink:href="#m69472084c6" x="107.705195" y="34.724397" style="fill: #d62728"/>
|
||||
<use xlink:href="#m69472084c6" x="150.922171" y="44.541198" style="fill: #d62728"/>
|
||||
<use xlink:href="#m69472084c6" x="194.139148" y="51.856754" style="fill: #d62728"/>
|
||||
<use xlink:href="#m69472084c6" x="237.356125" y="55.943494" style="fill: #d62728"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m3eac76ba48" x="64.488218" y="37.653487" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3eac76ba48" x="107.705195" y="34.724397" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3eac76ba48" x="150.922171" y="44.541198" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3eac76ba48" x="194.139148" y="51.856754" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3eac76ba48" x="237.356125" y="55.943494" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
|
@ -760,9 +760,9 @@ L 107.705195 39.418743
|
|||
L 150.922171 47.642816
|
||||
L 194.139148 54.156214
|
||||
L 237.356125 58.097726
|
||||
" clip-path="url(#pc9e3ae301d)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p5e9226c611)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="mbb9cb0881c" d="M 0 -2.8
|
||||
<path id="m339255140e" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -775,12 +775,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pc9e3ae301d)">
|
||||
<use xlink:href="#mbb9cb0881c" x="64.488218" y="45.809345" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mbb9cb0881c" x="107.705195" y="39.418743" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mbb9cb0881c" x="150.922171" y="47.642816" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mbb9cb0881c" x="194.139148" y="54.156214" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mbb9cb0881c" x="237.356125" y="58.097726" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p5e9226c611)">
|
||||
<use xlink:href="#m339255140e" x="64.488218" y="45.809345" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m339255140e" x="107.705195" y="39.418743" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m339255140e" x="150.922171" y="47.642816" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m339255140e" x="194.139148" y="54.156214" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m339255140e" x="237.356125" y="58.097726" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -867,7 +867,7 @@ L 72.944823 55.636049
|
|||
L 81.944823 55.636049
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m74bdae88d6" x="72.944823" y="55.636049" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mf03fdfe96c" x="72.944823" y="55.636049" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -884,7 +884,7 @@ L 72.944823 68.179511
|
|||
L 81.944823 68.179511
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m09f09bad27" x="72.944823" y="68.179511" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m6aa1f596ab" x="72.944823" y="68.179511" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -932,7 +932,7 @@ L 72.944823 80.722973
|
|||
L 81.944823 80.722973
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#ma243c266f7" x="72.944823" y="80.722973" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md9b66b109e" x="72.944823" y="80.722973" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -949,7 +949,7 @@ L 72.944823 93.266435
|
|||
L 81.944823 93.266435
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m32e944373e" x="72.944823" y="93.266435" style="fill: #d62728"/>
|
||||
<use xlink:href="#m754b44085f" x="72.944823" y="93.266435" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -967,7 +967,7 @@ L 72.944823 105.809897
|
|||
L 81.944823 105.809897
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m17fd6ef9a3" x="72.944823" y="105.809897" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m346e5b509d" x="72.944823" y="105.809897" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -999,7 +999,7 @@ L 145.4114 78.43049
|
|||
L 154.4114 78.43049
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #000000; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m092e3b23bc" d="M 0 1.4
|
||||
<path id="mac5c04fb99" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -1012,7 +1012,7 @@ z
|
|||
"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m092e3b23bc" x="145.4114" y="78.43049"/>
|
||||
<use xlink:href="#mac5c04fb99" x="145.4114" y="78.43049"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -1221,7 +1221,7 @@ L 145.4114 90.973952
|
|||
L 154.4114 90.973952
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #000000; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="mcd873495d7" d="M 0 -2.8
|
||||
<path id="m9dc5a50313" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -1235,7 +1235,7 @@ z
|
|||
"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mcd873495d7" x="145.4114" y="90.973952"/>
|
||||
<use xlink:href="#m9dc5a50313" x="145.4114" y="90.973952"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -1291,7 +1291,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pc9e3ae301d">
|
||||
<clipPath id="p5e9226c611">
|
||||
<rect x="55.844823" y="7.2" width="190.154697" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m259a165918" d="M 0 0
|
||||
<path id="m292daad7d2" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m259a165918" x="68.070433" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m292daad7d2" x="68.070433" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -114,7 +114,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m259a165918" x="105.529188" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m292daad7d2" x="105.529188" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -159,7 +159,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m259a165918" x="142.987943" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m292daad7d2" x="142.987943" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -194,7 +194,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m259a165918" x="180.446698" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m292daad7d2" x="180.446698" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -233,7 +233,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m259a165918" x="217.905454" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m292daad7d2" x="217.905454" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -331,12 +331,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="m3e0dbb1e60" d="M 0 0
|
||||
<path id="mfa9b5c5419" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="132.1985" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="132.1985" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,7 +351,7 @@ L -3.5 0
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="113.264166" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="113.264166" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -396,7 +396,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="94.329832" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="94.329832" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -411,7 +411,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="75.395497" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="75.395497" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -456,7 +456,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="56.461163" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="56.461163" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -471,7 +471,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="37.526829" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="37.526829" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -507,7 +507,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m3e0dbb1e60" x="39.976366" y="18.592495" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mfa9b5c5419" x="39.976366" y="18.592495" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -599,9 +599,9 @@ L 96.164499 129.695052
|
|||
L 142.987943 130.829353
|
||||
L 189.811387 129.299041
|
||||
L 236.634831 126.625767
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="ma45b9d7903" d="M 0 1.4
|
||||
<path id="m4ffac7b8b8" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -613,12 +613,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#ma45b9d7903" x="49.341055" y="118.371196" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#ma45b9d7903" x="96.164499" y="129.695052" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#ma45b9d7903" x="142.987943" y="130.829353" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#ma45b9d7903" x="189.811387" y="129.299041" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#ma45b9d7903" x="236.634831" y="126.625767" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#m4ffac7b8b8" x="49.341055" y="118.371196" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m4ffac7b8b8" x="96.164499" y="129.695052" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m4ffac7b8b8" x="142.987943" y="130.829353" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m4ffac7b8b8" x="189.811387" y="129.299041" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m4ffac7b8b8" x="236.634831" y="126.625767" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
|
@ -627,9 +627,9 @@ L 96.164499 129.146139
|
|||
L 142.987943 130.443874
|
||||
L 189.811387 128.920101
|
||||
L 236.634831 126.387194
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m52ced8cd80" d="M 0 1.4
|
||||
<path id="m62e4efa30e" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -641,12 +641,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#m52ced8cd80" x="49.341055" y="117.747597" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m52ced8cd80" x="96.164499" y="129.146139" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m52ced8cd80" x="142.987943" y="130.443874" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m52ced8cd80" x="189.811387" y="128.920101" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m52ced8cd80" x="236.634831" y="126.387194" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#m62e4efa30e" x="49.341055" y="117.747597" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m62e4efa30e" x="96.164499" y="129.146139" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m62e4efa30e" x="142.987943" y="130.443874" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m62e4efa30e" x="189.811387" y="128.920101" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m62e4efa30e" x="236.634831" y="126.387194" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
|
@ -655,9 +655,9 @@ L 96.164499 129.049018
|
|||
L 142.987943 130.355481
|
||||
L 189.811387 128.989884
|
||||
L 236.634831 126.528263
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m2d9b6acfb6" d="M 0 1.4
|
||||
<path id="m1519aa1443" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -669,12 +669,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#m2d9b6acfb6" x="49.341055" y="117.778895" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m2d9b6acfb6" x="96.164499" y="129.049018" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m2d9b6acfb6" x="142.987943" y="130.355481" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m2d9b6acfb6" x="189.811387" y="128.989884" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m2d9b6acfb6" x="236.634831" y="126.528263" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#m1519aa1443" x="49.341055" y="117.778895" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m1519aa1443" x="96.164499" y="129.049018" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m1519aa1443" x="142.987943" y="130.355481" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m1519aa1443" x="189.811387" y="128.989884" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m1519aa1443" x="236.634831" y="126.528263" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
|
@ -683,9 +683,9 @@ L 96.164499 129.292403
|
|||
L 142.987943 130.67986
|
||||
L 189.811387 129.23181
|
||||
L 236.634831 126.772945
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m8b2c54d539" d="M 0 1.4
|
||||
<path id="m640f23f4c9" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -697,12 +697,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#m8b2c54d539" x="49.341055" y="118.161123" style="fill: #d62728"/>
|
||||
<use xlink:href="#m8b2c54d539" x="96.164499" y="129.292403" style="fill: #d62728"/>
|
||||
<use xlink:href="#m8b2c54d539" x="142.987943" y="130.67986" style="fill: #d62728"/>
|
||||
<use xlink:href="#m8b2c54d539" x="189.811387" y="129.23181" style="fill: #d62728"/>
|
||||
<use xlink:href="#m8b2c54d539" x="236.634831" y="126.772945" style="fill: #d62728"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#m640f23f4c9" x="49.341055" y="118.161123" style="fill: #d62728"/>
|
||||
<use xlink:href="#m640f23f4c9" x="96.164499" y="129.292403" style="fill: #d62728"/>
|
||||
<use xlink:href="#m640f23f4c9" x="142.987943" y="130.67986" style="fill: #d62728"/>
|
||||
<use xlink:href="#m640f23f4c9" x="189.811387" y="129.23181" style="fill: #d62728"/>
|
||||
<use xlink:href="#m640f23f4c9" x="236.634831" y="126.772945" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
|
@ -711,9 +711,9 @@ L 96.164499 129.580602
|
|||
L 142.987943 130.894334
|
||||
L 189.811387 129.668739
|
||||
L 236.634831 127.331627
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m8358cab04b" d="M 0 1.4
|
||||
<path id="mdf7a353b53" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -725,12 +725,12 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#m8358cab04b" x="49.341055" y="118.755617" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m8358cab04b" x="96.164499" y="129.580602" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m8358cab04b" x="142.987943" y="130.894334" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m8358cab04b" x="189.811387" y="129.668739" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m8358cab04b" x="236.634831" y="127.331627" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#mdf7a353b53" x="49.341055" y="118.755617" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdf7a353b53" x="96.164499" y="129.580602" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdf7a353b53" x="142.987943" y="130.894334" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdf7a353b53" x="189.811387" y="129.668739" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdf7a353b53" x="236.634831" y="127.331627" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
|
@ -739,9 +739,9 @@ L 96.164499 96.635944
|
|||
L 142.987943 119.504526
|
||||
L 189.811387 128.277086
|
||||
L 236.634831 133.519898
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="me89a4932de" d="M 0 -2.8
|
||||
<path id="mac657a7569" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -754,12 +754,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#me89a4932de" x="49.341055" y="13.396332" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me89a4932de" x="96.164499" y="96.635944" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me89a4932de" x="142.987943" y="119.504526" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me89a4932de" x="189.811387" y="128.277086" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me89a4932de" x="236.634831" y="133.519898" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#mac657a7569" x="49.341055" y="13.396332" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mac657a7569" x="96.164499" y="96.635944" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mac657a7569" x="142.987943" y="119.504526" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mac657a7569" x="189.811387" y="128.277086" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mac657a7569" x="236.634831" y="133.519898" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
|
@ -768,9 +768,9 @@ L 96.164499 98.882539
|
|||
L 142.987943 121.109581
|
||||
L 189.811387 129.6364
|
||||
L 236.634831 134.318782
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m435a7d2628" d="M 0 -2.8
|
||||
<path id="m08984212e5" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -783,12 +783,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#m435a7d2628" x="49.341055" y="17.456021" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m435a7d2628" x="96.164499" y="98.882539" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m435a7d2628" x="142.987943" y="121.109581" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m435a7d2628" x="189.811387" y="129.6364" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m435a7d2628" x="236.634831" y="134.318782" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#m08984212e5" x="49.341055" y="17.456021" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m08984212e5" x="96.164499" y="98.882539" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m08984212e5" x="142.987943" y="121.109581" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m08984212e5" x="189.811387" y="129.6364" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m08984212e5" x="236.634831" y="134.318782" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
|
@ -797,9 +797,9 @@ L 96.164499 101.240191
|
|||
L 142.987943 122.372667
|
||||
L 189.811387 131.004668
|
||||
L 236.634831 135.387762
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m15c4e4fc00" d="M 0 -2.8
|
||||
<path id="maca38430c5" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -812,12 +812,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#m15c4e4fc00" x="49.341055" y="22.358538" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m15c4e4fc00" x="96.164499" y="101.240191" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m15c4e4fc00" x="142.987943" y="122.372667" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m15c4e4fc00" x="189.811387" y="131.004668" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m15c4e4fc00" x="236.634831" y="135.387762" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#maca38430c5" x="49.341055" y="22.358538" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#maca38430c5" x="96.164499" y="101.240191" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#maca38430c5" x="142.987943" y="122.372667" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#maca38430c5" x="189.811387" y="131.004668" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#maca38430c5" x="236.634831" y="135.387762" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
|
@ -826,9 +826,9 @@ L 96.164499 103.205479
|
|||
L 142.987943 124.099423
|
||||
L 189.811387 132.253855
|
||||
L 236.634831 136.404188
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="mbda8a90768" d="M 0 -2.8
|
||||
<path id="m2c7f7f784b" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -841,12 +841,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#mbda8a90768" x="49.341055" y="26.634965" style="fill: #d62728"/>
|
||||
<use xlink:href="#mbda8a90768" x="96.164499" y="103.205479" style="fill: #d62728"/>
|
||||
<use xlink:href="#mbda8a90768" x="142.987943" y="124.099423" style="fill: #d62728"/>
|
||||
<use xlink:href="#mbda8a90768" x="189.811387" y="132.253855" style="fill: #d62728"/>
|
||||
<use xlink:href="#mbda8a90768" x="236.634831" y="136.404188" style="fill: #d62728"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#m2c7f7f784b" x="49.341055" y="26.634965" style="fill: #d62728"/>
|
||||
<use xlink:href="#m2c7f7f784b" x="96.164499" y="103.205479" style="fill: #d62728"/>
|
||||
<use xlink:href="#m2c7f7f784b" x="142.987943" y="124.099423" style="fill: #d62728"/>
|
||||
<use xlink:href="#m2c7f7f784b" x="189.811387" y="132.253855" style="fill: #d62728"/>
|
||||
<use xlink:href="#m2c7f7f784b" x="236.634831" y="136.404188" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
|
@ -855,9 +855,9 @@ L 96.164499 105.56804
|
|||
L 142.987943 125.433452
|
||||
L 189.811387 133.693635
|
||||
L 236.634831 137.322964
|
||||
" clip-path="url(#p40a2cbc1eb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pd32129ed02)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="me59b094f69" d="M 0 -2.8
|
||||
<path id="mec9a4f49e9" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -870,12 +870,12 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p40a2cbc1eb)">
|
||||
<use xlink:href="#me59b094f69" x="49.341055" y="29.953381" style="fill: #9467bd"/>
|
||||
<use xlink:href="#me59b094f69" x="96.164499" y="105.56804" style="fill: #9467bd"/>
|
||||
<use xlink:href="#me59b094f69" x="142.987943" y="125.433452" style="fill: #9467bd"/>
|
||||
<use xlink:href="#me59b094f69" x="189.811387" y="133.693635" style="fill: #9467bd"/>
|
||||
<use xlink:href="#me59b094f69" x="236.634831" y="137.322964" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#pd32129ed02)">
|
||||
<use xlink:href="#mec9a4f49e9" x="49.341055" y="29.953381" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mec9a4f49e9" x="96.164499" y="105.56804" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mec9a4f49e9" x="142.987943" y="125.433452" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mec9a4f49e9" x="189.811387" y="133.693635" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mec9a4f49e9" x="236.634831" y="137.322964" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -962,7 +962,7 @@ L 205.31662 30.920112
|
|||
L 214.31662 30.920112
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#ma45b9d7903" x="205.31662" y="30.920112" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m4ffac7b8b8" x="205.31662" y="30.920112" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -979,7 +979,7 @@ L 205.31662 43.463574
|
|||
L 214.31662 43.463574
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m52ced8cd80" x="205.31662" y="43.463574" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m62e4efa30e" x="205.31662" y="43.463574" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -997,7 +997,7 @@ L 205.31662 56.007036
|
|||
L 214.31662 56.007036
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m2d9b6acfb6" x="205.31662" y="56.007036" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m1519aa1443" x="205.31662" y="56.007036" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -1014,7 +1014,7 @@ L 205.31662 68.550498
|
|||
L 214.31662 68.550498
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m8b2c54d539" x="205.31662" y="68.550498" style="fill: #d62728"/>
|
||||
<use xlink:href="#m640f23f4c9" x="205.31662" y="68.550498" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -1032,7 +1032,7 @@ L 205.31662 81.09396
|
|||
L 214.31662 81.09396
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<g>
|
||||
<use xlink:href="#m8358cab04b" x="205.31662" y="81.09396" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdf7a353b53" x="205.31662" y="81.09396" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -1064,7 +1064,7 @@ L 97.859386 18.45
|
|||
L 106.859386 18.45
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #000000; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="mb7971af08d" d="M 0 1.4
|
||||
<path id="mbe6b893345" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -1077,7 +1077,7 @@ z
|
|||
"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mb7971af08d" x="97.859386" y="18.45"/>
|
||||
<use xlink:href="#mbe6b893345" x="97.859386" y="18.45"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -1286,7 +1286,7 @@ L 97.859386 30.993462
|
|||
L 106.859386 30.993462
|
||||
" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #000000; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m94952acc0b" d="M 0 -2.8
|
||||
<path id="m73bcfa7ab8" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -1300,7 +1300,7 @@ z
|
|||
"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m94952acc0b" x="97.859386" y="30.993462"/>
|
||||
<use xlink:href="#m73bcfa7ab8" x="97.859386" y="30.993462"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -1356,7 +1356,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p40a2cbc1eb">
|
||||
<clipPath id="pd32129ed02">
|
||||
<rect x="39.976366" y="7.2" width="206.023154" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
|
@ -0,0 +1,880 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="252.788966pt" height="238.79952pt" viewBox="0 0 252.788966 238.79952" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||||
<metadata>
|
||||
<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>1980-01-01T00:00:00+00:00</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs>
|
||||
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
|
||||
</defs>
|
||||
<g id="figure_1">
|
||||
<g id="patch_1">
|
||||
<path d="M 0 238.79952
|
||||
L 252.788966 238.79952
|
||||
L 252.788966 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 31.354872 215.414973
|
||||
L 187.365387 215.414973
|
||||
L 187.365387 9.967401
|
||||
L 31.354872 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<path d="M 187.365387 215.414973
|
||||
L 187.365387 208.239822
|
||||
L 170.311715 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #471063"/>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<path d="M 148.362759 215.414973
|
||||
L 170.311715 215.414973
|
||||
L 187.365387 208.239822
|
||||
L 187.365387 197.13043
|
||||
L 148.362759 213.487837
|
||||
L 144.04699 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #472d7b"/>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<path d="M 148.362759 213.487837
|
||||
L 187.365387 197.13043
|
||||
L 187.365387 186.021038
|
||||
L 148.362759 202.067123
|
||||
L 118.470614 215.414973
|
||||
L 144.04699 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #404688"/>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<path d="M 109.36013 215.414973
|
||||
L 118.470614 215.414973
|
||||
L 148.362759 202.067123
|
||||
L 187.365387 186.021038
|
||||
L 187.365387 174.911646
|
||||
L 148.362759 190.646409
|
||||
L 109.36013 207.825833
|
||||
L 94.767401 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #365d8d"/>
|
||||
</g>
|
||||
<g id="PathCollection_5">
|
||||
<path d="M 109.36013 207.825833
|
||||
L 148.362759 190.646409
|
||||
L 187.365387 174.911646
|
||||
L 187.365387 164.05308
|
||||
L 187.365387 160.584657
|
||||
L 186.713623 164.05308
|
||||
L 148.362759 179.225695
|
||||
L 109.36013 196.037666
|
||||
L 72.100599 215.414973
|
||||
L 94.767401 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #2c728e"/>
|
||||
</g>
|
||||
<g id="PathCollection_6">
|
||||
<path d="M 70.357501 215.414973
|
||||
L 72.100599 215.414973
|
||||
L 109.36013 196.037666
|
||||
L 148.362759 179.225695
|
||||
L 186.713623 164.05308
|
||||
L 187.365387 160.584657
|
||||
L 187.365387 112.691187
|
||||
L 187.365387 61.329294
|
||||
L 187.365387 9.967401
|
||||
L 160.276267 9.967401
|
||||
L 162.702479 61.329294
|
||||
L 166.474867 112.691187
|
||||
L 157.846204 164.05308
|
||||
L 148.362759 167.804981
|
||||
L 109.36013 184.249499
|
||||
L 70.357501 204.202784
|
||||
L 49.813129 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #24868e"/>
|
||||
</g>
|
||||
<g id="PathCollection_7">
|
||||
<path d="M 70.357501 204.202784
|
||||
L 109.36013 184.249499
|
||||
L 148.362759 167.804981
|
||||
L 157.846204 164.05308
|
||||
L 166.474867 112.691187
|
||||
L 162.702479 61.329294
|
||||
L 160.276267 9.967401
|
||||
L 148.362759 9.967401
|
||||
L 129.172059 9.967401
|
||||
L 132.363722 61.329294
|
||||
L 137.546534 112.691187
|
||||
L 129.450053 164.05308
|
||||
L 109.36013 172.461333
|
||||
L 70.357501 192.056539
|
||||
L 31.354872 213.248225
|
||||
L 31.354872 215.414973
|
||||
L 49.813129 215.414973
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #1f9a8a"/>
|
||||
</g>
|
||||
<g id="PathCollection_8">
|
||||
<path d="M 70.357501 192.056539
|
||||
L 109.36013 172.461333
|
||||
L 129.450053 164.05308
|
||||
L 137.546534 112.691187
|
||||
L 132.363722 61.329294
|
||||
L 129.172059 9.967401
|
||||
L 109.36013 9.967401
|
||||
L 100.437477 9.967401
|
||||
L 104.017978 61.329294
|
||||
L 109.36013 102.030365
|
||||
L 110.727162 112.691187
|
||||
L 109.36013 120.443822
|
||||
L 102.336795 164.05308
|
||||
L 70.357501 179.910294
|
||||
L 31.354872 200.550017
|
||||
L 31.354872 213.248225
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #28ae80"/>
|
||||
</g>
|
||||
<g id="PathCollection_9">
|
||||
<path d="M 70.357501 179.910294
|
||||
L 102.336795 164.05308
|
||||
L 109.36013 120.443822
|
||||
L 110.727162 112.691187
|
||||
L 109.36013 102.030365
|
||||
L 104.017978 61.329294
|
||||
L 100.437477 9.967401
|
||||
L 72.107133 9.967401
|
||||
L 76.566164 61.329294
|
||||
L 84.428846 112.691187
|
||||
L 77.841424 164.05308
|
||||
L 70.357501 167.764049
|
||||
L 31.354872 187.85181
|
||||
L 31.354872 200.550017
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #48c16e"/>
|
||||
</g>
|
||||
<g id="PathCollection_10">
|
||||
<path d="M 70.357501 167.764049
|
||||
L 77.841424 164.05308
|
||||
L 84.428846 112.691187
|
||||
L 76.566164 61.329294
|
||||
L 72.107133 9.967401
|
||||
L 70.357501 9.967401
|
||||
L 46.362451 9.967401
|
||||
L 50.510709 61.329294
|
||||
L 58.361436 112.691187
|
||||
L 53.090245 164.05308
|
||||
L 31.354872 175.153602
|
||||
L 31.354872 187.85181
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #75d054"/>
|
||||
</g>
|
||||
<g id="PathCollection_11">
|
||||
<path d="M 53.090245 164.05308
|
||||
L 58.361436 112.691187
|
||||
L 50.510709 61.329294
|
||||
L 46.362451 9.967401
|
||||
L 31.354872 9.967401
|
||||
L 31.354872 61.329294
|
||||
L 31.354872 104.877365
|
||||
L 32.52809 112.691187
|
||||
L 31.354872 126.313395
|
||||
L 31.354872 164.05308
|
||||
L 31.354872 175.153602
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #addc30"/>
|
||||
</g>
|
||||
<g id="PathCollection_12">
|
||||
<path d="M 32.52809 112.691187
|
||||
L 31.354872 104.877365
|
||||
L 31.354872 112.691187
|
||||
L 31.354872 126.313395
|
||||
z
|
||||
" clip-path="url(#p00b92795de)" style="fill: #e5e419"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mca053cf0be" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mca053cf0be" x="31.354872" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.40}$ -->
|
||||
<g transform="translate(23.827436 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#mca053cf0be" x="70.357501" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.45}$ -->
|
||||
<g transform="translate(62.830065 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mca053cf0be" x="109.36013" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{0.50}$ -->
|
||||
<g transform="translate(101.832694 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mca053cf0be" x="148.362759" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.55}$ -->
|
||||
<g transform="translate(140.835322 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mca053cf0be" x="187.365387" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.60}$ -->
|
||||
<g transform="translate(179.837951 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_6">
|
||||
<defs>
|
||||
<path id="m8b6bb046dc" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8b6bb046dc" x="31.354872" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.50}$ -->
|
||||
<g transform="translate(7.2 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m8b6bb046dc" x="31.354872" y="164.05308" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{0.75}$ -->
|
||||
<g transform="translate(7.2 166.820481) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
L 1382 4081
|
||||
C 634 4081 621 4165 595 4288
|
||||
L 480 4288
|
||||
L 294 3094
|
||||
L 410 3094
|
||||
C 429 3215 474 3540 550 3661
|
||||
C 589 3712 1062 3712 1171 3712
|
||||
L 2579 3712
|
||||
L 1869 2661
|
||||
C 1395 1954 1069 999 1069 165
|
||||
C 1069 89 1069 -128 1299 -128
|
||||
C 1530 -128 1530 89 1530 171
|
||||
L 1530 465
|
||||
C 1530 1508 1709 2196 2003 2636
|
||||
L 2886 3941
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m8b6bb046dc" x="31.354872" y="112.691187" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{1.00}$ -->
|
||||
<g transform="translate(7.2 115.458588) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m8b6bb046dc" x="31.354872" y="61.329294" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{1.25}$ -->
|
||||
<g transform="translate(7.2 64.096695) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m8b6bb046dc" x="31.354872" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{1.50}$ -->
|
||||
<g transform="translate(7.2 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 31.354872 215.414973
|
||||
L 31.354872 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 187.365387 215.414973
|
||||
L 187.365387 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 31.354872 215.414973
|
||||
L 187.365387 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 31.354872 9.967401
|
||||
L 187.365387 9.967401
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_2">
|
||||
<g id="patch_7">
|
||||
<path d="M 202.693349 215.414973
|
||||
L 212.965728 215.414973
|
||||
L 212.965728 9.967401
|
||||
L 202.693349 9.967401
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path clip-path="url(#p44c3475105)" style="fill: #ffffff; stroke: #ffffff; stroke-width: 0.01; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
<g id="QuadMesh_1">
|
||||
<path d="M 202.693349 215.414973
|
||||
L 212.965728 215.414973
|
||||
L 212.965728 198.294342
|
||||
L 202.693349 198.294342
|
||||
L 202.693349 215.414973
|
||||
" clip-path="url(#p44c3475105)" style="fill: #471063"/>
|
||||
<path d="M 202.693349 198.294342
|
||||
L 212.965728 198.294342
|
||||
L 212.965728 181.173711
|
||||
L 202.693349 181.173711
|
||||
L 202.693349 198.294342
|
||||
" clip-path="url(#p44c3475105)" style="fill: #472d7b"/>
|
||||
<path d="M 202.693349 181.173711
|
||||
L 212.965728 181.173711
|
||||
L 212.965728 164.05308
|
||||
L 202.693349 164.05308
|
||||
L 202.693349 181.173711
|
||||
" clip-path="url(#p44c3475105)" style="fill: #404688"/>
|
||||
<path d="M 202.693349 164.05308
|
||||
L 212.965728 164.05308
|
||||
L 212.965728 146.932449
|
||||
L 202.693349 146.932449
|
||||
L 202.693349 164.05308
|
||||
" clip-path="url(#p44c3475105)" style="fill: #365d8d"/>
|
||||
<path d="M 202.693349 146.932449
|
||||
L 212.965728 146.932449
|
||||
L 212.965728 129.811818
|
||||
L 202.693349 129.811818
|
||||
L 202.693349 146.932449
|
||||
" clip-path="url(#p44c3475105)" style="fill: #2c728e"/>
|
||||
<path d="M 202.693349 129.811818
|
||||
L 212.965728 129.811818
|
||||
L 212.965728 112.691187
|
||||
L 202.693349 112.691187
|
||||
L 202.693349 129.811818
|
||||
" clip-path="url(#p44c3475105)" style="fill: #24868e"/>
|
||||
<path d="M 202.693349 112.691187
|
||||
L 212.965728 112.691187
|
||||
L 212.965728 95.570556
|
||||
L 202.693349 95.570556
|
||||
L 202.693349 112.691187
|
||||
" clip-path="url(#p44c3475105)" style="fill: #1f9a8a"/>
|
||||
<path d="M 202.693349 95.570556
|
||||
L 212.965728 95.570556
|
||||
L 212.965728 78.449925
|
||||
L 202.693349 78.449925
|
||||
L 202.693349 95.570556
|
||||
" clip-path="url(#p44c3475105)" style="fill: #28ae80"/>
|
||||
<path d="M 202.693349 78.449925
|
||||
L 212.965728 78.449925
|
||||
L 212.965728 61.329294
|
||||
L 202.693349 61.329294
|
||||
L 202.693349 78.449925
|
||||
" clip-path="url(#p44c3475105)" style="fill: #48c16e"/>
|
||||
<path d="M 202.693349 61.329294
|
||||
L 212.965728 61.329294
|
||||
L 212.965728 44.208663
|
||||
L 202.693349 44.208663
|
||||
L 202.693349 61.329294
|
||||
" clip-path="url(#p44c3475105)" style="fill: #75d054"/>
|
||||
<path d="M 202.693349 44.208663
|
||||
L 212.965728 44.208663
|
||||
L 212.965728 27.088032
|
||||
L 202.693349 27.088032
|
||||
L 202.693349 44.208663
|
||||
" clip-path="url(#p44c3475105)" style="fill: #addc30"/>
|
||||
<path d="M 202.693349 27.088032
|
||||
L 212.965728 27.088032
|
||||
L 212.965728 9.967401
|
||||
L 202.693349 9.967401
|
||||
L 202.693349 27.088032
|
||||
" clip-path="url(#p44c3475105)" style="fill: #e5e419"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3"/>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_11">
|
||||
<defs>
|
||||
<path id="me2beed18f1" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{0.0015}$ -->
|
||||
<g transform="translate(222.065728 218.182373) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="181.173711" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\mathdefault{0.0021}$ -->
|
||||
<g transform="translate(222.065728 183.941111) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="146.932449" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\mathdefault{0.0027}$ -->
|
||||
<g transform="translate(222.065728 149.69985) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="112.691187" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.0033}$ -->
|
||||
<g transform="translate(222.065728 115.458588) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-33" d="M 1414 2157
|
||||
C 1984 2157 2234 1662 2234 1090
|
||||
C 2234 320 1824 25 1453 25
|
||||
C 1114 25 563 194 390 693
|
||||
C 422 680 454 680 486 680
|
||||
C 640 680 755 782 755 948
|
||||
C 755 1133 614 1216 486 1216
|
||||
C 378 1216 211 1165 211 926
|
||||
C 211 335 787 -128 1466 -128
|
||||
C 2176 -128 2720 430 2720 1085
|
||||
C 2720 1707 2208 2157 1600 2227
|
||||
C 2086 2328 2554 2756 2554 3329
|
||||
C 2554 3820 2048 4179 1472 4179
|
||||
C 890 4179 378 3829 378 3329
|
||||
C 378 3110 544 3072 627 3072
|
||||
C 762 3072 877 3155 877 3321
|
||||
C 877 3486 762 3569 627 3569
|
||||
C 602 3569 570 3569 544 3557
|
||||
C 730 3959 1235 4032 1459 4032
|
||||
C 1683 4032 2106 3925 2106 3320
|
||||
C 2106 3143 2080 2828 1862 2550
|
||||
C 1670 2304 1453 2304 1242 2284
|
||||
C 1210 2284 1062 2269 1037 2269
|
||||
C 992 2263 966 2257 966 2208
|
||||
C 966 2163 973 2157 1101 2157
|
||||
L 1414 2157
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="78.449925" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{0.0039}$ -->
|
||||
<g transform="translate(222.065728 81.217326) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-39" d="M 2253 1864
|
||||
C 2253 464 1670 31 1190 31
|
||||
C 1043 31 685 31 538 294
|
||||
C 704 268 826 357 826 518
|
||||
C 826 692 685 749 595 749
|
||||
C 538 749 365 723 365 506
|
||||
C 365 71 742 -128 1203 -128
|
||||
C 1939 -128 2688 674 2688 2073
|
||||
C 2688 3817 1971 4179 1485 4179
|
||||
C 851 4179 243 3628 243 2778
|
||||
C 243 1991 762 1408 1414 1408
|
||||
C 1952 1408 2189 1903 2253 2112
|
||||
L 2253 1864
|
||||
z
|
||||
M 1427 1510
|
||||
C 1254 1510 1011 1542 813 1922
|
||||
C 678 2169 678 2461 678 2771
|
||||
C 678 3146 678 3405 858 3684
|
||||
C 947 3817 1114 4032 1485 4032
|
||||
C 2240 4032 2240 2885 2240 2632
|
||||
C 2240 2182 2035 1510 1427 1510
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-39" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="44.208663" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{0.0045}$ -->
|
||||
<g transform="translate(222.065728 46.976064) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#me2beed18f1" x="212.965728" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{0.0051}$ -->
|
||||
<g transform="translate(222.065728 12.734802) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="LineCollection_1"/>
|
||||
<g id="patch_9">
|
||||
<path d="M 202.693349 215.414973
|
||||
L 207.829539 215.414973
|
||||
L 212.965728 215.414973
|
||||
L 212.965728 9.967401
|
||||
L 207.829539 9.967401
|
||||
L 202.693349 9.967401
|
||||
L 202.693349 215.414973
|
||||
z
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p00b92795de">
|
||||
<rect x="31.354872" y="9.967401" width="156.010515" height="205.447572"/>
|
||||
</clipPath>
|
||||
<clipPath id="p44c3475105">
|
||||
<rect x="202.693349" y="9.967401" width="10.272379" height="205.447572"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 250 KiB |
Before Width: | Height: | Size: 253 KiB |
|
@ -115,24 +115,11 @@ coupling-change/cycle time.
|
|||
fig, ax = plt.subplots()
|
||||
for model in models:
|
||||
pu.plot_with_σ(models[0].t, model.interaction_power().sum_baths().integrate(model.t), ax=ax)
|
||||
print(model.system_energy().N, model.power(steady_idx=2).value, model.T[0], model.ω_c[0])
|
||||
#print(model.system_energy().N, model.power(steady_idx=2).value, model.T[0], model.ω_c[0])
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
100000 -0.0035488097495756884 0.4 0.5
|
||||
100000 -0.0030230702698324334 0.45 0.5
|
||||
90000 -0.0025068620989412353 0.5 0.5
|
||||
90000 -0.0020493778751333913 0.55 0.5
|
||||
90000 -0.001606240956288459 0.6 0.5
|
||||
90000 -0.004762254093973542 0.4 0.75
|
||||
90000 -0.004291657187886886 0.45 0.75
|
||||
90000 -0.003813983726866509 0.5 0.75
|
||||
90000 -0.0033985551697407164 0.55 0.75
|
||||
90000 -0.0029932266470821846 0.6 0.75
|
||||
90000 -0.0048136244545500416 0.4 1.0
|
||||
90000 -0.0043606909182305875 0.45 1.0
|
||||
#+end_example
|
||||
[[file:./.ob-jupyter/5a3bab0efb62516d5f68e6b330770c6fd8740bf7.svg]]
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -145,12 +132,14 @@ coupling-change/cycle time.
|
|||
[[file:./.ob-jupyter/d309a0f5287133736614819b4698027c92c12fe1.svg]]
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for model in models:
|
||||
plt.plot(model.t, abs(model.total_energy_from_power().value - model.total_energy().value))
|
||||
ot.plot_energy_deviation(models)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/fa5ec90259d514bc84e5cf15ec64944bfdb1c630.svg]]
|
||||
:RESULTS:
|
||||
| <Figure | size | 340x320 | with | 1 | Axes> | <AxesSubplot: | xlabel= | $\tau$ | ylabel= | $\Delta | | H | | /\max | | H | | $ | > |
|
||||
[[file:./.ob-jupyter/c04269e0edbcb54c512e19b6da56f23825778a43.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -177,7 +166,7 @@ coupling-change/cycle time.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/1d23b5f9499d588049ff6ab13eddc9eadcfa3c5a.svg]]
|
||||
[[file:./.ob-jupyter/a25ccbba91487a7d4ac757e0527d502a790830b1.svg]]
|
||||
|
||||
#+begin_src jupyter-python
|
||||
fig, ax = plt.subplots()
|
||||
|
@ -207,7 +196,7 @@ coupling-change/cycle time.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/0d27f2d2ae508238056da203e2ca2ec9c08014bc.svg]]
|
||||
[[file:./.ob-jupyter/6037d87d2d4f3519db8d960319384d87040a33b8.svg]]
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -389,6 +378,58 @@ coupling-change/cycle time.
|
|||
[[file:./.ob-jupyter/92eb14fc6298a31f763a69186ae203923187aa38.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
f=ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(-model.power(steady_idx=2).value, 0, np.inf),
|
||||
lambda model: model.T[0],
|
||||
lambda model: model.ω_c[0],
|
||||
levels=10
|
||||
)
|
||||
plt.gcf().colorbar(f[2][0])
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: <matplotlib.colorbar.Colorbar at 0x7ff4ac4da4c0>
|
||||
[[file:./.ob-jupyter/ac6550b4f2034c623c6f1ba7c59ec20ae037eccd.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
f = plt.figure()
|
||||
a_power = f.add_subplot(121)
|
||||
a_efficiency = f.add_subplot(122)
|
||||
axs = [a_power, a_efficiency]
|
||||
|
||||
for ax in axs:
|
||||
ax.set_xlabel(r"$T_c$")
|
||||
ax.set_ylabel(r"$\omega_c$")
|
||||
|
||||
(_, _, (c1, data1)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(-model.power(steady_idx=2).value, 0, np.inf),
|
||||
lambda model: model.T[0],
|
||||
lambda model: model.ω_c[0],
|
||||
ax=a_power,
|
||||
)
|
||||
a_power.set_title(r"$\bar{P}/\Omega$")
|
||||
|
||||
|
||||
(_, _, (c2, data2)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(np.nan_to_num(model.efficiency(steady_idx=2).value * 100), 0, np.inf),
|
||||
lambda model: model.T[0],
|
||||
lambda model: model.ω_c[0],
|
||||
ax=a_efficiency,
|
||||
)
|
||||
a_efficiency.set_title(r"$\eta\, [\%]$")
|
||||
f.colorbar(c1, ax=axs[0])
|
||||
f.colorbar(c2, ax=axs[1])
|
||||
fs.export_fig("bath_memory_power_efficiency_contour", x_scaling=2, y_scaling=.8, data=(data1, data2))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/5fc81f79f65d63721168aba9a472c104ac45df91.svg]]
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -425,7 +466,7 @@ coupling-change/cycle time.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/fd401b4549a06638d0d95f0020299ebd09257bf5.svg]]
|
||||
[[file:./.ob-jupyter/306565c079f017833496fccc16e3cf4f0b20a4aa.svg]]
|
||||
|
||||
* Things to Look At
|
||||
- power and efficiency
|
||||
|
|
Before Width: | Height: | Size: 814 KiB |
|
@ -0,0 +1,887 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="423.746772pt" height="424.55952pt" viewBox="0 0 423.746772 424.55952" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||||
<metadata>
|
||||
<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>1980-01-01T00:00:00+00:00</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs>
|
||||
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
|
||||
</defs>
|
||||
<g id="figure_1">
|
||||
<g id="patch_1">
|
||||
<path d="M 0 424.55952
|
||||
L 423.746772 424.55952
|
||||
L 423.746772 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 353.338164 381.23484
|
||||
L 353.338164 23.577725
|
||||
L 44.493819 23.577725
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<path d="M 353.338164 381.23484
|
||||
L 353.338164 380.607363
|
||||
L 352.592654 381.23484
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #48186a"/>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<path d="M 353.338164 380.607363
|
||||
L 353.338164 339.76638
|
||||
L 304.069181 381.23484
|
||||
L 352.592654 381.23484
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #424086"/>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<path d="M 291.569295 381.23484
|
||||
L 304.069181 381.23484
|
||||
L 353.338164 339.76638
|
||||
L 353.338164 298.925397
|
||||
L 291.569295 345.435426
|
||||
L 246.730671 381.23484
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #33638d"/>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<path d="M 229.800426 381.23484
|
||||
L 246.730671 381.23484
|
||||
L 291.569295 345.435426
|
||||
L 353.338164 298.925397
|
||||
L 353.338164 262.015801
|
||||
L 353.338164 254.220958
|
||||
L 346.141332 262.015801
|
||||
L 291.569295 297.213911
|
||||
L 229.800426 341.349741
|
||||
L 181.581715 381.23484
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #26828e"/>
|
||||
</g>
|
||||
<g id="PathCollection_5">
|
||||
<path d="M 168.031557 381.23484
|
||||
L 181.581715 381.23484
|
||||
L 229.800426 341.349741
|
||||
L 291.569295 297.213911
|
||||
L 346.141332 262.015801
|
||||
L 353.338164 254.220958
|
||||
L 353.338164 173.244696
|
||||
L 291.569295 234.759647
|
||||
L 267.791019 262.015801
|
||||
L 229.800426 285.92954
|
||||
L 168.031557 329.456705
|
||||
L 107.071415 381.23484
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #1fa088"/>
|
||||
</g>
|
||||
<g id="PathCollection_6">
|
||||
<path d="M 106.262688 381.23484
|
||||
L 107.071415 381.23484
|
||||
L 168.031557 329.456705
|
||||
L 229.800426 285.92954
|
||||
L 267.791019 262.015801
|
||||
L 291.569295 234.759647
|
||||
L 353.338164 173.244696
|
||||
L 353.338164 142.796763
|
||||
L 353.338164 57.055981
|
||||
L 291.569295 128.136081
|
||||
L 279.850848 142.796763
|
||||
L 229.800426 190.492673
|
||||
L 172.004379 262.015801
|
||||
L 168.031557 264.552143
|
||||
L 106.262688 305.808356
|
||||
L 44.493819 352.889481
|
||||
L 44.493819 381.23484
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #3fbc73"/>
|
||||
</g>
|
||||
<g id="PathCollection_7">
|
||||
<path d="M 106.262688 305.808356
|
||||
L 168.031557 264.552143
|
||||
L 172.004379 262.015801
|
||||
L 229.800426 190.492673
|
||||
L 279.850848 142.796763
|
||||
L 291.569295 128.136081
|
||||
L 353.338164 57.055981
|
||||
L 353.338164 23.577725
|
||||
L 291.569295 23.577725
|
||||
L 229.800426 23.577725
|
||||
L 223.726384 23.577725
|
||||
L 168.031557 97.432449
|
||||
L 138.138199 142.796763
|
||||
L 106.262688 180.859693
|
||||
L 44.493819 260.397925
|
||||
L 44.493819 262.015801
|
||||
L 44.493819 352.889481
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #84d44b"/>
|
||||
</g>
|
||||
<g id="PathCollection_8">
|
||||
<path d="M 106.262688 180.859693
|
||||
L 138.138199 142.796763
|
||||
L 168.031557 97.432449
|
||||
L 223.726384 23.577725
|
||||
L 168.031557 23.577725
|
||||
L 106.262688 23.577725
|
||||
L 44.493819 23.577725
|
||||
L 44.493819 142.796763
|
||||
L 44.493819 260.397925
|
||||
z
|
||||
" clip-path="url(#p6c1e39b7ff)" style="fill: #d8e219"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m76292aa8f8" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m76292aa8f8" x="44.493819" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(36.391763 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m76292aa8f8" x="106.262688" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.3}$ -->
|
||||
<g transform="translate(98.160632 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-33" d="M 1414 2157
|
||||
C 1984 2157 2234 1662 2234 1090
|
||||
C 2234 320 1824 25 1453 25
|
||||
C 1114 25 563 194 390 693
|
||||
C 422 680 454 680 486 680
|
||||
C 640 680 755 782 755 948
|
||||
C 755 1133 614 1216 486 1216
|
||||
C 378 1216 211 1165 211 926
|
||||
C 211 335 787 -128 1466 -128
|
||||
C 2176 -128 2720 430 2720 1085
|
||||
C 2720 1707 2208 2157 1600 2227
|
||||
C 2086 2328 2554 2756 2554 3329
|
||||
C 2554 3820 2048 4179 1472 4179
|
||||
C 890 4179 378 3829 378 3329
|
||||
C 378 3110 544 3072 627 3072
|
||||
C 762 3072 877 3155 877 3321
|
||||
C 877 3486 762 3569 627 3569
|
||||
C 602 3569 570 3569 544 3557
|
||||
C 730 3959 1235 4032 1459 4032
|
||||
C 1683 4032 2106 3925 2106 3320
|
||||
C 2106 3143 2080 2828 1862 2550
|
||||
C 1670 2304 1453 2304 1242 2284
|
||||
C 1210 2284 1062 2269 1037 2269
|
||||
C 992 2263 966 2257 966 2208
|
||||
C 966 2163 973 2157 1101 2157
|
||||
L 1414 2157
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m76292aa8f8" x="168.031557" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(159.929501 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m76292aa8f8" x="229.800426" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(221.69837 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m76292aa8f8" x="291.569295" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(283.467239 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m76292aa8f8" x="353.338164" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.7}$ -->
|
||||
<g transform="translate(345.236108 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
L 1382 4081
|
||||
C 634 4081 621 4165 595 4288
|
||||
L 480 4288
|
||||
L 294 3094
|
||||
L 410 3094
|
||||
C 429 3215 474 3540 550 3661
|
||||
C 589 3712 1062 3712 1171 3712
|
||||
L 2579 3712
|
||||
L 1869 2661
|
||||
C 1395 1954 1069 999 1069 165
|
||||
C 1069 89 1069 -128 1299 -128
|
||||
C 1530 -128 1530 89 1530 171
|
||||
L 1530 465
|
||||
C 1530 1508 1709 2196 2003 2636
|
||||
L 2886 3941
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\delta$ -->
|
||||
<g transform="translate(196.107637 414.841208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMMI12-e" d="M 1664 2795
|
||||
C 845 2597 256 1748 256 1001
|
||||
C 256 319 717 -64 1229 -64
|
||||
C 1984 -64 2496 970 2496 1818
|
||||
C 2496 2392 2227 2744 2067 2954
|
||||
C 1830 3254 1446 3746 1446 4052
|
||||
C 1446 4161 1530 4352 1811 4352
|
||||
C 2010 4352 2131 4282 2323 4173
|
||||
C 2381 4134 2528 4052 2611 4052
|
||||
C 2746 4052 2842 4185 2842 4287
|
||||
C 2842 4409 2746 4428 2522 4479
|
||||
C 2221 4543 2131 4543 2022 4543
|
||||
C 1914 4543 1286 4543 1286 3892
|
||||
C 1286 3579 1446 3216 1664 2795
|
||||
z
|
||||
M 1734 2669
|
||||
C 1978 2165 2074 1974 2074 1560
|
||||
C 2074 1063 1805 63 1235 63
|
||||
C 986 63 627 229 627 821
|
||||
C 627 1235 864 2439 1734 2669
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMMI12-e" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m86cd1d7257" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m86cd1d7257" x="44.493819" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{35}$ -->
|
||||
<g transform="translate(22.71234 385.731854) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m86cd1d7257" x="44.493819" y="262.015801" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(22.71234 266.512815) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-35" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m86cd1d7257" x="44.493819" y="142.796763" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{65}$ -->
|
||||
<g transform="translate(22.71234 147.293777) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-36" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m86cd1d7257" x="44.493819" y="23.577725" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{80}$ -->
|
||||
<g transform="translate(22.71234 28.074739) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-38" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\Theta$ -->
|
||||
<g transform="translate(16.194028 207.337968) rotate(-90) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-2" d="M 4307 2153
|
||||
C 4307 3467 3366 4455 2304 4455
|
||||
C 1216 4455 294 3454 294 2153
|
||||
C 294 852 1229 -128 2298 -128
|
||||
C 3392 -128 4307 872 4307 2153
|
||||
z
|
||||
M 2304 -20
|
||||
C 1574 -20 762 673 762 2153
|
||||
C 762 3679 1600 4352 2298 4352
|
||||
C 3021 4352 3840 3660 3840 2153
|
||||
C 3840 653 3008 -20 2304 -20
|
||||
z
|
||||
M 3501 2560
|
||||
L 3386 2560
|
||||
L 3386 2342
|
||||
L 1216 2342
|
||||
L 1216 2560
|
||||
L 1101 2560
|
||||
L 1101 1766
|
||||
L 1216 1766
|
||||
L 1216 1984
|
||||
L 3386 1984
|
||||
L 3386 1766
|
||||
L 3501 1766
|
||||
L 3501 2560
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-2" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 44.493819 23.577725
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 353.338164 381.23484
|
||||
L 353.338164 23.577725
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 353.338164 381.23484
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 44.493819 23.577725
|
||||
L 353.338164 23.577725
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\eta$ -->
|
||||
<g transform="translate(195.306305 17.577725) scale(0.15 -0.15)">
|
||||
<defs>
|
||||
<path id="CMMI12-11" d="M 3040 1768
|
||||
C 3072 1895 3091 1973 3091 2145
|
||||
C 3091 2528 2867 2815 2381 2815
|
||||
C 1811 2815 1510 2413 1395 2254
|
||||
C 1376 2618 1114 2815 832 2815
|
||||
C 646 2815 499 2726 378 2483
|
||||
C 262 2254 173 1864 173 1839
|
||||
C 173 1813 198 1781 243 1781
|
||||
C 294 1781 301 1788 339 1934
|
||||
C 435 2311 557 2688 813 2688
|
||||
C 960 2688 1011 2586 1011 2394
|
||||
C 1011 2254 947 2005 902 1807
|
||||
L 723 1118
|
||||
C 698 996 627 709 595 593
|
||||
C 550 428 480 127 480 96
|
||||
C 480 6 550 -64 646 -64
|
||||
C 723 -64 813 -25 864 70
|
||||
C 877 102 934 326 966 453
|
||||
L 1107 1028
|
||||
L 1318 1871
|
||||
C 1331 1909 1491 2228 1728 2432
|
||||
C 1894 2586 2112 2688 2362 2688
|
||||
C 2618 2688 2707 2496 2707 2241
|
||||
C 2707 2055 2682 1953 2650 1831
|
||||
L 1907 -1107
|
||||
C 1901 -1139 1888 -1177 1888 -1216
|
||||
C 1888 -1312 1965 -1376 2061 -1376
|
||||
C 2118 -1376 2253 -1350 2304 -1158
|
||||
L 3040 1768
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMMI12-11" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_2">
|
||||
<g id="patch_7">
|
||||
<path d="M 376.882437 381.23484
|
||||
L 394.765293 381.23484
|
||||
L 394.765293 23.577725
|
||||
L 376.882437 23.577725
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path clip-path="url(#pc261ddea00)" style="fill: #ffffff; stroke: #ffffff; stroke-width: 0.01; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
<g id="QuadMesh_1">
|
||||
<path d="M 376.882437 381.23484
|
||||
L 394.765293 381.23484
|
||||
L 394.765293 336.5277
|
||||
L 376.882437 336.5277
|
||||
L 376.882437 381.23484
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #48186a"/>
|
||||
<path d="M 376.882437 336.5277
|
||||
L 394.765293 336.5277
|
||||
L 394.765293 291.820561
|
||||
L 376.882437 291.820561
|
||||
L 376.882437 336.5277
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #424086"/>
|
||||
<path d="M 376.882437 291.820561
|
||||
L 394.765293 291.820561
|
||||
L 394.765293 247.113422
|
||||
L 376.882437 247.113422
|
||||
L 376.882437 291.820561
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #33638d"/>
|
||||
<path d="M 376.882437 247.113422
|
||||
L 394.765293 247.113422
|
||||
L 394.765293 202.406282
|
||||
L 376.882437 202.406282
|
||||
L 376.882437 247.113422
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #26828e"/>
|
||||
<path d="M 376.882437 202.406282
|
||||
L 394.765293 202.406282
|
||||
L 394.765293 157.699143
|
||||
L 376.882437 157.699143
|
||||
L 376.882437 202.406282
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #1fa088"/>
|
||||
<path d="M 376.882437 157.699143
|
||||
L 394.765293 157.699143
|
||||
L 394.765293 112.992003
|
||||
L 376.882437 112.992003
|
||||
L 376.882437 157.699143
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #3fbc73"/>
|
||||
<path d="M 376.882437 112.992003
|
||||
L 394.765293 112.992003
|
||||
L 394.765293 68.284864
|
||||
L 376.882437 68.284864
|
||||
L 376.882437 112.992003
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #84d44b"/>
|
||||
<path d="M 376.882437 68.284864
|
||||
L 394.765293 68.284864
|
||||
L 394.765293 23.577725
|
||||
L 376.882437 23.577725
|
||||
L 376.882437 68.284864
|
||||
" clip-path="url(#pc261ddea00)" style="fill: #d8e219"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3"/>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<defs>
|
||||
<path id="mb4f97e2401" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0}$ -->
|
||||
<g transform="translate(403.865293 385.731854) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="336.5277" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{6}$ -->
|
||||
<g transform="translate(403.865293 341.024714) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-36" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="291.820561" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{12}$ -->
|
||||
<g transform="translate(403.865293 296.317575) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="247.113422" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{18}$ -->
|
||||
<g transform="translate(403.865293 251.610436) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="202.406282" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
<!-- $\mathdefault{24}$ -->
|
||||
<g transform="translate(403.865293 206.903296) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-32" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="157.699143" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
<!-- $\mathdefault{30}$ -->
|
||||
<g transform="translate(403.865293 162.196157) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="112.992003" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
<!-- $\mathdefault{36}$ -->
|
||||
<g transform="translate(403.865293 117.489018) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="68.284864" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
<!-- $\mathdefault{42}$ -->
|
||||
<g transform="translate(403.865293 72.781878) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-34" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#mb4f97e2401" x="394.765293" y="23.577725" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
<!-- $\mathdefault{48}$ -->
|
||||
<g transform="translate(403.865293 28.074739) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-34" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="LineCollection_1"/>
|
||||
<g id="patch_9">
|
||||
<path d="M 376.882437 381.23484
|
||||
L 385.823865 381.23484
|
||||
L 394.765293 381.23484
|
||||
L 394.765293 23.577725
|
||||
L 385.823865 23.577725
|
||||
L 376.882437 23.577725
|
||||
L 376.882437 381.23484
|
||||
z
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p6c1e39b7ff">
|
||||
<rect x="44.493819" y="23.577725" width="308.844345" height="357.657115"/>
|
||||
</clipPath>
|
||||
<clipPath id="pc261ddea00">
|
||||
<rect x="376.882437" y="23.577725" width="17.882856" height="357.657115"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m31b4c33ff8" d="M 55.628175 -147.123805
|
||||
<path id="m3ce9dfb9d8" d="M 55.628175 -147.123805
|
||||
L 55.628175 -147.123805
|
||||
L 55.688631 -147.123805
|
||||
L 55.749086 -147.123805
|
||||
|
@ -6048,13 +6048,13 @@ L 55.628175 -147.123805
|
|||
z
|
||||
" style="stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m31b4c33ff8" x="0" y="238.79952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m3ce9dfb9d8" x="0" y="238.79952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m8b5e937d54" d="M 55.628175 -147.123805
|
||||
<path id="m0d54a0b381" d="M 55.628175 -147.123805
|
||||
L 55.628175 -147.123805
|
||||
L 55.688631 -147.123805
|
||||
L 55.749086 -147.123805
|
||||
|
@ -12063,13 +12063,13 @@ L 55.628175 -147.123805
|
|||
z
|
||||
" style="stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m8b5e937d54" x="0" y="238.79952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m0d54a0b381" x="0" y="238.79952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="mac3d5fa9e4" d="M 55.628175 -147.123805
|
||||
<path id="mcb996c6d58" d="M 55.628175 -147.123805
|
||||
L 55.628175 -147.123805
|
||||
L 55.688631 -147.123805
|
||||
L 55.749086 -147.123805
|
||||
|
@ -18078,13 +18078,13 @@ L 55.628175 -147.123805
|
|||
z
|
||||
" style="stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#mac3d5fa9e4" x="0" y="238.79952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#mcb996c6d58" x="0" y="238.79952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_4">
|
||||
<defs>
|
||||
<path id="m6a28ebe972" d="M 55.628175 -147.123805
|
||||
<path id="mdcadd7fdff" d="M 55.628175 -147.123805
|
||||
L 55.628175 -147.123805
|
||||
L 55.688631 -147.123805
|
||||
L 55.749086 -147.123805
|
||||
|
@ -24093,13 +24093,13 @@ L 55.628175 -147.123805
|
|||
z
|
||||
" style="stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m6a28ebe972" x="0" y="238.79952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#mdcadd7fdff" x="0" y="238.79952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_5">
|
||||
<defs>
|
||||
<path id="m46aa568928" d="M 55.628175 -147.123805
|
||||
<path id="m175705ac47" d="M 55.628175 -147.123805
|
||||
L 55.628175 -147.123805
|
||||
L 55.688631 -147.123805
|
||||
L 55.749086 -147.123805
|
||||
|
@ -30108,13 +30108,13 @@ L 55.628175 -147.123805
|
|||
z
|
||||
" style="stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m46aa568928" x="0" y="238.79952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m175705ac47" x="0" y="238.79952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_6">
|
||||
<defs>
|
||||
<path id="m2e7794dd86" d="M 55.628175 -147.123805
|
||||
<path id="m32dd3c17d9" d="M 55.628175 -147.123805
|
||||
L 55.628175 -147.123805
|
||||
L 55.688631 -147.123805
|
||||
L 55.749086 -147.123805
|
||||
|
@ -36123,20 +36123,20 @@ L 55.628175 -147.123805
|
|||
z
|
||||
" style="stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m2e7794dd86" x="0" y="238.79952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m32dd3c17d9" x="0" y="238.79952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m4eba6cc6b7" d="M 0 0
|
||||
<path id="mcf74062867" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m4eba6cc6b7" x="55.628175" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf74062867" x="55.628175" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -36172,7 +36172,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m4eba6cc6b7" x="90.162659" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf74062867" x="90.162659" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -36210,7 +36210,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m4eba6cc6b7" x="124.697144" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf74062867" x="124.697144" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -36252,7 +36252,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m4eba6cc6b7" x="159.231628" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf74062867" x="159.231628" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -36291,7 +36291,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m4eba6cc6b7" x="193.766112" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf74062867" x="193.766112" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -36335,7 +36335,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m4eba6cc6b7" x="228.300597" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf74062867" x="228.300597" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -36398,12 +36398,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m11c608ee76" d="M 0 0
|
||||
<path id="ma662df331c" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m11c608ee76" x="46.562873" y="194.4926" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma662df331c" x="46.562873" y="194.4926" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -36465,7 +36465,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m11c608ee76" x="46.562873" y="160.220305" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma662df331c" x="46.562873" y="160.220305" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -36481,7 +36481,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m11c608ee76" x="46.562873" y="125.94801" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma662df331c" x="46.562873" y="125.94801" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -36497,7 +36497,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m11c608ee76" x="46.562873" y="91.675715" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma662df331c" x="46.562873" y="91.675715" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -36512,7 +36512,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m11c608ee76" x="46.562873" y="57.40342" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma662df331c" x="46.562873" y="57.40342" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -36527,7 +36527,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m11c608ee76" x="46.562873" y="23.131125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma662df331c" x="46.562873" y="23.131125" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -36721,16 +36721,16 @@ z
|
|||
<g id="LineCollection_1">
|
||||
<path d="M 55.628175 91.675715
|
||||
L 55.628175 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 116.063523 81.542991
|
||||
L 116.063523 81.477209
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 176.49887 81.530351
|
||||
L 176.49887 81.464538
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 236.934218 81.557286
|
||||
L 236.934218 81.491595
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 55.628175 91.675715
|
||||
|
@ -36913,21 +36913,21 @@ L 236.087841 81.456473
|
|||
L 236.752851 81.52425
|
||||
L 236.934218 81.52444
|
||||
L 236.934218 81.52444
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 55.628175 91.675715
|
||||
L 55.628175 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 116.063523 67.028778
|
||||
L 116.063523 67.006602
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 176.49887 42.212967
|
||||
L 176.49887 42.181584
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 236.934218 17.3803
|
||||
L 236.934218 17.341862
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 55.628175 91.675715
|
||||
|
@ -37001,21 +37001,21 @@ L 235.906474 17.2395
|
|||
L 236.450574 17.354769
|
||||
L 236.934218 17.361081
|
||||
L 236.934218 17.361081
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 55.628175 91.675715
|
||||
L 55.628175 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 116.063523 91.675715
|
||||
L 116.063523 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 176.49887 91.675715
|
||||
L 176.49887 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 236.934218 91.675715
|
||||
L 236.934218 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 55.628175 91.675715
|
||||
|
@ -37089,21 +37089,21 @@ L 236.450574 91.787308
|
|||
L 236.813307 91.676987
|
||||
L 236.934218 91.675715
|
||||
L 236.934218 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_4">
|
||||
<path d="M 55.628175 91.675715
|
||||
L 55.628175 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 116.063523 140.03657
|
||||
L 116.063523 139.912596
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 176.49887 166.951564
|
||||
L 176.49887 166.775084
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 236.934218 193.679309
|
||||
L 236.934218 193.46281
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 55.628175 91.675715
|
||||
|
@ -37171,21 +37171,21 @@ L 205.618269 193.5267
|
|||
L 206.525102 193.571072
|
||||
L 236.934218 193.571059
|
||||
L 236.934218 193.571059
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_5">
|
||||
<path d="M 55.628175 91.675715
|
||||
L 55.628175 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 116.063523 91.675715
|
||||
L 116.063523 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 176.49887 91.675715
|
||||
L 176.49887 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 236.934218 91.675715
|
||||
L 236.934218 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 55.628175 91.675715
|
||||
|
@ -37290,21 +37290,21 @@ L 206.222824 91.720423
|
|||
L 206.706468 91.675715
|
||||
L 236.934218 91.675715
|
||||
L 236.934218 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_6">
|
||||
<path d="M 55.628175 91.675715
|
||||
L 55.628175 91.675715
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 116.063523 105.434409
|
||||
L 116.063523 105.403854
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 176.49887 107.180695
|
||||
L 176.49887 107.133427
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 236.934218 108.764649
|
||||
L 236.934218 108.705161
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 55.628175 91.675715
|
||||
|
@ -37434,11 +37434,11 @@ L 236.329663 108.932624
|
|||
L 236.63194 108.756364
|
||||
L 236.934218 108.734905
|
||||
L 236.934218 108.734905
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<defs>
|
||||
<path id="mc9ccd8e703" d="M 0 1
|
||||
<path id="m53928c5aea" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37450,16 +37450,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#mc9ccd8e703" x="55.628175" y="91.675715" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mc9ccd8e703" x="116.063523" y="81.5101" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mc9ccd8e703" x="176.49887" y="81.497445" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mc9ccd8e703" x="236.934218" y="81.52444" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m53928c5aea" x="55.628175" y="91.675715" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m53928c5aea" x="116.063523" y="81.5101" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m53928c5aea" x="176.49887" y="81.497445" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m53928c5aea" x="236.934218" y="81.52444" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<defs>
|
||||
<path id="m0f53d238e6" d="M 0 1
|
||||
<path id="ma5e686616b" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37471,16 +37471,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m0f53d238e6" x="55.628175" y="91.675715" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m0f53d238e6" x="116.063523" y="67.01769" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m0f53d238e6" x="176.49887" y="42.197276" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m0f53d238e6" x="236.934218" y="17.361081" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#ma5e686616b" x="55.628175" y="91.675715" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma5e686616b" x="116.063523" y="67.01769" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma5e686616b" x="176.49887" y="42.197276" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma5e686616b" x="236.934218" y="17.361081" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<defs>
|
||||
<path id="m0c9144ab54" d="M 0 1
|
||||
<path id="mee789752bd" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37492,16 +37492,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m0c9144ab54" x="55.628175" y="91.675715" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m0c9144ab54" x="116.063523" y="91.675715" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m0c9144ab54" x="176.49887" y="91.675715" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m0c9144ab54" x="236.934218" y="91.675715" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#mee789752bd" x="55.628175" y="91.675715" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mee789752bd" x="116.063523" y="91.675715" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mee789752bd" x="176.49887" y="91.675715" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mee789752bd" x="236.934218" y="91.675715" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<defs>
|
||||
<path id="m3d16444f1c" d="M 0 1
|
||||
<path id="m309c3f35f7" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37513,16 +37513,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#m3d16444f1c" x="55.628175" y="91.675715" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3d16444f1c" x="116.063523" y="139.974583" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3d16444f1c" x="176.49887" y="166.863324" style="fill: #d62728"/>
|
||||
<use xlink:href="#m3d16444f1c" x="236.934218" y="193.571059" style="fill: #d62728"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m309c3f35f7" x="55.628175" y="91.675715" style="fill: #d62728"/>
|
||||
<use xlink:href="#m309c3f35f7" x="116.063523" y="139.974583" style="fill: #d62728"/>
|
||||
<use xlink:href="#m309c3f35f7" x="176.49887" y="166.863324" style="fill: #d62728"/>
|
||||
<use xlink:href="#m309c3f35f7" x="236.934218" y="193.571059" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<defs>
|
||||
<path id="mffba4400ec" d="M 0 1
|
||||
<path id="mdd2357e9b0" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37534,11 +37534,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#mffba4400ec" x="55.628175" y="91.675715" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mffba4400ec" x="116.063523" y="91.675715" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mffba4400ec" x="176.49887" y="91.675715" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mffba4400ec" x="236.934218" y="91.675715" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#mdd2357e9b0" x="55.628175" y="91.675715" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdd2357e9b0" x="116.063523" y="91.675715" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdd2357e9b0" x="176.49887" y="91.675715" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdd2357e9b0" x="236.934218" y="91.675715" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
|
@ -37546,9 +37546,9 @@ z
|
|||
L 116.063523 105.419131
|
||||
L 176.49887 107.157061
|
||||
L 236.934218 108.734905
|
||||
" clip-path="url(#p7bc3b031fe)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p6fa461cf78)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="me148c6b74f" d="M 0 1
|
||||
<path id="m2d29bad1ff" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37560,11 +37560,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p7bc3b031fe)">
|
||||
<use xlink:href="#me148c6b74f" x="55.628175" y="91.675715" style="fill: #8c564b"/>
|
||||
<use xlink:href="#me148c6b74f" x="116.063523" y="105.419131" style="fill: #8c564b"/>
|
||||
<use xlink:href="#me148c6b74f" x="176.49887" y="107.157061" style="fill: #8c564b"/>
|
||||
<use xlink:href="#me148c6b74f" x="236.934218" y="108.734905" style="fill: #8c564b"/>
|
||||
<g clip-path="url(#p6fa461cf78)">
|
||||
<use xlink:href="#m2d29bad1ff" x="55.628175" y="91.675715" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m2d29bad1ff" x="116.063523" y="105.419131" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m2d29bad1ff" x="176.49887" y="107.157061" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m2d29bad1ff" x="236.934218" y="108.734905" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -37609,7 +37609,7 @@ L 63.662873 117.235821
|
|||
<g id="line2d_25"/>
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#mc9ccd8e703" x="63.662873" y="121.735821" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m53928c5aea" x="63.662873" y="121.735821" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -37743,7 +37743,7 @@ L 63.662873 130.702197
|
|||
<g id="line2d_27"/>
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m0f53d238e6" x="63.662873" y="135.202197" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#ma5e686616b" x="63.662873" y="135.202197" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -37917,7 +37917,7 @@ L 63.662873 144.168574
|
|||
<g id="line2d_29"/>
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m0c9144ab54" x="63.662873" y="148.668574" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mee789752bd" x="63.662873" y="148.668574" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -37970,7 +37970,7 @@ L 63.662873 157.63495
|
|||
<g id="line2d_31"/>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m3d16444f1c" x="63.662873" y="162.13495" style="fill: #d62728"/>
|
||||
<use xlink:href="#m309c3f35f7" x="63.662873" y="162.13495" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -38046,7 +38046,7 @@ L 63.662873 171.101326
|
|||
<g id="line2d_33"/>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#mffba4400ec" x="63.662873" y="175.601326" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mdd2357e9b0" x="63.662873" y="175.601326" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -38075,7 +38075,7 @@ L 72.662873 189.067702
|
|||
</g>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#me148c6b74f" x="63.662873" y="189.067702" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m2d29bad1ff" x="63.662873" y="189.067702" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -38091,7 +38091,7 @@ L 72.662873 189.067702
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p7bc3b031fe">
|
||||
<clipPath id="p6fa461cf78">
|
||||
<rect x="46.562873" y="7.2" width="199.436647" height="195.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 955 KiB After Width: | Height: | Size: 955 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 31 KiB |
|
@ -0,0 +1,976 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="423.802904pt" height="424.55952pt" viewBox="0 0 423.802904 424.55952" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||||
<metadata>
|
||||
<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>1980-01-01T00:00:00+00:00</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs>
|
||||
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
|
||||
</defs>
|
||||
<g id="figure_1">
|
||||
<g id="patch_1">
|
||||
<path d="M 0 424.55952
|
||||
L 423.802904 424.55952
|
||||
L 423.802904 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 332.007969 381.23484
|
||||
L 332.007969 25.418022
|
||||
L 44.493819 25.418022
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<path d="M 332.007969 381.23484
|
||||
L 332.007969 369.890304
|
||||
L 322.678412 381.23484
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #48186a"/>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<path d="M 332.007969 369.890304
|
||||
L 332.007969 338.199488
|
||||
L 296.616412 381.23484
|
||||
L 322.678412 381.23484
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #424086"/>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<path d="M 274.505139 381.23484
|
||||
L 296.616412 381.23484
|
||||
L 332.007969 338.199488
|
||||
L 332.007969 306.508672
|
||||
L 274.505139 374.760732
|
||||
L 269.542756 381.23484
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #33638d"/>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<path d="M 274.505139 374.760732
|
||||
L 332.007969 306.508672
|
||||
L 332.007969 274.817856
|
||||
L 274.505139 332.052605
|
||||
L 236.807111 381.23484
|
||||
L 269.542756 381.23484
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #26828e"/>
|
||||
</g>
|
||||
<g id="PathCollection_5">
|
||||
<path d="M 217.002309 381.23484
|
||||
L 236.807111 381.23484
|
||||
L 274.505139 332.052605
|
||||
L 332.007969 274.817856
|
||||
L 332.007969 262.629234
|
||||
L 332.007969 171.495854
|
||||
L 303.491522 262.629234
|
||||
L 274.505139 289.344479
|
||||
L 217.002309 358.11493
|
||||
L 199.72254 381.23484
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #1fa088"/>
|
||||
</g>
|
||||
<g id="PathCollection_6">
|
||||
<path d="M 159.499479 381.23484
|
||||
L 199.72254 381.23484
|
||||
L 217.002309 358.11493
|
||||
L 274.505139 289.344479
|
||||
L 303.491522 262.629234
|
||||
L 332.007969 171.495854
|
||||
L 332.007969 144.023628
|
||||
L 332.007969 25.418022
|
||||
L 274.505139 25.418022
|
||||
L 217.002309 25.418022
|
||||
L 187.633351 25.418022
|
||||
L 217.002309 58.796826
|
||||
L 259.50055 144.023628
|
||||
L 253.097555 262.629234
|
||||
L 217.002309 299.584704
|
||||
L 159.499479 374.916196
|
||||
L 152.499467 381.23484
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #3fbc73"/>
|
||||
</g>
|
||||
<g id="PathCollection_7">
|
||||
<path d="M 101.996649 381.23484
|
||||
L 152.499467 381.23484
|
||||
L 159.499479 374.916196
|
||||
L 217.002309 299.584704
|
||||
L 253.097555 262.629234
|
||||
L 259.50055 144.023628
|
||||
L 217.002309 58.796826
|
||||
L 187.633351 25.418022
|
||||
L 159.499479 25.418022
|
||||
L 101.996649 25.418022
|
||||
L 44.493819 25.418022
|
||||
L 44.493819 144.023628
|
||||
L 44.493819 262.629234
|
||||
L 44.493819 381.23484
|
||||
z
|
||||
M 45.18053 262.629234
|
||||
L 76.868216 144.023628
|
||||
L 101.996649 120.093661
|
||||
L 136.741567 144.023628
|
||||
L 159.499479 167.065406
|
||||
L 190.489948 262.629234
|
||||
L 159.499479 296.441542
|
||||
L 101.996649 339.340804
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #81d34d"/>
|
||||
</g>
|
||||
<g id="PathCollection_8">
|
||||
<path d="M 101.996649 339.340804
|
||||
L 159.499479 296.441542
|
||||
L 190.489948 262.629234
|
||||
L 159.499479 167.065406
|
||||
L 136.741567 144.023628
|
||||
L 101.996649 120.093661
|
||||
L 76.868216 144.023628
|
||||
L 45.18053 262.629234
|
||||
z
|
||||
" clip-path="url(#pcd3efe28aa)" style="fill: #d8e219"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m435933c065" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m435933c065" x="44.493819" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(36.391763 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m435933c065" x="101.996649" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.3}$ -->
|
||||
<g transform="translate(93.894593 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-33" d="M 1414 2157
|
||||
C 1984 2157 2234 1662 2234 1090
|
||||
C 2234 320 1824 25 1453 25
|
||||
C 1114 25 563 194 390 693
|
||||
C 422 680 454 680 486 680
|
||||
C 640 680 755 782 755 948
|
||||
C 755 1133 614 1216 486 1216
|
||||
C 378 1216 211 1165 211 926
|
||||
C 211 335 787 -128 1466 -128
|
||||
C 2176 -128 2720 430 2720 1085
|
||||
C 2720 1707 2208 2157 1600 2227
|
||||
C 2086 2328 2554 2756 2554 3329
|
||||
C 2554 3820 2048 4179 1472 4179
|
||||
C 890 4179 378 3829 378 3329
|
||||
C 378 3110 544 3072 627 3072
|
||||
C 762 3072 877 3155 877 3321
|
||||
C 877 3486 762 3569 627 3569
|
||||
C 602 3569 570 3569 544 3557
|
||||
C 730 3959 1235 4032 1459 4032
|
||||
C 1683 4032 2106 3925 2106 3320
|
||||
C 2106 3143 2080 2828 1862 2550
|
||||
C 1670 2304 1453 2304 1242 2284
|
||||
C 1210 2284 1062 2269 1037 2269
|
||||
C 992 2263 966 2257 966 2208
|
||||
C 966 2163 973 2157 1101 2157
|
||||
L 1414 2157
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m435933c065" x="159.499479" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(151.397423 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m435933c065" x="217.002309" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(208.900253 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m435933c065" x="274.505139" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(266.403083 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m435933c065" x="332.007969" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.7}$ -->
|
||||
<g transform="translate(323.905913 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
L 1382 4081
|
||||
C 634 4081 621 4165 595 4288
|
||||
L 480 4288
|
||||
L 294 3094
|
||||
L 410 3094
|
||||
C 429 3215 474 3540 550 3661
|
||||
C 589 3712 1062 3712 1171 3712
|
||||
L 2579 3712
|
||||
L 1869 2661
|
||||
C 1395 1954 1069 999 1069 165
|
||||
C 1069 89 1069 -128 1299 -128
|
||||
C 1530 -128 1530 89 1530 171
|
||||
L 1530 465
|
||||
C 1530 1508 1709 2196 2003 2636
|
||||
L 2886 3941
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\delta$ -->
|
||||
<g transform="translate(185.44254 414.841208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMMI12-e" d="M 1664 2795
|
||||
C 845 2597 256 1748 256 1001
|
||||
C 256 319 717 -64 1229 -64
|
||||
C 1984 -64 2496 970 2496 1818
|
||||
C 2496 2392 2227 2744 2067 2954
|
||||
C 1830 3254 1446 3746 1446 4052
|
||||
C 1446 4161 1530 4352 1811 4352
|
||||
C 2010 4352 2131 4282 2323 4173
|
||||
C 2381 4134 2528 4052 2611 4052
|
||||
C 2746 4052 2842 4185 2842 4287
|
||||
C 2842 4409 2746 4428 2522 4479
|
||||
C 2221 4543 2131 4543 2022 4543
|
||||
C 1914 4543 1286 4543 1286 3892
|
||||
C 1286 3579 1446 3216 1664 2795
|
||||
z
|
||||
M 1734 2669
|
||||
C 1978 2165 2074 1974 2074 1560
|
||||
C 2074 1063 1805 63 1235 63
|
||||
C 986 63 627 229 627 821
|
||||
C 627 1235 864 2439 1734 2669
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMMI12-e" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="mbf6c29f19e" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mbf6c29f19e" x="44.493819" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{35}$ -->
|
||||
<g transform="translate(22.71234 385.731854) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#mbf6c29f19e" x="44.493819" y="262.629234" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(22.71234 267.126248) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-35" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mbf6c29f19e" x="44.493819" y="144.023628" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{65}$ -->
|
||||
<g transform="translate(22.71234 148.520642) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-36" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mbf6c29f19e" x="44.493819" y="25.418022" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{80}$ -->
|
||||
<g transform="translate(22.71234 29.915036) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-38" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\Theta$ -->
|
||||
<g transform="translate(16.194028 208.258117) rotate(-90) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-2" d="M 4307 2153
|
||||
C 4307 3467 3366 4455 2304 4455
|
||||
C 1216 4455 294 3454 294 2153
|
||||
C 294 852 1229 -128 2298 -128
|
||||
C 3392 -128 4307 872 4307 2153
|
||||
z
|
||||
M 2304 -20
|
||||
C 1574 -20 762 673 762 2153
|
||||
C 762 3679 1600 4352 2298 4352
|
||||
C 3021 4352 3840 3660 3840 2153
|
||||
C 3840 653 3008 -20 2304 -20
|
||||
z
|
||||
M 3501 2560
|
||||
L 3386 2560
|
||||
L 3386 2342
|
||||
L 1216 2342
|
||||
L 1216 2560
|
||||
L 1101 2560
|
||||
L 1101 1766
|
||||
L 1216 1766
|
||||
L 1216 1984
|
||||
L 3386 1984
|
||||
L 3386 1766
|
||||
L 3501 1766
|
||||
L 3501 2560
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-2" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 44.493819 25.418022
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 332.007969 381.23484
|
||||
L 332.007969 25.418022
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 332.007969 381.23484
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 44.493819 25.418022
|
||||
L 332.007969 25.418022
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\bar{P}/\Omega^2$ -->
|
||||
<g transform="translate(170.961709 19.418022) scale(0.15 -0.15)">
|
||||
<defs>
|
||||
<path id="CMR17-16" d="M 2554 3520
|
||||
L 2554 3666
|
||||
L 378 3666
|
||||
L 378 3520
|
||||
L 2554 3520
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-50" d="M 1894 2023
|
||||
L 2970 2023
|
||||
C 3853 2023 4736 2673 4736 3401
|
||||
C 4736 3898 4314 4352 3507 4352
|
||||
L 1530 4352
|
||||
C 1408 4352 1350 4352 1350 4231
|
||||
C 1350 4167 1408 4167 1504 4167
|
||||
C 1894 4167 1894 4116 1894 4046
|
||||
C 1894 4034 1894 3995 1869 3899
|
||||
L 1005 472
|
||||
C 947 249 934 185 486 185
|
||||
C 365 185 301 185 301 70
|
||||
C 301 0 358 0 397 0
|
||||
C 518 0 646 0 768 0
|
||||
L 1517 0
|
||||
C 1638 0 1773 0 1894 0
|
||||
C 1946 0 2016 0 2016 121
|
||||
C 2016 185 1958 185 1862 185
|
||||
C 1478 185 1472 230 1472 293
|
||||
C 1472 325 1478 369 1485 401
|
||||
L 1894 2023
|
||||
z
|
||||
M 2355 3930
|
||||
C 2413 4167 2438 4167 2688 4167
|
||||
L 3322 4167
|
||||
C 3802 4167 4198 4013 4198 3535
|
||||
C 4198 3369 4115 2827 3821 2534
|
||||
C 3712 2419 3405 2176 2822 2176
|
||||
L 1920 2176
|
||||
L 2355 3930
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3d" d="M 2746 4562
|
||||
C 2746 4569 2784 4666 2784 4678
|
||||
C 2784 4755 2720 4800 2669 4800
|
||||
C 2637 4800 2579 4800 2528 4659
|
||||
L 384 -1363
|
||||
C 384 -1370 346 -1465 346 -1478
|
||||
C 346 -1555 410 -1600 461 -1600
|
||||
C 499 -1600 557 -1593 602 -1459
|
||||
L 2746 4562
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-a" d="M 4038 935
|
||||
L 3923 935
|
||||
C 3866 641 3846 563 3814 461
|
||||
C 3782 365 3763 314 3392 314
|
||||
L 2874 314
|
||||
C 2944 686 3098 961 3366 1391
|
||||
C 3699 1935 3974 2377 3974 2910
|
||||
C 3974 3775 3155 4480 2138 4480
|
||||
C 1094 4480 294 3768 294 2910
|
||||
C 294 2377 576 1922 890 1416
|
||||
C 1171 961 1325 686 1395 314
|
||||
L 877 314
|
||||
C 512 314 493 365 461 454
|
||||
C 422 557 410 641 346 935
|
||||
L 230 935
|
||||
L 416 0
|
||||
L 1382 0
|
||||
C 1517 0 1523 6 1523 102
|
||||
C 1523 558 1286 1154 1178 1429
|
||||
C 973 1929 781 2416 781 2916
|
||||
C 781 3871 1466 4377 2131 4377
|
||||
C 2829 4377 3488 3851 3488 2916
|
||||
C 3488 2422 3315 1981 3078 1397
|
||||
C 2976 1135 2746 551 2746 102
|
||||
C 2746 0 2752 0 2886 0
|
||||
L 3853 0
|
||||
L 4038 935
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-16" transform="translate(23.496833 25.189733) scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-50" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3d" transform="translate(76.425821 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-a" transform="translate(125.20074 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(191.71062 36.153639) scale(0.697382)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_2">
|
||||
<g id="patch_7">
|
||||
<path d="M 354.485733 381.23484
|
||||
L 372.276574 381.23484
|
||||
L 372.276574 25.418022
|
||||
L 354.485733 25.418022
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path clip-path="url(#pc401fe9ad0)" style="fill: #ffffff; stroke: #ffffff; stroke-width: 0.01; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
<g id="QuadMesh_1">
|
||||
<path d="M 354.485733 381.23484
|
||||
L 372.276574 381.23484
|
||||
L 372.276574 336.757737
|
||||
L 354.485733 336.757737
|
||||
L 354.485733 381.23484
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #48186a"/>
|
||||
<path d="M 354.485733 336.757737
|
||||
L 372.276574 336.757737
|
||||
L 372.276574 292.280635
|
||||
L 354.485733 292.280635
|
||||
L 354.485733 336.757737
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #424086"/>
|
||||
<path d="M 354.485733 292.280635
|
||||
L 372.276574 292.280635
|
||||
L 372.276574 247.803533
|
||||
L 354.485733 247.803533
|
||||
L 354.485733 292.280635
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #33638d"/>
|
||||
<path d="M 354.485733 247.803533
|
||||
L 372.276574 247.803533
|
||||
L 372.276574 203.326431
|
||||
L 354.485733 203.326431
|
||||
L 354.485733 247.803533
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #26828e"/>
|
||||
<path d="M 354.485733 203.326431
|
||||
L 372.276574 203.326431
|
||||
L 372.276574 158.849329
|
||||
L 354.485733 158.849329
|
||||
L 354.485733 203.326431
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #1fa088"/>
|
||||
<path d="M 354.485733 158.849329
|
||||
L 372.276574 158.849329
|
||||
L 372.276574 114.372227
|
||||
L 354.485733 114.372227
|
||||
L 354.485733 158.849329
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #3fbc73"/>
|
||||
<path d="M 354.485733 114.372227
|
||||
L 372.276574 114.372227
|
||||
L 372.276574 69.895124
|
||||
L 354.485733 69.895124
|
||||
L 354.485733 114.372227
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #81d34d"/>
|
||||
<path d="M 354.485733 69.895124
|
||||
L 372.276574 69.895124
|
||||
L 372.276574 25.418022
|
||||
L 354.485733 25.418022
|
||||
L 354.485733 69.895124
|
||||
" clip-path="url(#pc401fe9ad0)" style="fill: #d8e219"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3"/>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<defs>
|
||||
<path id="mc3d824cc77" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.0004}$ -->
|
||||
<g transform="translate(381.376574 385.731854) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="336.757737" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{0.0008}$ -->
|
||||
<g transform="translate(381.376574 341.254751) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="292.280635" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{0.0012}$ -->
|
||||
<g transform="translate(381.376574 296.777649) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="247.803533" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{0.0016}$ -->
|
||||
<g transform="translate(381.376574 252.300547) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="203.326431" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
<!-- $\mathdefault{0.0020}$ -->
|
||||
<g transform="translate(381.376574 207.823445) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="158.849329" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
<!-- $\mathdefault{0.0024}$ -->
|
||||
<g transform="translate(381.376574 163.346343) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="114.372227" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
<!-- $\mathdefault{0.0028}$ -->
|
||||
<g transform="translate(381.376574 118.869241) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="69.895124" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
<!-- $\mathdefault{0.0032}$ -->
|
||||
<g transform="translate(381.376574 74.392138) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#mc3d824cc77" x="372.276574" y="25.418022" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
<!-- $\mathdefault{0.0036}$ -->
|
||||
<g transform="translate(381.376574 29.915036) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(164.168608 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(209.859086 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="LineCollection_1"/>
|
||||
<g id="patch_9">
|
||||
<path d="M 354.485733 381.23484
|
||||
L 363.381153 381.23484
|
||||
L 372.276574 381.23484
|
||||
L 372.276574 25.418022
|
||||
L 363.381153 25.418022
|
||||
L 354.485733 25.418022
|
||||
L 354.485733 381.23484
|
||||
z
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pcd3efe28aa">
|
||||
<rect x="44.493819" y="25.418022" width="287.51415" height="355.816817"/>
|
||||
</clipPath>
|
||||
<clipPath id="pc401fe9ad0">
|
||||
<rect x="354.485733" y="25.418022" width="17.790841" height="355.816817"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
|
@ -0,0 +1,998 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="423.771326pt" height="424.55952pt" viewBox="0 0 423.771326 424.55952" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||||
<metadata>
|
||||
<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>1980-01-01T00:00:00+00:00</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs>
|
||||
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
|
||||
</defs>
|
||||
<g id="figure_1">
|
||||
<g id="patch_1">
|
||||
<path d="M 0 424.55952
|
||||
L 423.771326 424.55952
|
||||
L 423.771326 0
|
||||
L 0 0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 344.007397 381.23484
|
||||
L 344.007397 24.40797
|
||||
L 44.493819 24.40797
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<path d="M 344.007397 381.23484
|
||||
L 344.007397 371.388978
|
||||
L 330.409941 381.23484
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #48186a"/>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<path d="M 284.104681 381.23484
|
||||
L 330.409941 381.23484
|
||||
L 344.007397 371.388978
|
||||
L 344.007397 329.262582
|
||||
L 284.104681 371.974145
|
||||
L 269.191801 381.23484
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #424086"/>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<path d="M 224.201966 381.23484
|
||||
L 269.191801 381.23484
|
||||
L 284.104681 371.974145
|
||||
L 344.007397 329.262582
|
||||
L 344.007397 287.136186
|
||||
L 284.104681 326.595301
|
||||
L 224.201966 362.741634
|
||||
L 186.670562 381.23484
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #33638d"/>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<path d="M 104.396535 381.23484
|
||||
L 164.29925 381.23484
|
||||
L 186.670562 381.23484
|
||||
L 224.201966 362.741634
|
||||
L 284.104681 326.595301
|
||||
L 344.007397 287.136186
|
||||
L 344.007397 262.29255
|
||||
L 344.007397 234.739605
|
||||
L 314.300813 262.29255
|
||||
L 284.104681 281.216457
|
||||
L 224.201966 314.624482
|
||||
L 164.29925 342.893177
|
||||
L 104.396535 357.404732
|
||||
L 44.493819 339.030204
|
||||
L 44.493819 381.23484
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #26828e"/>
|
||||
</g>
|
||||
<g id="PathCollection_5">
|
||||
<path d="M 104.396535 357.404732
|
||||
L 164.29925 342.893177
|
||||
L 224.201966 314.624482
|
||||
L 284.104681 281.216457
|
||||
L 314.300813 262.29255
|
||||
L 344.007397 234.739605
|
||||
L 344.007397 167.579828
|
||||
L 284.104681 216.528243
|
||||
L 232.026799 262.29255
|
||||
L 224.201966 266.50733
|
||||
L 164.29925 293.157493
|
||||
L 104.396535 305.851248
|
||||
L 44.493819 281.208816
|
||||
L 44.493819 339.030204
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #1fa088"/>
|
||||
</g>
|
||||
<g id="PathCollection_6">
|
||||
<path d="M 104.396535 305.851248
|
||||
L 164.29925 293.157493
|
||||
L 224.201966 266.50733
|
||||
L 232.026799 262.29255
|
||||
L 284.104681 216.528243
|
||||
L 344.007397 167.579828
|
||||
L 344.007397 143.35026
|
||||
L 344.007397 75.391458
|
||||
L 284.104681 134.996891
|
||||
L 276.223128 143.35026
|
||||
L 224.201966 182.4924
|
||||
L 164.29925 225.383644
|
||||
L 104.396535 247.24589
|
||||
L 44.493819 206.291448
|
||||
L 44.493819 262.29255
|
||||
L 44.493819 281.208816
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #3dbc74"/>
|
||||
</g>
|
||||
<g id="PathCollection_7">
|
||||
<path d="M 104.396535 247.24589
|
||||
L 164.29925 225.383644
|
||||
L 224.201966 182.4924
|
||||
L 276.223128 143.35026
|
||||
L 284.104681 134.996891
|
||||
L 344.007397 75.391458
|
||||
L 344.007397 24.40797
|
||||
L 284.104681 24.40797
|
||||
L 268.198389 24.40797
|
||||
L 224.201966 64.70505
|
||||
L 164.29925 120.029746
|
||||
L 123.037437 143.35026
|
||||
L 104.396535 150.21918
|
||||
L 90.914946 143.35026
|
||||
L 44.493819 111.529206
|
||||
L 44.493819 143.35026
|
||||
L 44.493819 206.291448
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #84d44b"/>
|
||||
</g>
|
||||
<g id="PathCollection_8">
|
||||
<path d="M 104.396535 150.21918
|
||||
L 123.037437 143.35026
|
||||
L 164.29925 120.029746
|
||||
L 224.201966 64.70505
|
||||
L 268.198389 24.40797
|
||||
L 224.201966 24.40797
|
||||
L 164.29925 24.40797
|
||||
L 104.396535 24.40797
|
||||
L 44.493819 24.40797
|
||||
L 44.493819 111.529206
|
||||
L 90.914946 143.35026
|
||||
z
|
||||
" clip-path="url(#p837141dbb3)" style="fill: #d5e21a"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m29d7c74160" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m29d7c74160" x="44.493819" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(36.391763 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m29d7c74160" x="104.396535" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.3}$ -->
|
||||
<g transform="translate(96.294479 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-33" d="M 1414 2157
|
||||
C 1984 2157 2234 1662 2234 1090
|
||||
C 2234 320 1824 25 1453 25
|
||||
C 1114 25 563 194 390 693
|
||||
C 422 680 454 680 486 680
|
||||
C 640 680 755 782 755 948
|
||||
C 755 1133 614 1216 486 1216
|
||||
C 378 1216 211 1165 211 926
|
||||
C 211 335 787 -128 1466 -128
|
||||
C 2176 -128 2720 430 2720 1085
|
||||
C 2720 1707 2208 2157 1600 2227
|
||||
C 2086 2328 2554 2756 2554 3329
|
||||
C 2554 3820 2048 4179 1472 4179
|
||||
C 890 4179 378 3829 378 3329
|
||||
C 378 3110 544 3072 627 3072
|
||||
C 762 3072 877 3155 877 3321
|
||||
C 877 3486 762 3569 627 3569
|
||||
C 602 3569 570 3569 544 3557
|
||||
C 730 3959 1235 4032 1459 4032
|
||||
C 1683 4032 2106 3925 2106 3320
|
||||
C 2106 3143 2080 2828 1862 2550
|
||||
C 1670 2304 1453 2304 1242 2284
|
||||
C 1210 2284 1062 2269 1037 2269
|
||||
C 992 2263 966 2257 966 2208
|
||||
C 966 2163 973 2157 1101 2157
|
||||
L 1414 2157
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m29d7c74160" x="164.29925" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(156.197194 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m29d7c74160" x="224.201966" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(216.09991 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m29d7c74160" x="284.104681" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(276.002625 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m29d7c74160" x="344.007397" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.7}$ -->
|
||||
<g transform="translate(335.905341 399.328868) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
L 1382 4081
|
||||
C 634 4081 621 4165 595 4288
|
||||
L 480 4288
|
||||
L 294 3094
|
||||
L 410 3094
|
||||
C 429 3215 474 3540 550 3661
|
||||
C 589 3712 1062 3712 1171 3712
|
||||
L 2579 3712
|
||||
L 1869 2661
|
||||
C 1395 1954 1069 999 1069 165
|
||||
C 1069 89 1069 -128 1299 -128
|
||||
C 1530 -128 1530 89 1530 171
|
||||
L 1530 465
|
||||
C 1530 1508 1709 2196 2003 2636
|
||||
L 2886 3941
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\delta$ -->
|
||||
<g transform="translate(191.442253 414.841208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMMI12-e" d="M 1664 2795
|
||||
C 845 2597 256 1748 256 1001
|
||||
C 256 319 717 -64 1229 -64
|
||||
C 1984 -64 2496 970 2496 1818
|
||||
C 2496 2392 2227 2744 2067 2954
|
||||
C 1830 3254 1446 3746 1446 4052
|
||||
C 1446 4161 1530 4352 1811 4352
|
||||
C 2010 4352 2131 4282 2323 4173
|
||||
C 2381 4134 2528 4052 2611 4052
|
||||
C 2746 4052 2842 4185 2842 4287
|
||||
C 2842 4409 2746 4428 2522 4479
|
||||
C 2221 4543 2131 4543 2022 4543
|
||||
C 1914 4543 1286 4543 1286 3892
|
||||
C 1286 3579 1446 3216 1664 2795
|
||||
z
|
||||
M 1734 2669
|
||||
C 1978 2165 2074 1974 2074 1560
|
||||
C 2074 1063 1805 63 1235 63
|
||||
C 986 63 627 229 627 821
|
||||
C 627 1235 864 2439 1734 2669
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMMI12-e" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="mae85a20642" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mae85a20642" x="44.493819" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{35}$ -->
|
||||
<g transform="translate(22.71234 385.731854) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#mae85a20642" x="44.493819" y="262.29255" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(22.71234 266.789564) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-35" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#mae85a20642" x="44.493819" y="143.35026" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{65}$ -->
|
||||
<g transform="translate(22.71234 147.847274) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-36" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mae85a20642" x="44.493819" y="24.40797" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{80}$ -->
|
||||
<g transform="translate(22.71234 28.904984) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-38" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\Theta$ -->
|
||||
<g transform="translate(16.194028 207.753091) rotate(-90) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-2" d="M 4307 2153
|
||||
C 4307 3467 3366 4455 2304 4455
|
||||
C 1216 4455 294 3454 294 2153
|
||||
C 294 852 1229 -128 2298 -128
|
||||
C 3392 -128 4307 872 4307 2153
|
||||
z
|
||||
M 2304 -20
|
||||
C 1574 -20 762 673 762 2153
|
||||
C 762 3679 1600 4352 2298 4352
|
||||
C 3021 4352 3840 3660 3840 2153
|
||||
C 3840 653 3008 -20 2304 -20
|
||||
z
|
||||
M 3501 2560
|
||||
L 3386 2560
|
||||
L 3386 2342
|
||||
L 1216 2342
|
||||
L 1216 2560
|
||||
L 1101 2560
|
||||
L 1101 1766
|
||||
L 1216 1766
|
||||
L 1216 1984
|
||||
L 3386 1984
|
||||
L 3386 1766
|
||||
L 3501 1766
|
||||
L 3501 2560
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-2" transform="scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 44.493819 24.40797
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 344.007397 381.23484
|
||||
L 344.007397 24.40797
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 44.493819 381.23484
|
||||
L 344.007397 381.23484
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 44.493819 24.40797
|
||||
L 344.007397 24.40797
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $W/\Omega$ -->
|
||||
<g transform="translate(178.198126 18.40797) scale(0.15 -0.15)">
|
||||
<defs>
|
||||
<path id="CMMI12-57" d="M 5779 3646
|
||||
C 5926 3894 6067 4129 6451 4168
|
||||
C 6509 4174 6566 4180 6566 4282
|
||||
C 6566 4352 6509 4352 6490 4352
|
||||
C 6477 4352 6432 4352 6010 4352
|
||||
C 5818 4352 5619 4352 5434 4352
|
||||
C 5395 4352 5318 4352 5318 4226
|
||||
C 5318 4166 5370 4160 5408 4160
|
||||
C 5536 4160 5741 4122 5741 3925
|
||||
C 5741 3842 5715 3797 5651 3690
|
||||
L 3904 648
|
||||
L 3674 3963
|
||||
C 3674 4039 3744 4160 4102 4160
|
||||
C 4186 4160 4250 4160 4250 4286
|
||||
C 4250 4352 4186 4352 4154 4352
|
||||
C 3930 4352 3693 4352 3462 4352
|
||||
L 3130 4352
|
||||
C 3034 4352 2918 4352 2822 4352
|
||||
C 2784 4352 2707 4352 2707 4226
|
||||
C 2707 4160 2752 4160 2861 4160
|
||||
C 3155 4160 3155 4153 3181 3772
|
||||
L 3200 3543
|
||||
L 1542 648
|
||||
L 1306 3931
|
||||
C 1306 4002 1306 4160 1741 4160
|
||||
C 1811 4160 1882 4160 1882 4279
|
||||
C 1882 4352 1824 4352 1786 4352
|
||||
C 1562 4352 1325 4352 1094 4352
|
||||
L 762 4352
|
||||
C 666 4352 550 4352 454 4352
|
||||
C 416 4352 339 4352 339 4226
|
||||
C 339 4160 390 4160 480 4160
|
||||
C 781 4160 787 4121 800 3918
|
||||
L 1082 18
|
||||
C 1088 -90 1094 -128 1171 -128
|
||||
C 1235 -128 1248 -103 1306 -7
|
||||
L 3213 3307
|
||||
L 3450 18
|
||||
C 3456 -90 3462 -128 3539 -128
|
||||
C 3603 -128 3622 -96 3674 -7
|
||||
L 5779 3646
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3d" d="M 2746 4562
|
||||
C 2746 4569 2784 4666 2784 4678
|
||||
C 2784 4755 2720 4800 2669 4800
|
||||
C 2637 4800 2579 4800 2528 4659
|
||||
L 384 -1363
|
||||
C 384 -1370 346 -1465 346 -1478
|
||||
C 346 -1555 410 -1600 461 -1600
|
||||
C 499 -1600 557 -1593 602 -1459
|
||||
L 2746 4562
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-a" d="M 4038 935
|
||||
L 3923 935
|
||||
C 3866 641 3846 563 3814 461
|
||||
C 3782 365 3763 314 3392 314
|
||||
L 2874 314
|
||||
C 2944 686 3098 961 3366 1391
|
||||
C 3699 1935 3974 2377 3974 2910
|
||||
C 3974 3775 3155 4480 2138 4480
|
||||
C 1094 4480 294 3768 294 2910
|
||||
C 294 2377 576 1922 890 1416
|
||||
C 1171 961 1325 686 1395 314
|
||||
L 877 314
|
||||
C 512 314 493 365 461 454
|
||||
C 422 557 410 641 346 935
|
||||
L 230 935
|
||||
L 416 0
|
||||
L 1382 0
|
||||
C 1517 0 1523 6 1523 102
|
||||
C 1523 558 1286 1154 1178 1429
|
||||
C 973 1929 781 2416 781 2916
|
||||
C 781 3871 1466 4377 2131 4377
|
||||
C 2829 4377 3488 3851 3488 2916
|
||||
C 3488 2422 3315 1981 3078 1397
|
||||
C 2976 1135 2746 551 2746 102
|
||||
C 2746 0 2752 0 2886 0
|
||||
L 3853 0
|
||||
L 4038 935
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMMI12-57" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3d" transform="translate(94.805627 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-a" transform="translate(143.580546 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="axes_2">
|
||||
<g id="patch_7">
|
||||
<path d="M 367.085132 381.23484
|
||||
L 384.926475 381.23484
|
||||
L 384.926475 24.40797
|
||||
L 367.085132 24.40797
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path clip-path="url(#pc17223a0a2)" style="fill: #ffffff; stroke: #ffffff; stroke-width: 0.01; stroke-linejoin: miter"/>
|
||||
</g>
|
||||
<g id="QuadMesh_1">
|
||||
<path d="M 367.085132 381.23484
|
||||
L 384.926475 381.23484
|
||||
L 384.926475 336.631481
|
||||
L 367.085132 336.631481
|
||||
L 367.085132 381.23484
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #48186a"/>
|
||||
<path d="M 367.085132 336.631481
|
||||
L 384.926475 336.631481
|
||||
L 384.926475 292.028122
|
||||
L 367.085132 292.028122
|
||||
L 367.085132 336.631481
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #424086"/>
|
||||
<path d="M 367.085132 292.028122
|
||||
L 384.926475 292.028122
|
||||
L 384.926475 247.424764
|
||||
L 367.085132 247.424764
|
||||
L 367.085132 292.028122
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #33638d"/>
|
||||
<path d="M 367.085132 247.424764
|
||||
L 384.926475 247.424764
|
||||
L 384.926475 202.821405
|
||||
L 367.085132 202.821405
|
||||
L 367.085132 247.424764
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #26828e"/>
|
||||
<path d="M 367.085132 202.821405
|
||||
L 384.926475 202.821405
|
||||
L 384.926475 158.218046
|
||||
L 367.085132 158.218046
|
||||
L 367.085132 202.821405
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #1fa088"/>
|
||||
<path d="M 367.085132 158.218046
|
||||
L 384.926475 158.218046
|
||||
L 384.926475 113.614687
|
||||
L 367.085132 113.614687
|
||||
L 367.085132 158.218046
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #3dbc74"/>
|
||||
<path d="M 367.085132 113.614687
|
||||
L 384.926475 113.614687
|
||||
L 384.926475 69.011329
|
||||
L 367.085132 69.011329
|
||||
L 367.085132 113.614687
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #84d44b"/>
|
||||
<path d="M 367.085132 69.011329
|
||||
L 384.926475 69.011329
|
||||
L 384.926475 24.40797
|
||||
L 367.085132 24.40797
|
||||
L 367.085132 69.011329
|
||||
" clip-path="url(#pc17223a0a2)" style="fill: #d5e21a"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_3"/>
|
||||
<g id="matplotlib.axis_4">
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_11">
|
||||
<defs>
|
||||
<path id="mdb3cf4398d" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="381.23484" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{0.00}$ -->
|
||||
<g transform="translate(394.026475 385.731854) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="336.631481" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{0.03}$ -->
|
||||
<g transform="translate(394.026475 341.128495) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="292.028122" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{0.06}$ -->
|
||||
<g transform="translate(394.026475 296.525136) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="247.424764" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
<!-- $\mathdefault{0.09}$ -->
|
||||
<g transform="translate(394.026475 251.921778) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-39" d="M 2253 1864
|
||||
C 2253 464 1670 31 1190 31
|
||||
C 1043 31 685 31 538 294
|
||||
C 704 268 826 357 826 518
|
||||
C 826 692 685 749 595 749
|
||||
C 538 749 365 723 365 506
|
||||
C 365 71 742 -128 1203 -128
|
||||
C 1939 -128 2688 674 2688 2073
|
||||
C 2688 3817 1971 4179 1485 4179
|
||||
C 851 4179 243 3628 243 2778
|
||||
C 243 1991 762 1408 1414 1408
|
||||
C 1952 1408 2189 1903 2253 2112
|
||||
L 2253 1864
|
||||
z
|
||||
M 1427 1510
|
||||
C 1254 1510 1011 1542 813 1922
|
||||
C 678 2169 678 2461 678 2771
|
||||
C 678 3146 678 3405 858 3684
|
||||
C 947 3817 1114 4032 1485 4032
|
||||
C 2240 4032 2240 2885 2240 2632
|
||||
C 2240 2182 2035 1510 1427 1510
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-39" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="202.821405" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
<!-- $\mathdefault{0.12}$ -->
|
||||
<g transform="translate(394.026475 207.318419) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
C 1357 3916 979 3827 621 3827
|
||||
C 602 3827 570 3827 563 3808
|
||||
C 557 3795 557 3782 557 3648
|
||||
C 755 3648 1088 3686 1344 3839
|
||||
L 1344 461
|
||||
C 1344 236 1331 160 781 160
|
||||
L 589 160
|
||||
L 589 0
|
||||
C 896 0 1216 0 1523 0
|
||||
C 1830 0 2150 0 2458 0
|
||||
L 2458 160
|
||||
L 2266 160
|
||||
C 1715 160 1702 230 1702 458
|
||||
L 1702 4058
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="158.218046" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
<!-- $\mathdefault{0.15}$ -->
|
||||
<g transform="translate(394.026475 162.71506) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_17">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="113.614687" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
<!-- $\mathdefault{0.18}$ -->
|
||||
<g transform="translate(394.026475 118.111702) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="69.011329" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
<!-- $\mathdefault{0.21}$ -->
|
||||
<g transform="translate(394.026475 73.508343) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_19">
|
||||
<g>
|
||||
<use xlink:href="#mdb3cf4398d" x="384.926475" y="24.40797" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
<!-- $\mathdefault{0.24}$ -->
|
||||
<g transform="translate(394.026475 28.904984) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="LineCollection_1"/>
|
||||
<g id="patch_9">
|
||||
<path d="M 367.085132 381.23484
|
||||
L 376.005803 381.23484
|
||||
L 384.926475 381.23484
|
||||
L 384.926475 24.40797
|
||||
L 376.005803 24.40797
|
||||
L 367.085132 24.40797
|
||||
L 367.085132 381.23484
|
||||
z
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p837141dbb3">
|
||||
<rect x="44.493819" y="24.40797" width="299.513578" height="356.826869"/>
|
||||
</clipPath>
|
||||
<clipPath id="pc17223a0a2">
|
||||
<rect x="367.085132" y="24.40797" width="17.841343" height="356.826869"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 32 KiB |
|
@ -0,0 +1,730 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="424.55952pt" height="181.19952pt" viewBox="0 0 424.55952 181.19952" xmlns="http://www.w3.org/2000/svg" version="1.1">
|
||||
<metadata>
|
||||
<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>1980-01-01T00:00:00+00:00</dc:date>
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs>
|
||||
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
|
||||
</defs>
|
||||
<g id="figure_1">
|
||||
<g id="patch_1">
|
||||
<path d="M 0 181.19952
|
||||
L 424.55952 181.19952
|
||||
L 424.55952 -0
|
||||
L 0 -0
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 28.981479 153.38718
|
||||
L 409.257464 153.38718
|
||||
L 409.257464 25.418022
|
||||
L 28.981479 25.418022
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
<g id="PathCollection_1">
|
||||
<path d="M 84.927042 25.418022
|
||||
L 28.981479 25.418022
|
||||
L 28.981479 34.148517
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #481769"/>
|
||||
<path d="M 257.14707 26.420382
|
||||
L 333.202267 28.998871
|
||||
L 409.257464 31.321606
|
||||
L 409.257464 25.418022
|
||||
L 333.202267 25.418022
|
||||
L 257.14707 25.418022
|
||||
L 227.935825 25.418022
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #481769"/>
|
||||
</g>
|
||||
<g id="PathCollection_2">
|
||||
<path d="M 77.97912 68.074408
|
||||
L 105.036676 61.167705
|
||||
L 181.091873 59.17436
|
||||
L 257.14707 60.174126
|
||||
L 333.202267 62.726653
|
||||
L 409.257464 65.464811
|
||||
L 409.257464 31.321606
|
||||
L 333.202267 28.998871
|
||||
L 257.14707 26.420382
|
||||
L 227.935825 25.418022
|
||||
L 181.091873 25.418022
|
||||
L 105.036676 25.418022
|
||||
L 84.927042 25.418022
|
||||
L 28.981479 34.148517
|
||||
L 28.981479 68.074408
|
||||
L 28.981479 81.447765
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #424086"/>
|
||||
</g>
|
||||
<g id="PathCollection_3">
|
||||
<path d="M 48.78967 110.730794
|
||||
L 105.036676 89.657144
|
||||
L 181.091873 84.726963
|
||||
L 257.14707 84.628255
|
||||
L 333.202267 86.260662
|
||||
L 409.257464 88.908795
|
||||
L 409.257464 68.074408
|
||||
L 409.257464 65.464811
|
||||
L 333.202267 62.726653
|
||||
L 257.14707 60.174126
|
||||
L 181.091873 59.17436
|
||||
L 105.036676 61.167705
|
||||
L 77.97912 68.074408
|
||||
L 28.981479 81.447765
|
||||
L 28.981479 110.730794
|
||||
L 28.981479 121.422389
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #33628d"/>
|
||||
</g>
|
||||
<g id="PathCollection_4">
|
||||
<path d="M 105.036676 115.293034
|
||||
L 146.256603 110.730794
|
||||
L 181.091873 106.96298
|
||||
L 257.14707 106.240616
|
||||
L 333.202267 107.873819
|
||||
L 394.192486 110.730794
|
||||
L 409.257464 111.170761
|
||||
L 409.257464 110.730794
|
||||
L 409.257464 88.908795
|
||||
L 333.202267 86.260662
|
||||
L 257.14707 84.628255
|
||||
L 181.091873 84.726963
|
||||
L 105.036676 89.657144
|
||||
L 48.78967 110.730794
|
||||
L 28.981479 121.422389
|
||||
L 28.981479 153.38718
|
||||
L 35.54905 153.38718
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #26828e"/>
|
||||
</g>
|
||||
<g id="PathCollection_5">
|
||||
<path d="M 105.036676 138.04703
|
||||
L 181.091873 125.147979
|
||||
L 257.14707 122.456958
|
||||
L 333.202267 122.669608
|
||||
L 409.257464 124.645592
|
||||
L 409.257464 111.170761
|
||||
L 394.192486 110.730794
|
||||
L 333.202267 107.873819
|
||||
L 257.14707 106.240616
|
||||
L 181.091873 106.96298
|
||||
L 146.256603 110.730794
|
||||
L 105.036676 115.293034
|
||||
L 35.54905 153.38718
|
||||
L 77.05467 153.38718
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #1fa088"/>
|
||||
</g>
|
||||
<g id="PathCollection_6">
|
||||
<path d="M 105.036676 153.38718
|
||||
L 131.049231 153.38718
|
||||
L 181.091873 142.506503
|
||||
L 257.14707 137.258231
|
||||
L 333.202267 136.426963
|
||||
L 409.257464 138.120423
|
||||
L 409.257464 124.645592
|
||||
L 333.202267 122.669608
|
||||
L 257.14707 122.456958
|
||||
L 181.091873 125.147979
|
||||
L 105.036676 138.04703
|
||||
L 77.05467 153.38718
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #3dbc74"/>
|
||||
</g>
|
||||
<g id="PathCollection_7">
|
||||
<path d="M 181.091873 153.38718
|
||||
L 242.408548 153.38718
|
||||
L 257.14707 152.059503
|
||||
L 333.202267 150.184318
|
||||
L 409.257464 151.595253
|
||||
L 409.257464 138.120423
|
||||
L 333.202267 136.426963
|
||||
L 257.14707 137.258231
|
||||
L 181.091873 142.506503
|
||||
L 131.049231 153.38718
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #84d44b"/>
|
||||
</g>
|
||||
<g id="PathCollection_8">
|
||||
<path d="M 257.14707 153.38718
|
||||
L 333.202267 153.38718
|
||||
L 409.257464 153.38718
|
||||
L 409.257464 151.595253
|
||||
L 333.202267 150.184318
|
||||
L 257.14707 152.059503
|
||||
L 242.408548 153.38718
|
||||
z
|
||||
" clip-path="url(#p09c0d809d0)" style="fill: #d8e219"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m902b0a3caa" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m902b0a3caa" x="28.981479" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0.2}$ -->
|
||||
<g transform="translate(20.879423 171.481208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
C 2176 4039 1798 4198 1466 4198
|
||||
C 1158 4198 768 4058 525 3597
|
||||
C 269 3118 243 2524 243 2025
|
||||
C 243 1661 250 1106 448 619
|
||||
C 723 -39 1216 -128 1466 -128
|
||||
C 1760 -128 2208 -7 2470 600
|
||||
C 2662 1042 2688 1559 2688 2025
|
||||
z
|
||||
M 1466 -26
|
||||
C 1056 -26 813 325 723 812
|
||||
C 653 1188 653 1738 653 2096
|
||||
C 653 2588 653 2997 736 3387
|
||||
C 858 3929 1216 4096 1466 4096
|
||||
C 1728 4096 2067 3923 2189 3400
|
||||
C 2272 3036 2278 2607 2278 2096
|
||||
C 2278 1680 2278 1169 2202 792
|
||||
C 2067 95 1690 -26 1466 -26
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
C 685 619 557 466 557 313
|
||||
C 557 128 710 0 864 0
|
||||
C 1050 0 1178 153 1178 307
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
C 2490 536 2438 459 2413 420
|
||||
C 2381 369 1920 369 1830 369
|
||||
L 602 369
|
||||
C 832 619 1280 1072 1824 1597
|
||||
C 2214 1967 2669 2402 2669 3035
|
||||
C 2669 3790 2067 4224 1395 4224
|
||||
C 691 4224 262 3604 262 3030
|
||||
C 262 2780 448 2748 525 2748
|
||||
C 589 2748 781 2787 781 3010
|
||||
C 781 3207 614 3264 525 3264
|
||||
C 486 3264 448 3258 422 3245
|
||||
C 544 3790 915 4058 1306 4058
|
||||
C 1862 4058 2227 3617 2227 3035
|
||||
C 2227 2479 1901 2000 1536 1584
|
||||
L 262 146
|
||||
L 262 0
|
||||
L 2515 0
|
||||
L 2669 989
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m902b0a3caa" x="105.036676" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{0.3}$ -->
|
||||
<g transform="translate(96.93462 171.481208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-33" d="M 1414 2157
|
||||
C 1984 2157 2234 1662 2234 1090
|
||||
C 2234 320 1824 25 1453 25
|
||||
C 1114 25 563 194 390 693
|
||||
C 422 680 454 680 486 680
|
||||
C 640 680 755 782 755 948
|
||||
C 755 1133 614 1216 486 1216
|
||||
C 378 1216 211 1165 211 926
|
||||
C 211 335 787 -128 1466 -128
|
||||
C 2176 -128 2720 430 2720 1085
|
||||
C 2720 1707 2208 2157 1600 2227
|
||||
C 2086 2328 2554 2756 2554 3329
|
||||
C 2554 3820 2048 4179 1472 4179
|
||||
C 890 4179 378 3829 378 3329
|
||||
C 378 3110 544 3072 627 3072
|
||||
C 762 3072 877 3155 877 3321
|
||||
C 877 3486 762 3569 627 3569
|
||||
C 602 3569 570 3569 544 3557
|
||||
C 730 3959 1235 4032 1459 4032
|
||||
C 1683 4032 2106 3925 2106 3320
|
||||
C 2106 3143 2080 2828 1862 2550
|
||||
C 1670 2304 1453 2304 1242 2284
|
||||
C 1210 2284 1062 2269 1037 2269
|
||||
C 992 2263 966 2257 966 2208
|
||||
C 966 2163 973 2157 1101 2157
|
||||
L 1414 2157
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-33" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m902b0a3caa" x="181.091873" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{0.4}$ -->
|
||||
<g transform="translate(172.989817 171.481208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m902b0a3caa" x="257.14707" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{0.5}$ -->
|
||||
<g transform="translate(249.045014 171.481208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-35" d="M 730 3692
|
||||
C 794 3666 1056 3584 1325 3584
|
||||
C 1920 3584 2246 3911 2432 4100
|
||||
C 2432 4157 2432 4192 2394 4192
|
||||
C 2387 4192 2374 4192 2323 4163
|
||||
C 2099 4058 1837 3973 1517 3973
|
||||
C 1325 3973 1037 3999 723 4139
|
||||
C 653 4171 640 4171 634 4171
|
||||
C 602 4171 595 4164 595 4037
|
||||
L 595 2203
|
||||
C 595 2089 595 2057 659 2057
|
||||
C 691 2057 704 2070 736 2114
|
||||
C 941 2401 1222 2522 1542 2522
|
||||
C 1766 2522 2246 2382 2246 1289
|
||||
C 2246 1085 2246 715 2054 421
|
||||
C 1894 159 1645 25 1370 25
|
||||
C 947 25 518 320 403 814
|
||||
C 429 807 480 795 506 795
|
||||
C 589 795 749 840 749 1038
|
||||
C 749 1210 627 1280 506 1280
|
||||
C 358 1280 262 1190 262 1011
|
||||
C 262 454 704 -128 1382 -128
|
||||
C 2042 -128 2669 440 2669 1264
|
||||
C 2669 2030 2170 2624 1549 2624
|
||||
C 1222 2624 947 2503 730 2274
|
||||
L 730 3692
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m902b0a3caa" x="333.202267" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{0.6}$ -->
|
||||
<g transform="translate(325.100211 171.481208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m902b0a3caa" x="409.257464" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{0.7}$ -->
|
||||
<g transform="translate(401.155408 171.481208) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
L 1382 4081
|
||||
C 634 4081 621 4165 595 4288
|
||||
L 480 4288
|
||||
L 294 3094
|
||||
L 410 3094
|
||||
C 429 3215 474 3540 550 3661
|
||||
C 589 3712 1062 3712 1171 3712
|
||||
L 2579 3712
|
||||
L 1869 2661
|
||||
C 1395 1954 1069 999 1069 165
|
||||
C 1069 89 1069 -128 1299 -128
|
||||
C 1530 -128 1530 89 1530 171
|
||||
L 1530 465
|
||||
C 1530 1508 1709 2196 2003 2636
|
||||
L 2886 3941
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_2">
|
||||
<g id="ytick_1">
|
||||
<g id="line2d_7">
|
||||
<defs>
|
||||
<path id="m8fa37e99c7" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8fa37e99c7" x="28.981479" y="153.38718" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{35}$ -->
|
||||
<g transform="translate(7.2 157.884194) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-33" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m8fa37e99c7" x="28.981479" y="110.730794" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(7.2 115.227808) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-35" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m8fa37e99c7" x="28.981479" y="68.074408" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{65}$ -->
|
||||
<g transform="translate(7.2 72.571422) scale(0.13 -0.13)">
|
||||
<use xlink:href="#CMR17-36" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m8fa37e99c7" x="28.981479" y="25.418022" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{80}$ -->
|
||||
<g transform="translate(7.2 29.915036) scale(0.13 -0.13)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-38" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 28.981479 153.38718
|
||||
L 28.981479 25.418022
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
<path d="M 409.257464 153.38718
|
||||
L 409.257464 25.418022
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 28.981479 153.38718
|
||||
L 409.257464 153.38718
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 28.981479 25.418022
|
||||
L 409.257464 25.418022
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\bar{P}_\mathrm{sys}/\Omega^2$ -->
|
||||
<g transform="translate(195.71071 19.418022) scale(0.15 -0.15)">
|
||||
<defs>
|
||||
<path id="CMR17-16" d="M 2554 3520
|
||||
L 2554 3666
|
||||
L 378 3666
|
||||
L 378 3520
|
||||
L 2554 3520
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-50" d="M 1894 2023
|
||||
L 2970 2023
|
||||
C 3853 2023 4736 2673 4736 3401
|
||||
C 4736 3898 4314 4352 3507 4352
|
||||
L 1530 4352
|
||||
C 1408 4352 1350 4352 1350 4231
|
||||
C 1350 4167 1408 4167 1504 4167
|
||||
C 1894 4167 1894 4116 1894 4046
|
||||
C 1894 4034 1894 3995 1869 3899
|
||||
L 1005 472
|
||||
C 947 249 934 185 486 185
|
||||
C 365 185 301 185 301 70
|
||||
C 301 0 358 0 397 0
|
||||
C 518 0 646 0 768 0
|
||||
L 1517 0
|
||||
C 1638 0 1773 0 1894 0
|
||||
C 1946 0 2016 0 2016 121
|
||||
C 2016 185 1958 185 1862 185
|
||||
C 1478 185 1472 230 1472 293
|
||||
C 1472 325 1478 369 1485 401
|
||||
L 1894 2023
|
||||
z
|
||||
M 2355 3930
|
||||
C 2413 4167 2438 4167 2688 4167
|
||||
L 3322 4167
|
||||
C 3802 4167 4198 4013 4198 3535
|
||||
C 4198 3369 4115 2827 3821 2534
|
||||
C 3712 2419 3405 2176 2822 2176
|
||||
L 1920 2176
|
||||
L 2355 3930
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-73" d="M 1978 2697
|
||||
C 1978 2813 1971 2819 1933 2819
|
||||
C 1907 2819 1901 2813 1824 2717
|
||||
C 1805 2691 1747 2626 1728 2601
|
||||
C 1523 2819 1235 2819 1126 2819
|
||||
C 416 2819 160 2447 160 2076
|
||||
C 160 1498 813 1365 998 1325
|
||||
C 1402 1243 1542 1217 1677 1101
|
||||
C 1760 1025 1901 884 1901 654
|
||||
C 1901 384 1747 38 1158 38
|
||||
C 602 38 403 460 288 1021
|
||||
C 269 1110 269 1117 218 1117
|
||||
C 166 1117 160 1110 160 983
|
||||
L 160 63
|
||||
C 160 -51 166 -58 205 -58
|
||||
C 237 -58 243 -51 275 0
|
||||
C 314 57 410 211 448 276
|
||||
C 576 103 800 -64 1158 -64
|
||||
C 1792 -64 2131 283 2131 784
|
||||
C 2131 1112 1958 1285 1875 1362
|
||||
C 1683 1561 1459 1606 1190 1657
|
||||
C 838 1735 390 1825 390 2217
|
||||
C 390 2383 480 2737 1126 2737
|
||||
C 1811 2737 1850 2094 1862 1888
|
||||
C 1869 1856 1901 1849 1920 1849
|
||||
C 1978 1849 1978 1869 1978 1978
|
||||
L 1978 2697
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-79" d="M 2496 2197
|
||||
C 2656 2586 2944 2586 3034 2586
|
||||
L 3034 2752
|
||||
C 2912 2752 2752 2752 2630 2752
|
||||
C 2496 2752 2285 2752 2157 2758
|
||||
L 2157 2592
|
||||
C 2400 2573 2406 2394 2406 2343
|
||||
C 2406 2280 2394 2248 2362 2171
|
||||
L 1664 449
|
||||
L 902 2306
|
||||
C 870 2382 870 2426 870 2433
|
||||
C 870 2573 1018 2586 1171 2586
|
||||
L 1171 2758
|
||||
C 1018 2752 742 2752 582 2752
|
||||
C 410 2752 205 2752 64 2758
|
||||
L 64 2586
|
||||
C 410 2586 448 2554 531 2350
|
||||
L 1485 15
|
||||
C 1197 -738 1030 -1178 627 -1178
|
||||
C 557 -1178 397 -1159 282 -1044
|
||||
C 429 -1031 493 -942 493 -833
|
||||
C 493 -725 416 -629 288 -629
|
||||
C 147 -629 77 -725 77 -840
|
||||
C 77 -1095 339 -1280 627 -1280
|
||||
C 998 -1280 1229 -922 1357 -604
|
||||
L 2496 2197
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMMI12-3d" d="M 2746 4562
|
||||
C 2746 4569 2784 4666 2784 4678
|
||||
C 2784 4755 2720 4800 2669 4800
|
||||
C 2637 4800 2579 4800 2528 4659
|
||||
L 384 -1363
|
||||
C 384 -1370 346 -1465 346 -1478
|
||||
C 346 -1555 410 -1600 461 -1600
|
||||
C 499 -1600 557 -1593 602 -1459
|
||||
L 2746 4562
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
<path id="CMR17-a" d="M 4038 935
|
||||
L 3923 935
|
||||
C 3866 641 3846 563 3814 461
|
||||
C 3782 365 3763 314 3392 314
|
||||
L 2874 314
|
||||
C 2944 686 3098 961 3366 1391
|
||||
C 3699 1935 3974 2377 3974 2910
|
||||
C 3974 3775 3155 4480 2138 4480
|
||||
C 1094 4480 294 3768 294 2910
|
||||
C 294 2377 576 1922 890 1416
|
||||
C 1171 961 1325 686 1395 314
|
||||
L 877 314
|
||||
C 512 314 493 365 461 454
|
||||
C 422 557 410 641 346 935
|
||||
L 230 935
|
||||
L 416 0
|
||||
L 1382 0
|
||||
C 1517 0 1523 6 1523 102
|
||||
C 1523 558 1286 1154 1178 1429
|
||||
C 973 1929 781 2416 781 2916
|
||||
C 781 3871 1466 4377 2131 4377
|
||||
C 2829 4377 3488 3851 3488 2916
|
||||
C 3488 2422 3315 1981 3078 1397
|
||||
C 2976 1135 2746 551 2746 102
|
||||
C 2746 0 2752 0 2886 0
|
||||
L 3853 0
|
||||
L 4038 935
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-16" transform="translate(23.496833 25.189733) scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-50" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-73" transform="translate(62.877232 -14.943915) scale(0.697382)"/>
|
||||
<use xlink:href="#CMR17-79" transform="translate(87.938055 -14.943915) scale(0.697382)"/>
|
||||
<use xlink:href="#CMR17-73" transform="translate(121.742942 -14.943915) scale(0.697382)"/>
|
||||
<use xlink:href="#CMMI12-3d" transform="translate(147.301896 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-a" transform="translate(196.076815 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(262.586696 36.153639) scale(0.697382)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p09c0d809d0">
|
||||
<rect x="28.981479" y="25.418022" width="380.275985" height="127.969158"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 398 KiB |
Before Width: | Height: | Size: 812 KiB |
Before Width: | Height: | Size: 809 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
|
@ -92,63 +92,13 @@ coupling-change/cycle time.
|
|||
|
||||
* Analysis
|
||||
#+begin_src jupyter-python
|
||||
ot.plot_energy(models[5])
|
||||
ot.plot_energy(models[5])
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <Figure | size | 340x320 | with | 1 | Axes> | <AxesSubplot: | xlabel= | $\tau$ | ylabel= | Energy | > |
|
||||
[[file:./.ob-jupyter/cf041b8ceb725ae01a8a9e1c0176c6ff745c3dc7.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for i in range(len(Θs)):
|
||||
fig, ax = plt.subplots()
|
||||
for model in models[len(δs) * i :len(δs) * (i+1)]:
|
||||
pu.plot_with_σ(model.t, model.system_energy(), ax=ax)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
[[file:./.ob-jupyter/f446e5aaee78e8d94583cab562c7c2125470aa63.svg]]
|
||||
[[file:./.ob-jupyter/ee49c5ceb452b52f13bf8a069300f080c261b616.svg]]
|
||||
[[file:./.ob-jupyter/0cf190cd7dc8af40d9a5f4c556d89adeb0e04077.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for model in models:
|
||||
plt.plot(model.t, abs(model.total_energy_from_power().value - model.total_energy().value))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/d6b9f659fcf729fe4084269c091ef875e3892bb9.svg]]
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
#[model.efficiency(steady_idx=-2).value * 100 for model in models][10]
|
||||
models[10].strobe, models[1].strobe
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
| array | ((0 65 130 195)) | array | ((0 1000 2001 3001)) |
|
||||
| array | ((0 35 70 105)) | array | ((0 1000 2001 3001)) |
|
||||
|
||||
#+begin_src jupyter-python
|
||||
models[10].system_energy().N
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 80000
|
||||
|
||||
#+begin_src jupyter-python
|
||||
ot.plot_power_eff_convergence(models, 2)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <Figure | size | 340x320 | with | 2 | Axes> | (<AxesSubplot: xlabel= $N$ ylabel= $P$ > <AxesSubplot: xlabel= $N$ ylabel= $\eta$ >) |
|
||||
[[file:./.ob-jupyter/c7dbf7eaaf7875b816c3199d9f3524d44914a695.svg]]
|
||||
[[file:./.ob-jupyter/3da29ea23fbb86d0c258f8b077c4568444a3894e.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
|
@ -235,7 +185,7 @@ coupling-change/cycle time.
|
|||
lambda model: model.Θ,
|
||||
ax=a_work,
|
||||
)
|
||||
a_work.set_zlabel(r"$-W$")
|
||||
a_work.set_zlabel(r"$W$")
|
||||
a_work.zaxis.labelpad = 8
|
||||
|
||||
|
||||
|
@ -256,14 +206,140 @@ coupling-change/cycle time.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
[[file:./.ob-jupyter/b0aa1cfccf4cd1d8ce6ef7d54830ca8f3c178da3.svg]]
|
||||
[[file:./.ob-jupyter/e4cc58ca4c704d14df7e2b38948acb0c9e47cbab.svg]]
|
||||
[[file:./.ob-jupyter/839baa7aa85839f3073dd6eb4e11584aa4f5e972.svg]]
|
||||
[[file:./.ob-jupyter/c6fa9c1a1b2fdf210a09e58f32ceb43ddfcb3791.svg]]
|
||||
[[file:./.ob-jupyter/7cd116167e67e1ecaa314c3df0e69df8d5e607be.svg]]
|
||||
[[file:./.ob-jupyter/a4fded1708431af976271eb4a82f9e521a57a7eb.svg]]
|
||||
[[file:./.ob-jupyter/55fb3469794892bbb3e378daca3aa6d7b600b239.svg]]
|
||||
[[file:./.ob-jupyter/f8981aa4603d7ef3a58555400d2a24873608ab8c.svg]]
|
||||
[[file:./.ob-jupyter/54d2889e653fd41dab4c17e9cc71bd7c03007295.svg]]
|
||||
[[file:./.ob-jupyter/6ffe6a67ffb005d5f582305846cdce6df560a1e7.svg]]
|
||||
:END:
|
||||
#+begin_src jupyter-python
|
||||
f_mean_system_power = plt.figure()
|
||||
a_mean_system_power = f_mean_system_power.add_subplot(1, 1, 1)
|
||||
|
||||
(_, _, (c_mean_sytem_power, data_mean_system_power)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model:
|
||||
-ot.val_relative_to_steady(model, model.system_power().sum_baths(), 2)[
|
||||
1
|
||||
].mean.value,
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_mean_system_power,
|
||||
)
|
||||
a_mean_system_power.set_title(r"$\bar{P}_\mathrm{sys}/\Omega^2$")
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: Text(0.5, 1.0, '$\\bar{P}_\\mathrm{sys}/\\Omega^2$')
|
||||
[[file:./.ob-jupyter/8f10f47f9025c26b3b30a075c89c5cdc751d1e00.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
f_power = plt.figure()
|
||||
a_power = f_power.add_subplot(1, 1, 1)
|
||||
f_work = plt.figure()
|
||||
a_work = f_work.add_subplot(1, 1, 1)
|
||||
f_efficiency = plt.figure()
|
||||
a_efficiency = f_efficiency.add_subplot(1, 1, 1)
|
||||
f_mean_inter_power = plt.figure()
|
||||
a_mean_inter_power = f_mean_inter_power.add_subplot(1, 1, 1)
|
||||
f_mean_system_power = plt.figure()
|
||||
a_mean_system_power = f_mean_system_power.add_subplot(1, 1, 1)
|
||||
|
||||
axs = [a_power, a_efficiency, a_work, a_mean_inter_power, a_mean_system_power]
|
||||
figs = [f_power, f_efficiency, f_work, f_mean_inter_power, f_mean_system_power]
|
||||
for ax in axs:
|
||||
ax.set_xlabel(r"$\delta$")
|
||||
ax.set_ylabel(r"$\Theta$")
|
||||
|
||||
|
||||
(_, _, (c_efficiency, data_efficiency)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(
|
||||
np.nan_to_num(model.efficiency(steady_idx=-2).value * 100), 0, np.inf
|
||||
),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_efficiency,
|
||||
)
|
||||
a_efficiency.set_title(r"$\eta$")
|
||||
|
||||
(_, _, (c_power, data_power)) =ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(-model.power(steady_idx=-2).value, 0, np.inf),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_power,
|
||||
)
|
||||
a_power.set_title(r"$\bar{P}/\Omega^2$")
|
||||
|
||||
(_, _, (c_mean_inter_power, data_mean_inter_power)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(
|
||||
ot.val_relative_to_steady(model, model.interaction_power().sum_baths(), 2)[
|
||||
1
|
||||
].mean.value,
|
||||
0,
|
||||
np.inf,
|
||||
),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_mean_inter_power,
|
||||
)
|
||||
a_mean_inter_power.set_title(r"$-\bar{P}_\mathrm{int}/\Omega^2$")
|
||||
|
||||
(_, _, (c_mean_system_power, data_mean_system_power)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model:
|
||||
-ot.val_relative_to_steady(model, model.system_power().sum_baths(), 2)[
|
||||
1
|
||||
].mean.value,
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_mean_system_power,
|
||||
)
|
||||
a_mean_system_power.set_title(r"$\bar{P}_\mathrm{sys}/\Omega^2$")
|
||||
|
||||
(_, _, (c_work, data_work)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(-model.power(steady_idx=-2).value * model.Θ, 0, np.inf),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_work,
|
||||
)
|
||||
a_work.set_title(r"$W/\Omega$")
|
||||
|
||||
|
||||
plt.tight_layout()
|
||||
contours = [c_power, c_efficiency, c_work, c_mean_inter_power, c_mean_system_power]
|
||||
datas = [data_power, data_efficiency, data_work, data_mean_inter_power, data_mean_system_power]
|
||||
|
||||
for fig, contour in zip(figs, contours):
|
||||
fig.colorbar(contour)
|
||||
|
||||
fs.export_fig("coupling_speed_scan_power_contour", x_scaling=1, y_scaling=1, fig=f_power, data=data_power)
|
||||
fs.export_fig("coupling_speed_scan_work_contour", x_scaling=1, y_scaling=1, fig=f_work, data=data_work)
|
||||
fs.export_fig(
|
||||
"coupling_speed_scan_efficiency_contour", x_scaling=1, y_scaling=1, fig=f_efficiency, data=data_efficiency
|
||||
)
|
||||
fs.export_fig(
|
||||
"coupling_speed_scan_interpower_contour", x_scaling=1, y_scaling=1, fig=f_mean_inter_power, data=data_mean_inter_power
|
||||
)
|
||||
fs.export_fig(
|
||||
"coupling_speed_scan_syspower_contour", x_scaling=1, y_scaling=1, fig=f_mean_system_power, data=data_mean_system_power
|
||||
)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
[[file:./.ob-jupyter/67bf5c82306b318ce650433463e13e7dee354bd5.svg]]
|
||||
[[file:./.ob-jupyter/7e340c9e451d8dbd012b84be33801965f96122ac.svg]]
|
||||
[[file:./.ob-jupyter/32153d4bce153c132414c148d3e489130fdc87b3.svg]]
|
||||
[[file:./.ob-jupyter/6218def4404f7bf670a4d3e75c28d07ac6d9f101.svg]]
|
||||
[[file:./.ob-jupyter/806dbc342f97c822035fcf647f53b26b7cd846f0.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
f = plt.figure()
|
||||
|
@ -296,7 +372,7 @@ coupling-change/cycle time.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/f7ad9a0e9f9caefc557f1690582b5aa6abe22a01.svg]]
|
||||
[[file:./.ob-jupyter/43634f8b38594ef86dce9c67d4da46131bd0ad48.svg]]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -58,21 +58,6 @@ aux.import_results(other_data_path="taurus/.data", other_results_path="taurus/re
|
|||
|
||||
ot.plot_energy(models[5])
|
||||
|
||||
for i in range(len(Θs)):
|
||||
fig, ax = plt.subplots()
|
||||
for model in models[len(δs) * i :len(δs) * (i+1)]:
|
||||
pu.plot_with_σ(model.t, model.system_energy(), ax=ax)
|
||||
|
||||
for model in models:
|
||||
plt.plot(model.t, abs(model.total_energy_from_power().value - model.total_energy().value))
|
||||
|
||||
#[model.efficiency(steady_idx=-2).value * 100 for model in models][10]
|
||||
models[10].strobe, models[1].strobe
|
||||
|
||||
models[10].system_energy().N
|
||||
|
||||
ot.plot_power_eff_convergence(models, 2)
|
||||
|
||||
f_power = plt.figure()
|
||||
a_power = f_power.add_subplot(1, 1, 1, projection="3d")
|
||||
f_work = plt.figure()
|
||||
|
@ -155,7 +140,7 @@ ot.plot_3d_heatmap(
|
|||
lambda model: model.Θ,
|
||||
ax=a_work,
|
||||
)
|
||||
a_work.set_zlabel(r"$-W$")
|
||||
a_work.set_zlabel(r"$W$")
|
||||
a_work.zaxis.labelpad = 8
|
||||
|
||||
|
||||
|
@ -173,6 +158,115 @@ fs.export_fig(
|
|||
"coupling_speed_scan_syspower", x_scaling=1, y_scaling=1, fig=f_mean_system_power
|
||||
)
|
||||
|
||||
f_mean_system_power = plt.figure()
|
||||
a_mean_system_power = f_mean_system_power.add_subplot(1, 1, 1)
|
||||
|
||||
(_, _, (c_mean_sytem_power, data_mean_system_power)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model:
|
||||
-ot.val_relative_to_steady(model, model.system_power().sum_baths(), 2)[
|
||||
1
|
||||
].mean.value,
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_mean_system_power,
|
||||
)
|
||||
a_mean_system_power.set_title(r"$\bar{P}_\mathrm{sys}/\Omega^2$")
|
||||
|
||||
f_power = plt.figure()
|
||||
a_power = f_power.add_subplot(1, 1, 1)
|
||||
f_work = plt.figure()
|
||||
a_work = f_work.add_subplot(1, 1, 1)
|
||||
f_efficiency = plt.figure()
|
||||
a_efficiency = f_efficiency.add_subplot(1, 1, 1)
|
||||
f_mean_inter_power = plt.figure()
|
||||
a_mean_inter_power = f_mean_inter_power.add_subplot(1, 1, 1)
|
||||
f_mean_system_power = plt.figure()
|
||||
a_mean_system_power = f_mean_system_power.add_subplot(1, 1, 1)
|
||||
|
||||
axs = [a_power, a_efficiency, a_work, a_mean_inter_power, a_mean_system_power]
|
||||
figs = [f_power, f_efficiency, f_work, f_mean_inter_power, f_mean_system_power]
|
||||
for ax in axs:
|
||||
ax.set_xlabel(r"$\delta$")
|
||||
ax.set_ylabel(r"$\Theta$")
|
||||
|
||||
|
||||
(_, _, (c_efficiency, data_efficiency)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(
|
||||
np.nan_to_num(model.efficiency(steady_idx=-2).value * 100), 0, np.inf
|
||||
),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_efficiency,
|
||||
)
|
||||
a_efficiency.set_title(r"$\eta$")
|
||||
|
||||
(_, _, (c_power, data_power)) =ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(-model.power(steady_idx=-2).value, 0, np.inf),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_power,
|
||||
)
|
||||
a_power.set_title(r"$\bar{P}/\Omega^2$")
|
||||
|
||||
(_, _, (c_mean_inter_power, data_mean_inter_power)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(
|
||||
ot.val_relative_to_steady(model, model.interaction_power().sum_baths(), 2)[
|
||||
1
|
||||
].mean.value,
|
||||
0,
|
||||
np.inf,
|
||||
),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_mean_inter_power,
|
||||
)
|
||||
a_mean_inter_power.set_title(r"$-\bar{P}_\mathrm{int}/\Omega^2$")
|
||||
|
||||
(_, _, (c_mean_system_power, data_mean_system_power)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model:
|
||||
-ot.val_relative_to_steady(model, model.system_power().sum_baths(), 2)[
|
||||
1
|
||||
].mean.value,
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_mean_system_power,
|
||||
)
|
||||
a_mean_system_power.set_title(r"$\bar{P}_\mathrm{sys}/\Omega^2$")
|
||||
|
||||
(_, _, (c_work, data_work)) = ot.plot_contour(
|
||||
models,
|
||||
lambda model: np.clip(-model.power(steady_idx=-2).value * model.Θ, 0, np.inf),
|
||||
lambda model: model.δ[0],
|
||||
lambda model: model.Θ,
|
||||
ax=a_work,
|
||||
)
|
||||
a_work.set_title(r"$W/\Omega$")
|
||||
|
||||
|
||||
plt.tight_layout()
|
||||
contours = [c_power, c_efficiency, c_work, c_mean_inter_power, c_mean_system_power]
|
||||
datas = [data_power, data_efficiency, data_work, data_mean_inter_power, data_mean_system_power]
|
||||
|
||||
for fig, contour in zip(figs, contours):
|
||||
fig.colorbar(contour)
|
||||
|
||||
fs.export_fig("coupling_speed_scan_power_contour", x_scaling=1, y_scaling=1, fig=f_power, data=data_power)
|
||||
fs.export_fig("coupling_speed_scan_work_contour", x_scaling=1, y_scaling=1, fig=f_work, data=data_work)
|
||||
fs.export_fig(
|
||||
"coupling_speed_scan_efficiency_contour", x_scaling=1, y_scaling=1, fig=f_efficiency, data=data_efficiency
|
||||
)
|
||||
fs.export_fig(
|
||||
"coupling_speed_scan_interpower_contour", x_scaling=1, y_scaling=1, fig=f_mean_inter_power, data=data_mean_inter_power
|
||||
)
|
||||
fs.export_fig(
|
||||
"coupling_speed_scan_syspower_contour", x_scaling=1, y_scaling=1, fig=f_mean_system_power, data=data_mean_system_power
|
||||
)
|
||||
|
||||
f = plt.figure()
|
||||
a_power = f.add_subplot(121, projection="3d")
|
||||
a_efficiency = f.add_subplot(122, projection="3d")
|
||||
|
|
12564
python/otto_motor/subprojects/cycle_shift/.dat.b/model_data.json
Normal file
|
@ -6043,7 +6043,7 @@ L -1180.963695 84.550875
|
|||
L -1181.571638 83.734756
|
||||
L -1182.179581 83.454065
|
||||
z
|
||||
" clip-path="url(#p874f95a634)" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<path d="M -1182.179581 83.454065
|
||||
|
@ -12051,18 +12051,18 @@ L -1180.963695 82.992108
|
|||
L -1181.571638 83.337528
|
||||
L -1182.179581 83.454065
|
||||
z
|
||||
" clip-path="url(#p874f95a634)" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="md9312c520d" d="M 0 0
|
||||
<path id="mefc3e8a3a9" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="33.707196" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="33.707196" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -12149,7 +12149,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="59.038171" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="59.038171" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -12196,7 +12196,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="84.369145" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="84.369145" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -12213,7 +12213,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="109.70012" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="109.70012" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -12251,7 +12251,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="135.031094" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="135.031094" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -12298,7 +12298,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="160.362069" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="160.362069" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -12315,7 +12315,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="185.693043" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="185.693043" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -12332,7 +12332,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="211.024018" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="211.024018" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -12349,7 +12349,7 @@ z
|
|||
<g id="xtick_9">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#md9312c520d" x="236.354992" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mefc3e8a3a9" x="236.354992" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -12422,12 +12422,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_10">
|
||||
<defs>
|
||||
<path id="ma302794fad" d="M 0 0
|
||||
<path id="m5eabe80be3" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#ma302794fad" x="33.707196" y="117.344761" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5eabe80be3" x="33.707196" y="117.344761" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -12454,7 +12454,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#ma302794fad" x="33.707196" y="83.454065" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5eabe80be3" x="33.707196" y="83.454065" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -12469,7 +12469,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#ma302794fad" x="33.707196" y="49.56337" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5eabe80be3" x="33.707196" y="49.56337" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -12484,7 +12484,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#ma302794fad" x="33.707196" y="15.672674" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m5eabe80be3" x="33.707196" y="15.672674" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -12500,7 +12500,7 @@ z
|
|||
<g id="line2d_14">
|
||||
<path d="M 33.707196 55.72706
|
||||
L 236.354992 55.72706
|
||||
" clip-path="url(#p874f95a634)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #808080; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #808080; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 33.099253 119.21542
|
||||
|
@ -12577,7 +12577,7 @@ L 230.072911 130.018512
|
|||
L 233.720571 128.119445
|
||||
L 236.760288 126.475324
|
||||
L 236.760288 126.475324
|
||||
" clip-path="url(#p874f95a634)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 33.099253 55.71489
|
||||
|
@ -12642,7 +12642,7 @@ L 216.090213 5.501947
|
|||
L 220.345816 -0.025134
|
||||
L 221.114338 -1
|
||||
L 221.114338 -1
|
||||
" clip-path="url(#p874f95a634)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 33.099253 66.508717
|
||||
|
@ -12664,7 +12664,7 @@ L 141.313176 83.434441
|
|||
L 146.784666 83.454065
|
||||
L 236.760288 83.454065
|
||||
L 236.760288 83.454065
|
||||
" clip-path="url(#p874f95a634)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 33.099253 49.56337
|
||||
|
@ -12690,7 +12690,7 @@ L 68.359969 15.711924
|
|||
L 71.399686 15.672674
|
||||
L 236.760288 15.672674
|
||||
L 236.760288 15.672674
|
||||
" clip-path="url(#p874f95a634)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 33.099253 83.454065
|
||||
|
@ -12712,7 +12712,7 @@ L 214.266383 66.528342
|
|||
L 219.737873 66.508717
|
||||
L 236.760288 66.508717
|
||||
L 236.760288 66.508717
|
||||
" clip-path="url(#p874f95a634)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p66602baaac)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 33.707196 119.039296
|
||||
|
@ -13345,7 +13345,7 @@ L 153.91775 51.437534
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p874f95a634">
|
||||
<clipPath id="p66602baaac">
|
||||
<rect x="33.707196" y="7.2" width="202.647796" height="111.839296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="mcafc88f711" d="M 55.628175 -87.453837
|
||||
<path id="m7839c1debd" d="M 55.628175 -87.453837
|
||||
L 55.628175 -87.738096
|
||||
L 55.809663 -87.738093
|
||||
L 55.99115 -87.73809
|
||||
|
@ -2044,13 +2044,13 @@ L 55.628175 -87.453837
|
|||
z
|
||||
" style="stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p5b588f5d65)">
|
||||
<use xlink:href="#mcafc88f711" x="0" y="179.75952" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pbe782847f2)">
|
||||
<use xlink:href="#m7839c1debd" x="0" y="179.75952" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m934f5b366e" d="M 55.628175 -87.526311
|
||||
<path id="m0d02556899" d="M 55.628175 -87.526311
|
||||
L 55.628175 -87.665622
|
||||
L 55.809663 -87.665777
|
||||
L 55.99115 -87.663735
|
||||
|
@ -4055,13 +4055,13 @@ L 55.628175 -87.526311
|
|||
z
|
||||
" style="stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p5b588f5d65)">
|
||||
<use xlink:href="#m934f5b366e" x="0" y="179.75952" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pbe782847f2)">
|
||||
<use xlink:href="#m0d02556899" x="0" y="179.75952" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="md0b56518e0" d="M 55.628175 -87.455506
|
||||
<path id="m9a4a93dee6" d="M 55.628175 -87.455506
|
||||
L 55.628175 -87.736427
|
||||
L 55.809663 -87.736427
|
||||
L 55.99115 -87.736427
|
||||
|
@ -6066,13 +6066,13 @@ L 55.628175 -87.455506
|
|||
z
|
||||
" style="stroke: #87de87; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p5b588f5d65)">
|
||||
<use xlink:href="#md0b56518e0" x="0" y="179.75952" style="fill: #87de87; fill-opacity: 0.5; stroke: #87de87; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pbe782847f2)">
|
||||
<use xlink:href="#m9a4a93dee6" x="0" y="179.75952" style="fill: #87de87; fill-opacity: 0.5; stroke: #87de87; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_4">
|
||||
<defs>
|
||||
<path id="mc3db9ddf46" d="M 55.628175 -87.523085
|
||||
<path id="m2e8441e185" d="M 55.628175 -87.523085
|
||||
L 55.628175 -87.668848
|
||||
L 55.809663 -87.669041
|
||||
L 55.99115 -87.66649
|
||||
|
@ -8077,20 +8077,20 @@ L 55.628175 -87.523085
|
|||
z
|
||||
" style="stroke: #eb9293; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p5b588f5d65)">
|
||||
<use xlink:href="#mc3db9ddf46" x="0" y="179.75952" style="fill: #eb9293; fill-opacity: 0.5; stroke: #eb9293; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pbe782847f2)">
|
||||
<use xlink:href="#m2e8441e185" x="0" y="179.75952" style="fill: #eb9293; fill-opacity: 0.5; stroke: #eb9293; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m316c76c7df" d="M 0 0
|
||||
<path id="m87c872aee4" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="55.628175" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="55.628175" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -8168,7 +8168,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="85.876097" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="85.876097" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -8213,7 +8213,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="116.124018" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="116.124018" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -8256,7 +8256,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="146.37194" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="146.37194" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -8301,7 +8301,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="176.619862" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="176.619862" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -8341,7 +8341,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="206.867784" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="206.867784" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -8377,7 +8377,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m316c76c7df" x="237.115705" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m87c872aee4" x="237.115705" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -8450,12 +8450,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="me3b0f98db5" d="M 0 0
|
||||
<path id="m83d2d6e3d9" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me3b0f98db5" x="46.562873" y="124.139951" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m83d2d6e3d9" x="46.562873" y="124.139951" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -8489,7 +8489,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#me3b0f98db5" x="46.562873" y="92.163554" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m83d2d6e3d9" x="46.562873" y="92.163554" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -8504,7 +8504,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#me3b0f98db5" x="46.562873" y="60.187156" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m83d2d6e3d9" x="46.562873" y="60.187156" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -8519,7 +8519,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#me3b0f98db5" x="46.562873" y="28.210758" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m83d2d6e3d9" x="46.562873" y="28.210758" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -8643,7 +8643,7 @@ L 235.663805 117.756968
|
|||
L 236.208268 117.934408
|
||||
L 236.934218 117.975093
|
||||
L 236.934218 117.975093
|
||||
" clip-path="url(#p5b588f5d65)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pbe782847f2)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 55.628175 92.163554
|
||||
|
@ -8681,7 +8681,7 @@ L 157.079704 19.423324
|
|||
L 157.805655 19.382956
|
||||
L 236.934218 19.382998
|
||||
L 236.934218 19.382998
|
||||
" clip-path="url(#p5b588f5d65)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pbe782847f2)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 55.628175 92.163554
|
||||
|
@ -8744,7 +8744,7 @@ L 200.455224 92.163895
|
|||
L 201.181174 92.11378
|
||||
L 236.934218 92.11374
|
||||
L 236.934218 92.11374
|
||||
" clip-path="url(#p5b588f5d65)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pbe782847f2)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 55.628175 92.163554
|
||||
|
@ -8783,7 +8783,7 @@ L 157.079704 13.525846
|
|||
L 157.624167 13.478498
|
||||
L 236.934218 13.478378
|
||||
L 236.934218 13.478378
|
||||
" clip-path="url(#p5b588f5d65)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pbe782847f2)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 46.562873 143.519296
|
||||
|
@ -9211,7 +9211,7 @@ L 72.662873 130.110734
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p5b588f5d65">
|
||||
<clipPath id="pbe782847f2">
|
||||
<rect x="46.562873" y="7.2" width="199.436647" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 232 KiB After Width: | Height: | Size: 232 KiB |
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
|
@ -6043,7 +6043,7 @@ L -1296.588737 83.454065
|
|||
L -1297.28353 83.454065
|
||||
L -1297.978322 83.454065
|
||||
z
|
||||
" clip-path="url(#p697ced3ead)" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<path d="M -1297.978322 83.454065
|
||||
|
@ -12051,18 +12051,18 @@ L -1296.588737 83.454065
|
|||
L -1297.28353 83.454065
|
||||
L -1297.978322 83.454065
|
||||
z
|
||||
" clip-path="url(#p697ced3ead)" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m3643a3e473" d="M 0 0
|
||||
<path id="mdfc4f3ce90" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="33.707196" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="33.707196" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -12155,7 +12155,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="62.656881" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="62.656881" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -12193,7 +12193,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="91.606567" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="91.606567" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -12234,7 +12234,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="120.556252" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="120.556252" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -12251,7 +12251,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="149.505937" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="149.505937" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -12268,7 +12268,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="178.455622" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="178.455622" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -12285,7 +12285,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="207.405307" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="207.405307" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -12332,7 +12332,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m3643a3e473" x="236.354992" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdfc4f3ce90" x="236.354992" y="119.039296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -12377,12 +12377,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m5f59a73f89" d="M 0 0
|
||||
<path id="m60178c9f9d" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m5f59a73f89" x="33.707196" y="117.344761" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m60178c9f9d" x="33.707196" y="117.344761" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -12409,7 +12409,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m5f59a73f89" x="33.707196" y="83.454065" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m60178c9f9d" x="33.707196" y="83.454065" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -12424,7 +12424,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m5f59a73f89" x="33.707196" y="49.56337" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m60178c9f9d" x="33.707196" y="49.56337" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -12439,7 +12439,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m5f59a73f89" x="33.707196" y="15.672674" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m60178c9f9d" x="33.707196" y="15.672674" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -12483,7 +12483,7 @@ z
|
|||
<g id="line2d_13">
|
||||
<path d="M 33.707196 61.261515
|
||||
L 242.144929 61.261515
|
||||
" clip-path="url(#p697ced3ead)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #808080; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #808080; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 33.244001 119.232583
|
||||
|
@ -12550,7 +12550,7 @@ L 237.51298 114.348327
|
|||
L 240.986942 113.873141
|
||||
L 242.376527 113.73552
|
||||
L 242.376527 113.73552
|
||||
" clip-path="url(#p697ced3ead)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 33.244001 56.495904
|
||||
|
@ -12595,7 +12595,7 @@ L 163.864981 5.841885
|
|||
L 165.254566 2.419022
|
||||
L 166.880813 -1
|
||||
L 166.880813 -1
|
||||
" clip-path="url(#p697ced3ead)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 33.244001 66.508717
|
||||
|
@ -12617,7 +12617,7 @@ L 88.827397 83.408744
|
|||
L 92.996151 83.454065
|
||||
L 242.376527 83.454065
|
||||
L 242.376527 83.454065
|
||||
" clip-path="url(#p697ced3ead)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 33.244001 49.56337
|
||||
|
@ -12643,7 +12643,7 @@ L 131.209736 15.711924
|
|||
L 134.683698 15.672674
|
||||
L 242.376527 15.672674
|
||||
L 242.376527 15.672674
|
||||
" clip-path="url(#p697ced3ead)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 33.244001 83.454065
|
||||
|
@ -12665,7 +12665,7 @@ L 172.20249 66.554039
|
|||
L 176.371245 66.508717
|
||||
L 242.376527 66.508717
|
||||
L 242.376527 66.508717
|
||||
" clip-path="url(#p697ced3ead)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pba7ae72562)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 33.707196 119.039296
|
||||
|
@ -13298,7 +13298,7 @@ L 159.707687 51.437534
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p697ced3ead">
|
||||
<clipPath id="pba7ae72562">
|
||||
<rect x="33.707196" y="7.2" width="208.437733" height="111.839296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 333 KiB After Width: | Height: | Size: 333 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="mfbfef2069f" d="M 0 0
|
||||
<path id="mcf7fd7b52d" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mfbfef2069f" x="39.976366" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="39.976366" y="143.519296" 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="#mfbfef2069f" x="73.607861" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="73.607861" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#mfbfef2069f" x="107.239357" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="107.239357" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#mfbfef2069f" x="140.870852" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="140.870852" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#mfbfef2069f" x="174.502347" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="174.502347" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#mfbfef2069f" x="208.133842" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="208.133842" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#mfbfef2069f" x="241.765337" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcf7fd7b52d" x="241.765337" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m15fd74bc6b" d="M 0 0
|
||||
<path id="mc01a517421" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m15fd74bc6b" x="39.976366" y="137.322964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc01a517421" x="39.976366" y="137.322964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m15fd74bc6b" x="39.976366" y="106.341306" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc01a517421" x="39.976366" y="106.341306" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m15fd74bc6b" x="39.976366" y="75.359648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc01a517421" x="39.976366" y="75.359648" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -410,7 +410,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m15fd74bc6b" x="39.976366" y="44.37799" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc01a517421" x="39.976366" y="44.37799" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -425,7 +425,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m15fd74bc6b" x="39.976366" y="13.396332" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mc01a517421" x="39.976366" y="13.396332" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -713,7 +713,7 @@ L 241.15997 137.251203
|
|||
L 241.765337 137.322964
|
||||
L 241.967126 137.322964
|
||||
L 241.967126 137.322964
|
||||
" clip-path="url(#p35f2f791fb)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6da40a68f3)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 39.976366 137.322964
|
||||
|
@ -749,7 +749,7 @@ L 140.265485 137.251203
|
|||
L 140.870852 137.322964
|
||||
L 241.967126 137.322964
|
||||
L 241.967126 137.322964
|
||||
" clip-path="url(#p35f2f791fb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6da40a68f3)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 39.976366 75.359648
|
||||
|
@ -785,7 +785,7 @@ L 152.372823 75.287887
|
|||
L 152.97819 75.359648
|
||||
L 241.967126 75.35685
|
||||
L 241.967126 75.35685
|
||||
" clip-path="url(#p35f2f791fb)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p6da40a68f3)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 39.976366 143.519296
|
||||
|
@ -1061,7 +1061,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p35f2f791fb">
|
||||
<clipPath id="p6da40a68f3">
|
||||
<rect x="39.976366" y="7.2" width="201.788971" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="mf4a203ef2e" d="M 66.755448 -154.896097
|
||||
<path id="mbb01d61c7a" d="M 66.755448 -154.896097
|
||||
L 66.755448 -154.896097
|
||||
L 66.890065 -154.896097
|
||||
L 67.024682 -154.896101
|
||||
|
@ -6046,13 +6046,13 @@ L 66.755448 -154.896097
|
|||
z
|
||||
" style="stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#mf4a203ef2e" x="0" y="253.19952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#mbb01d61c7a" x="0" y="253.19952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m80c49724ea" d="M 66.755448 -154.896097
|
||||
<path id="ma767d6b2ba" d="M 66.755448 -154.896097
|
||||
L 66.755448 -154.896097
|
||||
L 66.890065 -154.896097
|
||||
L 67.024682 -154.896097
|
||||
|
@ -12059,13 +12059,13 @@ L 66.755448 -154.896097
|
|||
z
|
||||
" style="stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m80c49724ea" x="0" y="253.19952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#ma767d6b2ba" x="0" y="253.19952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="mc629dc9161" d="M 66.755448 -154.896097
|
||||
<path id="mb015696d39" d="M 66.755448 -154.896097
|
||||
L 66.755448 -154.896097
|
||||
L 66.890065 -154.896097
|
||||
L 67.024682 -154.896097
|
||||
|
@ -18072,13 +18072,13 @@ L 66.755448 -154.896097
|
|||
z
|
||||
" style="stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#mc629dc9161" x="0" y="253.19952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#mb015696d39" x="0" y="253.19952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_4">
|
||||
<defs>
|
||||
<path id="m49b25f4291" d="M 66.755448 -154.896097
|
||||
<path id="m9ad78953d8" d="M 66.755448 -154.896097
|
||||
L 66.755448 -154.896097
|
||||
L 66.890065 -154.896097
|
||||
L 67.024682 -154.896097
|
||||
|
@ -24085,13 +24085,13 @@ L 66.755448 -154.896097
|
|||
z
|
||||
" style="stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m49b25f4291" x="0" y="253.19952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#m9ad78953d8" x="0" y="253.19952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_5">
|
||||
<defs>
|
||||
<path id="m8a183583e7" d="M 66.755448 -154.896097
|
||||
<path id="mf4bf23ff1e" d="M 66.755448 -154.896097
|
||||
L 66.755448 -154.896097
|
||||
L 66.890065 -154.896097
|
||||
L 67.024682 -154.896097
|
||||
|
@ -30098,13 +30098,13 @@ L 66.755448 -154.896097
|
|||
z
|
||||
" style="stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m8a183583e7" x="0" y="253.19952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#mf4bf23ff1e" x="0" y="253.19952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_6">
|
||||
<defs>
|
||||
<path id="m04ca314896" d="M 66.755448 -154.896097
|
||||
<path id="mf496f27dad" d="M 66.755448 -154.896097
|
||||
L 66.755448 -154.896097
|
||||
L 66.890065 -154.896098
|
||||
L 67.024682 -154.896102
|
||||
|
@ -36111,20 +36111,20 @@ L 66.755448 -154.896097
|
|||
z
|
||||
" style="stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m04ca314896" x="0" y="253.19952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#mf496f27dad" x="0" y="253.19952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m952b78b6b9" d="M 0 0
|
||||
<path id="mb96f515fb1" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="66.755448" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="66.755448" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -36160,7 +36160,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="122.845933" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="122.845933" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -36226,7 +36226,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="178.936419" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="178.936419" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -36240,7 +36240,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="235.026905" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="235.026905" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -36275,7 +36275,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="291.117391" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="291.117391" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -36310,7 +36310,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="347.207876" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="347.207876" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -36325,7 +36325,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="403.298362" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="403.298362" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -36340,7 +36340,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m952b78b6b9" x="459.388848" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb96f515fb1" x="459.388848" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -36383,12 +36383,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="mbb9bb326d8" d="M 0 0
|
||||
<path id="m7017ed8d44" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mbb9bb326d8" x="46.562873" y="192.768152" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7017ed8d44" x="46.562873" y="192.768152" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -36422,7 +36422,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mbb9bb326d8" x="46.562873" y="161.279909" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7017ed8d44" x="46.562873" y="161.279909" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -36438,7 +36438,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#mbb9bb326d8" x="46.562873" y="129.791666" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7017ed8d44" x="46.562873" y="129.791666" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -36454,7 +36454,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mbb9bb326d8" x="46.562873" y="98.303423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7017ed8d44" x="46.562873" y="98.303423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -36469,7 +36469,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mbb9bb326d8" x="46.562873" y="66.81518" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7017ed8d44" x="46.562873" y="66.81518" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -36484,7 +36484,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mbb9bb326d8" x="46.562873" y="35.326937" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7017ed8d44" x="46.562873" y="35.326937" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -36678,16 +36678,16 @@ z
|
|||
<g id="LineCollection_1">
|
||||
<path d="M 66.755448 98.303423
|
||||
L 66.755448 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 91.755691
|
||||
L 201.372614 91.697813
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 91.758835
|
||||
L 335.989779 91.701435
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 91.722287
|
||||
L 470.606945 91.664273
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 66.755448 98.303423
|
||||
|
@ -36918,21 +36918,21 @@ L 468.722305 91.612519
|
|||
L 469.933859 91.691918
|
||||
L 470.606945 91.69328
|
||||
L 470.606945 91.69328
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 66.755448 98.303423
|
||||
L 66.755448 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 75.689934
|
||||
L 201.372614 75.655357
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 53.23352
|
||||
L 335.989779 53.18459
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 30.596112
|
||||
L 470.606945 30.536184
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 66.755448 98.303423
|
||||
|
@ -37020,21 +37020,21 @@ L 468.722305 30.521476
|
|||
L 470.337711 30.566142
|
||||
L 470.606945 30.566148
|
||||
L 470.606945 30.566148
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 66.755448 98.303423
|
||||
L 66.755448 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 98.303423
|
||||
L 201.372614 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 98.303423
|
||||
L 335.989779 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 98.303423
|
||||
L 470.606945 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 66.755448 98.303423
|
||||
|
@ -37122,21 +37122,21 @@ L 469.260773 98.409883
|
|||
L 470.068476 98.306232
|
||||
L 470.606945 98.303423
|
||||
L 470.606945 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_4">
|
||||
<path d="M 66.755448 98.303423
|
||||
L 66.755448 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 143.991555
|
||||
L 201.372614 143.79161
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 175.826615
|
||||
L 335.989779 175.543494
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 207.986578
|
||||
L 470.606945 207.639636
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 66.755448 98.303423
|
||||
|
@ -37222,21 +37222,21 @@ L 401.548339 207.815562
|
|||
L 448.395113 207.813107
|
||||
L 470.606945 207.813107
|
||||
L 470.606945 207.813107
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_5">
|
||||
<path d="M 66.755448 98.303423
|
||||
L 66.755448 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 98.303423
|
||||
L 201.372614 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 98.303423
|
||||
L 335.989779 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 98.303423
|
||||
L 470.606945 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 66.755448 98.303423
|
||||
|
@ -37379,21 +37379,21 @@ L 402.221425 98.30843
|
|||
L 405.586854 98.303423
|
||||
L 470.606945 98.303423
|
||||
L 470.606945 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_6">
|
||||
<path d="M 66.755448 98.303423
|
||||
L 66.755448 98.303423
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 114.702195
|
||||
L 201.372614 114.670543
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 123.843259
|
||||
L 335.989779 123.797418
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 132.99809
|
||||
L 470.606945 132.941552
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 66.755448 98.303423
|
||||
|
@ -37557,11 +37557,11 @@ L 468.991539 133.120548
|
|||
L 469.664625 132.988381
|
||||
L 470.606945 132.969821
|
||||
L 470.606945 132.969821
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<defs>
|
||||
<path id="m001543d69b" d="M 0 1
|
||||
<path id="m796d082cb3" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37573,16 +37573,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m001543d69b" x="66.755448" y="98.303423" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m001543d69b" x="201.372614" y="91.726752" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m001543d69b" x="335.989779" y="91.730135" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m001543d69b" x="470.606945" y="91.69328" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#m796d082cb3" x="66.755448" y="98.303423" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m796d082cb3" x="201.372614" y="91.726752" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m796d082cb3" x="335.989779" y="91.730135" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m796d082cb3" x="470.606945" y="91.69328" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<defs>
|
||||
<path id="me0093a5913" d="M 0 1
|
||||
<path id="m17c73262d7" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37594,16 +37594,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#me0093a5913" x="66.755448" y="98.303423" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#me0093a5913" x="201.372614" y="75.672645" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#me0093a5913" x="335.989779" y="53.209055" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#me0093a5913" x="470.606945" y="30.566148" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#m17c73262d7" x="66.755448" y="98.303423" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m17c73262d7" x="201.372614" y="75.672645" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m17c73262d7" x="335.989779" y="53.209055" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m17c73262d7" x="470.606945" y="30.566148" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<defs>
|
||||
<path id="m161cb5ff6c" d="M 0 1
|
||||
<path id="m19fbdbedc7" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37615,16 +37615,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m161cb5ff6c" x="66.755448" y="98.303423" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m161cb5ff6c" x="201.372614" y="98.303423" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m161cb5ff6c" x="335.989779" y="98.303423" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m161cb5ff6c" x="470.606945" y="98.303423" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#m19fbdbedc7" x="66.755448" y="98.303423" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m19fbdbedc7" x="201.372614" y="98.303423" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m19fbdbedc7" x="335.989779" y="98.303423" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m19fbdbedc7" x="470.606945" y="98.303423" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<defs>
|
||||
<path id="m963bcf02b3" d="M 0 1
|
||||
<path id="m6141131d56" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37636,16 +37636,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m963bcf02b3" x="66.755448" y="98.303423" style="fill: #d62728"/>
|
||||
<use xlink:href="#m963bcf02b3" x="201.372614" y="143.891582" style="fill: #d62728"/>
|
||||
<use xlink:href="#m963bcf02b3" x="335.989779" y="175.685055" style="fill: #d62728"/>
|
||||
<use xlink:href="#m963bcf02b3" x="470.606945" y="207.813107" style="fill: #d62728"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#m6141131d56" x="66.755448" y="98.303423" style="fill: #d62728"/>
|
||||
<use xlink:href="#m6141131d56" x="201.372614" y="143.891582" style="fill: #d62728"/>
|
||||
<use xlink:href="#m6141131d56" x="335.989779" y="175.685055" style="fill: #d62728"/>
|
||||
<use xlink:href="#m6141131d56" x="470.606945" y="207.813107" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<defs>
|
||||
<path id="m1ffe50e50e" d="M 0 1
|
||||
<path id="med0f9c66ce" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37657,11 +37657,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m1ffe50e50e" x="66.755448" y="98.303423" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1ffe50e50e" x="201.372614" y="98.303423" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1ffe50e50e" x="335.989779" y="98.303423" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1ffe50e50e" x="470.606945" y="98.303423" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#med0f9c66ce" x="66.755448" y="98.303423" style="fill: #9467bd"/>
|
||||
<use xlink:href="#med0f9c66ce" x="201.372614" y="98.303423" style="fill: #9467bd"/>
|
||||
<use xlink:href="#med0f9c66ce" x="335.989779" y="98.303423" style="fill: #9467bd"/>
|
||||
<use xlink:href="#med0f9c66ce" x="470.606945" y="98.303423" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
|
@ -37669,9 +37669,9 @@ z
|
|||
L 201.372614 114.686369
|
||||
L 335.989779 123.820338
|
||||
L 470.606945 132.969821
|
||||
" clip-path="url(#pca97959f9b)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p63bfa1d351)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="m5a461b94f2" d="M 0 1
|
||||
<path id="m72a1906f41" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37683,11 +37683,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#pca97959f9b)">
|
||||
<use xlink:href="#m5a461b94f2" x="66.755448" y="98.303423" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m5a461b94f2" x="201.372614" y="114.686369" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m5a461b94f2" x="335.989779" y="123.820338" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m5a461b94f2" x="470.606945" y="132.969821" style="fill: #8c564b"/>
|
||||
<g clip-path="url(#p63bfa1d351)">
|
||||
<use xlink:href="#m72a1906f41" x="66.755448" y="98.303423" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m72a1906f41" x="201.372614" y="114.686369" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m72a1906f41" x="335.989779" y="123.820338" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m72a1906f41" x="470.606945" y="132.969821" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -37850,7 +37850,7 @@ L 63.662873 131.635821
|
|||
<g id="line2d_27"/>
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m001543d69b" x="63.662873" y="136.135821" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m796d082cb3" x="63.662873" y="136.135821" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -37984,7 +37984,7 @@ L 63.662873 145.102197
|
|||
<g id="line2d_29"/>
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#me0093a5913" x="63.662873" y="149.602197" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m17c73262d7" x="63.662873" y="149.602197" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -38158,7 +38158,7 @@ L 63.662873 158.568574
|
|||
<g id="line2d_31"/>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m161cb5ff6c" x="63.662873" y="163.068574" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m19fbdbedc7" x="63.662873" y="163.068574" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -38211,7 +38211,7 @@ L 63.662873 172.03495
|
|||
<g id="line2d_33"/>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m963bcf02b3" x="63.662873" y="176.53495" style="fill: #d62728"/>
|
||||
<use xlink:href="#m6141131d56" x="63.662873" y="176.53495" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -38287,7 +38287,7 @@ L 63.662873 185.501326
|
|||
<g id="line2d_35"/>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#m1ffe50e50e" x="63.662873" y="190.001326" style="fill: #9467bd"/>
|
||||
<use xlink:href="#med0f9c66ce" x="63.662873" y="190.001326" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -38316,7 +38316,7 @@ L 72.662873 203.467702
|
|||
</g>
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#m5a461b94f2" x="63.662873" y="203.467702" style="fill: #8c564b"/>
|
||||
<use xlink:href="#m72a1906f41" x="63.662873" y="203.467702" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
|
@ -38332,7 +38332,7 @@ L 72.662873 203.467702
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pca97959f9b">
|
||||
<clipPath id="p63bfa1d351">
|
||||
<rect x="46.562873" y="19.620366" width="444.236647" height="197.338929"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 967 KiB After Width: | Height: | Size: 967 KiB |
After Width: | Height: | Size: 1 MiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m9f88a73219" d="M 66.755448 -165.919029
|
||||
<path id="m956a2a3e62" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -6046,13 +6046,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#m9f88a73219" x="0" y="253.19952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m956a2a3e62" x="0" y="253.19952" style="fill: #bfdef4; fill-opacity: 0.5; stroke: #bfdef4; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m82c0045775" d="M 66.755448 -165.919029
|
||||
<path id="m0e83db12fe" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -12059,13 +12059,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#m82c0045775" x="0" y="253.19952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m0e83db12fe" x="0" y="253.19952" style="fill: #ffdfc3; fill-opacity: 0.5; stroke: #ffdfc3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_3">
|
||||
<defs>
|
||||
<path id="md27bb22d29" d="M 66.755448 -165.919029
|
||||
<path id="m4c5bbbe920" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -18072,13 +18072,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#md27bb22d29" x="0" y="253.19952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m4c5bbbe920" x="0" y="253.19952" style="fill: #c3eec3; fill-opacity: 0.5; stroke: #c3eec3; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_4">
|
||||
<defs>
|
||||
<path id="m25a71ee7a6" d="M 66.755448 -165.919029
|
||||
<path id="m9777065750" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -24085,13 +24085,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#m25a71ee7a6" x="0" y="253.19952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m9777065750" x="0" y="253.19952" style="fill: #f5c9c9; fill-opacity: 0.5; stroke: #f5c9c9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_5">
|
||||
<defs>
|
||||
<path id="m47cd62fd10" d="M 66.755448 -165.919029
|
||||
<path id="m0e341de8a0" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -30098,13 +30098,13 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#m47cd62fd10" x="0" y="253.19952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m0e341de8a0" x="0" y="253.19952" style="fill: #e4d9ee; fill-opacity: 0.5; stroke: #e4d9ee; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_6">
|
||||
<defs>
|
||||
<path id="md3b6d9c7b7" d="M 66.755448 -165.919029
|
||||
<path id="m317740d165" d="M 66.755448 -165.919029
|
||||
L 66.755448 -165.919029
|
||||
L 66.890065 -165.919029
|
||||
L 67.024682 -165.919029
|
||||
|
@ -36111,20 +36111,20 @@ L 66.755448 -165.919029
|
|||
z
|
||||
" style="stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#md3b6d9c7b7" x="0" y="253.19952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m317740d165" x="0" y="253.19952" style="fill: #e5d3cf; fill-opacity: 0.5; stroke: #e5d3cf; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m2c08340cfa" d="M 0 0
|
||||
<path id="m8f41b87506" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="66.755448" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="66.755448" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -36160,7 +36160,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="122.845933" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="122.845933" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -36226,7 +36226,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="178.936419" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="178.936419" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -36240,7 +36240,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="235.026905" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="235.026905" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -36275,7 +36275,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="291.117391" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="291.117391" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -36310,7 +36310,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="347.207876" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="347.207876" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -36325,7 +36325,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="403.298362" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="403.298362" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -36340,7 +36340,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m2c08340cfa" x="459.388848" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8f41b87506" x="459.388848" y="216.959296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -36383,12 +36383,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="me2b7d2942f" d="M 0 0
|
||||
<path id="m79904ac409" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me2b7d2942f" x="46.562873" y="189.388826" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m79904ac409" x="46.562873" y="189.388826" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -36422,7 +36422,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#me2b7d2942f" x="46.562873" y="155.352714" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m79904ac409" x="46.562873" y="155.352714" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -36438,7 +36438,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#me2b7d2942f" x="46.562873" y="121.316603" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m79904ac409" x="46.562873" y="121.316603" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -36454,7 +36454,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#me2b7d2942f" x="46.562873" y="87.280491" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m79904ac409" x="46.562873" y="87.280491" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -36469,7 +36469,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#me2b7d2942f" x="46.562873" y="53.24438" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m79904ac409" x="46.562873" y="53.24438" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -36484,7 +36484,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#me2b7d2942f" x="46.562873" y="19.208268" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m79904ac409" x="46.562873" y="19.208268" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -36678,16 +36678,16 @@ z
|
|||
<g id="LineCollection_1">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 78.39964
|
||||
L 201.372614 78.339152
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 78.395429
|
||||
L 335.989779 78.335336
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 78.333781
|
||||
L 470.606945 78.272537
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -36920,21 +36920,21 @@ L 468.45307 78.154872
|
|||
L 469.530008 78.292838
|
||||
L 470.606945 78.303159
|
||||
L 470.606945 78.303159
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #7fbee9; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 64.59239
|
||||
L 201.372614 64.556679
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 41.769182
|
||||
L 335.989779 41.718605
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 18.888624
|
||||
L 470.606945 18.826691
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37020,21 +37020,21 @@ L 468.587688 18.796657
|
|||
L 469.933859 18.857311
|
||||
L 470.606945 18.857657
|
||||
L 470.606945 18.857657
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #ffbf86; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 87.280491
|
||||
L 201.372614 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 87.280491
|
||||
L 335.989779 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37128,21 +37128,21 @@ L 469.126156 87.436236
|
|||
L 469.799242 87.293337
|
||||
L 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #87de87; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_4">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 140.922145
|
||||
L 201.372614 140.709099
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 174.082703
|
||||
L 335.989779 173.780709
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 207.4221
|
||||
L 470.606945 207.051843
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #d62728; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37235,21 +37235,21 @@ L 401.952191 207.239349
|
|||
L 443.818129 207.236971
|
||||
L 470.606945 207.236971
|
||||
L 470.606945 207.236971
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #eb9293; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_5">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 87.280491
|
||||
L 201.372614 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 87.280491
|
||||
L 335.989779 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37396,21 +37396,21 @@ L 402.759894 87.279029
|
|||
L 425.375577 87.280491
|
||||
L 470.606945 87.280491
|
||||
L 470.606945 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #c9b3de; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_6">
|
||||
<path d="M 66.755448 87.280491
|
||||
L 66.755448 87.280491
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 201.372614 108.832951
|
||||
L 201.372614 108.800982
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 335.989779 118.907586
|
||||
L 335.989779 118.859934
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<path d="M 470.606945 128.912174
|
||||
L 470.606945 128.852923
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 66.755448 87.280491
|
||||
|
@ -37563,11 +37563,11 @@ L 468.991539 129.030379
|
|||
L 469.664625 128.899123
|
||||
L 470.606945 128.882548
|
||||
L 470.606945 128.882548
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #cca79f; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<defs>
|
||||
<path id="mff73e28444" d="M 0 1
|
||||
<path id="me04e57a57f" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37579,16 +37579,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#mff73e28444" x="66.755448" y="87.280491" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mff73e28444" x="201.372614" y="78.369396" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mff73e28444" x="335.989779" y="78.365382" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#mff73e28444" x="470.606945" y="78.303159" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#me04e57a57f" x="66.755448" y="87.280491" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me04e57a57f" x="201.372614" y="78.369396" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me04e57a57f" x="335.989779" y="78.365382" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me04e57a57f" x="470.606945" y="78.303159" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<defs>
|
||||
<path id="mb3ae196026" d="M 0 1
|
||||
<path id="m88e38a1aad" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37600,16 +37600,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#mb3ae196026" x="66.755448" y="87.280491" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mb3ae196026" x="201.372614" y="64.574534" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mb3ae196026" x="335.989779" y="41.743893" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mb3ae196026" x="470.606945" y="18.857657" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m88e38a1aad" x="66.755448" y="87.280491" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m88e38a1aad" x="201.372614" y="64.574534" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m88e38a1aad" x="335.989779" y="41.743893" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m88e38a1aad" x="470.606945" y="18.857657" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<defs>
|
||||
<path id="m39e15e0809" d="M 0 1
|
||||
<path id="m404adeb1c2" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37621,16 +37621,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#m39e15e0809" x="66.755448" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m39e15e0809" x="201.372614" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m39e15e0809" x="335.989779" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m39e15e0809" x="470.606945" y="87.280491" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m404adeb1c2" x="66.755448" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m404adeb1c2" x="201.372614" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m404adeb1c2" x="335.989779" y="87.280491" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m404adeb1c2" x="470.606945" y="87.280491" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<defs>
|
||||
<path id="m7b0705b84b" d="M 0 1
|
||||
<path id="m7432123ba3" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37642,16 +37642,16 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#m7b0705b84b" x="66.755448" y="87.280491" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7b0705b84b" x="201.372614" y="140.815622" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7b0705b84b" x="335.989779" y="173.931706" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7b0705b84b" x="470.606945" y="207.236971" style="fill: #d62728"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#m7432123ba3" x="66.755448" y="87.280491" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7432123ba3" x="201.372614" y="140.815622" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7432123ba3" x="335.989779" y="173.931706" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7432123ba3" x="470.606945" y="207.236971" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<defs>
|
||||
<path id="mc83c82edd0" d="M 0 1
|
||||
<path id="mb642ee4f4d" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37663,11 +37663,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#mc83c82edd0" x="66.755448" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mc83c82edd0" x="201.372614" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mc83c82edd0" x="335.989779" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mc83c82edd0" x="470.606945" y="87.280491" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#mb642ee4f4d" x="66.755448" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mb642ee4f4d" x="201.372614" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mb642ee4f4d" x="335.989779" y="87.280491" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mb642ee4f4d" x="470.606945" y="87.280491" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_26">
|
||||
|
@ -37675,9 +37675,9 @@ z
|
|||
L 201.372614 108.816966
|
||||
L 335.989779 118.88376
|
||||
L 470.606945 128.882548
|
||||
" clip-path="url(#p77469030b9)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pb9a02bcecc)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
<defs>
|
||||
<path id="mcf5b8cf823" d="M 0 1
|
||||
<path id="mfc3a55ec1e" d="M 0 1
|
||||
C 0.265203 1 0.51958 0.894634 0.707107 0.707107
|
||||
C 0.894634 0.51958 1 0.265203 1 0
|
||||
C 1 -0.265203 0.894634 -0.51958 0.707107 -0.707107
|
||||
|
@ -37689,11 +37689,11 @@ C -0.51958 0.894634 -0.265203 1 0 1
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p77469030b9)">
|
||||
<use xlink:href="#mcf5b8cf823" x="66.755448" y="87.280491" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mcf5b8cf823" x="201.372614" y="108.816966" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mcf5b8cf823" x="335.989779" y="118.88376" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mcf5b8cf823" x="470.606945" y="128.882548" style="fill: #8c564b"/>
|
||||
<g clip-path="url(#pb9a02bcecc)">
|
||||
<use xlink:href="#mfc3a55ec1e" x="66.755448" y="87.280491" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mfc3a55ec1e" x="201.372614" y="108.816966" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mfc3a55ec1e" x="335.989779" y="118.88376" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mfc3a55ec1e" x="470.606945" y="128.882548" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -37738,7 +37738,7 @@ L 63.662873 131.635821
|
|||
<g id="line2d_27"/>
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#mff73e28444" x="63.662873" y="136.135821" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#me04e57a57f" x="63.662873" y="136.135821" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -37872,7 +37872,7 @@ L 63.662873 145.102197
|
|||
<g id="line2d_29"/>
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#mb3ae196026" x="63.662873" y="149.602197" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m88e38a1aad" x="63.662873" y="149.602197" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -38046,7 +38046,7 @@ L 63.662873 158.568574
|
|||
<g id="line2d_31"/>
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m39e15e0809" x="63.662873" y="163.068574" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#m404adeb1c2" x="63.662873" y="163.068574" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -38099,7 +38099,7 @@ L 63.662873 172.03495
|
|||
<g id="line2d_33"/>
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m7b0705b84b" x="63.662873" y="176.53495" style="fill: #d62728"/>
|
||||
<use xlink:href="#m7432123ba3" x="63.662873" y="176.53495" style="fill: #d62728"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -38175,7 +38175,7 @@ L 63.662873 185.501326
|
|||
<g id="line2d_35"/>
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#mc83c82edd0" x="63.662873" y="190.001326" style="fill: #9467bd"/>
|
||||
<use xlink:href="#mb642ee4f4d" x="63.662873" y="190.001326" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -38204,7 +38204,7 @@ L 72.662873 203.467702
|
|||
</g>
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#mcf5b8cf823" x="63.662873" y="203.467702" style="fill: #8c564b"/>
|
||||
<use xlink:href="#mfc3a55ec1e" x="63.662873" y="203.467702" style="fill: #8c564b"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -38220,7 +38220,7 @@ L 72.662873 203.467702
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p77469030b9">
|
||||
<clipPath id="pb9a02bcecc">
|
||||
<rect x="46.562873" y="7.2" width="444.236647" height="209.759296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 966 KiB After Width: | Height: | Size: 966 KiB |
|
@ -30,10 +30,10 @@ z
|
|||
</g>
|
||||
<g id="axes_1">
|
||||
<g id="patch_2">
|
||||
<path d="M 31.354872 215.414973
|
||||
<path d="M 27.12069 215.414973
|
||||
L 245.99952 215.414973
|
||||
L 245.99952 7.2
|
||||
L 31.354872 7.2
|
||||
L 27.12069 7.2
|
||||
z
|
||||
" style="fill: #ffffff"/>
|
||||
</g>
|
||||
|
@ -41,17 +41,17 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m55df8a9ae2" d="M 0 0
|
||||
<path id="mccacda8d8b" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="41.111447" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="37.069727" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
<!-- $\mathdefault{0}$ -->
|
||||
<g transform="translate(38.994356 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(34.952636 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-30" d="M 2688 2025
|
||||
C 2688 2416 2682 3080 2413 3591
|
||||
|
@ -82,12 +82,12 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="68.213044" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="64.705943" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
<!-- $\mathdefault{25}$ -->
|
||||
<g transform="translate(63.978861 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(60.47176 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-32" d="M 2669 989
|
||||
L 2554 989
|
||||
|
@ -148,12 +148,12 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="95.314641" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="92.342159" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
<!-- $\mathdefault{50}$ -->
|
||||
<g transform="translate(91.080458 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(88.107976 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-35" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
</g>
|
||||
|
@ -162,12 +162,12 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="122.416238" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="119.978375" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
<!-- $\mathdefault{75}$ -->
|
||||
<g transform="translate(118.182055 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(115.744192 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-37" d="M 2886 3941
|
||||
L 2886 4081
|
||||
|
@ -197,12 +197,12 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="149.517835" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="147.614591" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
<!-- $\mathdefault{100}$ -->
|
||||
<g transform="translate(143.166561 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(141.263317 230.049774) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-31" d="M 1702 4058
|
||||
C 1702 4192 1696 4192 1606 4192
|
||||
|
@ -232,12 +232,12 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="176.619432" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="175.250807" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
<!-- $\mathdefault{125}$ -->
|
||||
<g transform="translate(170.268158 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(168.899533 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
|
@ -247,12 +247,12 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="203.721029" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="202.887023" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
<!-- $\mathdefault{150}$ -->
|
||||
<g transform="translate(197.369755 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(196.535749 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
|
@ -262,12 +262,12 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m55df8a9ae2" x="230.822626" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mccacda8d8b" x="230.523239" y="215.414973" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
<!-- $\mathdefault{175}$ -->
|
||||
<g transform="translate(224.471351 230.049774) scale(0.08 -0.08)">
|
||||
<g transform="translate(224.171965 230.049774) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(91.380954 0) scale(0.996264)"/>
|
||||
|
@ -279,17 +279,17 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="mf9ce7d01bf" d="M 0 0
|
||||
<path id="m651c54c71d" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="195.780463" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m651c54c71d" x="27.12069" y="214.46954" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
<!-- $\mathdefault{0.25}$ -->
|
||||
<g transform="translate(7.2 198.547864) scale(0.08 -0.08)">
|
||||
<!-- $\mathdefault{1.0}$ -->
|
||||
<g transform="translate(7.2 217.236941) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMMI12-3a" d="M 1178 307
|
||||
C 1178 492 1024 619 870 619
|
||||
|
@ -299,279 +299,246 @@ C 1050 0 1178 153 1178 307
|
|||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="170.354983" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m651c54c71d" x="27.12069" y="175.774295" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
<!-- $\mathdefault{0.50}$ -->
|
||||
<g transform="translate(7.2 173.122384) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<!-- $\mathdefault{1.2}$ -->
|
||||
<g transform="translate(7.2 178.541696) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="144.929502" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m651c54c71d" x="27.12069" y="137.07905" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
<!-- $\mathdefault{0.75}$ -->
|
||||
<g transform="translate(7.2 147.696903) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-30" transform="scale(0.996264)"/>
|
||||
<!-- $\mathdefault{1.4}$ -->
|
||||
<g transform="translate(7.2 139.846451) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-34" d="M 2150 4122
|
||||
C 2150 4256 2144 4256 2029 4256
|
||||
L 128 1254
|
||||
L 128 1088
|
||||
L 1779 1088
|
||||
L 1779 457
|
||||
C 1779 224 1766 160 1318 160
|
||||
L 1197 160
|
||||
L 1197 0
|
||||
C 1402 0 1747 0 1965 0
|
||||
C 2182 0 2528 0 2733 0
|
||||
L 2733 160
|
||||
L 2611 160
|
||||
C 2163 160 2150 224 2150 457
|
||||
L 2150 1088
|
||||
L 2803 1088
|
||||
L 2803 1254
|
||||
L 2150 1254
|
||||
L 2150 4122
|
||||
z
|
||||
M 1798 3703
|
||||
L 1798 1254
|
||||
L 256 1254
|
||||
L 1798 3703
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-34" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="119.504022" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m651c54c71d" x="27.12069" y="98.383806" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
<!-- $\mathdefault{1.00}$ -->
|
||||
<g transform="translate(7.2 122.271422) scale(0.08 -0.08)">
|
||||
<!-- $\mathdefault{1.6}$ -->
|
||||
<g transform="translate(7.2 101.151207) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-36" d="M 678 2176
|
||||
C 678 3690 1395 4032 1811 4032
|
||||
C 1946 4032 2272 4009 2400 3776
|
||||
C 2298 3776 2106 3776 2106 3553
|
||||
C 2106 3381 2246 3323 2336 3323
|
||||
C 2394 3323 2566 3348 2566 3560
|
||||
C 2566 3954 2246 4179 1805 4179
|
||||
C 1043 4179 243 3390 243 1984
|
||||
C 243 253 966 -128 1478 -128
|
||||
C 2099 -128 2688 427 2688 1283
|
||||
C 2688 2081 2170 2662 1517 2662
|
||||
C 1126 2662 838 2407 678 1960
|
||||
L 678 2176
|
||||
z
|
||||
M 1478 25
|
||||
C 691 25 691 1200 691 1436
|
||||
C 691 1896 909 2560 1504 2560
|
||||
C 1613 2560 1926 2560 2138 2120
|
||||
C 2253 1870 2253 1609 2253 1289
|
||||
C 2253 944 2253 690 2118 434
|
||||
C 1978 171 1773 25 1478 25
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-36" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="94.078541" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m651c54c71d" x="27.12069" y="59.688561" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
<!-- $\mathdefault{1.25}$ -->
|
||||
<g transform="translate(7.2 96.845942) scale(0.08 -0.08)">
|
||||
<!-- $\mathdefault{1.8}$ -->
|
||||
<g transform="translate(7.2 62.455962) scale(0.08 -0.08)">
|
||||
<defs>
|
||||
<path id="CMR17-38" d="M 1741 2264
|
||||
C 2144 2467 2554 2773 2554 3263
|
||||
C 2554 3841 1990 4179 1472 4179
|
||||
C 890 4179 378 3759 378 3180
|
||||
C 378 3021 416 2747 666 2505
|
||||
C 730 2442 998 2251 1171 2130
|
||||
C 883 1983 211 1634 211 934
|
||||
C 211 279 838 -128 1459 -128
|
||||
C 2144 -128 2720 362 2720 1010
|
||||
C 2720 1590 2330 1857 2074 2029
|
||||
L 1741 2264
|
||||
z
|
||||
M 902 2822
|
||||
C 851 2854 595 3051 595 3351
|
||||
C 595 3739 998 4032 1459 4032
|
||||
C 1965 4032 2336 3676 2336 3262
|
||||
C 2336 2669 1670 2331 1638 2331
|
||||
C 1632 2331 1626 2331 1574 2370
|
||||
L 902 2822
|
||||
z
|
||||
M 2080 1519
|
||||
C 2176 1449 2483 1240 2483 851
|
||||
C 2483 381 2010 25 1472 25
|
||||
C 890 25 448 438 448 940
|
||||
C 448 1443 838 1862 1280 2060
|
||||
L 2080 1519
|
||||
z
|
||||
" transform="scale(0.015625)"/>
|
||||
</defs>
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-32" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-38" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="68.65306" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m651c54c71d" x="27.12069" y="20.993317" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
<!-- $\mathdefault{1.50}$ -->
|
||||
<g transform="translate(7.2 71.420461) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_7">
|
||||
<g id="line2d_15">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="43.22758" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
<!-- $\mathdefault{1.75}$ -->
|
||||
<g transform="translate(7.2 45.994981) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-31" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-37" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-35" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_8">
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#mf9ce7d01bf" x="31.354872" y="17.802099" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
<!-- $\mathdefault{2.00}$ -->
|
||||
<g transform="translate(7.2 20.5695) scale(0.08 -0.08)">
|
||||
<!-- $\mathdefault{2.0}$ -->
|
||||
<g transform="translate(7.2 23.760718) scale(0.08 -0.08)">
|
||||
<use xlink:href="#CMR17-32" transform="scale(0.996264)"/>
|
||||
<use xlink:href="#CMMI12-3a" transform="translate(45.690477 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(72.787654 0) scale(0.996264)"/>
|
||||
<use xlink:href="#CMR17-30" transform="translate(118.478131 0) scale(0.996264)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 41.111447 119.504022
|
||||
L 41.306579 119.386238
|
||||
L 41.436666 118.986586
|
||||
L 41.631798 117.549738
|
||||
L 41.891973 113.613446
|
||||
L 42.217192 105.088632
|
||||
L 42.737543 84.252162
|
||||
L 44.03842 28.329837
|
||||
L 44.428683 20.508578
|
||||
L 44.688858 18.319535
|
||||
L 44.88399 17.837908
|
||||
L 45.209209 17.802099
|
||||
L 73.763451 17.837908
|
||||
L 73.893539 18.074108
|
||||
L 74.08867 19.147654
|
||||
L 74.348846 22.471992
|
||||
L 74.674065 30.196374
|
||||
L 75.129372 47.20007
|
||||
L 76.690424 112.230182
|
||||
L 77.015643 117.549738
|
||||
L 77.275818 119.232013
|
||||
L 77.47095 119.49943
|
||||
L 79.097045 119.504022
|
||||
L 106.285368 119.468212
|
||||
L 106.415455 119.232013
|
||||
L 106.610587 118.158467
|
||||
L 106.870762 114.834129
|
||||
L 107.195981 107.109746
|
||||
L 107.651288 90.106051
|
||||
L 109.21234 25.075939
|
||||
L 109.537559 19.756383
|
||||
L 109.797734 18.074108
|
||||
L 109.992866 17.806691
|
||||
L 111.618962 17.802099
|
||||
L 138.807284 17.837908
|
||||
L 138.937372 18.074108
|
||||
L 139.132503 19.147654
|
||||
L 139.392678 22.471992
|
||||
L 139.717897 30.196374
|
||||
L 140.173204 47.20007
|
||||
L 141.734256 112.230182
|
||||
L 142.059475 117.549738
|
||||
L 142.319651 119.232013
|
||||
L 142.514782 119.49943
|
||||
L 144.140878 119.504022
|
||||
L 171.3292 119.468212
|
||||
L 171.459288 119.232013
|
||||
L 171.654419 118.158467
|
||||
L 171.914595 114.834129
|
||||
L 172.239814 107.109746
|
||||
L 172.695121 90.106051
|
||||
L 174.256173 25.075939
|
||||
L 174.581392 19.756383
|
||||
L 174.841567 18.074108
|
||||
L 175.036699 17.806691
|
||||
L 176.662794 17.802099
|
||||
L 203.851116 17.837908
|
||||
L 203.981204 18.074108
|
||||
L 204.176336 19.147654
|
||||
L 204.436511 22.471992
|
||||
L 204.76173 30.196374
|
||||
L 205.217037 47.20007
|
||||
L 206.778089 112.230182
|
||||
L 207.103308 117.549738
|
||||
L 207.363483 119.232013
|
||||
L 207.558615 119.49943
|
||||
L 209.184711 119.504022
|
||||
L 236.242945 119.504022
|
||||
L 236.242945 119.504022
|
||||
" clip-path="url(#pb595b024e0)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 41.111447 205.950656
|
||||
L 236.242945 205.950656
|
||||
L 236.242945 205.950656
|
||||
" clip-path="url(#pb595b024e0)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 41.111447 117.265021
|
||||
L 41.306579 117.149718
|
||||
L 41.436666 116.758444
|
||||
L 41.631798 115.351217
|
||||
L 41.891973 111.492254
|
||||
L 42.217192 103.117867
|
||||
L 42.737543 82.573451
|
||||
L 44.03842 27.130695
|
||||
L 44.428683 19.355626
|
||||
L 44.688858 17.178883
|
||||
L 44.88399 16.699928
|
||||
L 45.209209 16.664317
|
||||
L 73.763451 16.699928
|
||||
L 73.893539 16.934819
|
||||
L 74.08867 18.00238
|
||||
L 74.348846 21.30778
|
||||
L 74.674065 28.98566
|
||||
L 75.129372 45.872747
|
||||
L 76.690424 110.134911
|
||||
L 77.015643 115.351217
|
||||
L 77.275818 116.998733
|
||||
L 77.47095 117.260526
|
||||
L 79.097045 117.265021
|
||||
L 106.285368 117.229966
|
||||
L 106.415455 116.998733
|
||||
L 106.610587 115.947492
|
||||
L 106.870762 112.689533
|
||||
L 107.195981 105.105247
|
||||
L 107.651288 88.354293
|
||||
L 109.21234 23.896453
|
||||
L 109.537559 18.607687
|
||||
L 109.797734 16.934819
|
||||
L 109.992866 16.668883
|
||||
L 111.618962 16.664317
|
||||
L 138.807284 16.699928
|
||||
L 138.937372 16.934819
|
||||
L 139.132503 18.00238
|
||||
L 139.392678 21.30778
|
||||
L 139.717897 28.98566
|
||||
L 140.173204 45.872747
|
||||
L 141.734256 110.134911
|
||||
L 142.059475 115.351217
|
||||
L 142.319651 116.998733
|
||||
L 142.514782 117.260526
|
||||
L 144.140878 117.265021
|
||||
L 171.3292 117.229966
|
||||
L 171.459288 116.998733
|
||||
L 171.654419 115.947492
|
||||
L 171.914595 112.689533
|
||||
L 172.239814 105.105247
|
||||
L 172.695121 88.354293
|
||||
L 174.256173 23.896453
|
||||
L 174.581392 18.607687
|
||||
L 174.841567 16.934819
|
||||
L 175.036699 16.668883
|
||||
L 176.662794 16.664317
|
||||
L 203.851116 16.699928
|
||||
L 203.981204 16.934819
|
||||
L 204.176336 18.00238
|
||||
L 204.436511 21.30778
|
||||
L 204.76173 28.98566
|
||||
L 205.217037 45.872747
|
||||
L 206.778089 110.134911
|
||||
L 207.103308 115.351217
|
||||
L 207.363483 116.998733
|
||||
L 207.558615 117.260526
|
||||
L 209.184711 117.265021
|
||||
L 236.242945 117.265021
|
||||
L 236.242945 117.265021
|
||||
" clip-path="url(#pb595b024e0)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<g id="line2d_15">
|
||||
<path d="M 37.069727 205.950656
|
||||
L 37.202381 205.885405
|
||||
L 37.335035 205.454959
|
||||
L 37.534016 203.497524
|
||||
L 37.799323 197.425912
|
||||
L 38.130958 183.264194
|
||||
L 38.595246 151.878244
|
||||
L 40.187092 30.343288
|
||||
L 40.518727 20.340593
|
||||
L 40.784035 17.17605
|
||||
L 40.983015 16.672955
|
||||
L 41.845265 16.664317
|
||||
L 70.36584 16.731686
|
||||
L 70.498494 17.17605
|
||||
L 70.697475 19.195575
|
||||
L 70.962783 25.447692
|
||||
L 71.294417 39.965512
|
||||
L 71.758706 71.869419
|
||||
L 73.350552 192.659873
|
||||
L 73.682186 202.386872
|
||||
L 73.947494 205.454959
|
||||
L 74.146475 205.942289
|
||||
L 75.075051 205.950656
|
||||
L 103.529299 205.885405
|
||||
L 103.661953 205.454959
|
||||
L 103.860934 203.497524
|
||||
L 104.126242 197.425912
|
||||
L 104.457876 183.264194
|
||||
L 104.922165 151.878244
|
||||
L 106.514011 30.343288
|
||||
L 106.845645 20.340593
|
||||
L 107.110953 17.17605
|
||||
L 107.309934 16.672955
|
||||
L 108.172184 16.664317
|
||||
L 136.692759 16.731686
|
||||
L 136.825412 17.17605
|
||||
L 137.024393 19.195575
|
||||
L 137.289701 25.447692
|
||||
L 137.621335 39.965512
|
||||
L 138.085624 71.869419
|
||||
L 139.67747 192.659873
|
||||
L 140.009105 202.386872
|
||||
L 140.274412 205.454959
|
||||
L 140.473393 205.942289
|
||||
L 141.40197 205.950656
|
||||
L 169.856218 205.885405
|
||||
L 169.988872 205.454959
|
||||
L 170.187852 203.497524
|
||||
L 170.45316 197.425912
|
||||
L 170.784795 183.264194
|
||||
L 171.249083 151.878244
|
||||
L 172.840929 30.343288
|
||||
L 173.172564 20.340593
|
||||
L 173.437871 17.17605
|
||||
L 173.636852 16.672955
|
||||
L 174.499102 16.664317
|
||||
L 203.019677 16.731686
|
||||
L 203.152331 17.17605
|
||||
L 203.351312 19.195575
|
||||
L 203.616619 25.447692
|
||||
L 203.948254 39.965512
|
||||
L 204.412542 71.869419
|
||||
L 206.004388 192.659873
|
||||
L 206.336023 202.386872
|
||||
L 206.601331 205.454959
|
||||
L 206.800311 205.942289
|
||||
L 207.728888 205.950656
|
||||
L 236.050482 205.950656
|
||||
L 236.050482 205.950656
|
||||
" clip-path="url(#p3240381061)" style="fill: none; stroke: #000000; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 31.354872 215.414973
|
||||
L 31.354872 7.2
|
||||
<path d="M 27.12069 215.414973
|
||||
L 27.12069 7.2
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_4">
|
||||
|
@ -580,20 +547,20 @@ L 245.99952 7.2
|
|||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_5">
|
||||
<path d="M 31.354872 215.414973
|
||||
<path d="M 27.12069 215.414973
|
||||
L 245.99952 215.414973
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_6">
|
||||
<path d="M 31.354872 7.2
|
||||
<path d="M 27.12069 7.2
|
||||
L 245.99952 7.2
|
||||
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pb595b024e0">
|
||||
<rect x="31.354872" y="7.2" width="214.644648" height="208.214973"/>
|
||||
<clipPath id="p3240381061">
|
||||
<rect x="27.12069" y="7.2" width="218.87883" height="208.214973"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 17 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m7bae9de5e1" d="M 0 0
|
||||
<path id="mcee2764277" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m7bae9de5e1" x="39.976366" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="39.976366" y="94.559296" 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="#m7bae9de5e1" x="114.407861" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="114.407861" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m7bae9de5e1" x="188.839357" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="188.839357" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m7bae9de5e1" x="263.270852" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="263.270852" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m7bae9de5e1" x="337.702347" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="337.702347" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m7bae9de5e1" x="412.133842" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="412.133842" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m7bae9de5e1" x="486.565337" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mcee2764277" x="486.565337" y="94.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m2f856c2adb" d="M 0 0
|
||||
<path id="mbb085062fe" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m2f856c2adb" x="39.976366" y="90.588419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbb085062fe" x="39.976366" y="90.588419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m2f856c2adb" x="39.976366" y="58.821402" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbb085062fe" x="39.976366" y="58.821402" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m2f856c2adb" x="39.976366" y="27.054385" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbb085062fe" x="39.976366" y="27.054385" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -696,7 +696,7 @@ L 289.422458 90.5778
|
|||
L 294.339854 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke: #d3d3d3; stroke-width: 3; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<path d="M 39.976366 11.170877
|
||||
|
@ -745,7 +745,7 @@ L 458.402069 11.268616
|
|||
L 459.743177 11.170878
|
||||
L 486.565337 11.170877
|
||||
L 486.565337 11.170877
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
<path d="M 39.976366 11.170877
|
||||
|
@ -793,7 +793,7 @@ L 484.330157 11.576096
|
|||
L 485.224229 11.263122
|
||||
L 486.565337 11.170877
|
||||
L 486.565337 11.170877
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -842,7 +842,7 @@ L 235.778137 90.574959
|
|||
L 239.801461 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -891,7 +891,7 @@ L 262.600298 90.576435
|
|||
L 267.070658 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -939,7 +939,7 @@ L 289.422458 90.5778
|
|||
L 294.339854 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -987,7 +987,7 @@ L 316.244619 90.579059
|
|||
L 322.056087 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #8c564b; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1037,7 +1037,7 @@ L 343.066779 90.580215
|
|||
L 349.325283 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #e377c2; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1087,7 +1087,7 @@ L 369.888939 90.581272
|
|||
L 377.041515 90.588419
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1136,7 +1136,7 @@ L 395.817028 90.477048
|
|||
L 397.158136 90.588389
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #bcbd22; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1185,7 +1185,7 @@ L 422.639188 90.483031
|
|||
L 423.980296 90.588409
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #17becf; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 3.2,0.8,0.5,0.8; stroke-dashoffset: 0; stroke: #17becf; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 39.976366 90.588419
|
||||
|
@ -1234,7 +1234,7 @@ L 449.461349 90.488803
|
|||
L 450.802457 90.588417
|
||||
L 486.565337 90.588419
|
||||
L 486.565337 90.588419
|
||||
" clip-path="url(#p2b67bdb1a4)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pceb326ddf2)" style="fill: none; stroke-dasharray: 0.5,0.825; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 39.976366 94.559296
|
||||
|
@ -1923,7 +1923,7 @@ L 462.119155 68.878959
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p2b67bdb1a4">
|
||||
<clipPath id="pceb326ddf2">
|
||||
<rect x="39.976366" y="7.2" width="446.588971" height="87.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
|
@ -39,7 +39,7 @@ z
|
|||
</g>
|
||||
<g id="PolyCollection_1">
|
||||
<defs>
|
||||
<path id="m59223c3764" d="M 59.669895 -87.564151
|
||||
<path id="mbd8627e965" d="M 59.669895 -87.564151
|
||||
L 59.669895 -87.870985
|
||||
L 59.847529 -87.870982
|
||||
L 60.025164 -87.870978
|
||||
|
@ -2044,13 +2044,13 @@ L 59.669895 -87.564151
|
|||
z
|
||||
" style="stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p49be08d0c0)">
|
||||
<use xlink:href="#m59223c3764" x="0" y="179.75952" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p82d1215efb)">
|
||||
<use xlink:href="#mbd8627e965" x="0" y="179.75952" style="fill: #7fbee9; fill-opacity: 0.5; stroke: #7fbee9; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="PolyCollection_2">
|
||||
<defs>
|
||||
<path id="m957fa455e7" d="M 59.669895 -87.642381
|
||||
<path id="m3fd1207885" d="M 59.669895 -87.642381
|
||||
L 59.669895 -87.792756
|
||||
L 59.847529 -87.792923
|
||||
L 60.025164 -87.790718
|
||||
|
@ -4055,20 +4055,20 @@ L 59.669895 -87.642381
|
|||
z
|
||||
" style="stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p49be08d0c0)">
|
||||
<use xlink:href="#m957fa455e7" x="0" y="179.75952" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
<g clip-path="url(#p82d1215efb)">
|
||||
<use xlink:href="#m3fd1207885" x="0" y="179.75952" style="fill: #ffbf86; fill-opacity: 0.5; stroke: #ffbf86; stroke-opacity: 0.5; stroke-width: 0.24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="matplotlib.axis_1">
|
||||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m3b8aba0a95" d="M 0 0
|
||||
<path id="mdf9f663d26" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="59.669895" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="59.669895" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -4146,7 +4146,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="89.275632" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="89.275632" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -4191,7 +4191,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="118.881368" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="118.881368" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -4234,7 +4234,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="148.487105" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="148.487105" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -4279,7 +4279,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="178.092842" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="178.092842" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -4319,7 +4319,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="207.698578" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="207.698578" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -4355,7 +4355,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m3b8aba0a95" x="237.304315" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mdf9f663d26" x="237.304315" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -4428,12 +4428,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m1496918df8" d="M 0 0
|
||||
<path id="ma038a106bb" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="126.557719" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="126.557719" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -4468,7 +4468,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="109.299836" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="109.299836" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -4485,7 +4485,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="92.041952" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="92.041952" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -4501,7 +4501,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="74.784068" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="74.784068" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -4517,7 +4517,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="57.526184" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="57.526184" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -4533,7 +4533,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="40.2683" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="40.2683" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -4549,7 +4549,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m1496918df8" x="50.797056" y="23.010416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#ma038a106bb" x="50.797056" y="23.010416" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -4674,7 +4674,7 @@ L 235.88324 119.667839
|
|||
L 236.416143 119.85937
|
||||
L 237.126681 119.903286
|
||||
L 237.126681 119.903286
|
||||
" clip-path="url(#p49be08d0c0)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p82d1215efb)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 59.669895 92.041952
|
||||
|
@ -4712,7 +4712,7 @@ L 158.967536 13.525138
|
|||
L 159.678074 13.481564
|
||||
L 237.126681 13.481609
|
||||
L 237.126681 13.481609
|
||||
" clip-path="url(#p49be08d0c0)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p82d1215efb)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 50.797056 143.519296
|
||||
|
@ -4911,7 +4911,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p49be08d0c0">
|
||||
<clipPath id="p82d1215efb">
|
||||
<rect x="50.797056" y="7.2" width="195.202464" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 126 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m5ad8223d3d" d="M 0 0
|
||||
<path id="m16468b7c42" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="63.94838" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="63.94838" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -104,7 +104,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="89.425926" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="89.425926" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -145,7 +145,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="114.903473" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="114.903473" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -192,7 +192,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="140.381019" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="140.381019" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -237,7 +237,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="165.858566" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="165.858566" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="191.336112" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="191.336112" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -326,7 +326,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="216.813658" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="216.813658" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -364,7 +364,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="242.291205" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="242.291205" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -459,12 +459,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m70fc1d24bd" d="M 0 0
|
||||
<path id="mbcd8e39834" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="55.031239" y="135.169835" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="55.031239" y="135.169835" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -500,7 +500,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="55.031239" y="112.745419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="55.031239" y="112.745419" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -518,7 +518,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="55.031239" y="90.321003" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="55.031239" y="90.321003" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -535,7 +535,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="55.031239" y="67.896587" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="55.031239" y="67.896587" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -552,7 +552,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="55.031239" y="45.472171" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="55.031239" y="45.472171" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -569,7 +569,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="55.031239" y="23.047756" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="55.031239" y="23.047756" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -634,7 +634,7 @@ L 191.336112 14.01468
|
|||
L 216.813658 14.051633
|
||||
L 242.291205 14.200803
|
||||
L 242.291205 14.200803
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 63.94838 34.256811
|
||||
|
@ -646,7 +646,7 @@ L 191.336112 34.383902
|
|||
L 216.813658 34.39099
|
||||
L 242.291205 34.286473
|
||||
L 242.291205 34.286473
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 63.94838 106.512254
|
||||
|
@ -658,7 +658,7 @@ L 191.336112 106.006849
|
|||
L 216.813658 105.819025
|
||||
L 242.291205 105.979019
|
||||
L 242.291205 105.979019
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_18">
|
||||
<path d="M 63.94838 119.584262
|
||||
|
@ -670,7 +670,7 @@ L 191.336112 117.747018
|
|||
L 216.813658 117.717456
|
||||
L 242.291205 117.742071
|
||||
L 242.291205 117.742071
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_19">
|
||||
<path d="M 63.94838 121.398575
|
||||
|
@ -682,7 +682,7 @@ L 191.336112 122.203481
|
|||
L 216.813658 121.93506
|
||||
L 242.291205 122.076599
|
||||
L 242.291205 122.076599
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_20">
|
||||
<path d="M 63.94838 135.39135
|
||||
|
@ -694,7 +694,7 @@ L 191.336112 134.942279
|
|||
L 216.813658 134.823513
|
||||
L 242.291205 134.772579
|
||||
L 242.291205 134.772579
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #8c564b; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #8c564b; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_21">
|
||||
<path d="M 63.94838 137.322964
|
||||
|
@ -706,7 +706,7 @@ L 191.336112 136.667684
|
|||
L 216.813658 136.621668
|
||||
L 242.291205 136.287753
|
||||
L 242.291205 136.287753
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #e377c2; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #e377c2; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_22">
|
||||
<path d="M 63.94838 134.675227
|
||||
|
@ -718,7 +718,7 @@ L 191.336112 134.434661
|
|||
L 216.813658 134.390519
|
||||
L 242.291205 134.350756
|
||||
L 242.291205 134.350756
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_23">
|
||||
<path d="M 63.94838 130.627285
|
||||
|
@ -730,7 +730,7 @@ L 191.336112 129.758549
|
|||
L 216.813658 129.406562
|
||||
L 242.291205 129.527367
|
||||
L 242.291205 129.527367
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #bcbd22; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #bcbd22; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_24">
|
||||
<path d="M 63.94838 110.664113
|
||||
|
@ -742,7 +742,7 @@ L 191.336112 110.000083
|
|||
L 216.813658 110.024196
|
||||
L 242.291205 109.958208
|
||||
L 242.291205 109.958208
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #17becf; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #17becf; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<path d="M 63.94838 56.832565
|
||||
|
@ -754,7 +754,7 @@ L 191.336112 56.024245
|
|||
L 216.813658 56.073482
|
||||
L 242.291205 55.948457
|
||||
L 242.291205 55.948457
|
||||
" clip-path="url(#p955a19ca74)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p7286915e87)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 55.031239 143.519296
|
||||
|
@ -790,7 +790,7 @@ z
|
|||
<g id="xtick_9">
|
||||
<g id="line2d_26">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="301.871238" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="301.871238" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -807,7 +807,7 @@ z
|
|||
<g id="xtick_10">
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="327.348784" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="327.348784" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -824,7 +824,7 @@ z
|
|||
<g id="xtick_11">
|
||||
<g id="line2d_28">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="352.826331" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="352.826331" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -841,7 +841,7 @@ z
|
|||
<g id="xtick_12">
|
||||
<g id="line2d_29">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="378.303877" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="378.303877" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_20">
|
||||
|
@ -858,7 +858,7 @@ z
|
|||
<g id="xtick_13">
|
||||
<g id="line2d_30">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="403.781424" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="403.781424" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -875,7 +875,7 @@ z
|
|||
<g id="xtick_14">
|
||||
<g id="line2d_31">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="429.25897" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="429.25897" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_22">
|
||||
|
@ -892,7 +892,7 @@ z
|
|||
<g id="xtick_15">
|
||||
<g id="line2d_32">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="454.736516" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="454.736516" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_23">
|
||||
|
@ -909,7 +909,7 @@ z
|
|||
<g id="xtick_16">
|
||||
<g id="line2d_33">
|
||||
<g>
|
||||
<use xlink:href="#m5ad8223d3d" x="480.214063" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m16468b7c42" x="480.214063" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_24">
|
||||
|
@ -934,7 +934,7 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_34">
|
||||
<g>
|
||||
<use xlink:href="#m70fc1d24bd" x="292.954097" y="57.455243" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mbcd8e39834" x="292.954097" y="57.455243" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_26">
|
||||
|
@ -949,75 +949,75 @@ z
|
|||
<g id="ytick_8">
|
||||
<g id="line2d_35">
|
||||
<defs>
|
||||
<path id="mc322ac721e" d="M 0 0
|
||||
<path id="m33064ea81b" d="M 0 0
|
||||
L -2 0
|
||||
" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="121.985257" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="121.985257" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_9">
|
||||
<g id="line2d_36">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="105.728234" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="105.728234" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_10">
|
||||
<g id="line2d_37">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="94.193692" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="94.193692" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_11">
|
||||
<g id="line2d_38">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="85.246807" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="85.246807" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_12">
|
||||
<g id="line2d_39">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="77.936669" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="77.936669" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_13">
|
||||
<g id="line2d_40">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="71.756036" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="71.756036" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_14">
|
||||
<g id="line2d_41">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="66.402128" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="66.402128" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_15">
|
||||
<g id="line2d_42">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="61.679646" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="61.679646" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_16">
|
||||
<g id="line2d_43">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="29.663678" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="29.663678" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ytick_17">
|
||||
<g id="line2d_44">
|
||||
<g>
|
||||
<use xlink:href="#mc322ac721e" x="292.954097" y="13.406655" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
<use xlink:href="#m33064ea81b" x="292.954097" y="13.406655" style="stroke: #000000; stroke-width: 0.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
@ -1071,7 +1071,7 @@ L 429.25897 21.603611
|
|||
L 454.736516 20.987053
|
||||
L 480.214063 21.082715
|
||||
L 480.214063 21.082715
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_46">
|
||||
<path d="M 301.871238 30.869942
|
||||
|
@ -1083,7 +1083,7 @@ L 429.25897 37.865486
|
|||
L 454.736516 37.88948
|
||||
L 480.214063 38.004305
|
||||
L 480.214063 38.004305
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_47">
|
||||
<path d="M 301.871238 121.275193
|
||||
|
@ -1095,7 +1095,7 @@ L 429.25897 123.35431
|
|||
L 454.736516 123.733462
|
||||
L 480.214063 123.392617
|
||||
L 480.214063 123.392617
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_48">
|
||||
<path d="M 301.871238 102.634115
|
||||
|
@ -1107,7 +1107,7 @@ L 429.25897 105.899453
|
|||
L 454.736516 105.847636
|
||||
L 480.214063 105.699316
|
||||
L 480.214063 105.699316
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_49">
|
||||
<path d="M 301.871238 102.234452
|
||||
|
@ -1119,7 +1119,7 @@ L 429.25897 102.846476
|
|||
L 454.736516 103.116989
|
||||
L 480.214063 103.121144
|
||||
L 480.214063 103.121144
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_50">
|
||||
<path d="M 301.871238 101.055878
|
||||
|
@ -1131,7 +1131,7 @@ L 429.25897 101.793217
|
|||
L 454.736516 101.904448
|
||||
L 480.214063 102.01082
|
||||
L 480.214063 102.01082
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #8c564b; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #8c564b; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_51">
|
||||
<path d="M 301.871238 102.849543
|
||||
|
@ -1143,7 +1143,7 @@ L 429.25897 103.45874
|
|||
L 454.736516 103.436796
|
||||
L 480.214063 103.697502
|
||||
L 480.214063 103.697502
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #e377c2; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #e377c2; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_52">
|
||||
<path d="M 301.871238 105.86995
|
||||
|
@ -1155,7 +1155,7 @@ L 429.25897 106.193671
|
|||
L 454.736516 106.151448
|
||||
L 480.214063 106.228585
|
||||
L 480.214063 106.228585
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #7f7f7f; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_53">
|
||||
<path d="M 301.871238 109.97327
|
||||
|
@ -1167,7 +1167,7 @@ L 429.25897 110.691104
|
|||
L 454.736516 110.934012
|
||||
L 480.214063 110.811207
|
||||
L 480.214063 110.811207
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #bcbd22; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #bcbd22; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_54">
|
||||
<path d="M 301.871238 135.19889
|
||||
|
@ -1179,7 +1179,7 @@ L 429.25897 136.484109
|
|||
L 454.736516 136.354596
|
||||
L 480.214063 136.56195
|
||||
L 480.214063 136.56195
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #17becf; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #17becf; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_55">
|
||||
<path d="M 301.871238 107.805712
|
||||
|
@ -1191,7 +1191,7 @@ L 429.25897 107.071184
|
|||
L 454.736516 106.9311
|
||||
L 480.214063 106.875028
|
||||
L 480.214063 106.875028
|
||||
" clip-path="url(#pd6723f9e93)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pfceef112c9)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
<path d="M 292.954097 143.519296
|
||||
|
@ -1216,10 +1216,10 @@ L 489.131204 7.2
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p955a19ca74">
|
||||
<clipPath id="p7286915e87">
|
||||
<rect x="55.031239" y="7.2" width="196.177107" height="136.319296"/>
|
||||
</clipPath>
|
||||
<clipPath id="pd6723f9e93">
|
||||
<clipPath id="pfceef112c9">
|
||||
<rect x="292.954097" y="7.2" width="196.177107" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m4fd9894338" d="M 0 0
|
||||
<path id="medaa3dc33e" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m4fd9894338" x="57.463727" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medaa3dc33e" x="57.463727" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_1">
|
||||
|
@ -115,7 +115,7 @@ z
|
|||
<g id="xtick_2">
|
||||
<g id="line2d_2">
|
||||
<g>
|
||||
<use xlink:href="#m4fd9894338" x="106.113496" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medaa3dc33e" x="106.113496" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -128,7 +128,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m4fd9894338" x="154.763266" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medaa3dc33e" x="154.763266" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -142,7 +142,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m4fd9894338" x="203.413035" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#medaa3dc33e" x="203.413035" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -425,12 +425,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_5">
|
||||
<defs>
|
||||
<path id="m627a35dd34" d="M 0 0
|
||||
<path id="m979ba14cb7" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m627a35dd34" x="55.031239" y="128.338979" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m979ba14cb7" x="55.031239" y="128.338979" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -480,7 +480,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m627a35dd34" x="55.031239" y="105.742296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m979ba14cb7" x="55.031239" y="105.742296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -498,7 +498,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m627a35dd34" x="55.031239" y="83.145614" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m979ba14cb7" x="55.031239" y="83.145614" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -516,7 +516,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m627a35dd34" x="55.031239" y="60.548932" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m979ba14cb7" x="55.031239" y="60.548932" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -533,7 +533,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m627a35dd34" x="55.031239" y="37.95225" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m979ba14cb7" x="55.031239" y="37.95225" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -550,7 +550,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m627a35dd34" x="55.031239" y="15.355567" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m979ba14cb7" x="55.031239" y="15.355567" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -616,112 +616,112 @@ z
|
|||
<g id="line2d_11">
|
||||
<path d="M 55.031239 60.548932
|
||||
L 215.575478 60.548932
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #d3d3d3; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="LineCollection_1">
|
||||
<path d="M 62.328704 137.322964
|
||||
L 62.328704 137.184825
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 76.923635 117.084436
|
||||
L 76.923635 116.943413
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 91.518566 44.840053
|
||||
L 91.518566 44.701206
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 32.986025
|
||||
L 106.113496 32.848402
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 28.618052
|
||||
L 120.708427 28.480722
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 15.822899
|
||||
L 135.303358 15.688852
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 14.295324
|
||||
L 149.898289 14.162798
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 16.24685
|
||||
L 164.49322 16.115027
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 21.107216
|
||||
L 179.088151 20.975546
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 40.827018
|
||||
L 193.683081 40.694727
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
<path d="M 208.278012 95.251515
|
||||
L 208.278012 95.119548
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="LineCollection_2">
|
||||
<path d="M 62.328704 113.849106
|
||||
L 62.328704 113.751173
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 76.923635 93.335843
|
||||
L 76.923635 93.227875
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 91.518566 26.730763
|
||||
L 91.518566 26.633773
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 17.735554
|
||||
L 106.113496 17.642883
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 16.03419
|
||||
L 120.708427 15.938467
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 13.492504
|
||||
L 135.303358 13.396332
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 14.260142
|
||||
L 149.898289 14.163956
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 16.125884
|
||||
L 164.49322 16.029636
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 21.913651
|
||||
L 179.088151 21.817302
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 40.600888
|
||||
L 193.683081 40.504355
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
<path d="M 208.278012 95.312886
|
||||
L 208.278012 95.226231
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="LineCollection_3">
|
||||
<path d="M 62.328704 84.176235
|
||||
L 62.328704 83.982404
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 76.923635 84.448824
|
||||
L 76.923635 84.254997
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 91.518566 78.715387
|
||||
L 91.518566 78.5276
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 75.84349
|
||||
L 106.113496 75.654669
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 73.176536
|
||||
L 120.708427 72.983321
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 62.909618
|
||||
L 135.303358 62.721522
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 60.612176
|
||||
L 149.898289 60.427018
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 60.699656
|
||||
L 164.49322 60.515771
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 59.777089
|
||||
L 179.088151 59.593501
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 60.828681
|
||||
L 193.683081 60.646006
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
<path d="M 208.278012 60.648768
|
||||
L 208.278012 60.468477
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_12">
|
||||
<path d="M 62.328704 137.253895
|
||||
|
@ -735,9 +735,9 @@ L 164.49322 16.180938
|
|||
L 179.088151 21.041381
|
||||
L 193.683081 40.760873
|
||||
L 208.278012 95.185532
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="m186e3a3ab5" d="M 0 1.4
|
||||
<path id="m2468af7ab6" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -749,18 +749,18 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p2425d0cff5)">
|
||||
<use xlink:href="#m186e3a3ab5" x="62.328704" y="137.253895" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="76.923635" y="117.013925" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="91.518566" y="44.77063" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="106.113496" y="32.917214" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="120.708427" y="28.549387" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="135.303358" y="15.755876" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="149.898289" y="14.229061" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="164.49322" y="16.180938" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="179.088151" y="21.041381" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="193.683081" y="40.760873" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m186e3a3ab5" x="208.278012" y="95.185532" style="fill: #1f77b4"/>
|
||||
<g clip-path="url(#p0ad02f1925)">
|
||||
<use xlink:href="#m2468af7ab6" x="62.328704" y="137.253895" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="76.923635" y="117.013925" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="91.518566" y="44.77063" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="106.113496" y="32.917214" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="120.708427" y="28.549387" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="135.303358" y="15.755876" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="149.898289" y="14.229061" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="164.49322" y="16.180938" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="179.088151" y="21.041381" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="193.683081" y="40.760873" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="208.278012" y="95.185532" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_13">
|
||||
|
@ -775,9 +775,9 @@ L 164.49322 16.07776
|
|||
L 179.088151 21.865476
|
||||
L 193.683081 40.552622
|
||||
L 208.278012 95.269558
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="m96630e5b66" d="M 0 1.4
|
||||
<path id="mc5cbc2ee33" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -789,18 +789,18 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p2425d0cff5)">
|
||||
<use xlink:href="#m96630e5b66" x="62.328704" y="113.80014" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="76.923635" y="93.281859" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="91.518566" y="26.682268" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="106.113496" y="17.689219" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="120.708427" y="15.986328" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="135.303358" y="13.444418" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="149.898289" y="14.212049" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="164.49322" y="16.07776" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="179.088151" y="21.865476" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="193.683081" y="40.552622" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#m96630e5b66" x="208.278012" y="95.269558" style="fill: #ff7f0e"/>
|
||||
<g clip-path="url(#p0ad02f1925)">
|
||||
<use xlink:href="#mc5cbc2ee33" x="62.328704" y="113.80014" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="76.923635" y="93.281859" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="91.518566" y="26.682268" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="106.113496" y="17.689219" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="120.708427" y="15.986328" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="135.303358" y="13.444418" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="149.898289" y="14.212049" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="164.49322" y="16.07776" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="179.088151" y="21.865476" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="193.683081" y="40.552622" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="208.278012" y="95.269558" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
|
@ -815,9 +815,9 @@ L 164.49322 60.607713
|
|||
L 179.088151 59.685295
|
||||
L 193.683081 60.737343
|
||||
L 208.278012 60.558623
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="md1c5e7c71c" d="M 0 1.4
|
||||
<path id="mf75d27bc80" d="M 0 1.4
|
||||
C 0.371284 1.4 0.727412 1.252487 0.989949 0.989949
|
||||
C 1.252487 0.727412 1.4 0.371284 1.4 0
|
||||
C 1.4 -0.371284 1.252487 -0.727412 0.989949 -0.989949
|
||||
|
@ -829,18 +829,18 @@ C -0.727412 1.252487 -0.371284 1.4 0 1.4
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p2425d0cff5)">
|
||||
<use xlink:href="#md1c5e7c71c" x="62.328704" y="84.07932" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="76.923635" y="84.351911" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="91.518566" y="78.621494" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="106.113496" y="75.74908" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="120.708427" y="73.079929" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="135.303358" y="62.81557" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="149.898289" y="60.519597" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="164.49322" y="60.607713" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="179.088151" y="59.685295" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="193.683081" y="60.737343" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#md1c5e7c71c" x="208.278012" y="60.558623" style="fill: #2ca02c"/>
|
||||
<g clip-path="url(#p0ad02f1925)">
|
||||
<use xlink:href="#mf75d27bc80" x="62.328704" y="84.07932" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="76.923635" y="84.351911" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="91.518566" y="78.621494" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="106.113496" y="75.74908" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="120.708427" y="73.079929" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="135.303358" y="62.81557" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="149.898289" y="60.519597" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="164.49322" y="60.607713" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="179.088151" y="59.685295" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="193.683081" y="60.737343" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="208.278012" y="60.558623" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
|
@ -889,7 +889,7 @@ L 184.711437 103.604255
|
|||
</g>
|
||||
<g id="line2d_16">
|
||||
<g>
|
||||
<use xlink:href="#m186e3a3ab5" x="175.711437" y="103.604255" style="fill: #1f77b4"/>
|
||||
<use xlink:href="#m2468af7ab6" x="175.711437" y="103.604255" style="fill: #1f77b4"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -911,7 +911,7 @@ L 184.711437 117.231101
|
|||
</g>
|
||||
<g id="line2d_18">
|
||||
<g>
|
||||
<use xlink:href="#m96630e5b66" x="175.711437" y="117.231101" style="fill: #ff7f0e"/>
|
||||
<use xlink:href="#mc5cbc2ee33" x="175.711437" y="117.231101" style="fill: #ff7f0e"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -967,7 +967,7 @@ L 184.711437 130.525834
|
|||
</g>
|
||||
<g id="line2d_20">
|
||||
<g>
|
||||
<use xlink:href="#md1c5e7c71c" x="175.711437" y="130.525834" style="fill: #2ca02c"/>
|
||||
<use xlink:href="#mf75d27bc80" x="175.711437" y="130.525834" style="fill: #2ca02c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -1017,12 +1017,12 @@ z
|
|||
<g id="ytick_7">
|
||||
<g id="line2d_21">
|
||||
<defs>
|
||||
<path id="me856d88ef2" d="M 0 0
|
||||
<path id="m7afd3f1a2d" d="M 0 0
|
||||
L 3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#me856d88ef2" x="215.575478" y="129.647366" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7afd3f1a2d" x="215.575478" y="129.647366" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_16">
|
||||
|
@ -1084,7 +1084,7 @@ z
|
|||
<g id="ytick_8">
|
||||
<g id="line2d_22">
|
||||
<g>
|
||||
<use xlink:href="#me856d88ef2" x="215.575478" y="97.520788" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7afd3f1a2d" x="215.575478" y="97.520788" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_17">
|
||||
|
@ -1098,7 +1098,7 @@ z
|
|||
<g id="ytick_9">
|
||||
<g id="line2d_23">
|
||||
<g>
|
||||
<use xlink:href="#me856d88ef2" x="215.575478" y="65.394211" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7afd3f1a2d" x="215.575478" y="65.394211" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_18">
|
||||
|
@ -1112,7 +1112,7 @@ z
|
|||
<g id="ytick_10">
|
||||
<g id="line2d_24">
|
||||
<g>
|
||||
<use xlink:href="#me856d88ef2" x="215.575478" y="33.267633" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m7afd3f1a2d" x="215.575478" y="33.267633" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_19">
|
||||
|
@ -1196,28 +1196,28 @@ z
|
|||
<g id="LineCollection_7">
|
||||
<path d="M 91.518566 103.2557
|
||||
L 91.518566 100.650749
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 106.113496 34.694598
|
||||
L 106.113496 31.562521
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 120.708427 21.843958
|
||||
L 120.708427 18.790686
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 135.303358 15.685848
|
||||
L 135.303358 13.396332
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 149.898289 24.282166
|
||||
L 149.898289 22.224283
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 164.49322 36.621948
|
||||
L 164.49322 34.694399
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 179.088151 57.108176
|
||||
L 179.088151 55.329781
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
<path d="M 193.683081 137.322964
|
||||
L 193.683081 136.05614
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_25">
|
||||
<path d="M 91.518566 101.953225
|
||||
|
@ -1228,9 +1228,9 @@ L 149.898289 23.253225
|
|||
L 164.49322 35.658174
|
||||
L 179.088151 56.218978
|
||||
L 193.683081 136.689552
|
||||
" clip-path="url(#p2425d0cff5)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p0ad02f1925)" style="fill: none; stroke: #9467bd; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
<defs>
|
||||
<path id="m1565634ddb" d="M 0 -2.8
|
||||
<path id="m1c6aee7a07" d="M 0 -2.8
|
||||
L -0.628639 -0.865248
|
||||
L -2.662958 -0.865248
|
||||
L -1.01716 0.330495
|
||||
|
@ -1243,15 +1243,15 @@ L 0.628639 -0.865248
|
|||
z
|
||||
"/>
|
||||
</defs>
|
||||
<g clip-path="url(#p2425d0cff5)">
|
||||
<use xlink:href="#m1565634ddb" x="91.518566" y="101.953225" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="106.113496" y="33.12856" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="120.708427" y="20.317322" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="135.303358" y="14.54109" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="149.898289" y="23.253225" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="164.49322" y="35.658174" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="179.088151" y="56.218978" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1565634ddb" x="193.683081" y="136.689552" style="fill: #9467bd"/>
|
||||
<g clip-path="url(#p0ad02f1925)">
|
||||
<use xlink:href="#m1c6aee7a07" x="91.518566" y="101.953225" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="106.113496" y="33.12856" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="120.708427" y="20.317322" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="135.303358" y="14.54109" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="149.898289" y="23.253225" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="164.49322" y="35.658174" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="179.088151" y="56.218978" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="193.683081" y="136.689552" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="patch_8">
|
||||
|
@ -1300,7 +1300,7 @@ L 81.131239 18.45
|
|||
</g>
|
||||
<g id="line2d_27">
|
||||
<g>
|
||||
<use xlink:href="#m1565634ddb" x="72.131239" y="18.45" style="fill: #9467bd"/>
|
||||
<use xlink:href="#m1c6aee7a07" x="72.131239" y="18.45" style="fill: #9467bd"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_21">
|
||||
|
@ -1313,7 +1313,7 @@ L 81.131239 18.45
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p2425d0cff5">
|
||||
<clipPath id="p0ad02f1925">
|
||||
<rect x="55.031239" y="7.2" width="160.544239" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 342 KiB |
Before Width: | Height: | Size: 1 MiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m8406b60fb8" d="M 0 0
|
||||
<path id="m1eb5c39023" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8406b60fb8" x="43.356847" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="43.356847" y="143.519296" 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="#m8406b60fb8" x="70.161434" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="70.161434" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -148,7 +148,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m8406b60fb8" x="96.96602" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="96.96602" y="143.519296" 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="#m8406b60fb8" x="123.770606" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="123.770606" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -197,7 +197,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m8406b60fb8" x="150.575193" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="150.575193" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -232,7 +232,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m8406b60fb8" x="177.379779" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="177.379779" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -247,7 +247,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m8406b60fb8" x="204.184365" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="204.184365" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -262,7 +262,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m8406b60fb8" x="230.988952" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m1eb5c39023" x="230.988952" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -305,12 +305,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m8a0f47f87f" d="M 0 0
|
||||
<path id="m8b0f6157df" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m8a0f47f87f" x="33.707196" y="137.322964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b0f6157df" x="33.707196" y="137.322964" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -344,7 +344,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m8a0f47f87f" x="33.707196" y="112.678705" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b0f6157df" x="33.707196" y="112.678705" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -390,7 +390,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m8a0f47f87f" x="33.707196" y="88.034446" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b0f6157df" x="33.707196" y="88.034446" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -431,7 +431,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m8a0f47f87f" x="33.707196" y="63.390186" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b0f6157df" x="33.707196" y="63.390186" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -475,7 +475,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m8a0f47f87f" x="33.707196" y="38.745927" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b0f6157df" x="33.707196" y="38.745927" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -491,7 +491,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m8a0f47f87f" x="33.707196" y="14.101668" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m8b0f6157df" x="33.707196" y="14.101668" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -703,7 +703,7 @@ L 235.513566 104.572964
|
|||
L 235.835221 104.784866
|
||||
L 236.349869 104.822231
|
||||
L 236.349869 104.822231
|
||||
" clip-path="url(#p6b5a1a6fa6)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#peac73e7b1a)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 43.356847 14.101668
|
||||
|
@ -911,7 +911,7 @@ L 230.946064 13.926793
|
|||
L 232.940326 14.164876
|
||||
L 236.349869 14.11372
|
||||
L 236.349869 14.11372
|
||||
" clip-path="url(#p6b5a1a6fa6)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#peac73e7b1a)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 43.356847 14.101668
|
||||
|
@ -1141,7 +1141,7 @@ L 231.525043 13.787604
|
|||
L 234.419939 14.132148
|
||||
L 236.349869 14.090451
|
||||
L 236.349869 14.090451
|
||||
" clip-path="url(#p6b5a1a6fa6)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#peac73e7b1a)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 33.707196 143.519296
|
||||
|
@ -1379,7 +1379,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p6b5a1a6fa6">
|
||||
<clipPath id="peac73e7b1a">
|
||||
<rect x="33.707196" y="7.2" width="212.292324" height="136.319296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m03fff7589a" d="M 0 0
|
||||
<path id="m187b061592" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m03fff7589a" x="51.401529" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="51.401529" y="202.559296" 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="#m03fff7589a" x="82.290099" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="82.290099" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m03fff7589a" x="113.178669" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="113.178669" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m03fff7589a" x="144.067239" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="144.067239" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m03fff7589a" x="174.955809" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="174.955809" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m03fff7589a" x="205.844379" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="205.844379" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m03fff7589a" x="236.732949" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m187b061592" x="236.732949" y="202.559296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m3dd59c1fac" d="M 0 0
|
||||
<path id="m361083db47" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m3dd59c1fac" x="42.134959" y="193.679328" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m361083db47" x="42.134959" y="193.679328" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -380,7 +380,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m3dd59c1fac" x="42.134959" y="158.159456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m361083db47" x="42.134959" y="158.159456" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -395,7 +395,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m3dd59c1fac" x="42.134959" y="122.639584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m361083db47" x="42.134959" y="122.639584" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -410,7 +410,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m3dd59c1fac" x="42.134959" y="87.119712" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m361083db47" x="42.134959" y="87.119712" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -425,7 +425,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m3dd59c1fac" x="42.134959" y="51.59984" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m361083db47" x="42.134959" y="51.59984" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -440,7 +440,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m3dd59c1fac" x="42.134959" y="16.079968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m361083db47" x="42.134959" y="16.079968" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -606,7 +606,7 @@ L 235.990881 193.202948
|
|||
L 236.361915 193.616611
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p06cd432997)" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8def760f9e)" style="fill: none; stroke: #ff7f0e; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 51.401529 193.679328
|
||||
|
@ -646,7 +646,7 @@ L 143.788964 193.652529
|
|||
L 144.716549 193.679328
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p06cd432997)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #ff7f0e"/>
|
||||
" clip-path="url(#p8def760f9e)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #ff7f0e"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 51.401529 193.679328
|
||||
|
@ -697,7 +697,7 @@ L 235.43433 193.355988
|
|||
L 235.990881 193.616611
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p06cd432997)" style="fill: none; stroke: #2ca02c; stroke-linecap: square"/>
|
||||
" clip-path="url(#p8def760f9e)" style="fill: none; stroke: #2ca02c; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 51.401529 193.679328
|
||||
|
@ -749,7 +749,7 @@ L 143.41793 193.637043
|
|||
L 144.345515 193.679328
|
||||
L 236.732949 193.679328
|
||||
L 236.732949 193.679328
|
||||
" clip-path="url(#p06cd432997)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
" clip-path="url(#p8def760f9e)" style="fill: none; stroke-dasharray: 3.7,1.6; stroke-dashoffset: 0; stroke: #2ca02c"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 42.134959 202.559296
|
||||
|
@ -1179,7 +1179,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p06cd432997">
|
||||
<clipPath id="p8def760f9e">
|
||||
<rect x="42.134959" y="7.2" width="203.864561" height="195.359296"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 969 KiB |
After Width: | Height: | Size: 44 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m2b03ab96aa" d="M 0 0
|
||||
<path id="meaf4a499ff" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m2b03ab96aa" x="47.398567" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="47.398567" y="143.519296" 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="#m2b03ab96aa" x="73.668535" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="73.668535" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -148,7 +148,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m2b03ab96aa" x="99.938502" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="99.938502" y="143.519296" 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="#m2b03ab96aa" x="126.208469" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="126.208469" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -197,7 +197,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m2b03ab96aa" x="152.478436" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="152.478436" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -232,7 +232,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m2b03ab96aa" x="178.748404" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="178.748404" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -247,7 +247,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m2b03ab96aa" x="205.018371" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="205.018371" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -262,7 +262,7 @@ z
|
|||
<g id="xtick_8">
|
||||
<g id="line2d_8">
|
||||
<g>
|
||||
<use xlink:href="#m2b03ab96aa" x="231.288338" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#meaf4a499ff" x="231.288338" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_8">
|
||||
|
@ -305,12 +305,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_9">
|
||||
<defs>
|
||||
<path id="m207736d75d" d="M 0 0
|
||||
<path id="m3b5dddaaf7" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m207736d75d" x="37.941379" y="137.910169" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3b5dddaaf7" x="37.941379" y="137.910169" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -345,7 +345,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m207736d75d" x="37.941379" y="116.546982" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3b5dddaaf7" x="37.941379" y="116.546982" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -362,7 +362,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m207736d75d" x="37.941379" y="95.183796" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3b5dddaaf7" x="37.941379" y="95.183796" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -379,7 +379,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m207736d75d" x="37.941379" y="73.82061" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3b5dddaaf7" x="37.941379" y="73.82061" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -396,7 +396,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_13">
|
||||
<g>
|
||||
<use xlink:href="#m207736d75d" x="37.941379" y="52.457423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3b5dddaaf7" x="37.941379" y="52.457423" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_14">
|
||||
|
@ -412,7 +412,7 @@ z
|
|||
<g id="ytick_6">
|
||||
<g id="line2d_14">
|
||||
<g>
|
||||
<use xlink:href="#m207736d75d" x="37.941379" y="31.094237" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m3b5dddaaf7" x="37.941379" y="31.094237" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_15">
|
||||
|
@ -648,7 +648,7 @@ L 235.785757 114.094105
|
|||
L 236.227092 114.310021
|
||||
L 236.542332 114.393028
|
||||
L 236.542332 114.393028
|
||||
" clip-path="url(#p74a680c048)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p975c53f5d7)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 47.398567 52.457423
|
||||
|
@ -942,7 +942,7 @@ L 234.903086 72.089497
|
|||
L 235.785757 71.642369
|
||||
L 236.542332 71.052576
|
||||
L 236.542332 71.052576
|
||||
" clip-path="url(#p74a680c048)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p975c53f5d7)" style="fill: none; stroke: #2ca02c; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_17">
|
||||
<path d="M 47.398567 52.457423
|
||||
|
@ -1253,7 +1253,7 @@ L 233.642127 52.489843
|
|||
L 236.479284 53.352697
|
||||
L 236.542332 53.355323
|
||||
L 236.542332 53.355323
|
||||
" clip-path="url(#p74a680c048)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#p975c53f5d7)" style="fill: none; stroke: #d62728; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 37.941379 143.519296
|
||||
|
@ -1574,7 +1574,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="p74a680c048">
|
||||
<clipPath id="p975c53f5d7">
|
||||
<rect x="37.941379" y="20.118498" width="208.058141" height="123.400797"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
|
@ -41,12 +41,12 @@ z
|
|||
<g id="xtick_1">
|
||||
<g id="line2d_1">
|
||||
<defs>
|
||||
<path id="m852d9afe33" d="M 0 0
|
||||
<path id="mb76476f28d" d="M 0 0
|
||||
L 0 3.5
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m852d9afe33" x="59.669895" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="59.669895" y="143.519296" 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="#m852d9afe33" x="89.246026" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="89.246026" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_2">
|
||||
|
@ -116,7 +116,7 @@ z
|
|||
<g id="xtick_3">
|
||||
<g id="line2d_3">
|
||||
<g>
|
||||
<use xlink:href="#m852d9afe33" x="118.822157" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="118.822157" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_3">
|
||||
|
@ -154,7 +154,7 @@ z
|
|||
<g id="xtick_4">
|
||||
<g id="line2d_4">
|
||||
<g>
|
||||
<use xlink:href="#m852d9afe33" x="148.398288" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="148.398288" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_4">
|
||||
|
@ -198,7 +198,7 @@ z
|
|||
<g id="xtick_5">
|
||||
<g id="line2d_5">
|
||||
<g>
|
||||
<use xlink:href="#m852d9afe33" x="177.974419" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="177.974419" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_5">
|
||||
|
@ -240,7 +240,7 @@ z
|
|||
<g id="xtick_6">
|
||||
<g id="line2d_6">
|
||||
<g>
|
||||
<use xlink:href="#m852d9afe33" x="207.55055" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="207.55055" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_6">
|
||||
|
@ -284,7 +284,7 @@ z
|
|||
<g id="xtick_7">
|
||||
<g id="line2d_7">
|
||||
<g>
|
||||
<use xlink:href="#m852d9afe33" x="237.126681" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#mb76476f28d" x="237.126681" y="143.519296" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_7">
|
||||
|
@ -351,12 +351,12 @@ z
|
|||
<g id="ytick_1">
|
||||
<g id="line2d_8">
|
||||
<defs>
|
||||
<path id="m451b0ac029" d="M 0 0
|
||||
<path id="m688e906e8d" d="M 0 0
|
||||
L -3.5 0
|
||||
" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</defs>
|
||||
<g>
|
||||
<use xlink:href="#m451b0ac029" x="50.797056" y="123.356861" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m688e906e8d" x="50.797056" y="123.356861" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_9">
|
||||
|
@ -391,7 +391,7 @@ z
|
|||
<g id="ytick_2">
|
||||
<g id="line2d_9">
|
||||
<g>
|
||||
<use xlink:href="#m451b0ac029" x="50.797056" y="95.009496" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m688e906e8d" x="50.797056" y="95.009496" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_10">
|
||||
|
@ -408,7 +408,7 @@ z
|
|||
<g id="ytick_3">
|
||||
<g id="line2d_10">
|
||||
<g>
|
||||
<use xlink:href="#m451b0ac029" x="50.797056" y="66.662131" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m688e906e8d" x="50.797056" y="66.662131" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_11">
|
||||
|
@ -424,7 +424,7 @@ z
|
|||
<g id="ytick_4">
|
||||
<g id="line2d_11">
|
||||
<g>
|
||||
<use xlink:href="#m451b0ac029" x="50.797056" y="38.314766" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m688e906e8d" x="50.797056" y="38.314766" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_12">
|
||||
|
@ -440,7 +440,7 @@ z
|
|||
<g id="ytick_5">
|
||||
<g id="line2d_12">
|
||||
<g>
|
||||
<use xlink:href="#m451b0ac029" x="50.797056" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
<use xlink:href="#m688e906e8d" x="50.797056" y="9.967401" style="stroke: #000000; stroke-width: 0.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="text_13">
|
||||
|
@ -606,7 +606,7 @@ L 201.28041 67.387317
|
|||
L 201.635324 66.662131
|
||||
L 237.126681 66.662131
|
||||
L 237.126681 66.662131
|
||||
" clip-path="url(#pef5e6ae2a7)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pdbd9eaffe8)" style="fill: none; stroke: #1f77b4; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_14">
|
||||
<path d="M 59.669895 66.662131
|
||||
|
@ -648,7 +648,7 @@ L 201.28041 67.329552
|
|||
L 201.635324 66.662131
|
||||
L 237.126681 66.662131
|
||||
L 237.126681 66.662131
|
||||
" clip-path="url(#pef5e6ae2a7)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
" clip-path="url(#pdbd9eaffe8)" style="fill: none; stroke: #ff7f0e; stroke-width: 0.5; stroke-linecap: square"/>
|
||||
</g>
|
||||
<g id="line2d_15">
|
||||
<path d="M 59.669895 66.662131
|
||||
|
@ -696,7 +696,7 @@ L 179.630682 66.809077
|
|||
L 180.695423 66.662131
|
||||
L 237.126681 66.662131
|
||||
L 237.126681 66.662131
|
||||
" clip-path="url(#pef5e6ae2a7)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pdbd9eaffe8)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #1f77b4; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="line2d_16">
|
||||
<path d="M 59.669895 66.662131
|
||||
|
@ -742,7 +742,7 @@ L 179.985596 66.57109
|
|||
L 180.340509 66.662131
|
||||
L 237.126681 66.662131
|
||||
L 237.126681 66.662131
|
||||
" clip-path="url(#pef5e6ae2a7)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
" clip-path="url(#pdbd9eaffe8)" style="fill: none; stroke-dasharray: 1.85,0.8; stroke-dashoffset: 0; stroke: #ff7f0e; stroke-width: 0.5"/>
|
||||
</g>
|
||||
<g id="patch_3">
|
||||
<path d="M 50.797056 143.519296
|
||||
|
@ -1019,7 +1019,7 @@ z
|
|||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="pef5e6ae2a7">
|
||||
<clipPath id="pdbd9eaffe8">
|
||||
<rect x="50.797056" y="7.908397" width="195.202464" height="135.610898"/>
|
||||
</clipPath>
|
||||
</defs>
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
|
@ -69,7 +69,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/fc9a5d0d4ed29593313534e3d1a1a28da016afa8.svg]]
|
||||
[[file:./.ob-jupyter/3c4e1d96fdd126da5d4b38602db707635baad8ce.svg]]
|
||||
|
||||
#+begin_src jupyter-python :tangle no
|
||||
#ot.plot_cycles(models, bath=0, legend=True)
|
||||
|
@ -93,7 +93,7 @@ We shift so that we just overlap with coupling/decoupling and one above.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/ee72e133dfc7dfcd155f963b976b188805a1e49a.svg]]
|
||||
[[file:./.ob-jupyter/81bf7b0cd4af85e2d8893ef1bf1261a214135525.svg]]
|
||||
|
||||
** Integrate
|
||||
Here we integrate/simulate the models. This should be run on the
|
||||
|
@ -121,7 +121,7 @@ This plots the full energy overview for the baseline model.
|
|||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: \(N=80000\)
|
||||
[[file:./.ob-jupyter/a679748c0a1c4e4f1c34301d35957a2a36fd91fc.svg]]
|
||||
[[file:./.ob-jupyter/73e9a2cd60b362f39b0b62a47056740f562e3d08.svg]]
|
||||
:END:
|
||||
|
||||
We would like to know how close all of this comes to the thermal states.
|
||||
|
@ -160,7 +160,6 @@ We would like to know how close all of this comes to the thermal states.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
#+begin_example
|
||||
[[0.11920292 0. ]
|
||||
[0. 0.88079708]]
|
||||
|
@ -177,8 +176,6 @@ We would like to know how close all of this comes to the thermal states.
|
|||
/nix/store/fai1b55231rnk4jyj0kjicdnqcgdf9ph-python3-3.9.15-env/lib/python3.9/site-packages/matplotlib/axes/_axes.py:5346: ComplexWarning: Casting complex values to real discards the imaginary part
|
||||
pts[N+2:, 1] = dep2slice[::-1]
|
||||
#+end_example
|
||||
[[file:./.ob-jupyter/96f49e4d6c26be8d062e45ea53198b6232a05e9f.svg]]
|
||||
:END:
|
||||
|
||||
Plotting the pauli matrix expectation values, we can see that the
|
||||
dynamics only take place on the z-axis. This is addressed in [[id:9d7a11f2-f479-4e95-8775-31050bcc4fb7][Off-Axis Hamiltonian]]
|
||||
|
@ -188,7 +185,7 @@ dynamics only take place on the z-axis. This is addressed in [[id:9d7a11f2-f479-
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/746d8e3986e828734631ca1ab8a8bce243963588.svg]]
|
||||
[[file:./.ob-jupyter/a645250e5f7a8890257674fe5de32b09d9de78f1.svg]]
|
||||
|
||||
Let us plot an overview of the work done by system and interaction
|
||||
modulation over a cycle for the baseline model.
|
||||
|
@ -198,7 +195,7 @@ modulation over a cycle for the baseline model.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/e05d323e86738a3362e6c70adc16bd5d940e5cdd.svg]]
|
||||
[[file:./.ob-jupyter/888e4e87b2f952b2d1866055b087a2d0bfe38ed0.svg]]
|
||||
|
||||
*** Shifted Models
|
||||
Let us print the power output (relative to the baseline = unshifted model) and efficiency.
|
||||
|
@ -209,17 +206,17 @@ Let us print the power output (relative to the baseline = unshifted model) and e
|
|||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
-2.77597511693978 -2.4772877227717958
|
||||
-2.0434846540636498 -1.6243768550730728
|
||||
0.5710213861808199 0.19310160522534914
|
||||
1.0 0.3002164459369506
|
||||
1.1580729241081245 0.3201551362641393
|
||||
1.621073860181052 0.32914493962691976
|
||||
1.676329717306901 0.3155858623648209
|
||||
1.6056907132267833 0.29627949690062266
|
||||
1.4297898620293028 0.264279816138587
|
||||
0.7161356715968495 0.13903993767016806
|
||||
-1.2535087048383218 -0.29154092061712156
|
||||
-2.77597511693978 -2.4772877227717958
|
||||
-2.0434846540636498 -1.6243768550730728
|
||||
0.5710213861808199 0.19310160522534914
|
||||
1.0 0.3002164459369506
|
||||
1.1580729241081245 0.3201551362641393
|
||||
1.621073860181052 0.32914493962691976
|
||||
1.676329717306901 0.3155858623648209
|
||||
1.6056907132267833 0.29627949690062266
|
||||
1.4297898620293028 0.264279816138587
|
||||
0.7161356715968495 0.13903993767016806
|
||||
-1.2535087048383218 -0.29154092061712156
|
||||
#+end_example
|
||||
|
||||
|
||||
|
@ -231,7 +228,7 @@ size to check convergence.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/c671a1b46de1f5b65905925fb69604e13a924e19.svg]]
|
||||
[[file:./.ob-jupyter/8d9b7d2fcd5ef897070660fa264fd9e904a916ea.svg]]
|
||||
|
||||
We see that we get a pretty good picture after about 30k-40k samples.
|
||||
|
||||
|
@ -242,7 +239,7 @@ This is an overview over powers and the efficiency.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/c134d0ea85b5900cc5fc809ee73e68d332d429d6.svg]]
|
||||
[[file:./.ob-jupyter/95ce996f5adf865114a7efc488992da2993495a8.svg]]
|
||||
|
||||
The best shift:
|
||||
#+begin_src jupyter-python
|
||||
|
@ -263,7 +260,7 @@ and the best shift model.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/f7afc8eb774b72b6f9a3080a0884226164759391.svg]]
|
||||
[[file:./.ob-jupyter/1b65cbe8a112cceb40aa0440d33ed40dca30dcf1.svg]]
|
||||
|
||||
|
||||
Let us plot the interaction power in the steady state for baseline and
|
||||
|
@ -317,7 +314,7 @@ best-shift. We have to shift the time to make them overlap correctly.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/3e6540b6d222f368a38f57540b7c70c5758f5b99.svg]]
|
||||
[[file:./.ob-jupyter/ebdd9c91ce756ae30681a68a43f439514a96bf8d.svg]]
|
||||
|
||||
|
||||
Let us zoom in on the cold bath decoupling process to understnad this better.
|
||||
|
@ -359,7 +356,7 @@ Let us zoom in on the cold bath decoupling process to understnad this better.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/2f00757c397d5533da72e20f6a650af459861c22.svg]]
|
||||
[[file:./.ob-jupyter/15e1e2b441e6a10d9b69f585ff691d7e54d0320d.svg]]
|
||||
|
||||
How does this look like for the baseline?
|
||||
#+begin_src jupyter-python
|
||||
|
@ -401,7 +398,7 @@ How does this look like for the baseline?
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/c5cda1720747169d3572e9b38b2946cb4eb1b62e.svg]]
|
||||
[[file:./.ob-jupyter/392899a8a7f82eda25a92fad0cf029862311594f.svg]]
|
||||
|
||||
|
||||
* Slower switching
|
||||
|
@ -441,8 +438,8 @@ switch slower.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
: <matplotlib.legend.Legend at 0x7f5da18c38e0>
|
||||
[[file:./.ob-jupyter/b77a8b40f7c3265be026db00a76524da7bff95c4.svg]]
|
||||
: <matplotlib.legend.Legend at 0x7f2401d01d30>
|
||||
[[file:./.ob-jupyter/ab754a91833374afaab5ef6e50c895e6d05f9f58.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
|
@ -468,17 +465,17 @@ Let us look at power and efficiency.
|
|||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
-0.18 0.18 80000 -0.7534604455561659 -108.77944601456684 (-0.6547883379568094, 0.4330061221888589)
|
||||
-0.12 0.18 80000 0.5591648896822077 -14.974955411404467 (0.28325656807481425, 0.4330061221888589)
|
||||
-0.06 0.18 80000 0.9985149794296736 0.0037407432686098474 (0.433043529621545, 0.4330061221888589)
|
||||
0.0 0.18 80000 1.0 0.0 (0.4330061221888589, 0.4330061221888589)
|
||||
0.06 0.18 80000 0.991206944683175 0.23007686496274715 (0.4353068908384864, 0.4330061221888589)
|
||||
0.12 0.18 80000 1.1339755806282883 0.3265587668820624 (0.43627170985767955, 0.4330061221888589)
|
||||
0.18 0.18 80000 1.297675283650504 -2.9821368425732797 (0.4031847537631261, 0.4330061221888589)
|
||||
0.24 0.18 80000 1.2031272812376834 -7.638926235390614 (0.3566168598349528, 0.4330061221888589)
|
||||
0.3 0.18 80000 0.7381994151953918 -20.86521478070438 (0.22435397438181512, 0.4330061221888589)
|
||||
0.36 0.18 80000 -0.45819153140116126 -60.284418918547836 (-0.16983806699661946, 0.4330061221888589)
|
||||
0.42 0.18 80000 -1.4846084056353754 -118.88415735590576 (-0.7558354513701987, 0.4330061221888589)
|
||||
-0.18 0.18 80000 -0.7534604455561659 -108.77944601456684 (-0.6547883379568094, 0.4330061221888589)
|
||||
-0.12 0.18 80000 0.5591648896822077 -14.974955411404467 (0.28325656807481425, 0.4330061221888589)
|
||||
-0.06 0.18 80000 0.9985149794296736 0.0037407432686098474 (0.433043529621545, 0.4330061221888589)
|
||||
0.0 0.18 80000 1.0 0.0 (0.4330061221888589, 0.4330061221888589)
|
||||
0.06 0.18 80000 0.991206944683175 0.23007686496274715 (0.4353068908384864, 0.4330061221888589)
|
||||
0.12 0.18 80000 1.1339755806282883 0.3265587668820624 (0.43627170985767955, 0.4330061221888589)
|
||||
0.18 0.18 80000 1.297675283650504 -2.9821368425732797 (0.4031847537631261, 0.4330061221888589)
|
||||
0.24 0.18 80000 1.2031272812376834 -7.638926235390614 (0.3566168598349528, 0.4330061221888589)
|
||||
0.3 0.18 80000 0.7381994151953918 -20.86521478070438 (0.22435397438181512, 0.4330061221888589)
|
||||
0.36 0.18 80000 -0.45819153140116126 -60.284418918547836 (-0.16983806699661946, 0.4330061221888589)
|
||||
0.42 0.18 80000 -1.4846084056353754 -118.88415735590576 (-0.7558354513701987, 0.4330061221888589)
|
||||
#+end_example
|
||||
|
||||
Here, we contrast the slow/fast coupling modulation protocols.
|
||||
|
@ -496,7 +493,7 @@ Here, we contrast the slow/fast coupling modulation protocols.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/d874adc97bcc335737347c1205a48c7b39561198.svg]]
|
||||
[[file:./.ob-jupyter/2da75cadbb1995855015de60aeb90c920565d142.svg]]
|
||||
|
||||
Aho! The trick is just to slow down the coupling switching.
|
||||
|
||||
|
@ -988,7 +985,7 @@ hamiltonian.
|
|||
|
||||
#+begin_src jupyter-python :tangle tangle/rot.py
|
||||
rot_models = []
|
||||
weights = [.5]
|
||||
weights = [.3, .5]
|
||||
for weight in weights:
|
||||
off_ax = sc.make_model(0, 0)
|
||||
off_ax.H_bias = ConstantMatrix(weight / 2 * qt.sigmax().full())
|
||||
|
@ -1010,10 +1007,20 @@ hamiltonian.
|
|||
|
||||
#+RESULTS:
|
||||
:RESULTS:
|
||||
| <matplotlib.lines.Line2D | at | 0x7f36470cdd00> |
|
||||
[[file:./.ob-jupyter/d5d7c229833877657c2abc95a30a085919c05d40.svg]]
|
||||
| <matplotlib.lines.Line2D | at | 0x7f00c44f6cd0> |
|
||||
[[file:./.ob-jupyter/7a6d38b0d03238b0d00694a60068273f8382ac8f.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for model in rot_models:
|
||||
print(model.energy_gaps[1] - model.energy_gaps[0])
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.9783441907246133
|
||||
: 0.9435188240589354
|
||||
|
||||
|
||||
** Integration
|
||||
#+begin_src jupyter-python :tangle tangle/rot.py
|
||||
ot.integrate_online_multi(rot_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))
|
||||
|
@ -1023,105 +1030,6 @@ hamiltonian.
|
|||
aux.import_results(other_data_path="taurus/.data", other_results_path="taurus/results", models_to_import=rot_models)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
[INFO root 466059] Skipping b05446a4d349d3dc0a69a7a44affc2876f07d0cb964e26a48db1d34a5eabc0b9.
|
||||
[INFO root 466059] Skipping c76f580d0b1ffe427087a52af3ca33fee3c2e43edd4e8bdb144eb966e2090572.
|
||||
[INFO root 466059] Skipping f7e312e39019400e3fcd54b1a27c7af544455f30dda398cede314be7c15605ae.
|
||||
[INFO root 466059] Skipping de7eef8967925e6fb09ed542f3d720ee25d6403beede20a4a9a1d480f10ad57b.
|
||||
[INFO root 466059] Skipping dd3f4f099a70356c0d0887af79f84c7a95c9509ae4d1fa489b8fce2dbea18ec9.
|
||||
[INFO root 466059] Skipping 39a0bb585dfb2ebf6436a4968e21c52ee1f38e9cd50973184b9cb33ffa39dea6.
|
||||
[INFO root 466059] Skipping 1bc5695f1454d8f6684c52a55cd633ebd4958eb852fb30f018170b3fdc97f614.
|
||||
[INFO root 466059] Skipping e027c1dcb06971275f06fd7512bbb14441fe0aed619aaf5be4dcf31e1f435083.
|
||||
[INFO root 466059] Skipping 3ddbe4cb5d72f6213a2ed9a17f44a3baf5c3526a4a076b666ab422b359d3b8fd.
|
||||
[INFO root 466059] Skipping 7cac0199140ff8f9fb2e0073b950e079e582466b8a6aea99f286d5d81b62cad8.
|
||||
[INFO root 466059] Skipping e5b39af5f44f26550adedd55bd23583dcefac4f67b88c3d2892f03563900f8fd.
|
||||
[INFO root 466059] Skipping 9a60e106d3fc8e3b71721be3b4629d871bdb2b0dfc4ae5cdabfc30dd51d02db5.
|
||||
[INFO root 466059] Skipping 891fdc8c533ec0736bbf6bdde377c99f7824ba5b0ad328be6e7083a3d4f12678.
|
||||
[INFO root 466059] Skipping abe7b4314386941d0913ffb64ee0ad59bb0c1be62b5f56cfaae965b955d16686.
|
||||
[INFO root 466059] Skipping 7d1434769d5f44d7dd611430d3974eeb675d6a00e02bde4dd0c32fb34827ea54.
|
||||
[INFO root 466059] Skipping 8b5e60297f93b8e77fae00d86b07621aa4aa66367404cfe15b04c145778c1a80.
|
||||
[INFO root 466059] Skipping 586c5a0355f66a85ed09281931b8fcfc7c283e73f7d6440252d02f160186ceec.
|
||||
[INFO root 466059] Skipping cfad63977aad412a4d035ea4122d748504bc638b4df70749bf6a9f0a0ecbcf4b.
|
||||
[INFO root 466059] Skipping 5246668cb8f908e4b4ebf125167c55e8e2e239c4a4b4d1119d30cc4db4339815.
|
||||
[INFO root 466059] Skipping 3b7ca29c512453d9a7edac46f40b3aaaa6e08622cf57ac0e30def3cb8f7f0eed.
|
||||
[INFO root 466059] Skipping 5f81eec546a7aeb8b0721dde139a38de00422500a5f48c987bc485dd542a40e6.
|
||||
[INFO root 466059] Skipping 634357aeae7ae179438dfdcdcb1bfc3fa1fee9f09c1f91928a5cab21affd14a8.
|
||||
[INFO root 466059] Skipping b8df6a7c8e7b196a20fb22bd53497aef48260b605831439feab8c76c14edb9f4.
|
||||
[INFO root 466059] Skipping a6ee3dbf94afda02f8dbde095e3cf63c0daac8552eb018f4edd15c43de703a0a.
|
||||
[INFO root 466059] Skipping 443531c8c81136c8345f7d362d19c66ed09e578bc715b2abd49cf31f21ae01bd.
|
||||
[INFO root 466059] Skipping 2e5e3febeffbfa79aa5f85e4a75d725275ca55163aaea81fb7a266ab5eb1820d.
|
||||
[INFO root 466059] Skipping e938456955f7ed0fdbfa6ac6ffd85a484eae2ffb8cc33017ee1e207ab356bc09.
|
||||
[INFO root 466059] Skipping 932e4091f4c6604017cafdd80412639f59ed7a4b71b036aafdb7e1bd3aa79071.
|
||||
[INFO root 466059] Skipping 3cfac01aae7bfa3974096efb73eafaeaa6dcf75848ed6d0dc9ce9174be8bc32f.
|
||||
[INFO root 466059] Skipping aa6f7c208759a151d2e37dd5f43dc26bb56b971168bd81e70e501e9ed3b611b0.
|
||||
[INFO root 466059] Skipping 3818bc0e971ff867e05708b90a6f44488caaa383f3ed286205757d358a08ef58.
|
||||
[INFO root 466059] Skipping 5547498a828a507d2023ae3f30e478dc3d05fdce0d5f085157b074ade8dbc6c8.
|
||||
[INFO root 466059] Skipping b666793171ffe0a006adb1e5c7adae7bb02136a455e1b8e46e41b03773993e1a.
|
||||
[INFO root 466059] Skipping ce0913ebbcdbe3adfd693b9cad66c06c43a943272068f46ca1b8e12fd4581119.
|
||||
[INFO root 466059] Skipping fb5094e0693ce460ba63d2374e8c5f7852dbdfd4487a0ea393a3088bfd3c4117.
|
||||
[INFO root 466059] Skipping 84ce4409ca0d9e6fce328c2bdb0fe931cef2ad6b76311488d58fc74029b04bb7.
|
||||
[INFO root 466059] Skipping 2f2c1b910ad4e7a706dd2b2b1ced68375356c69964c57b256818558dd067d008.
|
||||
[INFO root 466059] Skipping 26ee5023b7589d901c41037537bdab89154b395927af2a3ed6bf8c472d7625c4.
|
||||
[INFO root 466059] Skipping 5d118bc5b64eb105ed45c825742f9241f81efa681dc7f6095b7d27ab6b96c284.
|
||||
[INFO root 466059] Skipping 7c7fed9fd4ff2ecfeb9a1013c58e3a402deb966068f7a2e97aa55f1008088731.
|
||||
[INFO root 466059] Skipping 84ff43949573f3b0abed26950782793b605a85dee7df40b86963ecc5873bf747.
|
||||
[INFO root 466059] Skipping 36a2ffb10a838af7fb97670a69866c682282a058d20913f37c98043351bb83a2.
|
||||
[INFO root 466059] Skipping e87e6ed047bb6e2b589374542556d6f22b9cfe04939db4c657fbd76bd1305394.
|
||||
[INFO root 466059] Skipping 3031942ac59f6098d27f4312de139565543dfa97f5aed457dfb0d80cefc41c9b.
|
||||
[INFO root 466059] Skipping 0079a4c20543824a40a98912580968424e9cf182634960ff37973c3b01d65433.
|
||||
[INFO root 466059] Skipping f72a3b93aca01363f1029255be581618eed90fa6b607e96f98178d336e3506ff.
|
||||
[INFO root 466059] Skipping a86b8a23ecd962904a2008808f85b00b9c337e36dc6bebe3b806343510f0ec7f.
|
||||
[INFO root 466059] Skipping ca94f36cbacd1b29d6e4f3cf384624ef0f4930ef3b0f12b09179efb17e327454.
|
||||
[WARNING root 466059] Importing taurus/.data/e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76/_e/e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_ef101bcb3b36a4bf1fb509507482e323_1.h5 to .data/e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76/_e/e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_ef101bcb3b36a4bf1fb509507482e323_1.h5.
|
||||
[WARNING root 466059] The model description is 'Classic Cycle'.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_30000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_50000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_80000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_70000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_20000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_60000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_40000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/flow_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_10000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_80000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_10000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_70000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_60000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_20000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_50000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_30000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_40000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_30000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_20000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_60000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_10000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_70000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_50000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_40000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/interaction_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_80000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_50000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_30000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_10000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_60000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_20000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_80000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_40000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_70000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_80000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_20000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_40000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_70000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_50000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_30000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_10000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76_60000.npz.
|
||||
[WARNING root 466059] Importing taurus/results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz to results/system_power_e9ff5f43faa62deec9fddc939d63ab5742569d6ee6801a149718b670e1636e76.npz.
|
||||
#+end_example
|
||||
|
||||
** Analysis
|
||||
#+begin_src jupyter-python
|
||||
for (i, model), weight in zip(enumerate(rot_models), weights):
|
||||
|
@ -1133,7 +1041,10 @@ hamiltonian.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/fc25ed2715cfa569942ee1d2f49229335cb7b476.svg]]
|
||||
:RESULTS:
|
||||
[[file:./.ob-jupyter/e47b10f766f959556b716834bb8b04f7fad6f9aa.svg]]
|
||||
[[file:./.ob-jupyter/e08e289587db6444af876ccf358a43308eb79d39.svg]]
|
||||
:END:
|
||||
|
||||
#+begin_src jupyter-python
|
||||
for (i, model), weight in zip(enumerate(rot_models), weights):
|
||||
|
@ -1143,7 +1054,10 @@ hamiltonian.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/dadb90f0626b8b89f51b77552f2cc31f2411a0d7.svg]]
|
||||
:RESULTS:
|
||||
[[file:./.ob-jupyter/46aebae6079822280c7af62e1179c5eea48c07cf.svg]]
|
||||
[[file:./.ob-jupyter/d64002e262380b8ac3289adad61486eafb8743fe.svg]]
|
||||
:END:
|
||||
|
||||
|
||||
#+begin_src jupyter-python
|
||||
|
@ -1152,7 +1066,8 @@ hamiltonian.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 0.9891011003410791 0.9485880353543075
|
||||
: 0.9291297056238266 0.9345445495028932
|
||||
: 0.783979849642736 0.804865129162892
|
||||
|
||||
#+begin_src jupyter-python
|
||||
fig, axs = plt.subplots(ncols=2)
|
||||
|
@ -1162,7 +1077,7 @@ hamiltonian.
|
|||
ax.set_xlabel(r"$\tau$")
|
||||
ax.set_ylabel(r"$\Delta X$")
|
||||
|
||||
for (i, model) in enumerate([*rot_models, baseline]):
|
||||
for (i, model) in enumerate([*rot_models[1:], baseline]):
|
||||
for j, (val, label) in enumerate(zip([
|
||||
model.total_energy_from_power(),
|
||||
model.system_energy(),
|
||||
|
@ -1180,4 +1095,4 @@ hamiltonian.
|
|||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
[[file:./.ob-jupyter/9ea7484406e68614657b87986a4fd9599d9d289a.svg]]
|
||||
[[file:./.ob-jupyter/634ba0cb457f6145c9e22d45d6b78f27ab630a6d.svg]]
|
||||
|
|