Commit f8e93c2e authored by Joaquin Torres's avatar Joaquin Torres

changed colors and removed sd

parent e9fad6bd
...@@ -201,42 +201,43 @@ if __name__ == "__main__": ...@@ -201,42 +201,43 @@ if __name__ == "__main__":
# Generate ROC curves # Generate ROC curves
mean_fpr = np.linspace(0, 1, 100) mean_fpr = np.linspace(0, 1, 100)
tprs, aucs = [], [] tprs, aucs = [], []
cmap = plt.get_cmap('tab10') # Colormap for stronger colors
# Loop through each fold in the cross-validation # Loop through each fold in the cross-validation
for fold_idx, (train, test) in enumerate(cv.split(X_train, y_train)): for fold_idx, (train, test) in enumerate(cv.split(X_train, y_train)):
# Fit the model on the training data # Fit the model on the training data
model.fit(X_train[train], y_train[train]) model.fit(X_train[train], y_train[train])
# Use RocCurveDisplay to generate the ROC curve # Use RocCurveDisplay to generate the ROC curve
roc_display = RocCurveDisplay.from_estimator(model, X_train[test], y_train[test], roc_display = RocCurveDisplay.from_estimator(model, X_train[test], y_train[test],
name=f"ROC fold {fold_idx}", alpha=0.3, lw=1, ax=axes[model_idx]) name=f"ROC fold {fold_idx}", alpha=0.6, lw=2,
ax=axes[model_idx], color=cmap(fold_idx % 10))
# Interpolate the true positive rates to get a smooth curve # Interpolate the true positive rates to get a smooth curve
interp_tpr = np.interp(mean_fpr, roc_display.fpr, roc_display.tpr) interp_tpr = np.interp(mean_fpr, roc_display.fpr, roc_display.tpr)
interp_tpr[0] = 0.0 interp_tpr[0] = 0.0
# Append the interpolated TPR and AUC for this fold # Append the interpolated TPR and AUC for this fold
tprs.append(interp_tpr) tprs.append(interp_tpr)
aucs.append(roc_display.roc_auc) aucs.append(roc_display.roc_auc)
# Plot the diagonal line representing random guessing
axes[model_idx].plot([0, 1], [0, 1], linestyle='--', lw=2, color='r', alpha=.8)
# Compute the mean of the TPRs # Compute the mean of the TPRs
mean_tpr = np.mean(tprs, axis=0) mean_tpr = np.mean(tprs, axis=0)
mean_tpr[-1] = 1.0 mean_tpr[-1] = 1.0
mean_auc = auc(mean_fpr, mean_tpr) # Calculate the mean AUC mean_auc = auc(mean_fpr, mean_tpr) # Calculate the mean AUC
# Plot the mean ROC curve # Plot the mean ROC curve with a thicker line and distinct color
axes[model_idx].plot(mean_fpr, mean_tpr, color='b', axes[model_idx].plot(mean_fpr, mean_tpr, color='b', lw=4,
label=r'Mean ROC (AUC = %0.2f)' % mean_auc, label=r'Mean ROC (AUC = %0.2f)' % mean_auc, alpha=.8)
lw=2, alpha=.8)
# Set plot limits and title # Set plot limits and title
axes[model_idx].set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05], axes[model_idx].set(xlim=[-0.05, 1.05], ylim=[-0.05, 1.05],
title=f"ROC Curve - {model_name} ({group}-{method_names[j]})") title=f"ROC Curve - {model_name} ({group}-{method_names[j]})")
axes[model_idx].legend(loc="lower right") axes[model_idx].legend(loc="lower right")
# Store the DataFrame in the dictionary with a unique key for each sheet # Store the DataFrame in the dictionary with a unique key for each sheet
sheet_name = f"{group}_{method_names[j]}" sheet_name = f"{group}_{method_names[j]}"
scores_sheets[sheet_name] = scores_df scores_sheets[sheet_name] = scores_df
# Saving curves plots
# Adjust layout and save/show figure # Adjust layout and save/show figure
plt.tight_layout() plt.tight_layout()
plt.savefig(f'./output_cv_metrics/curves/{group}_{method_names[j]}.svg', format='svg', dpi=500) plt.savefig(f'./output_cv_metrics/curves/{group}_{method_names[j]}.svg', format='svg', dpi=500)
plt.close(fig) plt.close(fig)
# Store the DataFrame in the dictionary with a unique key for each sheet
sheet_name = f"{group}_{method_names[j]}"
scores_sheets[sheet_name] = scores_df
# Write results to Excel file # Write results to Excel file
with pd.ExcelWriter('./output_cv_metrics/metrics.xlsx') as writer: with pd.ExcelWriter('./output_cv_metrics/metrics.xlsx') as writer:
for sheet_name, data in scores_sheets.items(): for sheet_name, data in scores_sheets.items():
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <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> <cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2024-05-23T11:58:45.422130</dc:date> <dc:date>2024-05-23T12:04:37.481495</dc:date>
<dc:format>image/svg+xml</dc:format> <dc:format>image/svg+xml</dc:format>
<dc:creator> <dc:creator>
<cc:Agent> <cc:Agent>
...@@ -41,12 +41,12 @@ z ...@@ -41,12 +41,12 @@ z
<g id="xtick_1"> <g id="xtick_1">
<g id="line2d_1"> <g id="line2d_1">
<defs> <defs>
<path id="m9e6e3541e6" d="M 0 0 <path id="mc6b238e9c4" d="M 0 0
L 0 3.5 L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m9e6e3541e6" x="135.797273" y="545.25" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="135.797273" y="545.25" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_1"> <g id="text_1">
...@@ -91,7 +91,7 @@ z ...@@ -91,7 +91,7 @@ z
<g id="xtick_2"> <g id="xtick_2">
<g id="line2d_2"> <g id="line2d_2">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="230.046364" y="545.25" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="230.046364" y="545.25" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_2"> <g id="text_2">
...@@ -132,7 +132,7 @@ z ...@@ -132,7 +132,7 @@ z
<g id="xtick_3"> <g id="xtick_3">
<g id="line2d_3"> <g id="line2d_3">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="324.295455" y="545.25" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="324.295455" y="545.25" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_3"> <g id="text_3">
...@@ -168,7 +168,7 @@ z ...@@ -168,7 +168,7 @@ z
<g id="xtick_4"> <g id="xtick_4">
<g id="line2d_4"> <g id="line2d_4">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="418.544545" y="545.25" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="418.544545" y="545.25" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_4"> <g id="text_4">
...@@ -215,7 +215,7 @@ z ...@@ -215,7 +215,7 @@ z
<g id="xtick_5"> <g id="xtick_5">
<g id="line2d_5"> <g id="line2d_5">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="512.793636" y="545.25" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="512.793636" y="545.25" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_5"> <g id="text_5">
...@@ -271,7 +271,7 @@ z ...@@ -271,7 +271,7 @@ z
<g id="xtick_6"> <g id="xtick_6">
<g id="line2d_6"> <g id="line2d_6">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="607.042727" y="545.25" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="607.042727" y="545.25" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_6"> <g id="text_6">
...@@ -639,12 +639,12 @@ z ...@@ -639,12 +639,12 @@ z
<g id="ytick_1"> <g id="ytick_1">
<g id="line2d_7"> <g id="line2d_7">
<defs> <defs>
<path id="m7a20b041e6" d="M 0 0 <path id="mc900691483" d="M 0 0
L -3.5 0 L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/> " style="stroke: #000000; stroke-width: 0.8"/>
</defs> </defs>
<g> <g>
<use xlink:href="#m7a20b041e6" x="112.235" y="521.687727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="112.235" y="521.687727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_8"> <g id="text_8">
...@@ -659,7 +659,7 @@ L -3.5 0 ...@@ -659,7 +659,7 @@ L -3.5 0
<g id="ytick_2"> <g id="ytick_2">
<g id="line2d_8"> <g id="line2d_8">
<g> <g>
<use xlink:href="#m7a20b041e6" x="112.235" y="427.438636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="112.235" y="427.438636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_9"> <g id="text_9">
...@@ -674,7 +674,7 @@ L -3.5 0 ...@@ -674,7 +674,7 @@ L -3.5 0
<g id="ytick_3"> <g id="ytick_3">
<g id="line2d_9"> <g id="line2d_9">
<g> <g>
<use xlink:href="#m7a20b041e6" x="112.235" y="333.189545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="112.235" y="333.189545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_10"> <g id="text_10">
...@@ -689,7 +689,7 @@ L -3.5 0 ...@@ -689,7 +689,7 @@ L -3.5 0
<g id="ytick_4"> <g id="ytick_4">
<g id="line2d_10"> <g id="line2d_10">
<g> <g>
<use xlink:href="#m7a20b041e6" x="112.235" y="238.940455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="112.235" y="238.940455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_11"> <g id="text_11">
...@@ -704,7 +704,7 @@ L -3.5 0 ...@@ -704,7 +704,7 @@ L -3.5 0
<g id="ytick_5"> <g id="ytick_5">
<g id="line2d_11"> <g id="line2d_11">
<g> <g>
<use xlink:href="#m7a20b041e6" x="112.235" y="144.691364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="112.235" y="144.691364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_12"> <g id="text_12">
...@@ -719,7 +719,7 @@ L -3.5 0 ...@@ -719,7 +719,7 @@ L -3.5 0
<g id="ytick_6"> <g id="ytick_6">
<g id="line2d_12"> <g id="line2d_12">
<g> <g>
<use xlink:href="#m7a20b041e6" x="112.235" y="50.442273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="112.235" y="50.442273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_13"> <g id="text_13">
...@@ -829,166 +829,166 @@ z ...@@ -829,166 +829,166 @@ z
</g> </g>
<g id="line2d_13"> <g id="line2d_13">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 503.368727 103.353129 L 493.943818 101.789261
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_14"> <g id="line2d_14">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 492.058836 104.656352 L 518.448582 99.182815
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_15"> <g id="line2d_15">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 503.368727 102.831839 L 503.368727 102.31055
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #2ca02c; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #2ca02c; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_16"> <g id="line2d_16">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 522.218545 103.613773 L 524.103527 102.049905
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #d62728; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #d62728; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_17"> <g id="line2d_17">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 505.253709 107.81582 L 507.138691 105.207932
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #9467bd; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #9467bd; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_18"> <g id="line2d_18">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 499.598764 101.03531 L 520.333564 100.513732
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_19"> <g id="line2d_19">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 493.943818 102.860832 L 522.218545 109.119764
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_20"> <g id="line2d_20">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 501.483745 105.729509 L 493.943818 106.772665
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_21"> <g id="line2d_21">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 499.598764 104.425565 L 499.598764 104.686354
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #bcbd22; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #bcbd22; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_22"> <g id="line2d_22">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 509.023673 101.817676 L 510.908655 100.774521
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #17becf; stroke-opacity: 0.3; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #17becf; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="line2d_23"> <g id="line2d_23">
<path d="M 135.797273 521.687727 <path d="M 135.797273 521.687727
L 140.557328 516.268201 L 140.557328 516.351925
L 145.317383 510.848674 L 145.317383 511.016123
L 150.077438 505.429148 L 150.077438 505.680321
L 154.837493 500.009621 L 154.837493 500.344519
L 159.597548 494.590095 L 159.597548 495.008718
L 164.357603 489.170568 L 164.357603 489.672916
L 169.117658 483.751042 L 169.117658 484.337114
L 173.877713 478.331515 L 173.877713 479.001312
L 178.637769 472.911989 L 178.637769 473.66551
L 183.397824 467.492462 L 183.397824 468.329708
L 188.157879 462.072936 L 188.157879 462.993906
L 192.917934 456.653409 L 192.917934 457.658104
L 197.677989 451.233883 L 197.677989 452.322302
L 202.438044 445.814356 L 202.438044 446.9865
L 207.198099 440.39483 L 207.198099 441.650698
L 211.958154 434.975303 L 211.958154 436.314896
L 216.718209 429.555776 L 216.718209 430.979094
L 221.478264 424.13625 L 221.478264 425.643292
L 226.23832 418.716723 L 226.23832 420.30749
L 230.998375 413.297197 L 230.998375 414.971688
L 235.75843 407.87767 L 235.75843 409.635886
L 240.518485 402.458144 L 240.518485 404.300084
L 245.27854 397.038617 L 245.27854 398.964282
L 250.038595 391.619091 L 250.038595 393.628481
L 254.79865 386.199564 L 254.79865 388.292679
L 259.558705 380.780038 L 259.558705 382.956877
L 264.31876 375.360511 L 264.31876 377.621075
L 269.078815 369.940985 L 269.078815 372.285273
L 273.838871 364.521458 L 273.838871 366.949471
L 278.598926 359.101932 L 278.598926 361.613669
L 283.358981 353.682405 L 283.358981 356.277867
L 288.119036 348.262879 L 288.119036 350.942065
L 292.879091 342.843352 L 292.879091 345.606263
L 297.639146 337.423826 L 297.639146 340.270461
L 302.399201 332.004299 L 302.399201 334.934659
L 307.159256 326.584773 L 307.159256 329.598857
L 311.919311 321.165246 L 311.919311 324.263055
L 316.679366 315.74572 L 316.679366 318.927253
L 321.439421 310.326193 L 321.439421 313.591451
L 326.199477 304.906667 L 326.199477 308.255649
L 330.959532 299.48714 L 330.959532 302.919847
L 335.719587 294.067614 L 335.719587 297.584045
L 340.479642 288.648087 L 340.479642 292.248244
L 345.239697 283.228561 L 345.239697 286.912442
L 349.999752 277.809034 L 349.999752 281.57664
L 354.759807 272.389507 L 354.759807 276.240838
L 359.519862 266.969981 L 359.519862 270.905036
L 364.279917 261.550454 L 364.279917 265.569234
L 369.039972 256.130928 L 369.039972 260.233432
L 373.800028 250.711401 L 373.800028 254.89763
L 378.560083 245.291875 L 378.560083 249.561828
L 383.320138 239.872348 L 383.320138 244.226026
L 388.080193 234.452822 L 388.080193 238.890224
L 392.840248 229.033295 L 392.840248 233.554422
L 397.600303 223.613769 L 397.600303 228.21862
L 402.360358 218.194242 L 402.360358 222.882818
L 407.120413 212.774716 L 407.120413 217.547016
L 411.880468 207.355189 L 411.880468 212.211214
L 416.640523 201.935663 L 416.640523 206.875412
L 421.400579 196.516136 L 421.400579 201.53961
L 426.160634 191.09661 L 426.160634 196.203808
L 430.920689 185.677083 L 430.920689 190.868007
L 435.680744 180.257557 L 435.680744 185.532205
L 440.440799 174.83803 L 440.440799 180.196403
L 445.200854 169.418504 L 445.200854 174.860601
L 449.960909 163.998977 L 449.960909 169.524799
L 454.720964 158.579451 L 454.720964 164.188997
L 459.481019 153.159924 L 459.481019 158.853195
L 464.241074 147.740398 L 464.241074 153.517393
L 469.001129 142.320871 L 469.001129 148.181591
L 473.761185 136.901345 L 473.761185 142.845789
L 478.52124 131.481818 L 478.52124 137.509987
L 483.281295 126.062292 L 483.281295 132.174185
L 488.04135 120.642765 L 488.04135 126.838383
L 492.801405 115.27515 L 492.801405 121.502581
L 497.56146 110.44378 L 497.56146 116.665603
L 502.321515 106.106575 L 502.321515 112.160777
L 507.08157 102.851301 L 507.08157 108.024479
L 511.841625 100.060687 L 511.841625 104.280764
L 516.60168 97.386762 L 516.60168 100.76939
L 521.361736 94.712837 L 521.361736 97.472643
L 526.121791 92.216537 L 526.121791 94.710711
L 530.881846 89.759227 L 530.881846 92.106685
L 535.641901 87.301918 L 535.641901 89.502659
L 540.401956 84.844608 L 540.401956 86.898634
L 545.162011 82.387298 L 545.162011 84.294608
L 549.922066 79.929989 L 549.922066 81.690582
L 554.682121 77.472679 L 554.682121 79.086556
L 559.442176 75.015369 L 559.442176 76.482531
L 564.202231 72.55806 L 564.202231 73.878505
L 568.962287 70.10075 L 568.962287 71.274479
L 573.722342 67.64344 L 573.722342 68.670453
L 578.482397 65.186131 L 578.482397 66.066427
L 583.242452 62.728821 L 583.242452 63.462402
L 588.002507 60.271511 L 588.002507 60.858376
L 592.762562 57.814202 L 592.762562 58.25435
L 597.522617 55.356892 L 597.522617 55.650324
L 602.282672 52.899582 L 602.282672 53.046299
L 607.042727 50.442273 L 607.042727 50.442273
" clip-path="url(#p1a09486dbe)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#p538b22e7e9)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_3"> <g id="patch_3">
<path d="M 112.235 545.25 <path d="M 112.235 545.25
...@@ -1189,7 +1189,7 @@ L 491.1925 383.889063 ...@@ -1189,7 +1189,7 @@ L 491.1925 383.889063
" style="fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"/> " style="fill: none; stroke: #1f77b4; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="text_16"> <g id="text_16">
<!-- ROC fold 0 (AUC = 0.55) --> <!-- ROC fold 0 (AUC = 0.57) -->
<g transform="translate(499.1925 387.389063) scale(0.1 -0.1)"> <g transform="translate(499.1925 387.389063) scale(0.1 -0.1)">
<defs> <defs>
<path id="DejaVuSans-66" d="M 2375 4863 <path id="DejaVuSans-66" d="M 2375 4863
...@@ -1309,6 +1309,16 @@ Q 1456 2553 1204 2497 ...@@ -1309,6 +1309,16 @@ Q 1456 2553 1204 2497
Q 953 2441 691 2322 Q 953 2441 691 2322
L 691 4666 L 691 4666
z z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-37" d="M 525 4666
L 3525 4666
L 3525 4397
L 1831 0
L 1172 0
L 2766 4134
L 525 4134
L 525 4666
z
" transform="scale(0.015625)"/> " transform="scale(0.015625)"/>
</defs> </defs>
<use xlink:href="#DejaVuSans-52"/> <use xlink:href="#DejaVuSans-52"/>
...@@ -1332,7 +1342,7 @@ z ...@@ -1332,7 +1342,7 @@ z
<use xlink:href="#DejaVuSans-30" x="962.451172"/> <use xlink:href="#DejaVuSans-30" x="962.451172"/>
<use xlink:href="#DejaVuSans-2e" x="1026.074219"/> <use xlink:href="#DejaVuSans-2e" x="1026.074219"/>
<use xlink:href="#DejaVuSans-35" x="1057.861328"/> <use xlink:href="#DejaVuSans-35" x="1057.861328"/>
<use xlink:href="#DejaVuSans-35" x="1121.484375"/> <use xlink:href="#DejaVuSans-37" x="1121.484375"/>
<use xlink:href="#DejaVuSans-29" x="1185.107422"/> <use xlink:href="#DejaVuSans-29" x="1185.107422"/>
</g> </g>
</g> </g>
...@@ -1343,7 +1353,7 @@ L 491.1925 398.567188 ...@@ -1343,7 +1353,7 @@ L 491.1925 398.567188
" style="fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"/> " style="fill: none; stroke: #ff7f0e; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="text_17"> <g id="text_17">
<!-- ROC fold 1 (AUC = 0.56) --> <!-- ROC fold 1 (AUC = 0.54) -->
<g transform="translate(499.1925 402.067188) scale(0.1 -0.1)"> <g transform="translate(499.1925 402.067188) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-52"/> <use xlink:href="#DejaVuSans-52"/>
<use xlink:href="#DejaVuSans-4f" x="69.482422"/> <use xlink:href="#DejaVuSans-4f" x="69.482422"/>
...@@ -1366,7 +1376,7 @@ L 491.1925 398.567188 ...@@ -1366,7 +1376,7 @@ L 491.1925 398.567188
<use xlink:href="#DejaVuSans-30" x="962.451172"/> <use xlink:href="#DejaVuSans-30" x="962.451172"/>
<use xlink:href="#DejaVuSans-2e" x="1026.074219"/> <use xlink:href="#DejaVuSans-2e" x="1026.074219"/>
<use xlink:href="#DejaVuSans-35" x="1057.861328"/> <use xlink:href="#DejaVuSans-35" x="1057.861328"/>
<use xlink:href="#DejaVuSans-36" x="1121.484375"/> <use xlink:href="#DejaVuSans-34" x="1121.484375"/>
<use xlink:href="#DejaVuSans-29" x="1185.107422"/> <use xlink:href="#DejaVuSans-29" x="1185.107422"/>
</g> </g>
</g> </g>
...@@ -1513,7 +1523,7 @@ L 491.1925 457.279688 ...@@ -1513,7 +1523,7 @@ L 491.1925 457.279688
" style="fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"/> " style="fill: none; stroke: #8c564b; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="text_21"> <g id="text_21">
<!-- ROC fold 5 (AUC = 0.56) --> <!-- ROC fold 5 (AUC = 0.54) -->
<g transform="translate(499.1925 460.779688) scale(0.1 -0.1)"> <g transform="translate(499.1925 460.779688) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-52"/> <use xlink:href="#DejaVuSans-52"/>
<use xlink:href="#DejaVuSans-4f" x="69.482422"/> <use xlink:href="#DejaVuSans-4f" x="69.482422"/>
...@@ -1536,7 +1546,7 @@ L 491.1925 457.279688 ...@@ -1536,7 +1546,7 @@ L 491.1925 457.279688
<use xlink:href="#DejaVuSans-30" x="962.451172"/> <use xlink:href="#DejaVuSans-30" x="962.451172"/>
<use xlink:href="#DejaVuSans-2e" x="1026.074219"/> <use xlink:href="#DejaVuSans-2e" x="1026.074219"/>
<use xlink:href="#DejaVuSans-35" x="1057.861328"/> <use xlink:href="#DejaVuSans-35" x="1057.861328"/>
<use xlink:href="#DejaVuSans-36" x="1121.484375"/> <use xlink:href="#DejaVuSans-34" x="1121.484375"/>
<use xlink:href="#DejaVuSans-29" x="1185.107422"/> <use xlink:href="#DejaVuSans-29" x="1185.107422"/>
</g> </g>
</g> </g>
...@@ -1547,7 +1557,7 @@ L 491.1925 471.957813 ...@@ -1547,7 +1557,7 @@ L 491.1925 471.957813
" style="fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"/> " style="fill: none; stroke: #e377c2; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="text_22"> <g id="text_22">
<!-- ROC fold 6 (AUC = 0.56) --> <!-- ROC fold 6 (AUC = 0.53) -->
<g transform="translate(499.1925 475.457813) scale(0.1 -0.1)"> <g transform="translate(499.1925 475.457813) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-52"/> <use xlink:href="#DejaVuSans-52"/>
<use xlink:href="#DejaVuSans-4f" x="69.482422"/> <use xlink:href="#DejaVuSans-4f" x="69.482422"/>
...@@ -1570,7 +1580,7 @@ L 491.1925 471.957813 ...@@ -1570,7 +1580,7 @@ L 491.1925 471.957813
<use xlink:href="#DejaVuSans-30" x="962.451172"/> <use xlink:href="#DejaVuSans-30" x="962.451172"/>
<use xlink:href="#DejaVuSans-2e" x="1026.074219"/> <use xlink:href="#DejaVuSans-2e" x="1026.074219"/>
<use xlink:href="#DejaVuSans-35" x="1057.861328"/> <use xlink:href="#DejaVuSans-35" x="1057.861328"/>
<use xlink:href="#DejaVuSans-36" x="1121.484375"/> <use xlink:href="#DejaVuSans-33" x="1121.484375"/>
<use xlink:href="#DejaVuSans-29" x="1185.107422"/> <use xlink:href="#DejaVuSans-29" x="1185.107422"/>
</g> </g>
</g> </g>
...@@ -1581,20 +1591,8 @@ L 491.1925 486.635938 ...@@ -1581,20 +1591,8 @@ L 491.1925 486.635938
" style="fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"/> " style="fill: none; stroke: #7f7f7f; stroke-opacity: 0.3; stroke-linecap: square"/>
</g> </g>
<g id="text_23"> <g id="text_23">
<!-- ROC fold 7 (AUC = 0.55) --> <!-- ROC fold 7 (AUC = 0.56) -->
<g transform="translate(499.1925 490.135938) scale(0.1 -0.1)"> <g transform="translate(499.1925 490.135938) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-37" d="M 525 4666
L 3525 4666
L 3525 4397
L 1831 0
L 1172 0
L 2766 4134
L 525 4134
L 525 4666
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-52"/> <use xlink:href="#DejaVuSans-52"/>
<use xlink:href="#DejaVuSans-4f" x="69.482422"/> <use xlink:href="#DejaVuSans-4f" x="69.482422"/>
<use xlink:href="#DejaVuSans-43" x="148.193359"/> <use xlink:href="#DejaVuSans-43" x="148.193359"/>
...@@ -1616,7 +1614,7 @@ z ...@@ -1616,7 +1614,7 @@ z
<use xlink:href="#DejaVuSans-30" x="962.451172"/> <use xlink:href="#DejaVuSans-30" x="962.451172"/>
<use xlink:href="#DejaVuSans-2e" x="1026.074219"/> <use xlink:href="#DejaVuSans-2e" x="1026.074219"/>
<use xlink:href="#DejaVuSans-35" x="1057.861328"/> <use xlink:href="#DejaVuSans-35" x="1057.861328"/>
<use xlink:href="#DejaVuSans-35" x="1121.484375"/> <use xlink:href="#DejaVuSans-36" x="1121.484375"/>
<use xlink:href="#DejaVuSans-29" x="1185.107422"/> <use xlink:href="#DejaVuSans-29" x="1185.107422"/>
</g> </g>
</g> </g>
...@@ -1804,7 +1802,7 @@ z ...@@ -1804,7 +1802,7 @@ z
<g id="xtick_7"> <g id="xtick_7">
<g id="line2d_35"> <g id="line2d_35">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_27"> <g id="text_27">
...@@ -1819,7 +1817,7 @@ z ...@@ -1819,7 +1817,7 @@ z
<g id="xtick_8"> <g id="xtick_8">
<g id="line2d_36"> <g id="line2d_36">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_28"> <g id="text_28">
...@@ -1834,7 +1832,7 @@ z ...@@ -1834,7 +1832,7 @@ z
<g id="xtick_9"> <g id="xtick_9">
<g id="line2d_37"> <g id="line2d_37">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_29"> <g id="text_29">
...@@ -1849,7 +1847,7 @@ z ...@@ -1849,7 +1847,7 @@ z
<g id="xtick_10"> <g id="xtick_10">
<g id="line2d_38"> <g id="line2d_38">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_30"> <g id="text_30">
...@@ -1864,7 +1862,7 @@ z ...@@ -1864,7 +1862,7 @@ z
<g id="xtick_11"> <g id="xtick_11">
<g id="line2d_39"> <g id="line2d_39">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_31"> <g id="text_31">
...@@ -1879,7 +1877,7 @@ z ...@@ -1879,7 +1877,7 @@ z
<g id="xtick_12"> <g id="xtick_12">
<g id="line2d_40"> <g id="line2d_40">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="1121.66" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_32"> <g id="text_32">
...@@ -1896,7 +1894,7 @@ z ...@@ -1896,7 +1894,7 @@ z
<g id="ytick_7"> <g id="ytick_7">
<g id="line2d_41"> <g id="line2d_41">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1098.097727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1098.097727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_33"> <g id="text_33">
...@@ -1911,7 +1909,7 @@ z ...@@ -1911,7 +1909,7 @@ z
<g id="ytick_8"> <g id="ytick_8">
<g id="line2d_42"> <g id="line2d_42">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1003.848636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1003.848636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_34"> <g id="text_34">
...@@ -1926,7 +1924,7 @@ z ...@@ -1926,7 +1924,7 @@ z
<g id="ytick_9"> <g id="ytick_9">
<g id="line2d_43"> <g id="line2d_43">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="909.599545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="909.599545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_35"> <g id="text_35">
...@@ -1941,7 +1939,7 @@ z ...@@ -1941,7 +1939,7 @@ z
<g id="ytick_10"> <g id="ytick_10">
<g id="line2d_44"> <g id="line2d_44">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="815.350455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="815.350455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_36"> <g id="text_36">
...@@ -1956,7 +1954,7 @@ z ...@@ -1956,7 +1954,7 @@ z
<g id="ytick_11"> <g id="ytick_11">
<g id="line2d_45"> <g id="line2d_45">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="721.101364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="721.101364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_37"> <g id="text_37">
...@@ -1971,7 +1969,7 @@ z ...@@ -1971,7 +1969,7 @@ z
<g id="ytick_12"> <g id="ytick_12">
<g id="line2d_46"> <g id="line2d_46">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="626.852273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="626.852273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_38"> <g id="text_38">
...@@ -1986,106 +1984,106 @@ z ...@@ -1986,106 +1984,106 @@ z
</g> </g>
<g id="line2d_47"> <g id="line2d_47">
<path d="M 64.347273 1098.097727 <path d="M 64.347273 1098.097727
L 70.550762 1092.678201 L 70.550762 1092.761925
L 76.754252 1087.258674 L 76.754252 1087.426123
L 82.957741 1081.839148 L 82.957741 1082.090321
L 89.16123 1076.419621 L 89.16123 1076.754519
L 95.36472 1071.000095 L 95.36472 1071.418718
L 101.568209 1065.580568 L 101.568209 1066.082916
L 107.771699 1060.161042 L 107.771699 1060.747114
L 113.975188 1054.741515 L 113.975188 1055.411312
L 120.178678 1049.321989 L 120.178678 1050.07551
L 126.382167 1043.902462 L 126.382167 1044.739708
L 132.585657 1038.482936 L 132.585657 1039.403906
L 138.789146 1033.063409 L 138.789146 1034.068104
L 144.992635 1027.643883 L 144.992635 1028.732302
L 151.196125 1022.224356 L 151.196125 1023.3965
L 157.399614 1016.80483 L 157.399614 1018.060698
L 163.603104 1011.385303 L 163.603104 1012.724896
L 169.806593 1005.965776 L 169.806593 1007.389094
L 176.010083 1000.54625 L 176.010083 1002.053292
L 182.213572 995.126723 L 182.213572 996.71749
L 188.417062 989.707197 L 188.417062 991.381688
L 194.620551 984.28767 L 194.620551 986.045886
L 200.82404 978.868144 L 200.82404 980.710084
L 207.02753 973.448617 L 207.02753 975.374282
L 213.231019 968.029091 L 213.231019 970.038481
L 219.434509 962.609564 L 219.434509 964.702679
L 225.637998 957.190038 L 225.637998 959.366877
L 231.841488 951.770511 L 231.841488 954.031075
L 238.044977 946.350985 L 238.044977 948.695273
L 244.248466 940.931458 L 244.248466 943.359471
L 250.451956 935.511932 L 250.451956 938.023669
L 256.655445 930.092405 L 256.655445 932.687867
L 262.858935 924.672879 L 262.858935 927.352065
L 269.062424 919.253352 L 269.062424 922.016263
L 275.265914 913.833826 L 275.265914 916.680461
L 281.469403 908.414299 L 281.469403 911.344659
L 287.672893 902.994773 L 287.672893 906.008857
L 293.876382 897.575246 L 293.876382 900.673055
L 300.079871 892.15572 L 300.079871 895.337253
L 306.283361 886.736193 L 306.283361 890.001451
L 312.48685 881.316667 L 312.48685 884.665649
L 318.69034 875.89714 L 318.69034 879.329847
L 324.893829 870.477614 L 324.893829 873.994045
L 331.097319 865.058087 L 331.097319 868.658244
L 337.300808 859.638561 L 337.300808 863.322442
L 343.504298 854.219034 L 343.504298 857.98664
L 349.707787 848.799507 L 349.707787 852.650838
L 355.911276 843.379981 L 355.911276 847.315036
L 362.114766 837.960454 L 362.114766 841.979234
L 368.318255 832.540928 L 368.318255 836.643432
L 374.521745 827.121401 L 374.521745 831.30763
L 380.725234 821.701875 L 380.725234 825.971828
L 386.928724 816.282348 L 386.928724 820.636026
L 393.132213 810.862822 L 393.132213 815.300224
L 399.335702 805.443295 L 399.335702 809.964422
L 405.539192 800.023769 L 405.539192 804.62862
L 411.742681 794.604242 L 411.742681 799.292818
L 417.946171 789.184716 L 417.946171 793.957016
L 424.14966 783.765189 L 424.14966 788.621214
L 430.35315 778.345663 L 430.35315 783.285412
L 436.556639 772.926136 L 436.556639 777.94961
L 442.760129 767.50661 L 442.760129 772.613808
L 448.963618 762.087083 L 448.963618 767.278007
L 455.167107 756.667557 L 455.167107 761.942205
L 461.370597 751.24803 L 461.370597 756.606403
L 467.574086 745.828504 L 467.574086 751.270601
L 473.777576 740.408977 L 473.777576 745.934799
L 479.981065 734.989451 L 479.981065 740.598997
L 486.184555 729.569924 L 486.184555 735.263195
L 492.388044 724.150398 L 492.388044 729.927393
L 498.591534 718.730871 L 498.591534 724.591591
L 504.795023 713.311345 L 504.795023 719.255789
L 510.998512 707.891818 L 510.998512 713.919987
L 517.202002 702.472292 L 517.202002 708.584185
L 523.405491 697.052765 L 523.405491 703.248383
L 529.608981 691.68515 L 529.608981 697.912581
L 535.81247 686.85378 L 535.81247 693.075603
L 542.01596 682.516575 L 542.01596 688.570777
L 548.219449 679.261301 L 548.219449 684.434479
L 554.422938 676.470687 L 554.422938 680.690764
L 560.626428 673.796762 L 560.626428 677.17939
L 566.829917 671.122837 L 566.829917 673.882643
L 573.033407 668.626537 L 573.033407 671.120711
L 579.236896 666.169227 L 579.236896 668.516685
L 585.440386 663.711918 L 585.440386 665.912659
L 591.643875 661.254608 L 591.643875 663.308634
L 597.847365 658.797298 L 597.847365 660.704608
L 604.050854 656.339989 L 604.050854 658.100582
L 610.254343 653.882679 L 610.254343 655.496556
L 616.457833 651.425369 L 616.457833 652.892531
L 622.661322 648.96806 L 622.661322 650.288505
L 628.864812 646.51075 L 628.864812 647.684479
L 635.068301 644.05344 L 635.068301 645.080453
L 641.271791 641.596131 L 641.271791 642.476427
L 647.47528 639.138821 L 647.47528 639.872402
L 653.67877 636.681511 L 653.67877 637.268376
L 659.882259 634.224202 L 659.882259 634.66435
L 666.085748 631.766892 L 666.085748 632.060324
L 672.289238 629.309582 L 672.289238 629.456299
L 678.492727 626.852273 L 678.492727 626.852273
" clip-path="url(#p5a336d0e7b)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#p7148eb9ad5)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_9"> <g id="patch_9">
<path d="M 33.64 1121.66 <path d="M 33.64 1121.66
...@@ -2198,7 +2196,7 @@ z ...@@ -2198,7 +2196,7 @@ z
<g id="xtick_13"> <g id="xtick_13">
<g id="line2d_49"> <g id="line2d_49">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_41"> <g id="text_41">
...@@ -2213,7 +2211,7 @@ z ...@@ -2213,7 +2211,7 @@ z
<g id="xtick_14"> <g id="xtick_14">
<g id="line2d_50"> <g id="line2d_50">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_42"> <g id="text_42">
...@@ -2228,7 +2226,7 @@ z ...@@ -2228,7 +2226,7 @@ z
<g id="xtick_15"> <g id="xtick_15">
<g id="line2d_51"> <g id="line2d_51">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_43"> <g id="text_43">
...@@ -2243,7 +2241,7 @@ z ...@@ -2243,7 +2241,7 @@ z
<g id="xtick_16"> <g id="xtick_16">
<g id="line2d_52"> <g id="line2d_52">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_44"> <g id="text_44">
...@@ -2258,7 +2256,7 @@ z ...@@ -2258,7 +2256,7 @@ z
<g id="xtick_17"> <g id="xtick_17">
<g id="line2d_53"> <g id="line2d_53">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_45"> <g id="text_45">
...@@ -2273,7 +2271,7 @@ z ...@@ -2273,7 +2271,7 @@ z
<g id="xtick_18"> <g id="xtick_18">
<g id="line2d_54"> <g id="line2d_54">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="1698.07" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_46"> <g id="text_46">
...@@ -2290,7 +2288,7 @@ z ...@@ -2290,7 +2288,7 @@ z
<g id="ytick_13"> <g id="ytick_13">
<g id="line2d_55"> <g id="line2d_55">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1674.507727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1674.507727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_47"> <g id="text_47">
...@@ -2305,7 +2303,7 @@ z ...@@ -2305,7 +2303,7 @@ z
<g id="ytick_14"> <g id="ytick_14">
<g id="line2d_56"> <g id="line2d_56">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1580.258636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1580.258636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_48"> <g id="text_48">
...@@ -2320,7 +2318,7 @@ z ...@@ -2320,7 +2318,7 @@ z
<g id="ytick_15"> <g id="ytick_15">
<g id="line2d_57"> <g id="line2d_57">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1486.009545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1486.009545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_49"> <g id="text_49">
...@@ -2335,7 +2333,7 @@ z ...@@ -2335,7 +2333,7 @@ z
<g id="ytick_16"> <g id="ytick_16">
<g id="line2d_58"> <g id="line2d_58">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1391.760455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1391.760455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_50"> <g id="text_50">
...@@ -2350,7 +2348,7 @@ z ...@@ -2350,7 +2348,7 @@ z
<g id="ytick_17"> <g id="ytick_17">
<g id="line2d_59"> <g id="line2d_59">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1297.511364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1297.511364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_51"> <g id="text_51">
...@@ -2365,7 +2363,7 @@ z ...@@ -2365,7 +2363,7 @@ z
<g id="ytick_18"> <g id="ytick_18">
<g id="line2d_60"> <g id="line2d_60">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1203.262273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1203.262273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_52"> <g id="text_52">
...@@ -2380,106 +2378,106 @@ z ...@@ -2380,106 +2378,106 @@ z
</g> </g>
<g id="line2d_61"> <g id="line2d_61">
<path d="M 64.347273 1674.507727 <path d="M 64.347273 1674.507727
L 70.550762 1669.088201 L 70.550762 1669.171925
L 76.754252 1663.668674 L 76.754252 1663.836123
L 82.957741 1658.249148 L 82.957741 1658.500321
L 89.16123 1652.829621 L 89.16123 1653.164519
L 95.36472 1647.410095 L 95.36472 1647.828718
L 101.568209 1641.990568 L 101.568209 1642.492916
L 107.771699 1636.571042 L 107.771699 1637.157114
L 113.975188 1631.151515 L 113.975188 1631.821312
L 120.178678 1625.731989 L 120.178678 1626.48551
L 126.382167 1620.312462 L 126.382167 1621.149708
L 132.585657 1614.892936 L 132.585657 1615.813906
L 138.789146 1609.473409 L 138.789146 1610.478104
L 144.992635 1604.053883 L 144.992635 1605.142302
L 151.196125 1598.634356 L 151.196125 1599.8065
L 157.399614 1593.21483 L 157.399614 1594.470698
L 163.603104 1587.795303 L 163.603104 1589.134896
L 169.806593 1582.375776 L 169.806593 1583.799094
L 176.010083 1576.95625 L 176.010083 1578.463292
L 182.213572 1571.536723 L 182.213572 1573.12749
L 188.417062 1566.117197 L 188.417062 1567.791688
L 194.620551 1560.69767 L 194.620551 1562.455886
L 200.82404 1555.278144 L 200.82404 1557.120084
L 207.02753 1549.858617 L 207.02753 1551.784282
L 213.231019 1544.439091 L 213.231019 1546.448481
L 219.434509 1539.019564 L 219.434509 1541.112679
L 225.637998 1533.600038 L 225.637998 1535.776877
L 231.841488 1528.180511 L 231.841488 1530.441075
L 238.044977 1522.760985 L 238.044977 1525.105273
L 244.248466 1517.341458 L 244.248466 1519.769471
L 250.451956 1511.921932 L 250.451956 1514.433669
L 256.655445 1506.502405 L 256.655445 1509.097867
L 262.858935 1501.082879 L 262.858935 1503.762065
L 269.062424 1495.663352 L 269.062424 1498.426263
L 275.265914 1490.243826 L 275.265914 1493.090461
L 281.469403 1484.824299 L 281.469403 1487.754659
L 287.672893 1479.404773 L 287.672893 1482.418857
L 293.876382 1473.985246 L 293.876382 1477.083055
L 300.079871 1468.56572 L 300.079871 1471.747253
L 306.283361 1463.146193 L 306.283361 1466.411451
L 312.48685 1457.726667 L 312.48685 1461.075649
L 318.69034 1452.30714 L 318.69034 1455.739847
L 324.893829 1446.887614 L 324.893829 1450.404045
L 331.097319 1441.468087 L 331.097319 1445.068244
L 337.300808 1436.048561 L 337.300808 1439.732442
L 343.504298 1430.629034 L 343.504298 1434.39664
L 349.707787 1425.209507 L 349.707787 1429.060838
L 355.911276 1419.789981 L 355.911276 1423.725036
L 362.114766 1414.370454 L 362.114766 1418.389234
L 368.318255 1408.950928 L 368.318255 1413.053432
L 374.521745 1403.531401 L 374.521745 1407.71763
L 380.725234 1398.111875 L 380.725234 1402.381828
L 386.928724 1392.692348 L 386.928724 1397.046026
L 393.132213 1387.272822 L 393.132213 1391.710224
L 399.335702 1381.853295 L 399.335702 1386.374422
L 405.539192 1376.433769 L 405.539192 1381.03862
L 411.742681 1371.014242 L 411.742681 1375.702818
L 417.946171 1365.594716 L 417.946171 1370.367016
L 424.14966 1360.175189 L 424.14966 1365.031214
L 430.35315 1354.755663 L 430.35315 1359.695412
L 436.556639 1349.336136 L 436.556639 1354.35961
L 442.760129 1343.91661 L 442.760129 1349.023808
L 448.963618 1338.497083 L 448.963618 1343.688007
L 455.167107 1333.077557 L 455.167107 1338.352205
L 461.370597 1327.65803 L 461.370597 1333.016403
L 467.574086 1322.238504 L 467.574086 1327.680601
L 473.777576 1316.818977 L 473.777576 1322.344799
L 479.981065 1311.399451 L 479.981065 1317.008997
L 486.184555 1305.979924 L 486.184555 1311.673195
L 492.388044 1300.560398 L 492.388044 1306.337393
L 498.591534 1295.140871 L 498.591534 1301.001591
L 504.795023 1289.721345 L 504.795023 1295.665789
L 510.998512 1284.301818 L 510.998512 1290.329987
L 517.202002 1278.882292 L 517.202002 1284.994185
L 523.405491 1273.462765 L 523.405491 1279.658383
L 529.608981 1268.09515 L 529.608981 1274.322581
L 535.81247 1263.26378 L 535.81247 1269.485603
L 542.01596 1258.926575 L 542.01596 1264.980777
L 548.219449 1255.671301 L 548.219449 1260.844479
L 554.422938 1252.880687 L 554.422938 1257.100764
L 560.626428 1250.206762 L 560.626428 1253.58939
L 566.829917 1247.532837 L 566.829917 1250.292643
L 573.033407 1245.036537 L 573.033407 1247.530711
L 579.236896 1242.579227 L 579.236896 1244.926685
L 585.440386 1240.121918 L 585.440386 1242.322659
L 591.643875 1237.664608 L 591.643875 1239.718634
L 597.847365 1235.207298 L 597.847365 1237.114608
L 604.050854 1232.749989 L 604.050854 1234.510582
L 610.254343 1230.292679 L 610.254343 1231.906556
L 616.457833 1227.835369 L 616.457833 1229.302531
L 622.661322 1225.37806 L 622.661322 1226.698505
L 628.864812 1222.92075 L 628.864812 1224.094479
L 635.068301 1220.46344 L 635.068301 1221.490453
L 641.271791 1218.006131 L 641.271791 1218.886427
L 647.47528 1215.548821 L 647.47528 1216.282402
L 653.67877 1213.091511 L 653.67877 1213.678376
L 659.882259 1210.634202 L 659.882259 1211.07435
L 666.085748 1208.176892 L 666.085748 1208.470324
L 672.289238 1205.719582 L 672.289238 1205.866299
L 678.492727 1203.262273 L 678.492727 1203.262273
" clip-path="url(#peb075df79f)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#p9df4b0b96e)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_15"> <g id="patch_15">
<path d="M 33.64 1698.07 <path d="M 33.64 1698.07
...@@ -2665,7 +2663,7 @@ z ...@@ -2665,7 +2663,7 @@ z
<g id="xtick_19"> <g id="xtick_19">
<g id="line2d_63"> <g id="line2d_63">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_55"> <g id="text_55">
...@@ -2680,7 +2678,7 @@ z ...@@ -2680,7 +2678,7 @@ z
<g id="xtick_20"> <g id="xtick_20">
<g id="line2d_64"> <g id="line2d_64">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_56"> <g id="text_56">
...@@ -2695,7 +2693,7 @@ z ...@@ -2695,7 +2693,7 @@ z
<g id="xtick_21"> <g id="xtick_21">
<g id="line2d_65"> <g id="line2d_65">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_57"> <g id="text_57">
...@@ -2710,7 +2708,7 @@ z ...@@ -2710,7 +2708,7 @@ z
<g id="xtick_22"> <g id="xtick_22">
<g id="line2d_66"> <g id="line2d_66">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_58"> <g id="text_58">
...@@ -2725,7 +2723,7 @@ z ...@@ -2725,7 +2723,7 @@ z
<g id="xtick_23"> <g id="xtick_23">
<g id="line2d_67"> <g id="line2d_67">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_59"> <g id="text_59">
...@@ -2740,7 +2738,7 @@ z ...@@ -2740,7 +2738,7 @@ z
<g id="xtick_24"> <g id="xtick_24">
<g id="line2d_68"> <g id="line2d_68">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="2274.48" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_60"> <g id="text_60">
...@@ -2757,7 +2755,7 @@ z ...@@ -2757,7 +2755,7 @@ z
<g id="ytick_19"> <g id="ytick_19">
<g id="line2d_69"> <g id="line2d_69">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2250.917727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2250.917727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_61"> <g id="text_61">
...@@ -2772,7 +2770,7 @@ z ...@@ -2772,7 +2770,7 @@ z
<g id="ytick_20"> <g id="ytick_20">
<g id="line2d_70"> <g id="line2d_70">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2156.668636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2156.668636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_62"> <g id="text_62">
...@@ -2787,7 +2785,7 @@ z ...@@ -2787,7 +2785,7 @@ z
<g id="ytick_21"> <g id="ytick_21">
<g id="line2d_71"> <g id="line2d_71">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2062.419545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2062.419545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_63"> <g id="text_63">
...@@ -2802,7 +2800,7 @@ z ...@@ -2802,7 +2800,7 @@ z
<g id="ytick_22"> <g id="ytick_22">
<g id="line2d_72"> <g id="line2d_72">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1968.170455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1968.170455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_64"> <g id="text_64">
...@@ -2817,7 +2815,7 @@ z ...@@ -2817,7 +2815,7 @@ z
<g id="ytick_23"> <g id="ytick_23">
<g id="line2d_73"> <g id="line2d_73">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1873.921364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1873.921364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_65"> <g id="text_65">
...@@ -2832,7 +2830,7 @@ z ...@@ -2832,7 +2830,7 @@ z
<g id="ytick_24"> <g id="ytick_24">
<g id="line2d_74"> <g id="line2d_74">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="1779.672273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="1779.672273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_66"> <g id="text_66">
...@@ -2847,106 +2845,106 @@ z ...@@ -2847,106 +2845,106 @@ z
</g> </g>
<g id="line2d_75"> <g id="line2d_75">
<path d="M 64.347273 2250.917727 <path d="M 64.347273 2250.917727
L 70.550762 2245.498201 L 70.550762 2245.581925
L 76.754252 2240.078674 L 76.754252 2240.246123
L 82.957741 2234.659148 L 82.957741 2234.910321
L 89.16123 2229.239621 L 89.16123 2229.574519
L 95.36472 2223.820095 L 95.36472 2224.238718
L 101.568209 2218.400568 L 101.568209 2218.902916
L 107.771699 2212.981042 L 107.771699 2213.567114
L 113.975188 2207.561515 L 113.975188 2208.231312
L 120.178678 2202.141989 L 120.178678 2202.89551
L 126.382167 2196.722462 L 126.382167 2197.559708
L 132.585657 2191.302936 L 132.585657 2192.223906
L 138.789146 2185.883409 L 138.789146 2186.888104
L 144.992635 2180.463883 L 144.992635 2181.552302
L 151.196125 2175.044356 L 151.196125 2176.2165
L 157.399614 2169.62483 L 157.399614 2170.880698
L 163.603104 2164.205303 L 163.603104 2165.544896
L 169.806593 2158.785776 L 169.806593 2160.209094
L 176.010083 2153.36625 L 176.010083 2154.873292
L 182.213572 2147.946723 L 182.213572 2149.53749
L 188.417062 2142.527197 L 188.417062 2144.201688
L 194.620551 2137.10767 L 194.620551 2138.865886
L 200.82404 2131.688144 L 200.82404 2133.530084
L 207.02753 2126.268617 L 207.02753 2128.194282
L 213.231019 2120.849091 L 213.231019 2122.858481
L 219.434509 2115.429564 L 219.434509 2117.522679
L 225.637998 2110.010038 L 225.637998 2112.186877
L 231.841488 2104.590511 L 231.841488 2106.851075
L 238.044977 2099.170985 L 238.044977 2101.515273
L 244.248466 2093.751458 L 244.248466 2096.179471
L 250.451956 2088.331932 L 250.451956 2090.843669
L 256.655445 2082.912405 L 256.655445 2085.507867
L 262.858935 2077.492879 L 262.858935 2080.172065
L 269.062424 2072.073352 L 269.062424 2074.836263
L 275.265914 2066.653826 L 275.265914 2069.500461
L 281.469403 2061.234299 L 281.469403 2064.164659
L 287.672893 2055.814773 L 287.672893 2058.828857
L 293.876382 2050.395246 L 293.876382 2053.493055
L 300.079871 2044.97572 L 300.079871 2048.157253
L 306.283361 2039.556193 L 306.283361 2042.821451
L 312.48685 2034.136667 L 312.48685 2037.485649
L 318.69034 2028.71714 L 318.69034 2032.149847
L 324.893829 2023.297614 L 324.893829 2026.814045
L 331.097319 2017.878087 L 331.097319 2021.478244
L 337.300808 2012.458561 L 337.300808 2016.142442
L 343.504298 2007.039034 L 343.504298 2010.80664
L 349.707787 2001.619507 L 349.707787 2005.470838
L 355.911276 1996.199981 L 355.911276 2000.135036
L 362.114766 1990.780454 L 362.114766 1994.799234
L 368.318255 1985.360928 L 368.318255 1989.463432
L 374.521745 1979.941401 L 374.521745 1984.12763
L 380.725234 1974.521875 L 380.725234 1978.791828
L 386.928724 1969.102348 L 386.928724 1973.456026
L 393.132213 1963.682822 L 393.132213 1968.120224
L 399.335702 1958.263295 L 399.335702 1962.784422
L 405.539192 1952.843769 L 405.539192 1957.44862
L 411.742681 1947.424242 L 411.742681 1952.112818
L 417.946171 1942.004716 L 417.946171 1946.777016
L 424.14966 1936.585189 L 424.14966 1941.441214
L 430.35315 1931.165663 L 430.35315 1936.105412
L 436.556639 1925.746136 L 436.556639 1930.76961
L 442.760129 1920.32661 L 442.760129 1925.433808
L 448.963618 1914.907083 L 448.963618 1920.098007
L 455.167107 1909.487557 L 455.167107 1914.762205
L 461.370597 1904.06803 L 461.370597 1909.426403
L 467.574086 1898.648504 L 467.574086 1904.090601
L 473.777576 1893.228977 L 473.777576 1898.754799
L 479.981065 1887.809451 L 479.981065 1893.418997
L 486.184555 1882.389924 L 486.184555 1888.083195
L 492.388044 1876.970398 L 492.388044 1882.747393
L 498.591534 1871.550871 L 498.591534 1877.411591
L 504.795023 1866.131345 L 504.795023 1872.075789
L 510.998512 1860.711818 L 510.998512 1866.739987
L 517.202002 1855.292292 L 517.202002 1861.404185
L 523.405491 1849.872765 L 523.405491 1856.068383
L 529.608981 1844.50515 L 529.608981 1850.732581
L 535.81247 1839.67378 L 535.81247 1845.895603
L 542.01596 1835.336575 L 542.01596 1841.390777
L 548.219449 1832.081301 L 548.219449 1837.254479
L 554.422938 1829.290687 L 554.422938 1833.510764
L 560.626428 1826.616762 L 560.626428 1829.99939
L 566.829917 1823.942837 L 566.829917 1826.702643
L 573.033407 1821.446537 L 573.033407 1823.940711
L 579.236896 1818.989227 L 579.236896 1821.336685
L 585.440386 1816.531918 L 585.440386 1818.732659
L 591.643875 1814.074608 L 591.643875 1816.128634
L 597.847365 1811.617298 L 597.847365 1813.524608
L 604.050854 1809.159989 L 604.050854 1810.920582
L 610.254343 1806.702679 L 610.254343 1808.316556
L 616.457833 1804.245369 L 616.457833 1805.712531
L 622.661322 1801.78806 L 622.661322 1803.108505
L 628.864812 1799.33075 L 628.864812 1800.504479
L 635.068301 1796.87344 L 635.068301 1797.900453
L 641.271791 1794.416131 L 641.271791 1795.296427
L 647.47528 1791.958821 L 647.47528 1792.692402
L 653.67877 1789.501511 L 653.67877 1790.088376
L 659.882259 1787.044202 L 659.882259 1787.48435
L 666.085748 1784.586892 L 666.085748 1784.880324
L 672.289238 1782.129582 L 672.289238 1782.276299
L 678.492727 1779.672273 L 678.492727 1779.672273
" clip-path="url(#p2c9bedf538)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#p427c524879)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_21"> <g id="patch_21">
<path d="M 33.64 2274.48 <path d="M 33.64 2274.48
...@@ -3059,7 +3057,7 @@ z ...@@ -3059,7 +3057,7 @@ z
<g id="xtick_25"> <g id="xtick_25">
<g id="line2d_77"> <g id="line2d_77">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_69"> <g id="text_69">
...@@ -3074,7 +3072,7 @@ z ...@@ -3074,7 +3072,7 @@ z
<g id="xtick_26"> <g id="xtick_26">
<g id="line2d_78"> <g id="line2d_78">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_70"> <g id="text_70">
...@@ -3089,7 +3087,7 @@ z ...@@ -3089,7 +3087,7 @@ z
<g id="xtick_27"> <g id="xtick_27">
<g id="line2d_79"> <g id="line2d_79">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_71"> <g id="text_71">
...@@ -3104,7 +3102,7 @@ z ...@@ -3104,7 +3102,7 @@ z
<g id="xtick_28"> <g id="xtick_28">
<g id="line2d_80"> <g id="line2d_80">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_72"> <g id="text_72">
...@@ -3119,7 +3117,7 @@ z ...@@ -3119,7 +3117,7 @@ z
<g id="xtick_29"> <g id="xtick_29">
<g id="line2d_81"> <g id="line2d_81">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_73"> <g id="text_73">
...@@ -3134,7 +3132,7 @@ z ...@@ -3134,7 +3132,7 @@ z
<g id="xtick_30"> <g id="xtick_30">
<g id="line2d_82"> <g id="line2d_82">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="2850.89" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_74"> <g id="text_74">
...@@ -3151,7 +3149,7 @@ z ...@@ -3151,7 +3149,7 @@ z
<g id="ytick_25"> <g id="ytick_25">
<g id="line2d_83"> <g id="line2d_83">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2827.327727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2827.327727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_75"> <g id="text_75">
...@@ -3166,7 +3164,7 @@ z ...@@ -3166,7 +3164,7 @@ z
<g id="ytick_26"> <g id="ytick_26">
<g id="line2d_84"> <g id="line2d_84">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2733.078636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2733.078636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_76"> <g id="text_76">
...@@ -3181,7 +3179,7 @@ z ...@@ -3181,7 +3179,7 @@ z
<g id="ytick_27"> <g id="ytick_27">
<g id="line2d_85"> <g id="line2d_85">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2638.829545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2638.829545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_77"> <g id="text_77">
...@@ -3196,7 +3194,7 @@ z ...@@ -3196,7 +3194,7 @@ z
<g id="ytick_28"> <g id="ytick_28">
<g id="line2d_86"> <g id="line2d_86">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2544.580455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2544.580455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_78"> <g id="text_78">
...@@ -3211,7 +3209,7 @@ z ...@@ -3211,7 +3209,7 @@ z
<g id="ytick_29"> <g id="ytick_29">
<g id="line2d_87"> <g id="line2d_87">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2450.331364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2450.331364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_79"> <g id="text_79">
...@@ -3226,7 +3224,7 @@ z ...@@ -3226,7 +3224,7 @@ z
<g id="ytick_30"> <g id="ytick_30">
<g id="line2d_88"> <g id="line2d_88">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2356.082273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2356.082273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_80"> <g id="text_80">
...@@ -3241,106 +3239,106 @@ z ...@@ -3241,106 +3239,106 @@ z
</g> </g>
<g id="line2d_89"> <g id="line2d_89">
<path d="M 64.347273 2827.327727 <path d="M 64.347273 2827.327727
L 70.550762 2821.908201 L 70.550762 2821.991925
L 76.754252 2816.488674 L 76.754252 2816.656123
L 82.957741 2811.069148 L 82.957741 2811.320321
L 89.16123 2805.649621 L 89.16123 2805.984519
L 95.36472 2800.230095 L 95.36472 2800.648718
L 101.568209 2794.810568 L 101.568209 2795.312916
L 107.771699 2789.391042 L 107.771699 2789.977114
L 113.975188 2783.971515 L 113.975188 2784.641312
L 120.178678 2778.551989 L 120.178678 2779.30551
L 126.382167 2773.132462 L 126.382167 2773.969708
L 132.585657 2767.712936 L 132.585657 2768.633906
L 138.789146 2762.293409 L 138.789146 2763.298104
L 144.992635 2756.873883 L 144.992635 2757.962302
L 151.196125 2751.454356 L 151.196125 2752.6265
L 157.399614 2746.03483 L 157.399614 2747.290698
L 163.603104 2740.615303 L 163.603104 2741.954896
L 169.806593 2735.195776 L 169.806593 2736.619094
L 176.010083 2729.77625 L 176.010083 2731.283292
L 182.213572 2724.356723 L 182.213572 2725.94749
L 188.417062 2718.937197 L 188.417062 2720.611688
L 194.620551 2713.51767 L 194.620551 2715.275886
L 200.82404 2708.098144 L 200.82404 2709.940084
L 207.02753 2702.678617 L 207.02753 2704.604282
L 213.231019 2697.259091 L 213.231019 2699.268481
L 219.434509 2691.839564 L 219.434509 2693.932679
L 225.637998 2686.420038 L 225.637998 2688.596877
L 231.841488 2681.000511 L 231.841488 2683.261075
L 238.044977 2675.580985 L 238.044977 2677.925273
L 244.248466 2670.161458 L 244.248466 2672.589471
L 250.451956 2664.741932 L 250.451956 2667.253669
L 256.655445 2659.322405 L 256.655445 2661.917867
L 262.858935 2653.902879 L 262.858935 2656.582065
L 269.062424 2648.483352 L 269.062424 2651.246263
L 275.265914 2643.063826 L 275.265914 2645.910461
L 281.469403 2637.644299 L 281.469403 2640.574659
L 287.672893 2632.224773 L 287.672893 2635.238857
L 293.876382 2626.805246 L 293.876382 2629.903055
L 300.079871 2621.38572 L 300.079871 2624.567253
L 306.283361 2615.966193 L 306.283361 2619.231451
L 312.48685 2610.546667 L 312.48685 2613.895649
L 318.69034 2605.12714 L 318.69034 2608.559847
L 324.893829 2599.707614 L 324.893829 2603.224045
L 331.097319 2594.288087 L 331.097319 2597.888244
L 337.300808 2588.868561 L 337.300808 2592.552442
L 343.504298 2583.449034 L 343.504298 2587.21664
L 349.707787 2578.029507 L 349.707787 2581.880838
L 355.911276 2572.609981 L 355.911276 2576.545036
L 362.114766 2567.190454 L 362.114766 2571.209234
L 368.318255 2561.770928 L 368.318255 2565.873432
L 374.521745 2556.351401 L 374.521745 2560.53763
L 380.725234 2550.931875 L 380.725234 2555.201828
L 386.928724 2545.512348 L 386.928724 2549.866026
L 393.132213 2540.092822 L 393.132213 2544.530224
L 399.335702 2534.673295 L 399.335702 2539.194422
L 405.539192 2529.253769 L 405.539192 2533.85862
L 411.742681 2523.834242 L 411.742681 2528.522818
L 417.946171 2518.414716 L 417.946171 2523.187016
L 424.14966 2512.995189 L 424.14966 2517.851214
L 430.35315 2507.575663 L 430.35315 2512.515412
L 436.556639 2502.156136 L 436.556639 2507.17961
L 442.760129 2496.73661 L 442.760129 2501.843808
L 448.963618 2491.317083 L 448.963618 2496.508007
L 455.167107 2485.897557 L 455.167107 2491.172205
L 461.370597 2480.47803 L 461.370597 2485.836403
L 467.574086 2475.058504 L 467.574086 2480.500601
L 473.777576 2469.638977 L 473.777576 2475.164799
L 479.981065 2464.219451 L 479.981065 2469.828997
L 486.184555 2458.799924 L 486.184555 2464.493195
L 492.388044 2453.380398 L 492.388044 2459.157393
L 498.591534 2447.960871 L 498.591534 2453.821591
L 504.795023 2442.541345 L 504.795023 2448.485789
L 510.998512 2437.121818 L 510.998512 2443.149987
L 517.202002 2431.702292 L 517.202002 2437.814185
L 523.405491 2426.282765 L 523.405491 2432.478383
L 529.608981 2420.91515 L 529.608981 2427.142581
L 535.81247 2416.08378 L 535.81247 2422.305603
L 542.01596 2411.746575 L 542.01596 2417.800777
L 548.219449 2408.491301 L 548.219449 2413.664479
L 554.422938 2405.700687 L 554.422938 2409.920764
L 560.626428 2403.026762 L 560.626428 2406.40939
L 566.829917 2400.352837 L 566.829917 2403.112643
L 573.033407 2397.856537 L 573.033407 2400.350711
L 579.236896 2395.399227 L 579.236896 2397.746685
L 585.440386 2392.941918 L 585.440386 2395.142659
L 591.643875 2390.484608 L 591.643875 2392.538634
L 597.847365 2388.027298 L 597.847365 2389.934608
L 604.050854 2385.569989 L 604.050854 2387.330582
L 610.254343 2383.112679 L 610.254343 2384.726556
L 616.457833 2380.655369 L 616.457833 2382.122531
L 622.661322 2378.19806 L 622.661322 2379.518505
L 628.864812 2375.74075 L 628.864812 2376.914479
L 635.068301 2373.28344 L 635.068301 2374.310453
L 641.271791 2370.826131 L 641.271791 2371.706427
L 647.47528 2368.368821 L 647.47528 2369.102402
L 653.67877 2365.911511 L 653.67877 2366.498376
L 659.882259 2363.454202 L 659.882259 2363.89435
L 666.085748 2360.996892 L 666.085748 2361.290324
L 672.289238 2358.539582 L 672.289238 2358.686299
L 678.492727 2356.082273 L 678.492727 2356.082273
" clip-path="url(#p683eef2ab0)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#pe1d5f46805)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_27"> <g id="patch_27">
<path d="M 33.64 2850.89 <path d="M 33.64 2850.89
...@@ -3471,7 +3469,7 @@ z ...@@ -3471,7 +3469,7 @@ z
<g id="xtick_31"> <g id="xtick_31">
<g id="line2d_91"> <g id="line2d_91">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_83"> <g id="text_83">
...@@ -3486,7 +3484,7 @@ z ...@@ -3486,7 +3484,7 @@ z
<g id="xtick_32"> <g id="xtick_32">
<g id="line2d_92"> <g id="line2d_92">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_84"> <g id="text_84">
...@@ -3501,7 +3499,7 @@ z ...@@ -3501,7 +3499,7 @@ z
<g id="xtick_33"> <g id="xtick_33">
<g id="line2d_93"> <g id="line2d_93">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_85"> <g id="text_85">
...@@ -3516,7 +3514,7 @@ z ...@@ -3516,7 +3514,7 @@ z
<g id="xtick_34"> <g id="xtick_34">
<g id="line2d_94"> <g id="line2d_94">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_86"> <g id="text_86">
...@@ -3531,7 +3529,7 @@ z ...@@ -3531,7 +3529,7 @@ z
<g id="xtick_35"> <g id="xtick_35">
<g id="line2d_95"> <g id="line2d_95">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_87"> <g id="text_87">
...@@ -3546,7 +3544,7 @@ z ...@@ -3546,7 +3544,7 @@ z
<g id="xtick_36"> <g id="xtick_36">
<g id="line2d_96"> <g id="line2d_96">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="3427.3" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_88"> <g id="text_88">
...@@ -3563,7 +3561,7 @@ z ...@@ -3563,7 +3561,7 @@ z
<g id="ytick_31"> <g id="ytick_31">
<g id="line2d_97"> <g id="line2d_97">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3403.737727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3403.737727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_89"> <g id="text_89">
...@@ -3578,7 +3576,7 @@ z ...@@ -3578,7 +3576,7 @@ z
<g id="ytick_32"> <g id="ytick_32">
<g id="line2d_98"> <g id="line2d_98">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3309.488636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3309.488636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_90"> <g id="text_90">
...@@ -3593,7 +3591,7 @@ z ...@@ -3593,7 +3591,7 @@ z
<g id="ytick_33"> <g id="ytick_33">
<g id="line2d_99"> <g id="line2d_99">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3215.239545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3215.239545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_91"> <g id="text_91">
...@@ -3608,7 +3606,7 @@ z ...@@ -3608,7 +3606,7 @@ z
<g id="ytick_34"> <g id="ytick_34">
<g id="line2d_100"> <g id="line2d_100">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3120.990455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3120.990455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_92"> <g id="text_92">
...@@ -3623,7 +3621,7 @@ z ...@@ -3623,7 +3621,7 @@ z
<g id="ytick_35"> <g id="ytick_35">
<g id="line2d_101"> <g id="line2d_101">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3026.741364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3026.741364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_93"> <g id="text_93">
...@@ -3638,7 +3636,7 @@ z ...@@ -3638,7 +3636,7 @@ z
<g id="ytick_36"> <g id="ytick_36">
<g id="line2d_102"> <g id="line2d_102">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="2932.492273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="2932.492273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_94"> <g id="text_94">
...@@ -3653,106 +3651,106 @@ z ...@@ -3653,106 +3651,106 @@ z
</g> </g>
<g id="line2d_103"> <g id="line2d_103">
<path d="M 64.347273 3403.737727 <path d="M 64.347273 3403.737727
L 70.550762 3398.318201 L 70.550762 3398.401925
L 76.754252 3392.898674 L 76.754252 3393.066123
L 82.957741 3387.479148 L 82.957741 3387.730321
L 89.16123 3382.059621 L 89.16123 3382.394519
L 95.36472 3376.640095 L 95.36472 3377.058718
L 101.568209 3371.220568 L 101.568209 3371.722916
L 107.771699 3365.801042 L 107.771699 3366.387114
L 113.975188 3360.381515 L 113.975188 3361.051312
L 120.178678 3354.961989 L 120.178678 3355.71551
L 126.382167 3349.542462 L 126.382167 3350.379708
L 132.585657 3344.122936 L 132.585657 3345.043906
L 138.789146 3338.703409 L 138.789146 3339.708104
L 144.992635 3333.283883 L 144.992635 3334.372302
L 151.196125 3327.864356 L 151.196125 3329.0365
L 157.399614 3322.44483 L 157.399614 3323.700698
L 163.603104 3317.025303 L 163.603104 3318.364896
L 169.806593 3311.605776 L 169.806593 3313.029094
L 176.010083 3306.18625 L 176.010083 3307.693292
L 182.213572 3300.766723 L 182.213572 3302.35749
L 188.417062 3295.347197 L 188.417062 3297.021688
L 194.620551 3289.92767 L 194.620551 3291.685886
L 200.82404 3284.508144 L 200.82404 3286.350084
L 207.02753 3279.088617 L 207.02753 3281.014282
L 213.231019 3273.669091 L 213.231019 3275.678481
L 219.434509 3268.249564 L 219.434509 3270.342679
L 225.637998 3262.830038 L 225.637998 3265.006877
L 231.841488 3257.410511 L 231.841488 3259.671075
L 238.044977 3251.990985 L 238.044977 3254.335273
L 244.248466 3246.571458 L 244.248466 3248.999471
L 250.451956 3241.151932 L 250.451956 3243.663669
L 256.655445 3235.732405 L 256.655445 3238.327867
L 262.858935 3230.312879 L 262.858935 3232.992065
L 269.062424 3224.893352 L 269.062424 3227.656263
L 275.265914 3219.473826 L 275.265914 3222.320461
L 281.469403 3214.054299 L 281.469403 3216.984659
L 287.672893 3208.634773 L 287.672893 3211.648857
L 293.876382 3203.215246 L 293.876382 3206.313055
L 300.079871 3197.79572 L 300.079871 3200.977253
L 306.283361 3192.376193 L 306.283361 3195.641451
L 312.48685 3186.956667 L 312.48685 3190.305649
L 318.69034 3181.53714 L 318.69034 3184.969847
L 324.893829 3176.117614 L 324.893829 3179.634045
L 331.097319 3170.698087 L 331.097319 3174.298244
L 337.300808 3165.278561 L 337.300808 3168.962442
L 343.504298 3159.859034 L 343.504298 3163.62664
L 349.707787 3154.439507 L 349.707787 3158.290838
L 355.911276 3149.019981 L 355.911276 3152.955036
L 362.114766 3143.600454 L 362.114766 3147.619234
L 368.318255 3138.180928 L 368.318255 3142.283432
L 374.521745 3132.761401 L 374.521745 3136.94763
L 380.725234 3127.341875 L 380.725234 3131.611828
L 386.928724 3121.922348 L 386.928724 3126.276026
L 393.132213 3116.502822 L 393.132213 3120.940224
L 399.335702 3111.083295 L 399.335702 3115.604422
L 405.539192 3105.663769 L 405.539192 3110.26862
L 411.742681 3100.244242 L 411.742681 3104.932818
L 417.946171 3094.824716 L 417.946171 3099.597016
L 424.14966 3089.405189 L 424.14966 3094.261214
L 430.35315 3083.985663 L 430.35315 3088.925412
L 436.556639 3078.566136 L 436.556639 3083.58961
L 442.760129 3073.14661 L 442.760129 3078.253808
L 448.963618 3067.727083 L 448.963618 3072.918007
L 455.167107 3062.307557 L 455.167107 3067.582205
L 461.370597 3056.88803 L 461.370597 3062.246403
L 467.574086 3051.468504 L 467.574086 3056.910601
L 473.777576 3046.048977 L 473.777576 3051.574799
L 479.981065 3040.629451 L 479.981065 3046.238997
L 486.184555 3035.209924 L 486.184555 3040.903195
L 492.388044 3029.790398 L 492.388044 3035.567393
L 498.591534 3024.370871 L 498.591534 3030.231591
L 504.795023 3018.951345 L 504.795023 3024.895789
L 510.998512 3013.531818 L 510.998512 3019.559987
L 517.202002 3008.112292 L 517.202002 3014.224185
L 523.405491 3002.692765 L 523.405491 3008.888383
L 529.608981 2997.32515 L 529.608981 3003.552581
L 535.81247 2992.49378 L 535.81247 2998.715603
L 542.01596 2988.156575 L 542.01596 2994.210777
L 548.219449 2984.901301 L 548.219449 2990.074479
L 554.422938 2982.110687 L 554.422938 2986.330764
L 560.626428 2979.436762 L 560.626428 2982.81939
L 566.829917 2976.762837 L 566.829917 2979.522643
L 573.033407 2974.266537 L 573.033407 2976.760711
L 579.236896 2971.809227 L 579.236896 2974.156685
L 585.440386 2969.351918 L 585.440386 2971.552659
L 591.643875 2966.894608 L 591.643875 2968.948634
L 597.847365 2964.437298 L 597.847365 2966.344608
L 604.050854 2961.979989 L 604.050854 2963.740582
L 610.254343 2959.522679 L 610.254343 2961.136556
L 616.457833 2957.065369 L 616.457833 2958.532531
L 622.661322 2954.60806 L 622.661322 2955.928505
L 628.864812 2952.15075 L 628.864812 2953.324479
L 635.068301 2949.69344 L 635.068301 2950.720453
L 641.271791 2947.236131 L 641.271791 2948.116427
L 647.47528 2944.778821 L 647.47528 2945.512402
L 653.67877 2942.321511 L 653.67877 2942.908376
L 659.882259 2939.864202 L 659.882259 2940.30435
L 666.085748 2937.406892 L 666.085748 2937.700324
L 672.289238 2934.949582 L 672.289238 2935.096299
L 678.492727 2932.492273 L 678.492727 2932.492273
" clip-path="url(#p8a8efd232b)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#pc0a05cb78e)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_33"> <g id="patch_33">
<path d="M 33.64 3427.3 <path d="M 33.64 3427.3
...@@ -3876,7 +3874,7 @@ z ...@@ -3876,7 +3874,7 @@ z
<g id="xtick_37"> <g id="xtick_37">
<g id="line2d_105"> <g id="line2d_105">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_97"> <g id="text_97">
...@@ -3891,7 +3889,7 @@ z ...@@ -3891,7 +3889,7 @@ z
<g id="xtick_38"> <g id="xtick_38">
<g id="line2d_106"> <g id="line2d_106">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_98"> <g id="text_98">
...@@ -3906,7 +3904,7 @@ z ...@@ -3906,7 +3904,7 @@ z
<g id="xtick_39"> <g id="xtick_39">
<g id="line2d_107"> <g id="line2d_107">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_99"> <g id="text_99">
...@@ -3921,7 +3919,7 @@ z ...@@ -3921,7 +3919,7 @@ z
<g id="xtick_40"> <g id="xtick_40">
<g id="line2d_108"> <g id="line2d_108">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_100"> <g id="text_100">
...@@ -3936,7 +3934,7 @@ z ...@@ -3936,7 +3934,7 @@ z
<g id="xtick_41"> <g id="xtick_41">
<g id="line2d_109"> <g id="line2d_109">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_101"> <g id="text_101">
...@@ -3951,7 +3949,7 @@ z ...@@ -3951,7 +3949,7 @@ z
<g id="xtick_42"> <g id="xtick_42">
<g id="line2d_110"> <g id="line2d_110">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="4003.71" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_102"> <g id="text_102">
...@@ -3968,7 +3966,7 @@ z ...@@ -3968,7 +3966,7 @@ z
<g id="ytick_37"> <g id="ytick_37">
<g id="line2d_111"> <g id="line2d_111">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3980.147727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3980.147727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_103"> <g id="text_103">
...@@ -3983,7 +3981,7 @@ z ...@@ -3983,7 +3981,7 @@ z
<g id="ytick_38"> <g id="ytick_38">
<g id="line2d_112"> <g id="line2d_112">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3885.898636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3885.898636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_104"> <g id="text_104">
...@@ -3998,7 +3996,7 @@ z ...@@ -3998,7 +3996,7 @@ z
<g id="ytick_39"> <g id="ytick_39">
<g id="line2d_113"> <g id="line2d_113">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3791.649545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3791.649545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_105"> <g id="text_105">
...@@ -4013,7 +4011,7 @@ z ...@@ -4013,7 +4011,7 @@ z
<g id="ytick_40"> <g id="ytick_40">
<g id="line2d_114"> <g id="line2d_114">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3697.400455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3697.400455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_106"> <g id="text_106">
...@@ -4028,7 +4026,7 @@ z ...@@ -4028,7 +4026,7 @@ z
<g id="ytick_41"> <g id="ytick_41">
<g id="line2d_115"> <g id="line2d_115">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3603.151364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3603.151364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_107"> <g id="text_107">
...@@ -4043,7 +4041,7 @@ z ...@@ -4043,7 +4041,7 @@ z
<g id="ytick_42"> <g id="ytick_42">
<g id="line2d_116"> <g id="line2d_116">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="3508.902273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="3508.902273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_108"> <g id="text_108">
...@@ -4058,106 +4056,106 @@ z ...@@ -4058,106 +4056,106 @@ z
</g> </g>
<g id="line2d_117"> <g id="line2d_117">
<path d="M 64.347273 3980.147727 <path d="M 64.347273 3980.147727
L 70.550762 3974.728201 L 70.550762 3974.811925
L 76.754252 3969.308674 L 76.754252 3969.476123
L 82.957741 3963.889148 L 82.957741 3964.140321
L 89.16123 3958.469621 L 89.16123 3958.804519
L 95.36472 3953.050095 L 95.36472 3953.468718
L 101.568209 3947.630568 L 101.568209 3948.132916
L 107.771699 3942.211042 L 107.771699 3942.797114
L 113.975188 3936.791515 L 113.975188 3937.461312
L 120.178678 3931.371989 L 120.178678 3932.12551
L 126.382167 3925.952462 L 126.382167 3926.789708
L 132.585657 3920.532936 L 132.585657 3921.453906
L 138.789146 3915.113409 L 138.789146 3916.118104
L 144.992635 3909.693883 L 144.992635 3910.782302
L 151.196125 3904.274356 L 151.196125 3905.4465
L 157.399614 3898.85483 L 157.399614 3900.110698
L 163.603104 3893.435303 L 163.603104 3894.774896
L 169.806593 3888.015776 L 169.806593 3889.439094
L 176.010083 3882.59625 L 176.010083 3884.103292
L 182.213572 3877.176723 L 182.213572 3878.76749
L 188.417062 3871.757197 L 188.417062 3873.431688
L 194.620551 3866.33767 L 194.620551 3868.095886
L 200.82404 3860.918144 L 200.82404 3862.760084
L 207.02753 3855.498617 L 207.02753 3857.424282
L 213.231019 3850.079091 L 213.231019 3852.088481
L 219.434509 3844.659564 L 219.434509 3846.752679
L 225.637998 3839.240038 L 225.637998 3841.416877
L 231.841488 3833.820511 L 231.841488 3836.081075
L 238.044977 3828.400985 L 238.044977 3830.745273
L 244.248466 3822.981458 L 244.248466 3825.409471
L 250.451956 3817.561932 L 250.451956 3820.073669
L 256.655445 3812.142405 L 256.655445 3814.737867
L 262.858935 3806.722879 L 262.858935 3809.402065
L 269.062424 3801.303352 L 269.062424 3804.066263
L 275.265914 3795.883826 L 275.265914 3798.730461
L 281.469403 3790.464299 L 281.469403 3793.394659
L 287.672893 3785.044773 L 287.672893 3788.058857
L 293.876382 3779.625246 L 293.876382 3782.723055
L 300.079871 3774.20572 L 300.079871 3777.387253
L 306.283361 3768.786193 L 306.283361 3772.051451
L 312.48685 3763.366667 L 312.48685 3766.715649
L 318.69034 3757.94714 L 318.69034 3761.379847
L 324.893829 3752.527614 L 324.893829 3756.044045
L 331.097319 3747.108087 L 331.097319 3750.708244
L 337.300808 3741.688561 L 337.300808 3745.372442
L 343.504298 3736.269034 L 343.504298 3740.03664
L 349.707787 3730.849507 L 349.707787 3734.700838
L 355.911276 3725.429981 L 355.911276 3729.365036
L 362.114766 3720.010454 L 362.114766 3724.029234
L 368.318255 3714.590928 L 368.318255 3718.693432
L 374.521745 3709.171401 L 374.521745 3713.35763
L 380.725234 3703.751875 L 380.725234 3708.021828
L 386.928724 3698.332348 L 386.928724 3702.686026
L 393.132213 3692.912822 L 393.132213 3697.350224
L 399.335702 3687.493295 L 399.335702 3692.014422
L 405.539192 3682.073769 L 405.539192 3686.67862
L 411.742681 3676.654242 L 411.742681 3681.342818
L 417.946171 3671.234716 L 417.946171 3676.007016
L 424.14966 3665.815189 L 424.14966 3670.671214
L 430.35315 3660.395663 L 430.35315 3665.335412
L 436.556639 3654.976136 L 436.556639 3659.99961
L 442.760129 3649.55661 L 442.760129 3654.663808
L 448.963618 3644.137083 L 448.963618 3649.328007
L 455.167107 3638.717557 L 455.167107 3643.992205
L 461.370597 3633.29803 L 461.370597 3638.656403
L 467.574086 3627.878504 L 467.574086 3633.320601
L 473.777576 3622.458977 L 473.777576 3627.984799
L 479.981065 3617.039451 L 479.981065 3622.648997
L 486.184555 3611.619924 L 486.184555 3617.313195
L 492.388044 3606.200398 L 492.388044 3611.977393
L 498.591534 3600.780871 L 498.591534 3606.641591
L 504.795023 3595.361345 L 504.795023 3601.305789
L 510.998512 3589.941818 L 510.998512 3595.969987
L 517.202002 3584.522292 L 517.202002 3590.634185
L 523.405491 3579.102765 L 523.405491 3585.298383
L 529.608981 3573.73515 L 529.608981 3579.962581
L 535.81247 3568.90378 L 535.81247 3575.125603
L 542.01596 3564.566575 L 542.01596 3570.620777
L 548.219449 3561.311301 L 548.219449 3566.484479
L 554.422938 3558.520687 L 554.422938 3562.740764
L 560.626428 3555.846762 L 560.626428 3559.22939
L 566.829917 3553.172837 L 566.829917 3555.932643
L 573.033407 3550.676537 L 573.033407 3553.170711
L 579.236896 3548.219227 L 579.236896 3550.566685
L 585.440386 3545.761918 L 585.440386 3547.962659
L 591.643875 3543.304608 L 591.643875 3545.358634
L 597.847365 3540.847298 L 597.847365 3542.754608
L 604.050854 3538.389989 L 604.050854 3540.150582
L 610.254343 3535.932679 L 610.254343 3537.546556
L 616.457833 3533.475369 L 616.457833 3534.942531
L 622.661322 3531.01806 L 622.661322 3532.338505
L 628.864812 3528.56075 L 628.864812 3529.734479
L 635.068301 3526.10344 L 635.068301 3527.130453
L 641.271791 3523.646131 L 641.271791 3524.526427
L 647.47528 3521.188821 L 647.47528 3521.922402
L 653.67877 3518.731511 L 653.67877 3519.318376
L 659.882259 3516.274202 L 659.882259 3516.71435
L 666.085748 3513.816892 L 666.085748 3514.110324
L 672.289238 3511.359582 L 672.289238 3511.506299
L 678.492727 3508.902273 L 678.492727 3508.902273
" clip-path="url(#pf4a32a0596)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#p00ef351c31)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_39"> <g id="patch_39">
<path d="M 33.64 4003.71 <path d="M 33.64 4003.71
...@@ -4314,7 +4312,7 @@ z ...@@ -4314,7 +4312,7 @@ z
<g id="xtick_43"> <g id="xtick_43">
<g id="line2d_119"> <g id="line2d_119">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="64.347273" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="64.347273" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_111"> <g id="text_111">
...@@ -4329,7 +4327,7 @@ z ...@@ -4329,7 +4327,7 @@ z
<g id="xtick_44"> <g id="xtick_44">
<g id="line2d_120"> <g id="line2d_120">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="187.176364" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="187.176364" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_112"> <g id="text_112">
...@@ -4344,7 +4342,7 @@ z ...@@ -4344,7 +4342,7 @@ z
<g id="xtick_45"> <g id="xtick_45">
<g id="line2d_121"> <g id="line2d_121">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="310.005455" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="310.005455" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_113"> <g id="text_113">
...@@ -4359,7 +4357,7 @@ z ...@@ -4359,7 +4357,7 @@ z
<g id="xtick_46"> <g id="xtick_46">
<g id="line2d_122"> <g id="line2d_122">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="432.834545" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="432.834545" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_114"> <g id="text_114">
...@@ -4374,7 +4372,7 @@ z ...@@ -4374,7 +4372,7 @@ z
<g id="xtick_47"> <g id="xtick_47">
<g id="line2d_123"> <g id="line2d_123">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="555.663636" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="555.663636" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_115"> <g id="text_115">
...@@ -4389,7 +4387,7 @@ z ...@@ -4389,7 +4387,7 @@ z
<g id="xtick_48"> <g id="xtick_48">
<g id="line2d_124"> <g id="line2d_124">
<g> <g>
<use xlink:href="#m9e6e3541e6" x="678.492727" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc6b238e9c4" x="678.492727" y="4580.12" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_116"> <g id="text_116">
...@@ -4406,7 +4404,7 @@ z ...@@ -4406,7 +4404,7 @@ z
<g id="ytick_43"> <g id="ytick_43">
<g id="line2d_125"> <g id="line2d_125">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="4556.557727" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="4556.557727" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_117"> <g id="text_117">
...@@ -4421,7 +4419,7 @@ z ...@@ -4421,7 +4419,7 @@ z
<g id="ytick_44"> <g id="ytick_44">
<g id="line2d_126"> <g id="line2d_126">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="4462.308636" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="4462.308636" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_118"> <g id="text_118">
...@@ -4436,7 +4434,7 @@ z ...@@ -4436,7 +4434,7 @@ z
<g id="ytick_45"> <g id="ytick_45">
<g id="line2d_127"> <g id="line2d_127">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="4368.059545" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="4368.059545" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_119"> <g id="text_119">
...@@ -4451,7 +4449,7 @@ z ...@@ -4451,7 +4449,7 @@ z
<g id="ytick_46"> <g id="ytick_46">
<g id="line2d_128"> <g id="line2d_128">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="4273.810455" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="4273.810455" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_120"> <g id="text_120">
...@@ -4466,7 +4464,7 @@ z ...@@ -4466,7 +4464,7 @@ z
<g id="ytick_47"> <g id="ytick_47">
<g id="line2d_129"> <g id="line2d_129">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="4179.561364" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="4179.561364" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_121"> <g id="text_121">
...@@ -4481,7 +4479,7 @@ z ...@@ -4481,7 +4479,7 @@ z
<g id="ytick_48"> <g id="ytick_48">
<g id="line2d_130"> <g id="line2d_130">
<g> <g>
<use xlink:href="#m7a20b041e6" x="33.64" y="4085.312273" style="stroke: #000000; stroke-width: 0.8"/> <use xlink:href="#mc900691483" x="33.64" y="4085.312273" style="stroke: #000000; stroke-width: 0.8"/>
</g> </g>
</g> </g>
<g id="text_122"> <g id="text_122">
...@@ -4496,106 +4494,106 @@ z ...@@ -4496,106 +4494,106 @@ z
</g> </g>
<g id="line2d_131"> <g id="line2d_131">
<path d="M 64.347273 4556.557727 <path d="M 64.347273 4556.557727
L 70.550762 4551.138201 L 70.550762 4551.221925
L 76.754252 4545.718674 L 76.754252 4545.886123
L 82.957741 4540.299148 L 82.957741 4540.550321
L 89.16123 4534.879621 L 89.16123 4535.214519
L 95.36472 4529.460095 L 95.36472 4529.878718
L 101.568209 4524.040568 L 101.568209 4524.542916
L 107.771699 4518.621042 L 107.771699 4519.207114
L 113.975188 4513.201515 L 113.975188 4513.871312
L 120.178678 4507.781989 L 120.178678 4508.53551
L 126.382167 4502.362462 L 126.382167 4503.199708
L 132.585657 4496.942936 L 132.585657 4497.863906
L 138.789146 4491.523409 L 138.789146 4492.528104
L 144.992635 4486.103883 L 144.992635 4487.192302
L 151.196125 4480.684356 L 151.196125 4481.8565
L 157.399614 4475.26483 L 157.399614 4476.520698
L 163.603104 4469.845303 L 163.603104 4471.184896
L 169.806593 4464.425776 L 169.806593 4465.849094
L 176.010083 4459.00625 L 176.010083 4460.513292
L 182.213572 4453.586723 L 182.213572 4455.17749
L 188.417062 4448.167197 L 188.417062 4449.841688
L 194.620551 4442.74767 L 194.620551 4444.505886
L 200.82404 4437.328144 L 200.82404 4439.170084
L 207.02753 4431.908617 L 207.02753 4433.834282
L 213.231019 4426.489091 L 213.231019 4428.498481
L 219.434509 4421.069564 L 219.434509 4423.162679
L 225.637998 4415.650038 L 225.637998 4417.826877
L 231.841488 4410.230511 L 231.841488 4412.491075
L 238.044977 4404.810985 L 238.044977 4407.155273
L 244.248466 4399.391458 L 244.248466 4401.819471
L 250.451956 4393.971932 L 250.451956 4396.483669
L 256.655445 4388.552405 L 256.655445 4391.147867
L 262.858935 4383.132879 L 262.858935 4385.812065
L 269.062424 4377.713352 L 269.062424 4380.476263
L 275.265914 4372.293826 L 275.265914 4375.140461
L 281.469403 4366.874299 L 281.469403 4369.804659
L 287.672893 4361.454773 L 287.672893 4364.468857
L 293.876382 4356.035246 L 293.876382 4359.133055
L 300.079871 4350.61572 L 300.079871 4353.797253
L 306.283361 4345.196193 L 306.283361 4348.461451
L 312.48685 4339.776667 L 312.48685 4343.125649
L 318.69034 4334.35714 L 318.69034 4337.789847
L 324.893829 4328.937614 L 324.893829 4332.454045
L 331.097319 4323.518087 L 331.097319 4327.118244
L 337.300808 4318.098561 L 337.300808 4321.782442
L 343.504298 4312.679034 L 343.504298 4316.44664
L 349.707787 4307.259507 L 349.707787 4311.110838
L 355.911276 4301.839981 L 355.911276 4305.775036
L 362.114766 4296.420454 L 362.114766 4300.439234
L 368.318255 4291.000928 L 368.318255 4295.103432
L 374.521745 4285.581401 L 374.521745 4289.76763
L 380.725234 4280.161875 L 380.725234 4284.431828
L 386.928724 4274.742348 L 386.928724 4279.096026
L 393.132213 4269.322822 L 393.132213 4273.760224
L 399.335702 4263.903295 L 399.335702 4268.424422
L 405.539192 4258.483769 L 405.539192 4263.08862
L 411.742681 4253.064242 L 411.742681 4257.752818
L 417.946171 4247.644716 L 417.946171 4252.417016
L 424.14966 4242.225189 L 424.14966 4247.081214
L 430.35315 4236.805663 L 430.35315 4241.745412
L 436.556639 4231.386136 L 436.556639 4236.40961
L 442.760129 4225.96661 L 442.760129 4231.073808
L 448.963618 4220.547083 L 448.963618 4225.738007
L 455.167107 4215.127557 L 455.167107 4220.402205
L 461.370597 4209.70803 L 461.370597 4215.066403
L 467.574086 4204.288504 L 467.574086 4209.730601
L 473.777576 4198.868977 L 473.777576 4204.394799
L 479.981065 4193.449451 L 479.981065 4199.058997
L 486.184555 4188.029924 L 486.184555 4193.723195
L 492.388044 4182.610398 L 492.388044 4188.387393
L 498.591534 4177.190871 L 498.591534 4183.051591
L 504.795023 4171.771345 L 504.795023 4177.715789
L 510.998512 4166.351818 L 510.998512 4172.379987
L 517.202002 4160.932292 L 517.202002 4167.044185
L 523.405491 4155.512765 L 523.405491 4161.708383
L 529.608981 4150.14515 L 529.608981 4156.372581
L 535.81247 4145.31378 L 535.81247 4151.535603
L 542.01596 4140.976575 L 542.01596 4147.030777
L 548.219449 4137.721301 L 548.219449 4142.894479
L 554.422938 4134.930687 L 554.422938 4139.150764
L 560.626428 4132.256762 L 560.626428 4135.63939
L 566.829917 4129.582837 L 566.829917 4132.342643
L 573.033407 4127.086537 L 573.033407 4129.580711
L 579.236896 4124.629227 L 579.236896 4126.976685
L 585.440386 4122.171918 L 585.440386 4124.372659
L 591.643875 4119.714608 L 591.643875 4121.768634
L 597.847365 4117.257298 L 597.847365 4119.164608
L 604.050854 4114.799989 L 604.050854 4116.560582
L 610.254343 4112.342679 L 610.254343 4113.956556
L 616.457833 4109.885369 L 616.457833 4111.352531
L 622.661322 4107.42806 L 622.661322 4108.748505
L 628.864812 4104.97075 L 628.864812 4106.144479
L 635.068301 4102.51344 L 635.068301 4103.540453
L 641.271791 4100.056131 L 641.271791 4100.936427
L 647.47528 4097.598821 L 647.47528 4098.332402
L 653.67877 4095.141511 L 653.67877 4095.728376
L 659.882259 4092.684202 L 659.882259 4093.12435
L 666.085748 4090.226892 L 666.085748 4090.520324
L 672.289238 4087.769582 L 672.289238 4087.916299
L 678.492727 4085.312273 L 678.492727 4085.312273
" clip-path="url(#p4007529095)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/> " clip-path="url(#peccf40cbf4)" style="fill: none; stroke: #0000ff; stroke-opacity: 0.8; stroke-width: 2; stroke-linecap: square"/>
</g> </g>
<g id="patch_45"> <g id="patch_45">
<path d="M 33.64 4580.12 <path d="M 33.64 4580.12
...@@ -4698,28 +4696,28 @@ L 570.846875 4565.540312 ...@@ -4698,28 +4696,28 @@ L 570.846875 4565.540312
</g> </g>
</g> </g>
<defs> <defs>
<clipPath id="p1a09486dbe"> <clipPath id="p538b22e7e9">
<rect x="112.235" y="26.88" width="518.37" height="518.37"/> <rect x="112.235" y="26.88" width="518.37" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="p5a336d0e7b"> <clipPath id="p7148eb9ad5">
<rect x="33.64" y="603.29" width="675.56" height="518.37"/> <rect x="33.64" y="603.29" width="675.56" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="peb075df79f"> <clipPath id="p9df4b0b96e">
<rect x="33.64" y="1179.7" width="675.56" height="518.37"/> <rect x="33.64" y="1179.7" width="675.56" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="p2c9bedf538"> <clipPath id="p427c524879">
<rect x="33.64" y="1756.11" width="675.56" height="518.37"/> <rect x="33.64" y="1756.11" width="675.56" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="p683eef2ab0"> <clipPath id="pe1d5f46805">
<rect x="33.64" y="2332.52" width="675.56" height="518.37"/> <rect x="33.64" y="2332.52" width="675.56" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="p8a8efd232b"> <clipPath id="pc0a05cb78e">
<rect x="33.64" y="2908.93" width="675.56" height="518.37"/> <rect x="33.64" y="2908.93" width="675.56" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="pf4a32a0596"> <clipPath id="p00ef351c31">
<rect x="33.64" y="3485.34" width="675.56" height="518.37"/> <rect x="33.64" y="3485.34" width="675.56" height="518.37"/>
</clipPath> </clipPath>
<clipPath id="p4007529095"> <clipPath id="peccf40cbf4">
<rect x="33.64" y="4061.75" width="675.56" height="518.37"/> <rect x="33.64" y="4061.75" width="675.56" height="518.37"/>
</clipPath> </clipPath>
</defs> </defs>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment