@owenlamont/ryl 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (216) hide show
  1. package/README.md +13 -0
  2. package/bin/ryl.js +195 -1
  3. package/package.json +35 -13
  4. package/.github/CODEOWNERS +0 -1
  5. package/.github/dependabot.yml +0 -13
  6. package/.github/workflows/ci.yml +0 -107
  7. package/.github/workflows/release.yml +0 -613
  8. package/.github/workflows/update_dependencies.yml +0 -61
  9. package/.github/workflows/update_linters.yml +0 -56
  10. package/.pre-commit-config.yaml +0 -87
  11. package/.yamllint +0 -4
  12. package/AGENTS.md +0 -200
  13. package/Cargo.lock +0 -908
  14. package/Cargo.toml +0 -32
  15. package/clippy.toml +0 -1
  16. package/docs/config-presets.md +0 -100
  17. package/img/benchmark-5x5-5runs.svg +0 -2176
  18. package/pyproject.toml +0 -42
  19. package/ruff.toml +0 -107
  20. package/rumdl.toml +0 -20
  21. package/rust-toolchain.toml +0 -3
  22. package/rustfmt.toml +0 -3
  23. package/scripts/benchmark_perf_vs_yamllint.py +0 -400
  24. package/scripts/coverage-missing.ps1 +0 -80
  25. package/scripts/coverage-missing.sh +0 -60
  26. package/src/bin/discover_config_bin.rs +0 -24
  27. package/src/cli_support.rs +0 -33
  28. package/src/conf/mod.rs +0 -85
  29. package/src/config.rs +0 -2099
  30. package/src/decoder.rs +0 -326
  31. package/src/discover.rs +0 -31
  32. package/src/lib.rs +0 -19
  33. package/src/lint.rs +0 -558
  34. package/src/main.rs +0 -535
  35. package/src/migrate.rs +0 -233
  36. package/src/rules/anchors.rs +0 -517
  37. package/src/rules/braces.rs +0 -77
  38. package/src/rules/brackets.rs +0 -77
  39. package/src/rules/colons.rs +0 -475
  40. package/src/rules/commas.rs +0 -372
  41. package/src/rules/comments.rs +0 -299
  42. package/src/rules/comments_indentation.rs +0 -243
  43. package/src/rules/document_end.rs +0 -175
  44. package/src/rules/document_start.rs +0 -84
  45. package/src/rules/empty_lines.rs +0 -152
  46. package/src/rules/empty_values.rs +0 -255
  47. package/src/rules/float_values.rs +0 -259
  48. package/src/rules/flow_collection.rs +0 -562
  49. package/src/rules/hyphens.rs +0 -104
  50. package/src/rules/indentation.rs +0 -803
  51. package/src/rules/key_duplicates.rs +0 -218
  52. package/src/rules/key_ordering.rs +0 -303
  53. package/src/rules/line_length.rs +0 -326
  54. package/src/rules/mod.rs +0 -25
  55. package/src/rules/new_line_at_end_of_file.rs +0 -23
  56. package/src/rules/new_lines.rs +0 -95
  57. package/src/rules/octal_values.rs +0 -121
  58. package/src/rules/quoted_strings.rs +0 -577
  59. package/src/rules/span_utils.rs +0 -37
  60. package/src/rules/trailing_spaces.rs +0 -65
  61. package/src/rules/truthy.rs +0 -420
  62. package/tests/brackets_carriage_return.rs +0 -114
  63. package/tests/build_global_cfg_error.rs +0 -23
  64. package/tests/cli_anchors_rule.rs +0 -143
  65. package/tests/cli_braces_rule.rs +0 -104
  66. package/tests/cli_brackets_rule.rs +0 -104
  67. package/tests/cli_colons_rule.rs +0 -65
  68. package/tests/cli_commas_rule.rs +0 -104
  69. package/tests/cli_comments_indentation_rule.rs +0 -61
  70. package/tests/cli_comments_rule.rs +0 -67
  71. package/tests/cli_config_data_error.rs +0 -30
  72. package/tests/cli_config_flags.rs +0 -66
  73. package/tests/cli_config_migrate.rs +0 -229
  74. package/tests/cli_document_end_rule.rs +0 -92
  75. package/tests/cli_document_start_rule.rs +0 -92
  76. package/tests/cli_empty_lines_rule.rs +0 -87
  77. package/tests/cli_empty_values_rule.rs +0 -68
  78. package/tests/cli_env_config.rs +0 -34
  79. package/tests/cli_exit_and_errors.rs +0 -41
  80. package/tests/cli_file_encoding.rs +0 -203
  81. package/tests/cli_float_values_rule.rs +0 -64
  82. package/tests/cli_format_options.rs +0 -316
  83. package/tests/cli_global_cfg_relaxed.rs +0 -20
  84. package/tests/cli_hyphens_rule.rs +0 -104
  85. package/tests/cli_indentation_rule.rs +0 -65
  86. package/tests/cli_invalid_project_config.rs +0 -39
  87. package/tests/cli_key_duplicates_rule.rs +0 -104
  88. package/tests/cli_key_ordering_rule.rs +0 -59
  89. package/tests/cli_line_length_rule.rs +0 -85
  90. package/tests/cli_list_files.rs +0 -29
  91. package/tests/cli_new_line_rule.rs +0 -141
  92. package/tests/cli_new_lines_rule.rs +0 -119
  93. package/tests/cli_octal_values_rule.rs +0 -60
  94. package/tests/cli_quoted_strings_rule.rs +0 -47
  95. package/tests/cli_toml_config.rs +0 -119
  96. package/tests/cli_trailing_spaces_rule.rs +0 -77
  97. package/tests/cli_truthy_rule.rs +0 -83
  98. package/tests/cli_yaml_files_negation.rs +0 -45
  99. package/tests/colons_rule.rs +0 -303
  100. package/tests/common/compat.rs +0 -114
  101. package/tests/common/fake_env.rs +0 -93
  102. package/tests/common/mod.rs +0 -1
  103. package/tests/conf_builtin.rs +0 -9
  104. package/tests/config_anchors.rs +0 -84
  105. package/tests/config_braces.rs +0 -121
  106. package/tests/config_brackets.rs +0 -127
  107. package/tests/config_commas.rs +0 -79
  108. package/tests/config_comments.rs +0 -65
  109. package/tests/config_comments_indentation.rs +0 -20
  110. package/tests/config_deep_merge_nonstring_key.rs +0 -24
  111. package/tests/config_document_end.rs +0 -54
  112. package/tests/config_document_start.rs +0 -55
  113. package/tests/config_empty_lines.rs +0 -48
  114. package/tests/config_empty_values.rs +0 -35
  115. package/tests/config_env_errors.rs +0 -23
  116. package/tests/config_env_invalid_inline.rs +0 -15
  117. package/tests/config_env_missing.rs +0 -63
  118. package/tests/config_env_shim.rs +0 -301
  119. package/tests/config_explicit_file_parse_error.rs +0 -55
  120. package/tests/config_extended_features.rs +0 -225
  121. package/tests/config_extends_inline.rs +0 -185
  122. package/tests/config_extends_sequence.rs +0 -18
  123. package/tests/config_find_project_home_boundary.rs +0 -54
  124. package/tests/config_find_project_two_files_in_cwd.rs +0 -47
  125. package/tests/config_float_values.rs +0 -34
  126. package/tests/config_from_yaml_paths.rs +0 -32
  127. package/tests/config_hyphens.rs +0 -51
  128. package/tests/config_ignore_errors.rs +0 -243
  129. package/tests/config_ignore_overrides.rs +0 -83
  130. package/tests/config_indentation.rs +0 -65
  131. package/tests/config_invalid_globs.rs +0 -16
  132. package/tests/config_invalid_types.rs +0 -19
  133. package/tests/config_key_duplicates.rs +0 -34
  134. package/tests/config_key_ordering.rs +0 -70
  135. package/tests/config_line_length.rs +0 -65
  136. package/tests/config_locale.rs +0 -111
  137. package/tests/config_merge.rs +0 -26
  138. package/tests/config_new_lines.rs +0 -89
  139. package/tests/config_octal_values.rs +0 -33
  140. package/tests/config_quoted_strings.rs +0 -195
  141. package/tests/config_rule_level.rs +0 -147
  142. package/tests/config_rules_non_string_keys.rs +0 -23
  143. package/tests/config_scalar_overrides.rs +0 -27
  144. package/tests/config_to_toml.rs +0 -110
  145. package/tests/config_toml_coverage.rs +0 -80
  146. package/tests/config_toml_discovery.rs +0 -304
  147. package/tests/config_trailing_spaces.rs +0 -152
  148. package/tests/config_truthy.rs +0 -77
  149. package/tests/config_yaml_files.rs +0 -62
  150. package/tests/config_yaml_files_all_non_string.rs +0 -15
  151. package/tests/config_yaml_files_empty.rs +0 -30
  152. package/tests/coverage_commas.rs +0 -46
  153. package/tests/decoder_decode.rs +0 -338
  154. package/tests/discover_config_bin_all.rs +0 -66
  155. package/tests/discover_config_bin_env_invalid_yaml.rs +0 -26
  156. package/tests/discover_config_bin_project_config_parse_error.rs +0 -24
  157. package/tests/discover_config_bin_user_global_error.rs +0 -26
  158. package/tests/discover_module.rs +0 -30
  159. package/tests/discover_per_file_dir.rs +0 -10
  160. package/tests/discover_per_file_project_config_error.rs +0 -21
  161. package/tests/float_values.rs +0 -43
  162. package/tests/lint_multi_errors.rs +0 -32
  163. package/tests/main_yaml_ok_filtering.rs +0 -30
  164. package/tests/migrate_module.rs +0 -259
  165. package/tests/resolve_ctx_empty_parent.rs +0 -16
  166. package/tests/rule_anchors.rs +0 -442
  167. package/tests/rule_braces.rs +0 -258
  168. package/tests/rule_brackets.rs +0 -217
  169. package/tests/rule_commas.rs +0 -205
  170. package/tests/rule_comments.rs +0 -197
  171. package/tests/rule_comments_indentation.rs +0 -127
  172. package/tests/rule_document_end.rs +0 -118
  173. package/tests/rule_document_start.rs +0 -60
  174. package/tests/rule_empty_lines.rs +0 -96
  175. package/tests/rule_empty_values.rs +0 -102
  176. package/tests/rule_float_values.rs +0 -109
  177. package/tests/rule_hyphens.rs +0 -65
  178. package/tests/rule_indentation.rs +0 -455
  179. package/tests/rule_key_duplicates.rs +0 -76
  180. package/tests/rule_key_ordering.rs +0 -207
  181. package/tests/rule_line_length.rs +0 -200
  182. package/tests/rule_new_lines.rs +0 -51
  183. package/tests/rule_octal_values.rs +0 -53
  184. package/tests/rule_quoted_strings.rs +0 -290
  185. package/tests/rule_trailing_spaces.rs +0 -41
  186. package/tests/rule_truthy.rs +0 -236
  187. package/tests/user_global_invalid_yaml.rs +0 -32
  188. package/tests/yamllint_compat_anchors.rs +0 -280
  189. package/tests/yamllint_compat_braces.rs +0 -411
  190. package/tests/yamllint_compat_brackets.rs +0 -364
  191. package/tests/yamllint_compat_colons.rs +0 -298
  192. package/tests/yamllint_compat_colors.rs +0 -80
  193. package/tests/yamllint_compat_commas.rs +0 -375
  194. package/tests/yamllint_compat_comments.rs +0 -167
  195. package/tests/yamllint_compat_comments_indentation.rs +0 -281
  196. package/tests/yamllint_compat_config.rs +0 -170
  197. package/tests/yamllint_compat_document_end.rs +0 -243
  198. package/tests/yamllint_compat_document_start.rs +0 -136
  199. package/tests/yamllint_compat_empty_lines.rs +0 -117
  200. package/tests/yamllint_compat_empty_values.rs +0 -179
  201. package/tests/yamllint_compat_float_values.rs +0 -216
  202. package/tests/yamllint_compat_hyphens.rs +0 -223
  203. package/tests/yamllint_compat_indentation.rs +0 -398
  204. package/tests/yamllint_compat_key_duplicates.rs +0 -139
  205. package/tests/yamllint_compat_key_ordering.rs +0 -170
  206. package/tests/yamllint_compat_line_length.rs +0 -375
  207. package/tests/yamllint_compat_list.rs +0 -127
  208. package/tests/yamllint_compat_new_line.rs +0 -133
  209. package/tests/yamllint_compat_newline_types.rs +0 -185
  210. package/tests/yamllint_compat_octal_values.rs +0 -172
  211. package/tests/yamllint_compat_quoted_strings.rs +0 -154
  212. package/tests/yamllint_compat_syntax.rs +0 -200
  213. package/tests/yamllint_compat_trailing_spaces.rs +0 -162
  214. package/tests/yamllint_compat_truthy.rs +0 -130
  215. package/tests/yamllint_compat_yaml_files.rs +0 -81
  216. package/typos.toml +0 -2
@@ -1,2176 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
3
- "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1008pt" height="396pt" viewBox="0 0 1008 396" xmlns="http://www.w3.org/2000/svg" version="1.1">
5
- <metadata>
6
- <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#">
7
- <cc:Work>
8
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
- <dc:date>2026-03-01T01:55:10.860080</dc:date>
10
- <dc:format>image/svg+xml</dc:format>
11
- <dc:creator>
12
- <cc:Agent>
13
- <dc:title>Matplotlib v3.10.8, https://matplotlib.org/</dc:title>
14
- </cc:Agent>
15
- </dc:creator>
16
- </cc:Work>
17
- </rdf:RDF>
18
- </metadata>
19
- <defs>
20
- <style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
21
- </defs>
22
- <g id="figure_1">
23
- <g id="patch_1">
24
- <path d="M 0 396
25
- L 1008 396
26
- L 1008 0
27
- L 0 0
28
- z
29
- " style="fill: #ffffff"/>
30
- </g>
31
- <g id="axes_1">
32
- <g id="patch_2">
33
- <path d="M 42.33 357.54
34
- L 514.365 357.54
35
- L 514.365 48.48
36
- L 42.33 48.48
37
- z
38
- " style="fill: #ffffff"/>
39
- </g>
40
- <g id="matplotlib.axis_1">
41
- <g id="xtick_1">
42
- <g id="line2d_1">
43
- <path d="M 63.786136 357.54
44
- L 63.786136 48.48
45
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
46
- </g>
47
- <g id="line2d_2"/>
48
- <g id="text_1">
49
- <!-- 20 -->
50
- <g style="fill: #262626" transform="translate(58.225199 368.286875) scale(0.1 -0.1)">
51
- <defs>
52
- <path id="LiberationSans-32" d="M 322 0
53
- L 322 397
54
- Q 481 763 711 1042
55
- Q 941 1322 1194 1548
56
- Q 1447 1775 1695 1969
57
- Q 1944 2163 2144 2356
58
- Q 2344 2550 2467 2762
59
- Q 2591 2975 2591 3244
60
- Q 2591 3606 2378 3806
61
- Q 2166 4006 1788 4006
62
- Q 1428 4006 1195 3811
63
- Q 963 3616 922 3263
64
- L 347 3316
65
- Q 409 3844 795 4156
66
- Q 1181 4469 1788 4469
67
- Q 2453 4469 2811 4155
68
- Q 3169 3841 3169 3263
69
- Q 3169 3006 3051 2753
70
- Q 2934 2500 2703 2247
71
- Q 2472 1994 1819 1463
72
- Q 1459 1169 1246 933
73
- Q 1034 697 941 478
74
- L 3238 478
75
- L 3238 0
76
- L 322 0
77
- z
78
- " transform="scale(0.015625)"/>
79
- <path id="LiberationSans-30" d="M 3309 2203
80
- Q 3309 1100 2920 518
81
- Q 2531 -63 1772 -63
82
- Q 1013 -63 631 515
83
- Q 250 1094 250 2203
84
- Q 250 3338 620 3903
85
- Q 991 4469 1791 4469
86
- Q 2569 4469 2939 3897
87
- Q 3309 3325 3309 2203
88
- z
89
- M 2738 2203
90
- Q 2738 3156 2517 3584
91
- Q 2297 4013 1791 4013
92
- Q 1272 4013 1045 3591
93
- Q 819 3169 819 2203
94
- Q 819 1266 1048 831
95
- Q 1278 397 1778 397
96
- Q 2275 397 2506 840
97
- Q 2738 1284 2738 2203
98
- z
99
- " transform="scale(0.015625)"/>
100
- </defs>
101
- <use xlink:href="#LiberationSans-32"/>
102
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
103
- </g>
104
- </g>
105
- </g>
106
- <g id="xtick_2">
107
- <g id="line2d_3">
108
- <path d="M 117.426477 357.54
109
- L 117.426477 48.48
110
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
111
- </g>
112
- <g id="line2d_4"/>
113
- <g id="text_2">
114
- <!-- 30 -->
115
- <g style="fill: #262626" transform="translate(111.86554 368.286875) scale(0.1 -0.1)">
116
- <defs>
117
- <path id="LiberationSans-33" d="M 3278 1216
118
- Q 3278 606 2890 271
119
- Q 2503 -63 1784 -63
120
- Q 1116 -63 717 239
121
- Q 319 541 244 1131
122
- L 825 1184
123
- Q 938 403 1784 403
124
- Q 2209 403 2451 612
125
- Q 2694 822 2694 1234
126
- Q 2694 1594 2417 1795
127
- Q 2141 1997 1619 1997
128
- L 1300 1997
129
- L 1300 2484
130
- L 1606 2484
131
- Q 2069 2484 2323 2686
132
- Q 2578 2888 2578 3244
133
- Q 2578 3597 2370 3801
134
- Q 2163 4006 1753 4006
135
- Q 1381 4006 1151 3815
136
- Q 922 3625 884 3278
137
- L 319 3322
138
- Q 381 3863 767 4166
139
- Q 1153 4469 1759 4469
140
- Q 2422 4469 2789 4161
141
- Q 3156 3853 3156 3303
142
- Q 3156 2881 2920 2617
143
- Q 2684 2353 2234 2259
144
- L 2234 2247
145
- Q 2728 2194 3003 1916
146
- Q 3278 1638 3278 1216
147
- z
148
- " transform="scale(0.015625)"/>
149
- </defs>
150
- <use xlink:href="#LiberationSans-33"/>
151
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
152
- </g>
153
- </g>
154
- </g>
155
- <g id="xtick_3">
156
- <g id="line2d_5">
157
- <path d="M 171.066818 357.54
158
- L 171.066818 48.48
159
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
160
- </g>
161
- <g id="line2d_6"/>
162
- <g id="text_3">
163
- <!-- 40 -->
164
- <g style="fill: #262626" transform="translate(165.505881 368.286875) scale(0.1 -0.1)">
165
- <defs>
166
- <path id="LiberationSans-34" d="M 2753 997
167
- L 2753 0
168
- L 2222 0
169
- L 2222 997
170
- L 147 997
171
- L 147 1434
172
- L 2163 4403
173
- L 2753 4403
174
- L 2753 1441
175
- L 3372 1441
176
- L 3372 997
177
- L 2753 997
178
- z
179
- M 2222 3769
180
- Q 2216 3750 2134 3603
181
- Q 2053 3456 2013 3397
182
- L 884 1734
183
- L 716 1503
184
- L 666 1441
185
- L 2222 1441
186
- L 2222 3769
187
- z
188
- " transform="scale(0.015625)"/>
189
- </defs>
190
- <use xlink:href="#LiberationSans-34"/>
191
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
192
- </g>
193
- </g>
194
- </g>
195
- <g id="xtick_4">
196
- <g id="line2d_7">
197
- <path d="M 224.707159 357.54
198
- L 224.707159 48.48
199
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
200
- </g>
201
- <g id="line2d_8"/>
202
- <g id="text_4">
203
- <!-- 50 -->
204
- <g style="fill: #262626" transform="translate(219.146222 368.286875) scale(0.1 -0.1)">
205
- <defs>
206
- <path id="LiberationSans-35" d="M 3291 1434
207
- Q 3291 738 2877 337
208
- Q 2463 -63 1728 -63
209
- Q 1113 -63 734 206
210
- Q 356 475 256 984
211
- L 825 1050
212
- Q 1003 397 1741 397
213
- Q 2194 397 2450 670
214
- Q 2706 944 2706 1422
215
- Q 2706 1838 2448 2094
216
- Q 2191 2350 1753 2350
217
- Q 1525 2350 1328 2278
218
- Q 1131 2206 934 2034
219
- L 384 2034
220
- L 531 4403
221
- L 3034 4403
222
- L 3034 3925
223
- L 1044 3925
224
- L 959 2528
225
- Q 1325 2809 1869 2809
226
- Q 2519 2809 2905 2428
227
- Q 3291 2047 3291 1434
228
- z
229
- " transform="scale(0.015625)"/>
230
- </defs>
231
- <use xlink:href="#LiberationSans-35"/>
232
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
233
- </g>
234
- </g>
235
- </g>
236
- <g id="xtick_5">
237
- <g id="line2d_9">
238
- <path d="M 278.3475 357.54
239
- L 278.3475 48.48
240
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
241
- </g>
242
- <g id="line2d_10"/>
243
- <g id="text_5">
244
- <!-- 60 -->
245
- <g style="fill: #262626" transform="translate(272.786563 368.286875) scale(0.1 -0.1)">
246
- <defs>
247
- <path id="LiberationSans-36" d="M 3278 1441
248
- Q 3278 744 2900 340
249
- Q 2522 -63 1856 -63
250
- Q 1113 -63 719 490
251
- Q 325 1044 325 2100
252
- Q 325 3244 734 3856
253
- Q 1144 4469 1900 4469
254
- Q 2897 4469 3156 3572
255
- L 2619 3475
256
- Q 2453 4013 1894 4013
257
- Q 1413 4013 1148 3564
258
- Q 884 3116 884 2266
259
- Q 1038 2550 1316 2698
260
- Q 1594 2847 1953 2847
261
- Q 2563 2847 2920 2465
262
- Q 3278 2084 3278 1441
263
- z
264
- M 2706 1416
265
- Q 2706 1894 2472 2153
266
- Q 2238 2413 1819 2413
267
- Q 1425 2413 1183 2183
268
- Q 941 1953 941 1550
269
- Q 941 1041 1192 716
270
- Q 1444 391 1838 391
271
- Q 2244 391 2475 664
272
- Q 2706 938 2706 1416
273
- z
274
- " transform="scale(0.015625)"/>
275
- </defs>
276
- <use xlink:href="#LiberationSans-36"/>
277
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
278
- </g>
279
- </g>
280
- </g>
281
- <g id="xtick_6">
282
- <g id="line2d_11">
283
- <path d="M 331.987841 357.54
284
- L 331.987841 48.48
285
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
286
- </g>
287
- <g id="line2d_12"/>
288
- <g id="text_6">
289
- <!-- 70 -->
290
- <g style="fill: #262626" transform="translate(326.426903 368.286875) scale(0.1 -0.1)">
291
- <defs>
292
- <path id="LiberationSans-37" d="M 3238 3947
293
- Q 2563 2916 2284 2331
294
- Q 2006 1747 1867 1178
295
- Q 1728 609 1728 0
296
- L 1141 0
297
- Q 1141 844 1498 1776
298
- Q 1856 2709 2694 3925
299
- L 328 3925
300
- L 328 4403
301
- L 3238 4403
302
- L 3238 3947
303
- z
304
- " transform="scale(0.015625)"/>
305
- </defs>
306
- <use xlink:href="#LiberationSans-37"/>
307
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
308
- </g>
309
- </g>
310
- </g>
311
- <g id="xtick_7">
312
- <g id="line2d_13">
313
- <path d="M 385.628182 357.54
314
- L 385.628182 48.48
315
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
316
- </g>
317
- <g id="line2d_14"/>
318
- <g id="text_7">
319
- <!-- 80 -->
320
- <g style="fill: #262626" transform="translate(380.067244 368.286875) scale(0.1 -0.1)">
321
- <defs>
322
- <path id="LiberationSans-38" d="M 3281 1228
323
- Q 3281 619 2893 278
324
- Q 2506 -63 1781 -63
325
- Q 1075 -63 676 271
326
- Q 278 606 278 1222
327
- Q 278 1653 525 1947
328
- Q 772 2241 1156 2303
329
- L 1156 2316
330
- Q 797 2400 589 2681
331
- Q 381 2963 381 3341
332
- Q 381 3844 757 4156
333
- Q 1134 4469 1769 4469
334
- Q 2419 4469 2795 4162
335
- Q 3172 3856 3172 3334
336
- Q 3172 2956 2962 2675
337
- Q 2753 2394 2391 2322
338
- L 2391 2309
339
- Q 2813 2241 3047 1952
340
- Q 3281 1663 3281 1228
341
- z
342
- M 2588 3303
343
- Q 2588 4050 1769 4050
344
- Q 1372 4050 1164 3862
345
- Q 956 3675 956 3303
346
- Q 956 2925 1170 2726
347
- Q 1384 2528 1775 2528
348
- Q 2172 2528 2380 2711
349
- Q 2588 2894 2588 3303
350
- z
351
- M 2697 1281
352
- Q 2697 1691 2453 1898
353
- Q 2209 2106 1769 2106
354
- Q 1341 2106 1100 1882
355
- Q 859 1659 859 1269
356
- Q 859 359 1788 359
357
- Q 2247 359 2472 579
358
- Q 2697 800 2697 1281
359
- z
360
- " transform="scale(0.015625)"/>
361
- </defs>
362
- <use xlink:href="#LiberationSans-38"/>
363
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
364
- </g>
365
- </g>
366
- </g>
367
- <g id="xtick_8">
368
- <g id="line2d_15">
369
- <path d="M 439.268523 357.54
370
- L 439.268523 48.48
371
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
372
- </g>
373
- <g id="line2d_16"/>
374
- <g id="text_8">
375
- <!-- 90 -->
376
- <g style="fill: #262626" transform="translate(433.707585 368.286875) scale(0.1 -0.1)">
377
- <defs>
378
- <path id="LiberationSans-39" d="M 3256 2291
379
- Q 3256 1156 2842 546
380
- Q 2428 -63 1663 -63
381
- Q 1147 -63 836 154
382
- Q 525 372 391 856
383
- L 928 941
384
- Q 1097 391 1672 391
385
- Q 2156 391 2422 841
386
- Q 2688 1291 2700 2125
387
- Q 2575 1844 2272 1673
388
- Q 1969 1503 1606 1503
389
- Q 1013 1503 656 1909
390
- Q 300 2316 300 2988
391
- Q 300 3678 687 4073
392
- Q 1075 4469 1766 4469
393
- Q 2500 4469 2878 3925
394
- Q 3256 3381 3256 2291
395
- z
396
- M 2644 2834
397
- Q 2644 3366 2400 3689
398
- Q 2156 4013 1747 4013
399
- Q 1341 4013 1106 3736
400
- Q 872 3459 872 2988
401
- Q 872 2506 1106 2226
402
- Q 1341 1947 1741 1947
403
- Q 1984 1947 2193 2058
404
- Q 2403 2169 2523 2372
405
- Q 2644 2575 2644 2834
406
- z
407
- " transform="scale(0.015625)"/>
408
- </defs>
409
- <use xlink:href="#LiberationSans-39"/>
410
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
411
- </g>
412
- </g>
413
- </g>
414
- <g id="xtick_9">
415
- <g id="line2d_17">
416
- <path d="M 492.908864 357.54
417
- L 492.908864 48.48
418
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
419
- </g>
420
- <g id="line2d_18"/>
421
- <g id="text_9">
422
- <!-- 100 -->
423
- <g style="fill: #262626" transform="translate(484.567457 368.286875) scale(0.1 -0.1)">
424
- <defs>
425
- <path id="LiberationSans-31" d="M 488 0
426
- L 488 478
427
- L 1609 478
428
- L 1609 3866
429
- L 616 3156
430
- L 616 3688
431
- L 1656 4403
432
- L 2175 4403
433
- L 2175 478
434
- L 3247 478
435
- L 3247 0
436
- L 488 0
437
- z
438
- " transform="scale(0.015625)"/>
439
- </defs>
440
- <use xlink:href="#LiberationSans-31"/>
441
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
442
- <use xlink:href="#LiberationSans-30" transform="translate(111.230469 0)"/>
443
- </g>
444
- </g>
445
- </g>
446
- <g id="text_10">
447
- <!-- Number of YAML files -->
448
- <g style="fill: #262626" transform="translate(230.365469 381.60875) scale(0.1 -0.1)">
449
- <defs>
450
- <path id="LiberationSans-4e" d="M 3381 0
451
- L 1025 3750
452
- L 1041 3447
453
- L 1056 2925
454
- L 1056 0
455
- L 525 0
456
- L 525 4403
457
- L 1219 4403
458
- L 3600 628
459
- Q 3563 1241 3563 1516
460
- L 3563 4403
461
- L 4100 4403
462
- L 4100 0
463
- L 3381 0
464
- z
465
- " transform="scale(0.015625)"/>
466
- <path id="LiberationSans-75" d="M 981 3381
467
- L 981 1238
468
- Q 981 903 1047 718
469
- Q 1113 534 1256 453
470
- Q 1400 372 1678 372
471
- Q 2084 372 2318 650
472
- Q 2553 928 2553 1422
473
- L 2553 3381
474
- L 3116 3381
475
- L 3116 722
476
- Q 3116 131 3134 0
477
- L 2603 0
478
- Q 2600 16 2597 84
479
- Q 2594 153 2589 242
480
- Q 2584 331 2578 578
481
- L 2569 578
482
- Q 2375 228 2120 82
483
- Q 1866 -63 1488 -63
484
- Q 931 -63 673 214
485
- Q 416 491 416 1128
486
- L 416 3381
487
- L 981 3381
488
- z
489
- " transform="scale(0.015625)"/>
490
- <path id="LiberationSans-6d" d="M 2400 0
491
- L 2400 2144
492
- Q 2400 2634 2265 2821
493
- Q 2131 3009 1781 3009
494
- Q 1422 3009 1212 2734
495
- Q 1003 2459 1003 1959
496
- L 1003 0
497
- L 444 0
498
- L 444 2659
499
- Q 444 3250 425 3381
500
- L 956 3381
501
- Q 959 3366 962 3297
502
- Q 966 3228 970 3139
503
- Q 975 3050 981 2803
504
- L 991 2803
505
- Q 1172 3163 1406 3303
506
- Q 1641 3444 1978 3444
507
- Q 2363 3444 2586 3291
508
- Q 2809 3138 2897 2803
509
- L 2906 2803
510
- Q 3081 3144 3329 3294
511
- Q 3578 3444 3931 3444
512
- Q 4444 3444 4676 3166
513
- Q 4909 2888 4909 2253
514
- L 4909 0
515
- L 4353 0
516
- L 4353 2144
517
- Q 4353 2634 4218 2821
518
- Q 4084 3009 3734 3009
519
- Q 3366 3009 3161 2736
520
- Q 2956 2463 2956 1959
521
- L 2956 0
522
- L 2400 0
523
- z
524
- " transform="scale(0.015625)"/>
525
- <path id="LiberationSans-62" d="M 3291 1706
526
- Q 3291 -63 2047 -63
527
- Q 1663 -63 1408 76
528
- Q 1153 216 994 525
529
- L 988 525
530
- Q 988 428 975 229
531
- Q 963 31 956 0
532
- L 413 0
533
- Q 431 169 431 697
534
- L 431 4638
535
- L 994 4638
536
- L 994 3316
537
- Q 994 3113 981 2838
538
- L 994 2838
539
- Q 1150 3163 1408 3303
540
- Q 1666 3444 2047 3444
541
- Q 2688 3444 2989 3012
542
- Q 3291 2581 3291 1706
543
- z
544
- M 2700 1688
545
- Q 2700 2397 2512 2703
546
- Q 2325 3009 1903 3009
547
- Q 1428 3009 1211 2684
548
- Q 994 2359 994 1653
549
- Q 994 988 1206 670
550
- Q 1419 353 1897 353
551
- Q 2322 353 2511 667
552
- Q 2700 981 2700 1688
553
- z
554
- " transform="scale(0.015625)"/>
555
- <path id="LiberationSans-65" d="M 863 1572
556
- Q 863 991 1103 675
557
- Q 1344 359 1806 359
558
- Q 2172 359 2392 506
559
- Q 2613 653 2691 878
560
- L 3184 738
561
- Q 2881 -63 1806 -63
562
- Q 1056 -63 664 384
563
- Q 272 831 272 1713
564
- Q 272 2550 664 2997
565
- Q 1056 3444 1784 3444
566
- Q 3275 3444 3275 1647
567
- L 3275 1572
568
- L 863 1572
569
- z
570
- M 2694 2003
571
- Q 2647 2538 2422 2783
572
- Q 2197 3028 1775 3028
573
- Q 1366 3028 1127 2754
574
- Q 888 2481 869 2003
575
- L 2694 2003
576
- z
577
- " transform="scale(0.015625)"/>
578
- <path id="LiberationSans-72" d="M 444 0
579
- L 444 2594
580
- Q 444 2950 425 3381
581
- L 956 3381
582
- Q 981 2806 981 2691
583
- L 994 2691
584
- Q 1128 3125 1303 3284
585
- Q 1478 3444 1797 3444
586
- Q 1909 3444 2025 3413
587
- L 2025 2897
588
- Q 1913 2928 1725 2928
589
- Q 1375 2928 1190 2626
590
- Q 1006 2325 1006 1763
591
- L 1006 0
592
- L 444 0
593
- z
594
- " transform="scale(0.015625)"/>
595
- <path id="LiberationSans-20" transform="scale(0.015625)"/>
596
- <path id="LiberationSans-6f" d="M 3291 1694
597
- Q 3291 806 2900 371
598
- Q 2509 -63 1766 -63
599
- Q 1025 -63 647 389
600
- Q 269 841 269 1694
601
- Q 269 3444 1784 3444
602
- Q 2559 3444 2925 3017
603
- Q 3291 2591 3291 1694
604
- z
605
- M 2700 1694
606
- Q 2700 2394 2492 2711
607
- Q 2284 3028 1794 3028
608
- Q 1300 3028 1079 2704
609
- Q 859 2381 859 1694
610
- Q 859 1025 1076 689
611
- Q 1294 353 1759 353
612
- Q 2266 353 2483 678
613
- Q 2700 1003 2700 1694
614
- z
615
- " transform="scale(0.015625)"/>
616
- <path id="LiberationSans-66" d="M 1128 2972
617
- L 1128 0
618
- L 566 0
619
- L 566 2972
620
- L 91 2972
621
- L 91 3381
622
- L 566 3381
623
- L 566 3763
624
- Q 566 4225 769 4428
625
- Q 972 4631 1391 4631
626
- Q 1625 4631 1788 4594
627
- L 1788 4166
628
- Q 1647 4191 1538 4191
629
- Q 1322 4191 1225 4081
630
- Q 1128 3972 1128 3684
631
- L 1128 3381
632
- L 1788 3381
633
- L 1788 2972
634
- L 1128 2972
635
- z
636
- " transform="scale(0.015625)"/>
637
- <path id="LiberationSans-59" d="M 2428 1825
638
- L 2428 0
639
- L 1834 0
640
- L 1834 1825
641
- L 141 4403
642
- L 797 4403
643
- L 2138 2306
644
- L 3472 4403
645
- L 4128 4403
646
- L 2428 1825
647
- z
648
- " transform="scale(0.015625)"/>
649
- <path id="LiberationSans-41" d="M 3647 0
650
- L 3144 1288
651
- L 1138 1288
652
- L 631 0
653
- L 13 0
654
- L 1809 4403
655
- L 2488 4403
656
- L 4256 0
657
- L 3647 0
658
- z
659
- M 2141 3953
660
- L 2113 3866
661
- Q 2034 3606 1881 3200
662
- L 1319 1753
663
- L 2966 1753
664
- L 2400 3206
665
- Q 2313 3422 2225 3694
666
- L 2141 3953
667
- z
668
- " transform="scale(0.015625)"/>
669
- <path id="LiberationSans-4d" d="M 4269 0
670
- L 4269 2938
671
- Q 4269 3425 4297 3875
672
- Q 4144 3316 4022 3000
673
- L 2884 0
674
- L 2466 0
675
- L 1313 3000
676
- L 1138 3531
677
- L 1034 3875
678
- L 1044 3528
679
- L 1056 2938
680
- L 1056 0
681
- L 525 0
682
- L 525 4403
683
- L 1309 4403
684
- L 2481 1350
685
- Q 2544 1166 2601 955
686
- Q 2659 744 2678 650
687
- Q 2703 775 2783 1029
688
- Q 2863 1284 2891 1350
689
- L 4041 4403
690
- L 4806 4403
691
- L 4806 0
692
- L 4269 0
693
- z
694
- " transform="scale(0.015625)"/>
695
- <path id="LiberationSans-4c" d="M 525 0
696
- L 525 4403
697
- L 1122 4403
698
- L 1122 488
699
- L 3347 488
700
- L 3347 0
701
- L 525 0
702
- z
703
- " transform="scale(0.015625)"/>
704
- <path id="LiberationSans-69" d="M 428 4100
705
- L 428 4638
706
- L 991 4638
707
- L 991 4100
708
- L 428 4100
709
- z
710
- M 428 0
711
- L 428 3381
712
- L 991 3381
713
- L 991 0
714
- L 428 0
715
- z
716
- " transform="scale(0.015625)"/>
717
- <path id="LiberationSans-6c" d="M 431 0
718
- L 431 4638
719
- L 994 4638
720
- L 994 0
721
- L 431 0
722
- z
723
- " transform="scale(0.015625)"/>
724
- <path id="LiberationSans-73" d="M 2969 934
725
- Q 2969 456 2608 196
726
- Q 2247 -63 1597 -63
727
- Q 966 -63 623 145
728
- Q 281 353 178 794
729
- L 675 891
730
- Q 747 619 972 492
731
- Q 1197 366 1597 366
732
- Q 2025 366 2223 497
733
- Q 2422 628 2422 891
734
- Q 2422 1091 2284 1216
735
- Q 2147 1341 1841 1422
736
- L 1438 1528
737
- Q 953 1653 748 1773
738
- Q 544 1894 428 2066
739
- Q 313 2238 313 2488
740
- Q 313 2950 642 3192
741
- Q 972 3434 1603 3434
742
- Q 2163 3434 2492 3237
743
- Q 2822 3041 2909 2606
744
- L 2403 2544
745
- Q 2356 2769 2151 2889
746
- Q 1947 3009 1603 3009
747
- Q 1222 3009 1040 2893
748
- Q 859 2778 859 2544
749
- Q 859 2400 934 2306
750
- Q 1009 2213 1156 2147
751
- Q 1303 2081 1775 1966
752
- Q 2222 1853 2419 1758
753
- Q 2616 1663 2730 1547
754
- Q 2844 1431 2906 1279
755
- Q 2969 1128 2969 934
756
- z
757
- " transform="scale(0.015625)"/>
758
- </defs>
759
- <use xlink:href="#LiberationSans-4e"/>
760
- <use xlink:href="#LiberationSans-75" transform="translate(72.216797 0)"/>
761
- <use xlink:href="#LiberationSans-6d" transform="translate(127.832031 0)"/>
762
- <use xlink:href="#LiberationSans-62" transform="translate(211.132812 0)"/>
763
- <use xlink:href="#LiberationSans-65" transform="translate(266.748047 0)"/>
764
- <use xlink:href="#LiberationSans-72" transform="translate(322.363281 0)"/>
765
- <use xlink:href="#LiberationSans-20" transform="translate(355.664062 0)"/>
766
- <use xlink:href="#LiberationSans-6f" transform="translate(383.447266 0)"/>
767
- <use xlink:href="#LiberationSans-66" transform="translate(439.0625 0)"/>
768
- <use xlink:href="#LiberationSans-20" transform="translate(466.845703 0)"/>
769
- <use xlink:href="#LiberationSans-59" transform="translate(492.878906 0)"/>
770
- <use xlink:href="#LiberationSans-41" transform="translate(552.203125 0)"/>
771
- <use xlink:href="#LiberationSans-4d" transform="translate(618.902344 0)"/>
772
- <use xlink:href="#LiberationSans-4c" transform="translate(702.203125 0)"/>
773
- <use xlink:href="#LiberationSans-20" transform="translate(754.068359 0)"/>
774
- <use xlink:href="#LiberationSans-66" transform="translate(781.851562 0)"/>
775
- <use xlink:href="#LiberationSans-69" transform="translate(809.634766 0)"/>
776
- <use xlink:href="#LiberationSans-6c" transform="translate(831.851562 0)"/>
777
- <use xlink:href="#LiberationSans-65" transform="translate(854.068359 0)"/>
778
- <use xlink:href="#LiberationSans-73" transform="translate(909.683594 0)"/>
779
- </g>
780
- </g>
781
- </g>
782
- <g id="matplotlib.axis_2">
783
- <g id="ytick_1">
784
- <g id="line2d_19">
785
- <path d="M 42.33 344.311761
786
- L 514.365 344.311761
787
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
788
- </g>
789
- <g id="line2d_20"/>
790
- <g id="text_11">
791
- <!-- 0.0 -->
792
- <g style="fill: #262626" transform="translate(24.93 347.935198) scale(0.1 -0.1)">
793
- <defs>
794
- <path id="LiberationSans-2e" d="M 584 0
795
- L 584 684
796
- L 1194 684
797
- L 1194 0
798
- L 584 0
799
- z
800
- " transform="scale(0.015625)"/>
801
- </defs>
802
- <use xlink:href="#LiberationSans-30"/>
803
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
804
- <use xlink:href="#LiberationSans-30" transform="translate(83.398438 0)"/>
805
- </g>
806
- </g>
807
- </g>
808
- <g id="ytick_2">
809
- <g id="line2d_21">
810
- <path d="M 42.33 296.761899
811
- L 514.365 296.761899
812
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
813
- </g>
814
- <g id="line2d_22"/>
815
- <g id="text_12">
816
- <!-- 0.5 -->
817
- <g style="fill: #262626" transform="translate(24.93 300.385337) scale(0.1 -0.1)">
818
- <use xlink:href="#LiberationSans-30"/>
819
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
820
- <use xlink:href="#LiberationSans-35" transform="translate(83.398438 0)"/>
821
- </g>
822
- </g>
823
- </g>
824
- <g id="ytick_3">
825
- <g id="line2d_23">
826
- <path d="M 42.33 249.212038
827
- L 514.365 249.212038
828
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
829
- </g>
830
- <g id="line2d_24"/>
831
- <g id="text_13">
832
- <!-- 1.0 -->
833
- <g style="fill: #262626" transform="translate(24.93 252.835475) scale(0.1 -0.1)">
834
- <use xlink:href="#LiberationSans-31"/>
835
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
836
- <use xlink:href="#LiberationSans-30" transform="translate(83.398438 0)"/>
837
- </g>
838
- </g>
839
- </g>
840
- <g id="ytick_4">
841
- <g id="line2d_25">
842
- <path d="M 42.33 201.662176
843
- L 514.365 201.662176
844
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
845
- </g>
846
- <g id="line2d_26"/>
847
- <g id="text_14">
848
- <!-- 1.5 -->
849
- <g style="fill: #262626" transform="translate(24.93 205.285614) scale(0.1 -0.1)">
850
- <use xlink:href="#LiberationSans-31"/>
851
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
852
- <use xlink:href="#LiberationSans-35" transform="translate(83.398438 0)"/>
853
- </g>
854
- </g>
855
- </g>
856
- <g id="ytick_5">
857
- <g id="line2d_27">
858
- <path d="M 42.33 154.112315
859
- L 514.365 154.112315
860
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
861
- </g>
862
- <g id="line2d_28"/>
863
- <g id="text_15">
864
- <!-- 2.0 -->
865
- <g style="fill: #262626" transform="translate(24.93 157.735752) scale(0.1 -0.1)">
866
- <use xlink:href="#LiberationSans-32"/>
867
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
868
- <use xlink:href="#LiberationSans-30" transform="translate(83.398438 0)"/>
869
- </g>
870
- </g>
871
- </g>
872
- <g id="ytick_6">
873
- <g id="line2d_29">
874
- <path d="M 42.33 106.562453
875
- L 514.365 106.562453
876
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
877
- </g>
878
- <g id="line2d_30"/>
879
- <g id="text_16">
880
- <!-- 2.5 -->
881
- <g style="fill: #262626" transform="translate(24.93 110.18589) scale(0.1 -0.1)">
882
- <use xlink:href="#LiberationSans-32"/>
883
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
884
- <use xlink:href="#LiberationSans-35" transform="translate(83.398438 0)"/>
885
- </g>
886
- </g>
887
- </g>
888
- <g id="ytick_7">
889
- <g id="line2d_31">
890
- <path d="M 42.33 59.012591
891
- L 514.365 59.012591
892
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
893
- </g>
894
- <g id="line2d_32"/>
895
- <g id="text_17">
896
- <!-- 3.0 -->
897
- <g style="fill: #262626" transform="translate(24.93 62.636029) scale(0.1 -0.1)">
898
- <use xlink:href="#LiberationSans-33"/>
899
- <use xlink:href="#LiberationSans-2e" transform="translate(55.615234 0)"/>
900
- <use xlink:href="#LiberationSans-30" transform="translate(83.398438 0)"/>
901
- </g>
902
- </g>
903
- </g>
904
- <g id="text_18">
905
- <!-- Mean runtime (seconds) -->
906
- <g style="fill: #262626" transform="translate(18.855 256.917031) rotate(-90) scale(0.1 -0.1)">
907
- <defs>
908
- <path id="LiberationSans-61" d="M 1294 -63
909
- Q 784 -63 528 206
910
- Q 272 475 272 944
911
- Q 272 1469 617 1750
912
- Q 963 2031 1731 2050
913
- L 2491 2063
914
- L 2491 2247
915
- Q 2491 2659 2316 2837
916
- Q 2141 3016 1766 3016
917
- Q 1388 3016 1216 2887
918
- Q 1044 2759 1009 2478
919
- L 422 2531
920
- Q 566 3444 1778 3444
921
- Q 2416 3444 2737 3151
922
- Q 3059 2859 3059 2306
923
- L 3059 850
924
- Q 3059 600 3125 473
925
- Q 3191 347 3375 347
926
- Q 3456 347 3559 369
927
- L 3559 19
928
- Q 3347 -31 3125 -31
929
- Q 2813 -31 2670 133
930
- Q 2528 297 2509 647
931
- L 2491 647
932
- Q 2275 259 1989 98
933
- Q 1703 -63 1294 -63
934
- z
935
- M 1422 359
936
- Q 1731 359 1972 500
937
- Q 2213 641 2352 886
938
- Q 2491 1131 2491 1391
939
- L 2491 1669
940
- L 1875 1656
941
- Q 1478 1650 1273 1575
942
- Q 1069 1500 959 1344
943
- Q 850 1188 850 934
944
- Q 850 659 998 509
945
- Q 1147 359 1422 359
946
- z
947
- " transform="scale(0.015625)"/>
948
- <path id="LiberationSans-6e" d="M 2578 0
949
- L 2578 2144
950
- Q 2578 2478 2512 2662
951
- Q 2447 2847 2303 2928
952
- Q 2159 3009 1881 3009
953
- Q 1475 3009 1240 2731
954
- Q 1006 2453 1006 1959
955
- L 1006 0
956
- L 444 0
957
- L 444 2659
958
- Q 444 3250 425 3381
959
- L 956 3381
960
- Q 959 3366 962 3297
961
- Q 966 3228 970 3139
962
- Q 975 3050 981 2803
963
- L 991 2803
964
- Q 1184 3153 1439 3298
965
- Q 1694 3444 2072 3444
966
- Q 2628 3444 2886 3167
967
- Q 3144 2891 3144 2253
968
- L 3144 0
969
- L 2578 0
970
- z
971
- " transform="scale(0.015625)"/>
972
- <path id="LiberationSans-74" d="M 1731 25
973
- Q 1453 -50 1163 -50
974
- Q 488 -50 488 716
975
- L 488 2972
976
- L 97 2972
977
- L 97 3381
978
- L 509 3381
979
- L 675 4138
980
- L 1050 4138
981
- L 1050 3381
982
- L 1675 3381
983
- L 1675 2972
984
- L 1050 2972
985
- L 1050 838
986
- Q 1050 594 1129 495
987
- Q 1209 397 1406 397
988
- Q 1519 397 1731 441
989
- L 1731 25
990
- z
991
- " transform="scale(0.015625)"/>
992
- <path id="LiberationSans-28" d="M 397 1663
993
- Q 397 2566 680 3284
994
- Q 963 4003 1550 4638
995
- L 2094 4638
996
- Q 1509 3988 1236 3256
997
- Q 963 2525 963 1656
998
- Q 963 791 1233 62
999
- Q 1503 -666 2094 -1325
1000
- L 1550 -1325
1001
- Q 959 -688 678 32
1002
- Q 397 753 397 1650
1003
- L 397 1663
1004
- z
1005
- " transform="scale(0.015625)"/>
1006
- <path id="LiberationSans-63" d="M 859 1706
1007
- Q 859 1031 1071 706
1008
- Q 1284 381 1713 381
1009
- Q 2013 381 2214 543
1010
- Q 2416 706 2463 1044
1011
- L 3031 1006
1012
- Q 2966 519 2616 228
1013
- Q 2266 -63 1728 -63
1014
- Q 1019 -63 645 385
1015
- Q 272 834 272 1694
1016
- Q 272 2547 647 2995
1017
- Q 1022 3444 1722 3444
1018
- Q 2241 3444 2583 3175
1019
- Q 2925 2906 3013 2434
1020
- L 2434 2391
1021
- Q 2391 2672 2212 2837
1022
- Q 2034 3003 1706 3003
1023
- Q 1259 3003 1059 2706
1024
- Q 859 2409 859 1706
1025
- z
1026
- " transform="scale(0.015625)"/>
1027
- <path id="LiberationSans-64" d="M 2566 544
1028
- Q 2409 219 2151 78
1029
- Q 1894 -63 1513 -63
1030
- Q 872 -63 570 368
1031
- Q 269 800 269 1675
1032
- Q 269 3444 1513 3444
1033
- Q 1897 3444 2153 3303
1034
- Q 2409 3163 2566 2856
1035
- L 2572 2856
1036
- L 2566 3234
1037
- L 2566 4638
1038
- L 3128 4638
1039
- L 3128 697
1040
- Q 3128 169 3147 0
1041
- L 2609 0
1042
- Q 2600 50 2589 231
1043
- Q 2578 413 2578 544
1044
- L 2566 544
1045
- z
1046
- M 859 1694
1047
- Q 859 984 1046 678
1048
- Q 1234 372 1656 372
1049
- Q 2134 372 2350 703
1050
- Q 2566 1034 2566 1731
1051
- Q 2566 2403 2350 2715
1052
- Q 2134 3028 1663 3028
1053
- Q 1238 3028 1048 2714
1054
- Q 859 2400 859 1694
1055
- z
1056
- " transform="scale(0.015625)"/>
1057
- <path id="LiberationSans-29" d="M 1734 1650
1058
- Q 1734 747 1451 28
1059
- Q 1169 -691 581 -1325
1060
- L 38 -1325
1061
- Q 625 -669 897 57
1062
- Q 1169 784 1169 1656
1063
- Q 1169 2528 895 3256
1064
- Q 622 3984 38 4638
1065
- L 581 4638
1066
- Q 1172 4000 1453 3279
1067
- Q 1734 2559 1734 1663
1068
- L 1734 1650
1069
- z
1070
- " transform="scale(0.015625)"/>
1071
- </defs>
1072
- <use xlink:href="#LiberationSans-4d"/>
1073
- <use xlink:href="#LiberationSans-65" transform="translate(83.300781 0)"/>
1074
- <use xlink:href="#LiberationSans-61" transform="translate(138.916016 0)"/>
1075
- <use xlink:href="#LiberationSans-6e" transform="translate(194.53125 0)"/>
1076
- <use xlink:href="#LiberationSans-20" transform="translate(250.146484 0)"/>
1077
- <use xlink:href="#LiberationSans-72" transform="translate(277.929688 0)"/>
1078
- <use xlink:href="#LiberationSans-75" transform="translate(311.230469 0)"/>
1079
- <use xlink:href="#LiberationSans-6e" transform="translate(366.845703 0)"/>
1080
- <use xlink:href="#LiberationSans-74" transform="translate(422.460938 0)"/>
1081
- <use xlink:href="#LiberationSans-69" transform="translate(450.244141 0)"/>
1082
- <use xlink:href="#LiberationSans-6d" transform="translate(472.460938 0)"/>
1083
- <use xlink:href="#LiberationSans-65" transform="translate(555.761719 0)"/>
1084
- <use xlink:href="#LiberationSans-20" transform="translate(611.376953 0)"/>
1085
- <use xlink:href="#LiberationSans-28" transform="translate(639.160156 0)"/>
1086
- <use xlink:href="#LiberationSans-73" transform="translate(672.460938 0)"/>
1087
- <use xlink:href="#LiberationSans-65" transform="translate(722.460938 0)"/>
1088
- <use xlink:href="#LiberationSans-63" transform="translate(778.076172 0)"/>
1089
- <use xlink:href="#LiberationSans-6f" transform="translate(828.076172 0)"/>
1090
- <use xlink:href="#LiberationSans-6e" transform="translate(883.691406 0)"/>
1091
- <use xlink:href="#LiberationSans-64" transform="translate(939.306641 0)"/>
1092
- <use xlink:href="#LiberationSans-73" transform="translate(994.921875 0)"/>
1093
- <use xlink:href="#LiberationSans-29" transform="translate(1044.921875 0)"/>
1094
- </g>
1095
- </g>
1096
- </g>
1097
- <g id="FillBetweenPolyCollection_1">
1098
- <defs>
1099
- <path id="meaf7ba6b3b" d="M 63.786136 -52.683055
1100
- L 63.786136 -52.508182
1101
- L 171.066818 -52.898109
1102
- L 278.3475 -52.96763
1103
- L 385.628182 -53.510017
1104
- L 492.908864 -53.992842
1105
- L 492.908864 -54.300704
1106
- L 492.908864 -54.300704
1107
- L 385.628182 -53.764295
1108
- L 278.3475 -53.654885
1109
- L 171.066818 -53.024834
1110
- L 63.786136 -52.683055
1111
- z
1112
- " style="stroke: #a6cee4; stroke-opacity: 0.16"/>
1113
- </defs>
1114
- <g clip-path="url(#p97247662b6)">
1115
- <use xlink:href="#meaf7ba6b3b" x="0" y="396" style="fill: #a6cee4; fill-opacity: 0.16; stroke: #a6cee4; stroke-opacity: 0.16"/>
1116
- </g>
1117
- </g>
1118
- <g id="FillBetweenPolyCollection_2">
1119
- <defs>
1120
- <path id="mb8690094b9" d="M 63.786136 -53.18414
1121
- L 63.786136 -53.016706
1122
- L 171.066818 -54.160399
1123
- L 278.3475 -55.210153
1124
- L 385.628182 -55.938001
1125
- L 492.908864 -56.14144
1126
- L 492.908864 -57.274145
1127
- L 492.908864 -57.274145
1128
- L 385.628182 -56.773047
1129
- L 278.3475 -55.43389
1130
- L 171.066818 -54.463102
1131
- L 63.786136 -53.18414
1132
- z
1133
- " style="stroke: #6aaed6; stroke-opacity: 0.16"/>
1134
- </defs>
1135
- <g clip-path="url(#p97247662b6)">
1136
- <use xlink:href="#mb8690094b9" x="0" y="396" style="fill: #6aaed6; fill-opacity: 0.16; stroke: #6aaed6; stroke-opacity: 0.16"/>
1137
- </g>
1138
- </g>
1139
- <g id="FillBetweenPolyCollection_3">
1140
- <defs>
1141
- <path id="m9d90fff77a" d="M 63.786136 -53.856251
1142
- L 63.786136 -53.639306
1143
- L 171.066818 -54.922839
1144
- L 278.3475 -55.975549
1145
- L 385.628182 -57.719171
1146
- L 492.908864 -57.544962
1147
- L 492.908864 -59.889329
1148
- L 492.908864 -59.889329
1149
- L 385.628182 -58.423918
1150
- L 278.3475 -57.31822
1151
- L 171.066818 -55.687471
1152
- L 63.786136 -53.856251
1153
- z
1154
- " style="stroke: #3b8bc2; stroke-opacity: 0.16"/>
1155
- </defs>
1156
- <g clip-path="url(#p97247662b6)">
1157
- <use xlink:href="#m9d90fff77a" x="0" y="396" style="fill: #3b8bc2; fill-opacity: 0.16; stroke: #3b8bc2; stroke-opacity: 0.16"/>
1158
- </g>
1159
- </g>
1160
- <g id="FillBetweenPolyCollection_4">
1161
- <defs>
1162
- <path id="m8fa16bae53" d="M 63.786136 -54.379026
1163
- L 63.786136 -54.076597
1164
- L 171.066818 -56.305294
1165
- L 278.3475 -57.912603
1166
- L 385.628182 -60.128787
1167
- L 492.908864 -62.625007
1168
- L 492.908864 -63.526736
1169
- L 492.908864 -63.526736
1170
- L 385.628182 -60.712918
1171
- L 278.3475 -58.703236
1172
- L 171.066818 -57.248616
1173
- L 63.786136 -54.379026
1174
- z
1175
- " style="stroke: #1764ab; stroke-opacity: 0.16"/>
1176
- </defs>
1177
- <g clip-path="url(#p97247662b6)">
1178
- <use xlink:href="#m8fa16bae53" x="0" y="396" style="fill: #1764ab; fill-opacity: 0.16; stroke: #1764ab; stroke-opacity: 0.16"/>
1179
- </g>
1180
- </g>
1181
- <g id="FillBetweenPolyCollection_5">
1182
- <defs>
1183
- <path id="m6529fa443d" d="M 63.786136 -55.301236
1184
- L 63.786136 -54.7839
1185
- L 171.066818 -57.074015
1186
- L 278.3475 -58.868865
1187
- L 385.628182 -62.202255
1188
- L 492.908864 -65.026843
1189
- L 492.908864 -65.851851
1190
- L 492.908864 -65.851851
1191
- L 385.628182 -63.28022
1192
- L 278.3475 -59.944855
1193
- L 171.066818 -57.859785
1194
- L 63.786136 -55.301236
1195
- z
1196
- " style="stroke: #083c7d; stroke-opacity: 0.16"/>
1197
- </defs>
1198
- <g clip-path="url(#p97247662b6)">
1199
- <use xlink:href="#m6529fa443d" x="0" y="396" style="fill: #083c7d; fill-opacity: 0.16; stroke: #083c7d; stroke-opacity: 0.16"/>
1200
- </g>
1201
- </g>
1202
- <g id="line2d_33">
1203
- <path d="M 63.786136 343.404381
1204
- L 171.066818 343.038528
1205
- L 278.3475 342.688743
1206
- L 385.628182 342.362844
1207
- L 492.908864 341.853227
1208
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #a6cee4; stroke-width: 2; stroke-linecap: round"/>
1209
- <defs>
1210
- <path id="m489fa6f680" d="M 0 3
1211
- C 0.795609 3 1.55874 2.683901 2.12132 2.12132
1212
- C 2.683901 1.55874 3 0.795609 3 0
1213
- C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132
1214
- C 1.55874 -2.683901 0.795609 -3 0 -3
1215
- C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132
1216
- C -2.683901 -1.55874 -3 -0.795609 -3 0
1217
- C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132
1218
- C -1.55874 2.683901 -0.795609 3 0 3
1219
- z
1220
- " style="stroke: #a6cee4"/>
1221
- </defs>
1222
- <g clip-path="url(#p97247662b6)">
1223
- <use xlink:href="#m489fa6f680" x="63.786136" y="343.404381" style="fill: #a6cee4; stroke: #a6cee4"/>
1224
- <use xlink:href="#m489fa6f680" x="171.066818" y="343.038528" style="fill: #a6cee4; stroke: #a6cee4"/>
1225
- <use xlink:href="#m489fa6f680" x="278.3475" y="342.688743" style="fill: #a6cee4; stroke: #a6cee4"/>
1226
- <use xlink:href="#m489fa6f680" x="385.628182" y="342.362844" style="fill: #a6cee4; stroke: #a6cee4"/>
1227
- <use xlink:href="#m489fa6f680" x="492.908864" y="341.853227" style="fill: #a6cee4; stroke: #a6cee4"/>
1228
- </g>
1229
- </g>
1230
- <g id="line2d_34">
1231
- <path d="M 63.786136 342.899577
1232
- L 171.066818 341.688249
1233
- L 278.3475 340.677978
1234
- L 385.628182 339.644476
1235
- L 492.908864 339.292207
1236
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #6aaed6; stroke-width: 2; stroke-linecap: round"/>
1237
- <defs>
1238
- <path id="mbae9abc311" d="M 0 3
1239
- C 0.795609 3 1.55874 2.683901 2.12132 2.12132
1240
- C 2.683901 1.55874 3 0.795609 3 0
1241
- C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132
1242
- C 1.55874 -2.683901 0.795609 -3 0 -3
1243
- C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132
1244
- C -2.683901 -1.55874 -3 -0.795609 -3 0
1245
- C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132
1246
- C -1.55874 2.683901 -0.795609 3 0 3
1247
- z
1248
- " style="stroke: #6aaed6"/>
1249
- </defs>
1250
- <g clip-path="url(#p97247662b6)">
1251
- <use xlink:href="#mbae9abc311" x="63.786136" y="342.899577" style="fill: #6aaed6; stroke: #6aaed6"/>
1252
- <use xlink:href="#mbae9abc311" x="171.066818" y="341.688249" style="fill: #6aaed6; stroke: #6aaed6"/>
1253
- <use xlink:href="#mbae9abc311" x="278.3475" y="340.677978" style="fill: #6aaed6; stroke: #6aaed6"/>
1254
- <use xlink:href="#mbae9abc311" x="385.628182" y="339.644476" style="fill: #6aaed6; stroke: #6aaed6"/>
1255
- <use xlink:href="#mbae9abc311" x="492.908864" y="339.292207" style="fill: #6aaed6; stroke: #6aaed6"/>
1256
- </g>
1257
- </g>
1258
- <g id="line2d_35">
1259
- <path d="M 63.786136 342.252222
1260
- L 171.066818 340.694845
1261
- L 278.3475 339.353116
1262
- L 385.628182 337.928456
1263
- L 492.908864 337.282855
1264
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #3b8bc2; stroke-width: 2; stroke-linecap: round"/>
1265
- <defs>
1266
- <path id="m9cd1aa9f40" d="M 0 3
1267
- C 0.795609 3 1.55874 2.683901 2.12132 2.12132
1268
- C 2.683901 1.55874 3 0.795609 3 0
1269
- C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132
1270
- C 1.55874 -2.683901 0.795609 -3 0 -3
1271
- C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132
1272
- C -2.683901 -1.55874 -3 -0.795609 -3 0
1273
- C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132
1274
- C -1.55874 2.683901 -0.795609 3 0 3
1275
- z
1276
- " style="stroke: #3b8bc2"/>
1277
- </defs>
1278
- <g clip-path="url(#p97247662b6)">
1279
- <use xlink:href="#m9cd1aa9f40" x="63.786136" y="342.252222" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1280
- <use xlink:href="#m9cd1aa9f40" x="171.066818" y="340.694845" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1281
- <use xlink:href="#m9cd1aa9f40" x="278.3475" y="339.353116" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1282
- <use xlink:href="#m9cd1aa9f40" x="385.628182" y="337.928456" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1283
- <use xlink:href="#m9cd1aa9f40" x="492.908864" y="337.282855" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1284
- </g>
1285
- </g>
1286
- <g id="line2d_36">
1287
- <path d="M 63.786136 341.772189
1288
- L 171.066818 339.223045
1289
- L 278.3475 337.692081
1290
- L 385.628182 335.579148
1291
- L 492.908864 332.924128
1292
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #1764ab; stroke-width: 2; stroke-linecap: round"/>
1293
- <defs>
1294
- <path id="m1746fe0f82" d="M 0 3
1295
- C 0.795609 3 1.55874 2.683901 2.12132 2.12132
1296
- C 2.683901 1.55874 3 0.795609 3 0
1297
- C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132
1298
- C 1.55874 -2.683901 0.795609 -3 0 -3
1299
- C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132
1300
- C -2.683901 -1.55874 -3 -0.795609 -3 0
1301
- C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132
1302
- C -1.55874 2.683901 -0.795609 3 0 3
1303
- z
1304
- " style="stroke: #1764ab"/>
1305
- </defs>
1306
- <g clip-path="url(#p97247662b6)">
1307
- <use xlink:href="#m1746fe0f82" x="63.786136" y="341.772189" style="fill: #1764ab; stroke: #1764ab"/>
1308
- <use xlink:href="#m1746fe0f82" x="171.066818" y="339.223045" style="fill: #1764ab; stroke: #1764ab"/>
1309
- <use xlink:href="#m1746fe0f82" x="278.3475" y="337.692081" style="fill: #1764ab; stroke: #1764ab"/>
1310
- <use xlink:href="#m1746fe0f82" x="385.628182" y="335.579148" style="fill: #1764ab; stroke: #1764ab"/>
1311
- <use xlink:href="#m1746fe0f82" x="492.908864" y="332.924128" style="fill: #1764ab; stroke: #1764ab"/>
1312
- </g>
1313
- </g>
1314
- <g id="line2d_37">
1315
- <path d="M 63.786136 340.957432
1316
- L 171.066818 338.5331
1317
- L 278.3475 336.59314
1318
- L 385.628182 333.258763
1319
- L 492.908864 330.560653
1320
- " clip-path="url(#p97247662b6)" style="fill: none; stroke: #083c7d; stroke-width: 2; stroke-linecap: round"/>
1321
- <defs>
1322
- <path id="m5721731c55" d="M 0 3
1323
- C 0.795609 3 1.55874 2.683901 2.12132 2.12132
1324
- C 2.683901 1.55874 3 0.795609 3 0
1325
- C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132
1326
- C 1.55874 -2.683901 0.795609 -3 0 -3
1327
- C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132
1328
- C -2.683901 -1.55874 -3 -0.795609 -3 0
1329
- C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132
1330
- C -1.55874 2.683901 -0.795609 3 0 3
1331
- z
1332
- " style="stroke: #083c7d"/>
1333
- </defs>
1334
- <g clip-path="url(#p97247662b6)">
1335
- <use xlink:href="#m5721731c55" x="63.786136" y="340.957432" style="fill: #083c7d; stroke: #083c7d"/>
1336
- <use xlink:href="#m5721731c55" x="171.066818" y="338.5331" style="fill: #083c7d; stroke: #083c7d"/>
1337
- <use xlink:href="#m5721731c55" x="278.3475" y="336.59314" style="fill: #083c7d; stroke: #083c7d"/>
1338
- <use xlink:href="#m5721731c55" x="385.628182" y="333.258763" style="fill: #083c7d; stroke: #083c7d"/>
1339
- <use xlink:href="#m5721731c55" x="492.908864" y="330.560653" style="fill: #083c7d; stroke: #083c7d"/>
1340
- </g>
1341
- </g>
1342
- <g id="patch_3">
1343
- <path d="M 42.33 357.54
1344
- L 42.33 48.48
1345
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1346
- </g>
1347
- <g id="patch_4">
1348
- <path d="M 514.365 357.54
1349
- L 514.365 48.48
1350
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1351
- </g>
1352
- <g id="patch_5">
1353
- <path d="M 42.33 357.54
1354
- L 514.365 357.54
1355
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1356
- </g>
1357
- <g id="patch_6">
1358
- <path d="M 42.33 48.48
1359
- L 514.365 48.48
1360
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1361
- </g>
1362
- <g id="text_19">
1363
- <!-- ryl 0.3.3 -->
1364
- <g style="fill: #262626" transform="translate(257.00625 42.48) scale(0.12 -0.12)">
1365
- <defs>
1366
- <path id="LiberationSans-79" d="M 597 -1328
1367
- Q 366 -1328 209 -1294
1368
- L 209 -872
1369
- Q 328 -891 472 -891
1370
- Q 997 -891 1303 -119
1371
- L 1356 16
1372
- L 16 3381
1373
- L 616 3381
1374
- L 1328 1513
1375
- Q 1344 1469 1366 1408
1376
- Q 1388 1347 1506 1000
1377
- Q 1625 653 1634 613
1378
- L 1853 1228
1379
- L 2594 3381
1380
- L 3188 3381
1381
- L 1888 0
1382
- Q 1678 -541 1497 -805
1383
- Q 1316 -1069 1095 -1198
1384
- Q 875 -1328 597 -1328
1385
- z
1386
- " transform="scale(0.015625)"/>
1387
- </defs>
1388
- <use xlink:href="#LiberationSans-72"/>
1389
- <use xlink:href="#LiberationSans-79" transform="translate(33.300781 0)"/>
1390
- <use xlink:href="#LiberationSans-6c" transform="translate(83.300781 0)"/>
1391
- <use xlink:href="#LiberationSans-20" transform="translate(105.517578 0)"/>
1392
- <use xlink:href="#LiberationSans-30" transform="translate(133.300781 0)"/>
1393
- <use xlink:href="#LiberationSans-2e" transform="translate(188.916016 0)"/>
1394
- <use xlink:href="#LiberationSans-33" transform="translate(216.699219 0)"/>
1395
- <use xlink:href="#LiberationSans-2e" transform="translate(272.314453 0)"/>
1396
- <use xlink:href="#LiberationSans-33" transform="translate(300.097656 0)"/>
1397
- </g>
1398
- </g>
1399
- </g>
1400
- <g id="axes_2">
1401
- <g id="patch_7">
1402
- <path d="M 525.165 357.54
1403
- L 997.2 357.54
1404
- L 997.2 48.48
1405
- L 525.165 48.48
1406
- z
1407
- " style="fill: #ffffff"/>
1408
- </g>
1409
- <g id="matplotlib.axis_3">
1410
- <g id="xtick_10">
1411
- <g id="line2d_38">
1412
- <path d="M 546.621136 357.54
1413
- L 546.621136 48.48
1414
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1415
- </g>
1416
- <g id="line2d_39"/>
1417
- <g id="text_20">
1418
- <!-- 20 -->
1419
- <g style="fill: #262626" transform="translate(541.060199 368.286875) scale(0.1 -0.1)">
1420
- <use xlink:href="#LiberationSans-32"/>
1421
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1422
- </g>
1423
- </g>
1424
- </g>
1425
- <g id="xtick_11">
1426
- <g id="line2d_40">
1427
- <path d="M 600.261477 357.54
1428
- L 600.261477 48.48
1429
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1430
- </g>
1431
- <g id="line2d_41"/>
1432
- <g id="text_21">
1433
- <!-- 30 -->
1434
- <g style="fill: #262626" transform="translate(594.70054 368.286875) scale(0.1 -0.1)">
1435
- <use xlink:href="#LiberationSans-33"/>
1436
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1437
- </g>
1438
- </g>
1439
- </g>
1440
- <g id="xtick_12">
1441
- <g id="line2d_42">
1442
- <path d="M 653.901818 357.54
1443
- L 653.901818 48.48
1444
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1445
- </g>
1446
- <g id="line2d_43"/>
1447
- <g id="text_22">
1448
- <!-- 40 -->
1449
- <g style="fill: #262626" transform="translate(648.340881 368.286875) scale(0.1 -0.1)">
1450
- <use xlink:href="#LiberationSans-34"/>
1451
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1452
- </g>
1453
- </g>
1454
- </g>
1455
- <g id="xtick_13">
1456
- <g id="line2d_44">
1457
- <path d="M 707.542159 357.54
1458
- L 707.542159 48.48
1459
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1460
- </g>
1461
- <g id="line2d_45"/>
1462
- <g id="text_23">
1463
- <!-- 50 -->
1464
- <g style="fill: #262626" transform="translate(701.981222 368.286875) scale(0.1 -0.1)">
1465
- <use xlink:href="#LiberationSans-35"/>
1466
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1467
- </g>
1468
- </g>
1469
- </g>
1470
- <g id="xtick_14">
1471
- <g id="line2d_46">
1472
- <path d="M 761.1825 357.54
1473
- L 761.1825 48.48
1474
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1475
- </g>
1476
- <g id="line2d_47"/>
1477
- <g id="text_24">
1478
- <!-- 60 -->
1479
- <g style="fill: #262626" transform="translate(755.621563 368.286875) scale(0.1 -0.1)">
1480
- <use xlink:href="#LiberationSans-36"/>
1481
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1482
- </g>
1483
- </g>
1484
- </g>
1485
- <g id="xtick_15">
1486
- <g id="line2d_48">
1487
- <path d="M 814.822841 357.54
1488
- L 814.822841 48.48
1489
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1490
- </g>
1491
- <g id="line2d_49"/>
1492
- <g id="text_25">
1493
- <!-- 70 -->
1494
- <g style="fill: #262626" transform="translate(809.261903 368.286875) scale(0.1 -0.1)">
1495
- <use xlink:href="#LiberationSans-37"/>
1496
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1497
- </g>
1498
- </g>
1499
- </g>
1500
- <g id="xtick_16">
1501
- <g id="line2d_50">
1502
- <path d="M 868.463182 357.54
1503
- L 868.463182 48.48
1504
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1505
- </g>
1506
- <g id="line2d_51"/>
1507
- <g id="text_26">
1508
- <!-- 80 -->
1509
- <g style="fill: #262626" transform="translate(862.902244 368.286875) scale(0.1 -0.1)">
1510
- <use xlink:href="#LiberationSans-38"/>
1511
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1512
- </g>
1513
- </g>
1514
- </g>
1515
- <g id="xtick_17">
1516
- <g id="line2d_52">
1517
- <path d="M 922.103523 357.54
1518
- L 922.103523 48.48
1519
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1520
- </g>
1521
- <g id="line2d_53"/>
1522
- <g id="text_27">
1523
- <!-- 90 -->
1524
- <g style="fill: #262626" transform="translate(916.542585 368.286875) scale(0.1 -0.1)">
1525
- <use xlink:href="#LiberationSans-39"/>
1526
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1527
- </g>
1528
- </g>
1529
- </g>
1530
- <g id="xtick_18">
1531
- <g id="line2d_54">
1532
- <path d="M 975.743864 357.54
1533
- L 975.743864 48.48
1534
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1535
- </g>
1536
- <g id="line2d_55"/>
1537
- <g id="text_28">
1538
- <!-- 100 -->
1539
- <g style="fill: #262626" transform="translate(967.402457 368.286875) scale(0.1 -0.1)">
1540
- <use xlink:href="#LiberationSans-31"/>
1541
- <use xlink:href="#LiberationSans-30" transform="translate(55.615234 0)"/>
1542
- <use xlink:href="#LiberationSans-30" transform="translate(111.230469 0)"/>
1543
- </g>
1544
- </g>
1545
- </g>
1546
- <g id="text_29">
1547
- <!-- Number of YAML files -->
1548
- <g style="fill: #262626" transform="translate(713.200469 381.60875) scale(0.1 -0.1)">
1549
- <use xlink:href="#LiberationSans-4e"/>
1550
- <use xlink:href="#LiberationSans-75" transform="translate(72.216797 0)"/>
1551
- <use xlink:href="#LiberationSans-6d" transform="translate(127.832031 0)"/>
1552
- <use xlink:href="#LiberationSans-62" transform="translate(211.132812 0)"/>
1553
- <use xlink:href="#LiberationSans-65" transform="translate(266.748047 0)"/>
1554
- <use xlink:href="#LiberationSans-72" transform="translate(322.363281 0)"/>
1555
- <use xlink:href="#LiberationSans-20" transform="translate(355.664062 0)"/>
1556
- <use xlink:href="#LiberationSans-6f" transform="translate(383.447266 0)"/>
1557
- <use xlink:href="#LiberationSans-66" transform="translate(439.0625 0)"/>
1558
- <use xlink:href="#LiberationSans-20" transform="translate(466.845703 0)"/>
1559
- <use xlink:href="#LiberationSans-59" transform="translate(492.878906 0)"/>
1560
- <use xlink:href="#LiberationSans-41" transform="translate(552.203125 0)"/>
1561
- <use xlink:href="#LiberationSans-4d" transform="translate(618.902344 0)"/>
1562
- <use xlink:href="#LiberationSans-4c" transform="translate(702.203125 0)"/>
1563
- <use xlink:href="#LiberationSans-20" transform="translate(754.068359 0)"/>
1564
- <use xlink:href="#LiberationSans-66" transform="translate(781.851562 0)"/>
1565
- <use xlink:href="#LiberationSans-69" transform="translate(809.634766 0)"/>
1566
- <use xlink:href="#LiberationSans-6c" transform="translate(831.851562 0)"/>
1567
- <use xlink:href="#LiberationSans-65" transform="translate(854.068359 0)"/>
1568
- <use xlink:href="#LiberationSans-73" transform="translate(909.683594 0)"/>
1569
- </g>
1570
- </g>
1571
- </g>
1572
- <g id="matplotlib.axis_4">
1573
- <g id="ytick_8">
1574
- <g id="line2d_56">
1575
- <path d="M 525.165 344.311761
1576
- L 997.2 344.311761
1577
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1578
- </g>
1579
- <g id="line2d_57"/>
1580
- </g>
1581
- <g id="ytick_9">
1582
- <g id="line2d_58">
1583
- <path d="M 525.165 296.761899
1584
- L 997.2 296.761899
1585
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1586
- </g>
1587
- <g id="line2d_59"/>
1588
- </g>
1589
- <g id="ytick_10">
1590
- <g id="line2d_60">
1591
- <path d="M 525.165 249.212038
1592
- L 997.2 249.212038
1593
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1594
- </g>
1595
- <g id="line2d_61"/>
1596
- </g>
1597
- <g id="ytick_11">
1598
- <g id="line2d_62">
1599
- <path d="M 525.165 201.662176
1600
- L 997.2 201.662176
1601
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1602
- </g>
1603
- <g id="line2d_63"/>
1604
- </g>
1605
- <g id="ytick_12">
1606
- <g id="line2d_64">
1607
- <path d="M 525.165 154.112315
1608
- L 997.2 154.112315
1609
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1610
- </g>
1611
- <g id="line2d_65"/>
1612
- </g>
1613
- <g id="ytick_13">
1614
- <g id="line2d_66">
1615
- <path d="M 525.165 106.562453
1616
- L 997.2 106.562453
1617
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1618
- </g>
1619
- <g id="line2d_67"/>
1620
- </g>
1621
- <g id="ytick_14">
1622
- <g id="line2d_68">
1623
- <path d="M 525.165 59.012591
1624
- L 997.2 59.012591
1625
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
1626
- </g>
1627
- <g id="line2d_69"/>
1628
- </g>
1629
- </g>
1630
- <g id="FillBetweenPolyCollection_6">
1631
- <defs>
1632
- <path id="md1905b8a43" d="M 546.621136 -69.215959
1633
- L 546.621136 -65.293076
1634
- L 653.901818 -71.760771
1635
- L 761.1825 -77.876661
1636
- L 868.463182 -85.473402
1637
- L 975.743864 -91.004928
1638
- L 975.743864 -98.216428
1639
- L 975.743864 -98.216428
1640
- L 868.463182 -86.623914
1641
- L 761.1825 -79.474694
1642
- L 653.901818 -73.936068
1643
- L 546.621136 -69.215959
1644
- z
1645
- " style="stroke: #a6cee4; stroke-opacity: 0.16"/>
1646
- </defs>
1647
- <g clip-path="url(#pc7b6b5bf49)">
1648
- <use xlink:href="#md1905b8a43" x="0" y="396" style="fill: #a6cee4; fill-opacity: 0.16; stroke: #a6cee4; stroke-opacity: 0.16"/>
1649
- </g>
1650
- </g>
1651
- <g id="FillBetweenPolyCollection_7">
1652
- <defs>
1653
- <path id="m758d15140f" d="M 546.621136 -81.150691
1654
- L 546.621136 -77.663587
1655
- L 653.901818 -92.576199
1656
- L 761.1825 -109.301022
1657
- L 868.463182 -128.036379
1658
- L 975.743864 -148.298039
1659
- L 975.743864 -160.162454
1660
- L 975.743864 -160.162454
1661
- L 868.463182 -132.009849
1662
- L 761.1825 -114.29561
1663
- L 653.901818 -97.631515
1664
- L 546.621136 -81.150691
1665
- z
1666
- " style="stroke: #6aaed6; stroke-opacity: 0.16"/>
1667
- </defs>
1668
- <g clip-path="url(#pc7b6b5bf49)">
1669
- <use xlink:href="#m758d15140f" x="0" y="396" style="fill: #6aaed6; fill-opacity: 0.16; stroke: #6aaed6; stroke-opacity: 0.16"/>
1670
- </g>
1671
- </g>
1672
- <g id="FillBetweenPolyCollection_8">
1673
- <defs>
1674
- <path id="md7dcb13bc8" d="M 546.621136 -90.991101
1675
- L 546.621136 -88.572995
1676
- L 653.901818 -114.307186
1677
- L 761.1825 -139.3839
1678
- L 868.463182 -171.626958
1679
- L 975.743864 -194.200277
1680
- L 975.743864 -202.305767
1681
- L 975.743864 -202.305767
1682
- L 868.463182 -182.670514
1683
- L 761.1825 -146.742664
1684
- L 653.901818 -118.477448
1685
- L 546.621136 -90.991101
1686
- z
1687
- " style="stroke: #3b8bc2; stroke-opacity: 0.16"/>
1688
- </defs>
1689
- <g clip-path="url(#pc7b6b5bf49)">
1690
- <use xlink:href="#md7dcb13bc8" x="0" y="396" style="fill: #3b8bc2; fill-opacity: 0.16; stroke: #3b8bc2; stroke-opacity: 0.16"/>
1691
- </g>
1692
- </g>
1693
- <g id="FillBetweenPolyCollection_9">
1694
- <defs>
1695
- <path id="mf551617c19" d="M 546.621136 -110.756074
1696
- L 546.621136 -95.967576
1697
- L 653.901818 -139.227262
1698
- L 761.1825 -172.493128
1699
- L 868.463182 -213.411453
1700
- L 975.743864 -248.12795
1701
- L 975.743864 -280.583696
1702
- L 975.743864 -280.583696
1703
- L 868.463182 -231.289577
1704
- L 761.1825 -178.403116
1705
- L 653.901818 -144.949774
1706
- L 546.621136 -110.756074
1707
- z
1708
- " style="stroke: #1764ab; stroke-opacity: 0.16"/>
1709
- </defs>
1710
- <g clip-path="url(#pc7b6b5bf49)">
1711
- <use xlink:href="#mf551617c19" x="0" y="396" style="fill: #1764ab; fill-opacity: 0.16; stroke: #1764ab; stroke-opacity: 0.16"/>
1712
- </g>
1713
- </g>
1714
- <g id="FillBetweenPolyCollection_10">
1715
- <defs>
1716
- <path id="mcd7ff90388" d="M 546.621136 -114.602136
1717
- L 546.621136 -109.263304
1718
- L 653.901818 -156.016858
1719
- L 761.1825 -204.776244
1720
- L 868.463182 -260.666888
1721
- L 975.743864 -298.862837
1722
- L 975.743864 -333.471818
1723
- L 975.743864 -333.471818
1724
- L 868.463182 -274.009876
1725
- L 761.1825 -231.801077
1726
- L 653.901818 -165.131565
1727
- L 546.621136 -114.602136
1728
- z
1729
- " style="stroke: #083c7d; stroke-opacity: 0.16"/>
1730
- </defs>
1731
- <g clip-path="url(#pc7b6b5bf49)">
1732
- <use xlink:href="#mcd7ff90388" x="0" y="396" style="fill: #083c7d; fill-opacity: 0.16; stroke: #083c7d; stroke-opacity: 0.16"/>
1733
- </g>
1734
- </g>
1735
- <g id="line2d_70">
1736
- <path d="M 546.621136 328.745483
1737
- L 653.901818 323.151581
1738
- L 761.1825 317.324323
1739
- L 868.463182 309.951342
1740
- L 975.743864 301.389322
1741
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #a6cee4; stroke-width: 2; stroke-linecap: round"/>
1742
- <g clip-path="url(#pc7b6b5bf49)">
1743
- <use xlink:href="#m489fa6f680" x="546.621136" y="328.745483" style="fill: #a6cee4; stroke: #a6cee4"/>
1744
- <use xlink:href="#m489fa6f680" x="653.901818" y="323.151581" style="fill: #a6cee4; stroke: #a6cee4"/>
1745
- <use xlink:href="#m489fa6f680" x="761.1825" y="317.324323" style="fill: #a6cee4; stroke: #a6cee4"/>
1746
- <use xlink:href="#m489fa6f680" x="868.463182" y="309.951342" style="fill: #a6cee4; stroke: #a6cee4"/>
1747
- <use xlink:href="#m489fa6f680" x="975.743864" y="301.389322" style="fill: #a6cee4; stroke: #a6cee4"/>
1748
- </g>
1749
- </g>
1750
- <g id="line2d_71">
1751
- <path d="M 546.621136 316.592861
1752
- L 653.901818 300.896143
1753
- L 761.1825 284.201684
1754
- L 868.463182 265.976886
1755
- L 975.743864 241.769754
1756
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #6aaed6; stroke-width: 2; stroke-linecap: round"/>
1757
- <g clip-path="url(#pc7b6b5bf49)">
1758
- <use xlink:href="#mbae9abc311" x="546.621136" y="316.592861" style="fill: #6aaed6; stroke: #6aaed6"/>
1759
- <use xlink:href="#mbae9abc311" x="653.901818" y="300.896143" style="fill: #6aaed6; stroke: #6aaed6"/>
1760
- <use xlink:href="#mbae9abc311" x="761.1825" y="284.201684" style="fill: #6aaed6; stroke: #6aaed6"/>
1761
- <use xlink:href="#mbae9abc311" x="868.463182" y="265.976886" style="fill: #6aaed6; stroke: #6aaed6"/>
1762
- <use xlink:href="#mbae9abc311" x="975.743864" y="241.769754" style="fill: #6aaed6; stroke: #6aaed6"/>
1763
- </g>
1764
- </g>
1765
- <g id="line2d_72">
1766
- <path d="M 546.621136 306.217952
1767
- L 653.901818 279.607683
1768
- L 761.1825 252.936718
1769
- L 868.463182 218.851264
1770
- L 975.743864 197.746978
1771
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #3b8bc2; stroke-width: 2; stroke-linecap: round"/>
1772
- <g clip-path="url(#pc7b6b5bf49)">
1773
- <use xlink:href="#m9cd1aa9f40" x="546.621136" y="306.217952" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1774
- <use xlink:href="#m9cd1aa9f40" x="653.901818" y="279.607683" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1775
- <use xlink:href="#m9cd1aa9f40" x="761.1825" y="252.936718" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1776
- <use xlink:href="#m9cd1aa9f40" x="868.463182" y="218.851264" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1777
- <use xlink:href="#m9cd1aa9f40" x="975.743864" y="197.746978" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1778
- </g>
1779
- </g>
1780
- <g id="line2d_73">
1781
- <path d="M 546.621136 292.638175
1782
- L 653.901818 253.911482
1783
- L 761.1825 220.551878
1784
- L 868.463182 173.649485
1785
- L 975.743864 131.644177
1786
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #1764ab; stroke-width: 2; stroke-linecap: round"/>
1787
- <g clip-path="url(#pc7b6b5bf49)">
1788
- <use xlink:href="#m1746fe0f82" x="546.621136" y="292.638175" style="fill: #1764ab; stroke: #1764ab"/>
1789
- <use xlink:href="#m1746fe0f82" x="653.901818" y="253.911482" style="fill: #1764ab; stroke: #1764ab"/>
1790
- <use xlink:href="#m1746fe0f82" x="761.1825" y="220.551878" style="fill: #1764ab; stroke: #1764ab"/>
1791
- <use xlink:href="#m1746fe0f82" x="868.463182" y="173.649485" style="fill: #1764ab; stroke: #1764ab"/>
1792
- <use xlink:href="#m1746fe0f82" x="975.743864" y="131.644177" style="fill: #1764ab; stroke: #1764ab"/>
1793
- </g>
1794
- </g>
1795
- <g id="line2d_74">
1796
- <path d="M 546.621136 284.06728
1797
- L 653.901818 235.425789
1798
- L 761.1825 177.71134
1799
- L 868.463182 128.661618
1800
- L 975.743864 79.832672
1801
- " clip-path="url(#pc7b6b5bf49)" style="fill: none; stroke: #083c7d; stroke-width: 2; stroke-linecap: round"/>
1802
- <g clip-path="url(#pc7b6b5bf49)">
1803
- <use xlink:href="#m5721731c55" x="546.621136" y="284.06728" style="fill: #083c7d; stroke: #083c7d"/>
1804
- <use xlink:href="#m5721731c55" x="653.901818" y="235.425789" style="fill: #083c7d; stroke: #083c7d"/>
1805
- <use xlink:href="#m5721731c55" x="761.1825" y="177.71134" style="fill: #083c7d; stroke: #083c7d"/>
1806
- <use xlink:href="#m5721731c55" x="868.463182" y="128.661618" style="fill: #083c7d; stroke: #083c7d"/>
1807
- <use xlink:href="#m5721731c55" x="975.743864" y="79.832672" style="fill: #083c7d; stroke: #083c7d"/>
1808
- </g>
1809
- </g>
1810
- <g id="patch_8">
1811
- <path d="M 525.165 357.54
1812
- L 525.165 48.48
1813
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1814
- </g>
1815
- <g id="patch_9">
1816
- <path d="M 997.2 357.54
1817
- L 997.2 48.48
1818
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1819
- </g>
1820
- <g id="patch_10">
1821
- <path d="M 525.165 357.54
1822
- L 997.2 357.54
1823
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1824
- </g>
1825
- <g id="patch_11">
1826
- <path d="M 525.165 48.48
1827
- L 997.2 48.48
1828
- " style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
1829
- </g>
1830
- <g id="text_30">
1831
- <!-- yamllint 1.38.0 -->
1832
- <g style="fill: #262626" transform="translate(722.498438 42.48) scale(0.12 -0.12)">
1833
- <use xlink:href="#LiberationSans-79"/>
1834
- <use xlink:href="#LiberationSans-61" transform="translate(50 0)"/>
1835
- <use xlink:href="#LiberationSans-6d" transform="translate(105.615234 0)"/>
1836
- <use xlink:href="#LiberationSans-6c" transform="translate(188.916016 0)"/>
1837
- <use xlink:href="#LiberationSans-6c" transform="translate(211.132812 0)"/>
1838
- <use xlink:href="#LiberationSans-69" transform="translate(233.349609 0)"/>
1839
- <use xlink:href="#LiberationSans-6e" transform="translate(255.566406 0)"/>
1840
- <use xlink:href="#LiberationSans-74" transform="translate(311.181641 0)"/>
1841
- <use xlink:href="#LiberationSans-20" transform="translate(338.964844 0)"/>
1842
- <use xlink:href="#LiberationSans-31" transform="translate(366.748047 0)"/>
1843
- <use xlink:href="#LiberationSans-2e" transform="translate(422.363281 0)"/>
1844
- <use xlink:href="#LiberationSans-33" transform="translate(450.146484 0)"/>
1845
- <use xlink:href="#LiberationSans-38" transform="translate(505.761719 0)"/>
1846
- <use xlink:href="#LiberationSans-2e" transform="translate(561.376953 0)"/>
1847
- <use xlink:href="#LiberationSans-30" transform="translate(589.160156 0)"/>
1848
- </g>
1849
- </g>
1850
- <g id="legend_1">
1851
- <g id="text_31">
1852
- <!-- File size -->
1853
- <g style="fill: #262626" transform="translate(541.779063 64.726875) scale(0.1 -0.1)">
1854
- <defs>
1855
- <path id="LiberationSans-46" d="M 1122 3916
1856
- L 1122 2278
1857
- L 3578 2278
1858
- L 3578 1784
1859
- L 1122 1784
1860
- L 1122 0
1861
- L 525 0
1862
- L 525 4403
1863
- L 3653 4403
1864
- L 3653 3916
1865
- L 1122 3916
1866
- z
1867
- " transform="scale(0.015625)"/>
1868
- <path id="LiberationSans-7a" d="M 259 0
1869
- L 259 428
1870
- L 2150 2947
1871
- L 366 2947
1872
- L 366 3381
1873
- L 2816 3381
1874
- L 2816 2953
1875
- L 922 434
1876
- L 2881 434
1877
- L 2881 0
1878
- L 259 0
1879
- z
1880
- " transform="scale(0.015625)"/>
1881
- </defs>
1882
- <use xlink:href="#LiberationSans-46"/>
1883
- <use xlink:href="#LiberationSans-69" transform="translate(61.083984 0)"/>
1884
- <use xlink:href="#LiberationSans-6c" transform="translate(83.300781 0)"/>
1885
- <use xlink:href="#LiberationSans-65" transform="translate(105.517578 0)"/>
1886
- <use xlink:href="#LiberationSans-20" transform="translate(161.132812 0)"/>
1887
- <use xlink:href="#LiberationSans-73" transform="translate(188.916016 0)"/>
1888
- <use xlink:href="#LiberationSans-69" transform="translate(238.916016 0)"/>
1889
- <use xlink:href="#LiberationSans-7a" transform="translate(261.132812 0)"/>
1890
- <use xlink:href="#LiberationSans-65" transform="translate(311.132812 0)"/>
1891
- </g>
1892
- </g>
1893
- <g id="line2d_75">
1894
- <path d="M 534.165 75.54875
1895
- L 544.165 75.54875
1896
- L 554.165 75.54875
1897
- " style="fill: none; stroke: #a6cee4; stroke-width: 2; stroke-linecap: round"/>
1898
- <g>
1899
- <use xlink:href="#m489fa6f680" x="544.165" y="75.54875" style="fill: #a6cee4; stroke: #a6cee4"/>
1900
- </g>
1901
- </g>
1902
- <g id="text_32">
1903
- <!-- 1 KiB -->
1904
- <g style="fill: #262626" transform="translate(562.165 79.04875) scale(0.1 -0.1)">
1905
- <defs>
1906
- <path id="LiberationSans-4b" d="M 3456 0
1907
- L 1697 2125
1908
- L 1122 1688
1909
- L 1122 0
1910
- L 525 0
1911
- L 525 4403
1912
- L 1122 4403
1913
- L 1122 2197
1914
- L 3244 4403
1915
- L 3947 4403
1916
- L 2072 2491
1917
- L 4197 0
1918
- L 3456 0
1919
- z
1920
- " transform="scale(0.015625)"/>
1921
- <path id="LiberationSans-42" d="M 3931 1241
1922
- Q 3931 653 3503 326
1923
- Q 3075 0 2313 0
1924
- L 525 0
1925
- L 525 4403
1926
- L 2125 4403
1927
- Q 3675 4403 3675 3334
1928
- Q 3675 2944 3456 2678
1929
- Q 3238 2413 2838 2322
1930
- Q 3363 2259 3647 1970
1931
- Q 3931 1681 3931 1241
1932
- z
1933
- M 3075 3263
1934
- Q 3075 3619 2831 3772
1935
- Q 2588 3925 2125 3925
1936
- L 1122 3925
1937
- L 1122 2531
1938
- L 2125 2531
1939
- Q 2603 2531 2839 2711
1940
- Q 3075 2891 3075 3263
1941
- z
1942
- M 3328 1288
1943
- Q 3328 2066 2234 2066
1944
- L 1122 2066
1945
- L 1122 478
1946
- L 2281 478
1947
- Q 2828 478 3078 681
1948
- Q 3328 884 3328 1288
1949
- z
1950
- " transform="scale(0.015625)"/>
1951
- </defs>
1952
- <use xlink:href="#LiberationSans-31"/>
1953
- <use xlink:href="#LiberationSans-20" transform="translate(55.615234 0)"/>
1954
- <use xlink:href="#LiberationSans-4b" transform="translate(83.398438 0)"/>
1955
- <use xlink:href="#LiberationSans-69" transform="translate(150.097656 0)"/>
1956
- <use xlink:href="#LiberationSans-42" transform="translate(172.314453 0)"/>
1957
- </g>
1958
- </g>
1959
- <g id="line2d_76">
1960
- <path d="M 534.165 89.870625
1961
- L 544.165 89.870625
1962
- L 554.165 89.870625
1963
- " style="fill: none; stroke: #6aaed6; stroke-width: 2; stroke-linecap: round"/>
1964
- <g>
1965
- <use xlink:href="#mbae9abc311" x="544.165" y="89.870625" style="fill: #6aaed6; stroke: #6aaed6"/>
1966
- </g>
1967
- </g>
1968
- <g id="text_33">
1969
- <!-- 3 KiB -->
1970
- <g style="fill: #262626" transform="translate(562.165 93.370625) scale(0.1 -0.1)">
1971
- <use xlink:href="#LiberationSans-33"/>
1972
- <use xlink:href="#LiberationSans-20" transform="translate(55.615234 0)"/>
1973
- <use xlink:href="#LiberationSans-4b" transform="translate(83.398438 0)"/>
1974
- <use xlink:href="#LiberationSans-69" transform="translate(150.097656 0)"/>
1975
- <use xlink:href="#LiberationSans-42" transform="translate(172.314453 0)"/>
1976
- </g>
1977
- </g>
1978
- <g id="line2d_77">
1979
- <path d="M 534.165 104.1925
1980
- L 544.165 104.1925
1981
- L 554.165 104.1925
1982
- " style="fill: none; stroke: #3b8bc2; stroke-width: 2; stroke-linecap: round"/>
1983
- <g>
1984
- <use xlink:href="#m9cd1aa9f40" x="544.165" y="104.1925" style="fill: #3b8bc2; stroke: #3b8bc2"/>
1985
- </g>
1986
- </g>
1987
- <g id="text_34">
1988
- <!-- 5 KiB -->
1989
- <g style="fill: #262626" transform="translate(562.165 107.6925) scale(0.1 -0.1)">
1990
- <use xlink:href="#LiberationSans-35"/>
1991
- <use xlink:href="#LiberationSans-20" transform="translate(55.615234 0)"/>
1992
- <use xlink:href="#LiberationSans-4b" transform="translate(83.398438 0)"/>
1993
- <use xlink:href="#LiberationSans-69" transform="translate(150.097656 0)"/>
1994
- <use xlink:href="#LiberationSans-42" transform="translate(172.314453 0)"/>
1995
- </g>
1996
- </g>
1997
- <g id="line2d_78">
1998
- <path d="M 534.165 118.514375
1999
- L 544.165 118.514375
2000
- L 554.165 118.514375
2001
- " style="fill: none; stroke: #1764ab; stroke-width: 2; stroke-linecap: round"/>
2002
- <g>
2003
- <use xlink:href="#m1746fe0f82" x="544.165" y="118.514375" style="fill: #1764ab; stroke: #1764ab"/>
2004
- </g>
2005
- </g>
2006
- <g id="text_35">
2007
- <!-- 7 KiB -->
2008
- <g style="fill: #262626" transform="translate(562.165 122.014375) scale(0.1 -0.1)">
2009
- <use xlink:href="#LiberationSans-37"/>
2010
- <use xlink:href="#LiberationSans-20" transform="translate(55.615234 0)"/>
2011
- <use xlink:href="#LiberationSans-4b" transform="translate(83.398438 0)"/>
2012
- <use xlink:href="#LiberationSans-69" transform="translate(150.097656 0)"/>
2013
- <use xlink:href="#LiberationSans-42" transform="translate(172.314453 0)"/>
2014
- </g>
2015
- </g>
2016
- <g id="line2d_79">
2017
- <path d="M 534.165 132.83625
2018
- L 544.165 132.83625
2019
- L 554.165 132.83625
2020
- " style="fill: none; stroke: #083c7d; stroke-width: 2; stroke-linecap: round"/>
2021
- <g>
2022
- <use xlink:href="#m5721731c55" x="544.165" y="132.83625" style="fill: #083c7d; stroke: #083c7d"/>
2023
- </g>
2024
- </g>
2025
- <g id="text_36">
2026
- <!-- 9 KiB -->
2027
- <g style="fill: #262626" transform="translate(562.165 136.33625) scale(0.1 -0.1)">
2028
- <use xlink:href="#LiberationSans-39"/>
2029
- <use xlink:href="#LiberationSans-20" transform="translate(55.615234 0)"/>
2030
- <use xlink:href="#LiberationSans-4b" transform="translate(83.398438 0)"/>
2031
- <use xlink:href="#LiberationSans-69" transform="translate(150.097656 0)"/>
2032
- <use xlink:href="#LiberationSans-42" transform="translate(172.314453 0)"/>
2033
- </g>
2034
- </g>
2035
- </g>
2036
- </g>
2037
- <g id="text_37">
2038
- <!-- ryl vs yamllint (hyperfine, 5 runs per point) -->
2039
- <g style="fill: #262626" transform="translate(383.351875 17.340937) scale(0.13 -0.13)">
2040
- <defs>
2041
- <path id="LiberationSans-76" d="M 1916 0
2042
- L 1250 0
2043
- L 22 3381
2044
- L 622 3381
2045
- L 1366 1181
2046
- Q 1406 1056 1581 441
2047
- L 1691 806
2048
- L 1813 1175
2049
- L 2581 3381
2050
- L 3178 3381
2051
- L 1916 0
2052
- z
2053
- " transform="scale(0.015625)"/>
2054
- <path id="LiberationSans-68" d="M 991 2803
2055
- Q 1172 3134 1426 3289
2056
- Q 1681 3444 2072 3444
2057
- Q 2622 3444 2883 3170
2058
- Q 3144 2897 3144 2253
2059
- L 3144 0
2060
- L 2578 0
2061
- L 2578 2144
2062
- Q 2578 2500 2512 2673
2063
- Q 2447 2847 2297 2928
2064
- Q 2147 3009 1881 3009
2065
- Q 1484 3009 1245 2734
2066
- Q 1006 2459 1006 1994
2067
- L 1006 0
2068
- L 444 0
2069
- L 444 4638
2070
- L 1006 4638
2071
- L 1006 3431
2072
- Q 1006 3241 995 3037
2073
- Q 984 2834 981 2803
2074
- L 991 2803
2075
- z
2076
- " transform="scale(0.015625)"/>
2077
- <path id="LiberationSans-70" d="M 3291 1706
2078
- Q 3291 -63 2047 -63
2079
- Q 1266 -63 997 525
2080
- L 981 525
2081
- Q 994 500 994 -6
2082
- L 994 -1328
2083
- L 431 -1328
2084
- L 431 2691
2085
- Q 431 3213 413 3381
2086
- L 956 3381
2087
- Q 959 3369 965 3292
2088
- Q 972 3216 980 3056
2089
- Q 988 2897 988 2838
2090
- L 1000 2838
2091
- Q 1150 3150 1397 3295
2092
- Q 1644 3441 2047 3441
2093
- Q 2672 3441 2981 3022
2094
- Q 3291 2603 3291 1706
2095
- z
2096
- M 2700 1694
2097
- Q 2700 2400 2509 2703
2098
- Q 2319 3006 1903 3006
2099
- Q 1569 3006 1380 2865
2100
- Q 1191 2725 1092 2426
2101
- Q 994 2128 994 1650
2102
- Q 994 984 1206 668
2103
- Q 1419 353 1897 353
2104
- Q 2316 353 2508 661
2105
- Q 2700 969 2700 1694
2106
- z
2107
- " transform="scale(0.015625)"/>
2108
- <path id="LiberationSans-2c" d="M 1203 684
2109
- L 1203 159
2110
- Q 1203 -172 1143 -394
2111
- Q 1084 -616 959 -819
2112
- L 575 -819
2113
- Q 869 -394 869 0
2114
- L 594 0
2115
- L 594 684
2116
- L 1203 684
2117
- z
2118
- " transform="scale(0.015625)"/>
2119
- </defs>
2120
- <use xlink:href="#LiberationSans-72"/>
2121
- <use xlink:href="#LiberationSans-79" transform="translate(33.300781 0)"/>
2122
- <use xlink:href="#LiberationSans-6c" transform="translate(83.300781 0)"/>
2123
- <use xlink:href="#LiberationSans-20" transform="translate(105.517578 0)"/>
2124
- <use xlink:href="#LiberationSans-76" transform="translate(133.300781 0)"/>
2125
- <use xlink:href="#LiberationSans-73" transform="translate(183.300781 0)"/>
2126
- <use xlink:href="#LiberationSans-20" transform="translate(233.300781 0)"/>
2127
- <use xlink:href="#LiberationSans-79" transform="translate(261.083984 0)"/>
2128
- <use xlink:href="#LiberationSans-61" transform="translate(311.083984 0)"/>
2129
- <use xlink:href="#LiberationSans-6d" transform="translate(366.699219 0)"/>
2130
- <use xlink:href="#LiberationSans-6c" transform="translate(450 0)"/>
2131
- <use xlink:href="#LiberationSans-6c" transform="translate(472.216797 0)"/>
2132
- <use xlink:href="#LiberationSans-69" transform="translate(494.433594 0)"/>
2133
- <use xlink:href="#LiberationSans-6e" transform="translate(516.650391 0)"/>
2134
- <use xlink:href="#LiberationSans-74" transform="translate(572.265625 0)"/>
2135
- <use xlink:href="#LiberationSans-20" transform="translate(600.048828 0)"/>
2136
- <use xlink:href="#LiberationSans-28" transform="translate(627.832031 0)"/>
2137
- <use xlink:href="#LiberationSans-68" transform="translate(661.132812 0)"/>
2138
- <use xlink:href="#LiberationSans-79" transform="translate(716.748047 0)"/>
2139
- <use xlink:href="#LiberationSans-70" transform="translate(766.748047 0)"/>
2140
- <use xlink:href="#LiberationSans-65" transform="translate(822.363281 0)"/>
2141
- <use xlink:href="#LiberationSans-72" transform="translate(877.978516 0)"/>
2142
- <use xlink:href="#LiberationSans-66" transform="translate(911.279297 0)"/>
2143
- <use xlink:href="#LiberationSans-69" transform="translate(939.0625 0)"/>
2144
- <use xlink:href="#LiberationSans-6e" transform="translate(961.279297 0)"/>
2145
- <use xlink:href="#LiberationSans-65" transform="translate(1016.894531 0)"/>
2146
- <use xlink:href="#LiberationSans-2c" transform="translate(1072.509766 0)"/>
2147
- <use xlink:href="#LiberationSans-20" transform="translate(1100.292969 0)"/>
2148
- <use xlink:href="#LiberationSans-35" transform="translate(1128.076172 0)"/>
2149
- <use xlink:href="#LiberationSans-20" transform="translate(1183.691406 0)"/>
2150
- <use xlink:href="#LiberationSans-72" transform="translate(1211.474609 0)"/>
2151
- <use xlink:href="#LiberationSans-75" transform="translate(1244.775391 0)"/>
2152
- <use xlink:href="#LiberationSans-6e" transform="translate(1300.390625 0)"/>
2153
- <use xlink:href="#LiberationSans-73" transform="translate(1356.005859 0)"/>
2154
- <use xlink:href="#LiberationSans-20" transform="translate(1406.005859 0)"/>
2155
- <use xlink:href="#LiberationSans-70" transform="translate(1433.789062 0)"/>
2156
- <use xlink:href="#LiberationSans-65" transform="translate(1489.404297 0)"/>
2157
- <use xlink:href="#LiberationSans-72" transform="translate(1545.019531 0)"/>
2158
- <use xlink:href="#LiberationSans-20" transform="translate(1578.320312 0)"/>
2159
- <use xlink:href="#LiberationSans-70" transform="translate(1606.103516 0)"/>
2160
- <use xlink:href="#LiberationSans-6f" transform="translate(1661.71875 0)"/>
2161
- <use xlink:href="#LiberationSans-69" transform="translate(1717.333984 0)"/>
2162
- <use xlink:href="#LiberationSans-6e" transform="translate(1739.550781 0)"/>
2163
- <use xlink:href="#LiberationSans-74" transform="translate(1795.166016 0)"/>
2164
- <use xlink:href="#LiberationSans-29" transform="translate(1822.949219 0)"/>
2165
- </g>
2166
- </g>
2167
- </g>
2168
- <defs>
2169
- <clipPath id="p97247662b6">
2170
- <rect x="42.33" y="48.48" width="472.035" height="309.06"/>
2171
- </clipPath>
2172
- <clipPath id="pc7b6b5bf49">
2173
- <rect x="525.165" y="48.48" width="472.035" height="309.06"/>
2174
- </clipPath>
2175
- </defs>
2176
- </svg>