aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-03-09 23:16:16 -0500
committerPaul Duncan <pabs@pablotron.org>2022-03-09 23:16:16 -0500
commit28c1f310bc45f98f27b59bb7890989e63d684d8e (patch)
treeed44de0bc0c7196d7e02b7ccb7ecc3d117e6bbcf
parent6d992bf825699d836859a031eff96fdb020b6a2a (diff)
downloadpablotron.org-28c1f310bc45f98f27b59bb7890989e63d684d8e.tar.bz2
pablotron.org-28c1f310bc45f98f27b59bb7890989e63d684d8e.zip
add posts/2022-03-09-fastest-js-html-escape.md
-rw-r--r--content/posts/2022-03-09-fastest-js-html-escape.md194
-rw-r--r--static/files/posts/fastest-js-html-escape/sizes.svg1
-rw-r--r--static/files/posts/fastest-js-html-escape/times.svg1
3 files changed, 196 insertions, 0 deletions
diff --git a/content/posts/2022-03-09-fastest-js-html-escape.md b/content/posts/2022-03-09-fastest-js-html-escape.md
new file mode 100644
index 0000000..ee28920
--- /dev/null
+++ b/content/posts/2022-03-09-fastest-js-html-escape.md
@@ -0,0 +1,194 @@
+---
+slug: fastest-js-html-escape
+title: "Fastest JavaScript HTML Escape"
+date: "2022-03-09T21:42:57-04:00"
+---
+What is the fastest [JavaScript][] [HTML][] escape implementation? To
+answer that question I did the following:
+
+1. Wrote [10 different JavaScript HTML escape implementations][impls].
+2. Created a web-based benchmarking tool which uses [web workers][] and the
+ [Performance API][] to test the with a variety of string sizes and
+ generates a downloadable [CSV][] of results.
+3. A set of scripts to aggregate and plot the results.
+
+## Results
+
+The times are from 64-bit [Chrome 99][chrome] running in [Debian][] on a
+[Lenovo Thinkpad X1 Carbon (9th Gen)][laptop]; the specific timing
+results may vary for your system, but the relative results should be
+comparable.
+
+The first chart shows implementations' mean call time (95% [CI][]) as
+the string length varies:
+
+{{< figure
+ src="/files/posts/fastest-js-html-escape/sizes.svg"
+ class=image
+ caption="String Size vs. HTML Escape Function Call Time (&mu;s)"
+>}}
+
+The second chart comparse implementations' mean call time (95% [CI][])
+for 3000 character strings:
+
+{{< figure
+ src="/files/posts/fastest-js-html-escape/times.svg"
+ class=image
+ caption="HTML Escape Function Call Times"
+>}}
+
+The red, blue, and green bars in this chart indicate the slow, medium,
+and fast functions, respectively.
+
+### Slow Functions
+
+Anything that uses a capturing [regular expression][re].
+
+#### Example: h2
+
+```js
+const h2 = (() => {
+ // characters to match
+ const M = /([&<>'"])/g;
+
+ // map of char to entity
+ const E = {
+ '&': '&amp;',
+ '<': '&lt;',
+ '>': '&gt;',
+ "'": '&apos;',
+ '"': '&quot;',
+ };
+
+ // build and return escape function
+ return (v) => v.replace(M, (_, c) => E[c]);
+})();
+```
+&nbsp;
+
+The capture is definitely at fault, because the call times for identical
+non-capturing implementations (example: `h4`) are comparable to
+everything else.
+
+### Medium Functions
+
+Except for the capturing [regular expression][re] implementations in the
+previous section, the remaining implementations' call times were comparable
+with one another. This includes:
+
+* Reducing an array of string literals and calling `replace()`.
+* Several variants of reducing an array of non-capturing [regular
+ expression][re] with `replace()`.
+
+#### Example: h4
+
+```js
+const h4 = (() => {
+ // characters to match
+ const M = /[&<>'"]/g;
+
+ // map of char to entity
+ const E = {
+ '&': '&amp;',
+ '<': '&lt;',
+ '>': '&gt;',
+ "'": '&apos;',
+ '"': '&quot;',
+ };
+
+ // build and return escape function
+ return (v) => v.replace(M, (c) => E[c]);
+})();
+```
+
+### Fast Functions
+
+Three implementations are slightly faster than the others. They all use
+`replaceAll()` and match on string literals. Their call times are
+indistinguishable from one another:
+
+* h7: Reduce, Replace All
+* h8: Reduce, Replace All, Frozen
+* h9: Replace All Literal
+
+#### Example: h7
+
+```js
+const h7 = (() => {
+ const E = [
+ ['&', '&amp;'],
+ ['<', '&lt;'],
+ ['>', '&gt;'],
+ ["'", '&apos;'],
+ ['"', '&quot;'],
+ ];
+
+ return (v) => E.reduce((r, e) => r.replaceAll(e[0], e[1]), v);
+})();
+```
+&nbsp;
+
+## The Winner: h9
+
+Even though the call times for `h7`, `h8`, and `h9` are
+indistinguishable, I actually prefer `h9` because:
+
+* The most legible. It is the easiest implementation to read for
+ beginning developers and developers who are uncomfortable with
+ functional programming.
+* The simplist parse (probably).
+* Slightly easier for browsers to optimize (probably).
+
+Here it is:
+
+```js
+// html escape (replaceall explicit)
+const h9 = (v) => {
+ return v.replaceAll('&', '&amp;')
+ .replaceAll('<', '&lt;')
+ .replaceAll('>', '&gt;')
+ .replaceAll("'", '&apos;')
+ .replaceAll('"', '&quot;');
+};
+```
+&nbsp;
+
+## Notes
+
+* The benchmarking interface, aggregation and plotting scripts, and
+ additional information are available in the [companion GitHub
+ repository][repo].
+* I also wrote a [DOM][]/`textContent` implementation, but I couldn't
+ compare it with the other implementations because [web workers][]
+ don't have [DOM][] access. I would be surprised if it was as fast as
+ the fast functions above.
+* `Object.freeze()` doesn't appear to help, at least not in
+ [Chrome][].
+
+
+[repo]: https://github.com/pablotron/fastest-js-html-escape
+ "Fastest JavaScript HTML Escape"
+[js]: https://en.wikipedia.org/wiki/ECMAScript
+ "JavaScript programming language."
+[html]: https://en.wikipedia.org/wiki/HTML
+ "HyperText Markup Language"
+[impls]: https://github.com/pablotron/fastest-js-html-escape/blob/main/public/common.js
+ "Variety of JavaScript HTML escape implementations."
+[web workers]: https://en.wikipedia.org/wiki/Web_worker
+ "JavaScript that runs in a background thread and communicates via messages with HTML page."
+[performance api]: https://developer.mozilla.org/en-US/docs/Web/API/Performance
+ "Web performance measurement API."
+[csv]: https://en.wikipedia.org/wiki/Comma-separated_values
+ "Comma-Separated Value file."
+[chrome]: https://www.google.com/chrome/
+ "Google Chrome web browser."
+[debian]: https://debian.org/
+ "Debian Linux distribution."
+[laptop]: https://en.wikipedia.org/wiki/ThinkPad_X1_series#X1_Carbon_(9th_Gen)
+ "Lenovo Thinkpad X1 Carbon (9th Gen)"
+[re]: https://en.wikipedia.org/wiki/Regular_expression
+ "Regular expression."
+[ci]: https://en.wikipedia.org/wiki/Confidence_interval
+ "Confidence interval."
+[dom]: https://en.wikipedia.org/wiki/Document_Object_Model
+ "Document Object Model"
diff --git a/static/files/posts/fastest-js-html-escape/sizes.svg b/static/files/posts/fastest-js-html-escape/sizes.svg
new file mode 100644
index 0000000..09f6491
--- /dev/null
+++ b/static/files/posts/fastest-js-html-escape/sizes.svg
@@ -0,0 +1 @@
+<svg height="518.4pt" viewBox="0 0 691.2 518.4" width="691.2pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style>*{stroke-linecap:butt;stroke-linejoin:round}</style></defs><g id="figure_1"><g id="patch_1"><path d="M0 518.4H691.2V0H0z" style="fill:#fff"/></g><g id="axes_1"><g id="patch_2"><path d="M86.4 461.376H622.08V62.208H86.4z" style="fill:#fff"/></g><g id="matplotlib.axis_1"><g id="xtick_1"><g id="line2d_1"><defs><path d="M0 0V3.5" id="m653946e6c1" style="stroke:#000;stroke-width:.8"/></defs><g><use style="stroke:#000;stroke-width:.8" x="109.120389" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_1"><g transform="translate(105.939139 475.974437)scale(0.1 -0.1)"><defs><path d="M31.78125 66.40625q-7.609375.0-11.453125-7.5Q16.5 51.421875 16.5 36.375q0-14.984375 3.828125-22.484375 3.84375-7.5 11.453125-7.5 7.671875.0 11.5 7.5 3.84375 7.5 3.84375 22.484375.0 15.046875-3.84375 22.53125-3.828125 7.5-11.5 7.5zm0 7.8125q12.265625.0 18.734375-9.703125 6.46875-9.6875 6.46875-28.140625.0-18.40625-6.46875-28.109375-6.46875-9.6875-18.734375-9.6875-12.25.0-18.71875 9.6875Q6.59375 17.96875 6.59375 36.375q0 18.453125 6.46875 28.140625 6.46875 9.703125 18.71875 9.703125z" id="DejaVuSans-48"/></defs><use xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_2"><g id="line2d_2"><g><use style="stroke:#000;stroke-width:.8" x="190.555476" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_2"><g transform="translate(181.011726 475.974437)scale(0.1 -0.1)"><defs><path d="M10.796875 72.90625h38.71875v-8.3125h-29.6875V46.734375q2.140625.734375 4.28125 1.09375 2.15625.359375 4.3125.359375Q40.625 48.1875 47.75 41.5q7.140625-6.6875 7.140625-18.109375.0-11.765625-7.328125-18.296875-7.328125-6.515625-20.65625-6.515625-4.59375.0-9.359375.78125-4.75.78125-9.828125 2.34375V11.625q4.390625-2.390625 9.078125-3.5625t9.90625-1.171875q8.453125.0 13.375 4.4375 4.9375 4.4375 4.9375 12.0625.0 7.609375-4.9375 12.046875-4.921875 4.453125-13.375 4.453125-3.953125.0-7.890625-.875-3.921875-.875-8.015625-2.734375z" id="DejaVuSans-53"/></defs><use xlink:href="#DejaVuSans-53"/><use x="63.623047" xlink:href="#DejaVuSans-48"/><use x="127.246094" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_3"><g id="line2d_3"><g><use style="stroke:#000;stroke-width:.8" x="271.990562" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_3"><g transform="translate(259.265562 475.974437)scale(0.1 -0.1)"><defs><path d="M12.40625 8.296875H28.515625v55.625L10.984375 60.40625v8.984375l17.4375 3.515625H38.28125V8.296875H54.390625V0H12.40625z" id="DejaVuSans-49"/></defs><use xlink:href="#DejaVuSans-49"/><use x="63.623047" xlink:href="#DejaVuSans-48"/><use x="127.246094" xlink:href="#DejaVuSans-48"/><use x="190.869141" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_4"><g id="line2d_4"><g><use style="stroke:#000;stroke-width:.8" x="353.425649" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_4"><g transform="translate(340.700649 475.974437)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-49"/><use x="63.623047" xlink:href="#DejaVuSans-53"/><use x="127.246094" xlink:href="#DejaVuSans-48"/><use x="190.869141" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_5"><g id="line2d_5"><g><use style="stroke:#000;stroke-width:.8" x="434.860736" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_5"><g transform="translate(422.135736 475.974437)scale(0.1 -0.1)"><defs><path d="M19.1875 8.296875H53.609375V0H7.328125V8.296875Q12.9375 14.109375 22.625 23.890625 32.328125 33.6875 34.8125 36.53125q4.734375 5.3125 6.609375 9 1.890625 3.6875 1.890625 7.25.0 5.8125-4.078125 9.46875-4.078125 3.671875-10.625 3.671875-4.640625.0-9.796875-1.609375-5.140625-1.609375-11-4.890625v9.96875Q13.765625 71.78125 18.9375 73q5.1875 1.21875 9.484375 1.21875 11.328125.0 18.0625-5.671875 6.734375-5.65625 6.734375-15.125.0-4.5-1.6875-8.53125-1.671875-4.015625-6.125-9.484375-1.21875-1.421875-7.765625-8.1875Q31.109375 20.453125 19.1875 8.296875z" id="DejaVuSans-50"/></defs><use xlink:href="#DejaVuSans-50"/><use x="63.623047" xlink:href="#DejaVuSans-48"/><use x="127.246094" xlink:href="#DejaVuSans-48"/><use x="190.869141" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_6"><g id="line2d_6"><g><use style="stroke:#000;stroke-width:.8" x="516.295822" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_6"><g transform="translate(503.570822 475.974437)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-50"/><use x="63.623047" xlink:href="#DejaVuSans-53"/><use x="127.246094" xlink:href="#DejaVuSans-48"/><use x="190.869141" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_7"><g id="line2d_7"><g><use style="stroke:#000;stroke-width:.8" x="597.730909" xlink:href="#m653946e6c1" y="461.376"/></g></g><g id="text_7"><g transform="translate(585.005909 475.974437)scale(0.1 -0.1)"><defs><path d="M40.578125 39.3125Q47.65625 37.796875 51.625 33q3.984375-4.78125 3.984375-11.8125.0-10.78125-7.421875-16.703125-7.421875-5.90625-21.09375-5.90625-4.578125.0-9.4375.90625T7.625 2.203125V11.71875q4.09375-2.390625 8.96875-3.609375 4.890625-1.21875 10.21875-1.21875 9.265625.0 14.125 3.65625T45.796875 21.1875q0 6.453125-4.515625 10.078125-4.515625 3.640625-12.5625 3.640625h-8.5v8.109375h8.890625q7.265625.0 11.125 2.90625t3.859375 8.375q0 5.609375-3.984375 8.609375-3.96875 3.015625-11.390625 3.015625-4.0625.0-8.703125-.890625Q15.375 64.15625 9.8125 62.3125v8.78125q5.625 1.5625 10.53125 2.34375t9.25.78125q11.234375.0 17.765625-5.109375 6.546875-5.09375 6.546875-13.78125.0-6.0625-3.46875-10.234375T40.578125 39.3125z" id="DejaVuSans-51"/></defs><use xlink:href="#DejaVuSans-51"/><use x="63.623047" xlink:href="#DejaVuSans-48"/><use x="127.246094" xlink:href="#DejaVuSans-48"/><use x="190.869141" xlink:href="#DejaVuSans-48"/></g></g></g><g id="text_8"><g transform="translate(301.216563 489.652562)scale(0.1 -0.1)"><defs><path d="M53.515625 70.515625v-9.625q-5.609375 2.6875-10.59375 4-4.984375 1.328125-9.625 1.328125-8.046875.0-12.421875-3.125T16.5 54.203125q0-4.84375 2.90625-7.3125 2.90625-2.453125 11.015625-3.96875L36.375 41.703125q11.03125-2.109375 16.28125-7.40625t5.25-14.171875q0-10.609375-7.109375-16.078125-7.09375-5.46875-20.8125-5.46875Q24.8125-1.421875 18.96875-.25 13.140625.921875 6.890625 3.21875V13.375q6-3.359375 11.765625-5.078125Q24.421875 6.59375 29.984375 6.59375q8.4375.0 13.03125 3.3125 4.59375 3.328125 4.59375 9.484375.0 5.359375-3.296875 8.390625T33.5 32.328125L27.484375 33.5q-11.03125 2.1875-15.96875 6.875Q6.59375 45.0625 6.59375 53.421875q0 9.671875 6.8125 15.234375t18.765625 5.5625q5.140625.0 10.453125-.9375 5.328125-.921875 10.890625-2.765625z" id="DejaVuSans-83"/><path d="M18.3125 70.21875V54.6875h18.5V47.703125h-18.5v-29.6875q0-6.6875 1.828125-8.59375t7.453125-1.90625H36.8125V0H27.59375Q17.1875.0 13.234375 3.875 9.28125 7.765625 9.28125 18.015625v29.6875H2.6875V54.6875H9.28125V70.21875z" id="DejaVuSans-116"/><path d="M41.109375 46.296875q-1.515625.875-3.296875 1.28125Q36.03125 48 33.890625 48q-7.625.0-11.703125-4.953125T18.109375 28.8125V0H9.078125V54.6875h9.03125v-8.5q2.84375 4.984375 7.375 7.390625Q30.03125 56 36.53125 56q.921875.0 2.046875-.125 1.125-.109375 2.484375-.359375z" id="DejaVuSans-114"/><path d="M9.421875 54.6875H18.40625V0H9.421875zm0 21.296875H18.40625V64.59375H9.421875z" id="DejaVuSans-105"/><path d="M54.890625 33.015625V0H45.90625V32.71875q0 7.765625-3.03125 11.609375Q39.84375 48.1875 33.796875 48.1875q-7.28125.0-11.484375-4.640625-4.203125-4.625-4.203125-12.640625V0H9.078125V54.6875h9.03125v-8.5q3.234375 4.9375 7.59375 7.375Q30.078125 56 35.796875 56q9.421875.0 14.25-5.828125 4.84375-5.828125 4.84375-17.15625z" id="DejaVuSans-110"/><path d="M45.40625 27.984375q0 9.765625-4.03125 15.125-4.015625 5.375-11.296875 5.375-7.21875.0-11.25-5.375-4.03125-5.359375-4.03125-15.125.0-9.71875 4.03125-15.09375t11.25-5.375q7.28125.0 11.296875 5.375 4.03125 5.375 4.03125 15.09375zM54.390625 6.78125q0-13.953125-6.203125-20.765625-6.1875-6.8125-18.984375-6.8125-4.734375.0-8.9375.703125t-8.15625 2.171875V-9.1875q3.953125-2.140625 7.8125-3.15625Q23.78125-13.375 27.78125-13.375q8.84375.0 13.234375 4.609375t4.390625 13.9375V9.625q-2.78125-4.84375-7.125-7.234375T27.875.0Q17.828125.0 11.671875 7.65625q-6.15625 7.671875-6.15625 20.328125.0 12.6875 6.15625 20.34375Q17.828125 56 27.875 56q6.0625.0 10.40625-2.390625t7.125-7.21875V54.6875h8.984375z" id="DejaVuSans-103"/><path id="DejaVuSans-32"/><path d="M9.8125 72.90625h9.859375V8.296875h35.5V0H9.8125z" id="DejaVuSans-76"/><path d="M56.203125 29.59375V25.203125h-41.3125q.59375-9.28125 5.59375-14.140625t13.9375-4.859375q5.171875.0 10.03125 1.265625t9.65625 3.8125v-8.5Q49.265625.734375 44.1875-.34375T33.890625-1.421875q-13.09375.0-20.734375 7.609375-7.640625 7.625-7.640625 20.625.0 13.421875 7.25 21.296875Q20.015625 56 32.328125 56q11.03125.0 17.453125-7.109375 6.421875-7.09375 6.421875-19.296875zM47.21875 32.234375q-.09375 7.359375-4.125 11.75-4.03125 4.40625-10.671875 4.40625-7.515625.0-12.03125-4.25T15.1875 32.171875z" id="DejaVuSans-101"/><path d="M54.890625 33.015625V0H45.90625V32.71875q0 7.765625-3.03125 11.609375Q39.84375 48.1875 33.796875 48.1875q-7.28125.0-11.484375-4.640625-4.203125-4.625-4.203125-12.640625V0H9.078125V75.984375h9.03125V46.1875q3.234375 4.9375 7.59375 7.375Q30.078125 56 35.796875 56q9.421875.0 14.25-5.828125 4.84375-5.828125 4.84375-17.15625z" id="DejaVuSans-104"/><path d="M31 75.875q-6.53125-11.21875-9.71875-22.21875-3.171875-10.984375-3.171875-22.265625.0-11.265625 3.203125-22.328125T31-13.1875H23.1875Q15.875-1.703125 12.234375 9.375T8.59375 31.390625q0 10.890625 3.609375 21.921875 3.625 11.046875 10.984375 22.5625z" id="DejaVuSans-40"/><path d="M48.6875 27.296875q0 9.90625-4.078125 15.546875T33.40625 48.484375q-7.140625.0-11.21875-5.640625T18.109375 27.296875 22.1875 11.75 33.40625 6.109375q7.125.0 11.203125 5.640625T48.6875 27.296875zM18.109375 46.390625q2.84375 4.875 7.15625 7.234375Q29.59375 56 35.59375 56q9.96875.0 16.1875-7.90625 6.234375-7.90625 6.234375-20.796875T51.78125 6.484375q-6.21875-7.90625-16.1875-7.90625-6 0-10.328125 2.375-4.3125 2.375-7.15625 7.25V0H9.078125V75.984375h9.03125z" id="DejaVuSans-98"/><path d="M32.171875-5.078125Q28.375-14.84375 24.75-17.8125q-3.609375-2.984375-9.65625-2.984375H7.90625v7.515625H13.1875q3.703125.0 5.75 1.765625Q21-9.765625 23.484375-3.21875L25.09375.875 2.984375 54.6875H12.5L29.59375 11.921875 46.6875 54.6875h9.515625z" id="DejaVuSans-121"/><path d="M44.28125 53.078125v-8.5Q40.484375 46.53125 36.375 47.5q-4.09375.984375-8.5.984375-6.6875.0-10.03125-2.046875T14.5 40.28125q0-3.125 2.390625-4.90625t9.625-3.390625l3.078125-.6875Q39.15625 29.25 43.1875 25.515625T47.21875 15.09375q0-7.625-6.03125-12.078125-6.03125-4.4375-16.578125-4.4375-4.390625.0-9.15625.859375T5.421875 2v9.28125q4.984375-2.59375 9.8125-3.890625Q20.0625 6.109375 24.8125 6.109375q6.34375.0 9.75 2.171875 3.421875 2.171875 3.421875 6.125.0 3.65625-2.46875 5.609375-2.453125 1.953125-10.8125 3.765625l-3.125.734375q-8.34375 1.75-12.0625 5.390625Q5.8125 33.546875 5.8125 39.890625q0 7.71875 5.46875 11.90625Q16.75 56 26.8125 56q4.96875.0 9.359375-.734375 4.40625-.71875 8.109375-2.1875z" id="DejaVuSans-115"/><path d="M8.015625 75.875h7.8125q7.3125-11.515625 10.953125-22.5625 3.640625-11.03125 3.640625-21.921875.0-10.9375-3.640625-22.015625T15.828125-13.1875h-7.8125Q14.5-2 17.703125 9.0625T20.90625 31.390625q0 11.28125-3.203125 22.265625-3.203125 11-9.6875 22.21875z" id="DejaVuSans-41"/></defs><use xlink:href="#DejaVuSans-83"/><use x="63.476562" xlink:href="#DejaVuSans-116"/><use x="102.685547" xlink:href="#DejaVuSans-114"/><use x="143.798828" xlink:href="#DejaVuSans-105"/><use x="171.582031" xlink:href="#DejaVuSans-110"/><use x="234.960938" xlink:href="#DejaVuSans-103"/><use x="298.4375" xlink:href="#DejaVuSans-32"/><use x="330.224609" xlink:href="#DejaVuSans-76"/><use x="384.1875" xlink:href="#DejaVuSans-101"/><use x="445.710938" xlink:href="#DejaVuSans-110"/><use x="509.089844" xlink:href="#DejaVuSans-103"/><use x="572.566406" xlink:href="#DejaVuSans-116"/><use x="611.775391" xlink:href="#DejaVuSans-104"/><use x="675.154297" xlink:href="#DejaVuSans-32"/><use x="706.941406" xlink:href="#DejaVuSans-40"/><use x="745.955078" xlink:href="#DejaVuSans-98"/><use x="809.431641" xlink:href="#DejaVuSans-121"/><use x="868.611328" xlink:href="#DejaVuSans-116"/><use x="907.820312" xlink:href="#DejaVuSans-101"/><use x="969.34375" xlink:href="#DejaVuSans-115"/><use x="1021.443359" xlink:href="#DejaVuSans-41"/></g></g></g><g id="matplotlib.axis_2"><g id="ytick_1"><g id="line2d_8"><defs><path d="M0 0H-3.5" id="m290102adc4" style="stroke:#000;stroke-width:.8"/></defs><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="445.499373"/></g></g><g id="text_9"><g transform="translate(73.0375 449.298592)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-48"/></g></g></g><g id="ytick_2"><g id="line2d_9"><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="385.24474"/></g></g><g id="text_10"><g transform="translate(66.675 389.043958)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-50"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="ytick_3"><g id="line2d_10"><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="324.990106"/></g></g><g id="text_11"><g transform="translate(66.675 328.789325)scale(0.1 -0.1)"><defs><path d="M37.796875 64.3125 12.890625 25.390625h24.90625zm-2.59375 8.59375h12.40625V25.390625h10.40625V17.1875H47.609375V0h-9.8125V17.1875H4.890625v9.515625z" id="DejaVuSans-52"/></defs><use xlink:href="#DejaVuSans-52"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="ytick_4"><g id="line2d_11"><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="264.735473"/></g></g><g id="text_12"><g transform="translate(66.675 268.534692)scale(0.1 -0.1)"><defs><path d="M33.015625 40.375q-6.640625.0-10.53125-4.546875-3.875-4.53125-3.875-12.4375.0-7.859375 3.875-12.4375 3.890625-4.5625 10.53125-4.5625t10.515625 4.5625q3.875 4.578125 3.875 12.4375.0 7.90625-3.875 12.4375Q39.65625 40.375 33.015625 40.375zM52.59375 71.296875V62.3125q-3.71875 1.75-7.5 2.671875-3.78125.9375-7.5.9375-9.765625.0-14.921875-6.59375-5.140625-6.59375-5.875-19.921875 2.875 4.25 7.21875 6.515625Q28.375 48.1875 33.59375 48.1875q10.984375.0 17.359375-6.671875 6.375-6.65625 6.375-18.125.0-11.234375-6.640625-18.03125-6.640625-6.78125-17.671875-6.78125-12.65625.0-19.34375 9.6875-6.6875 9.703125-6.6875 28.109375.0 17.28125 8.203125 27.5625T37.203125 74.21875q3.71875.0 7.5-.734375t7.890625-2.1875z" id="DejaVuSans-54"/></defs><use xlink:href="#DejaVuSans-54"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="ytick_5"><g id="line2d_12"><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="204.48084"/></g></g><g id="text_13"><g transform="translate(66.675 208.280059)scale(0.1 -0.1)"><defs><path d="M31.78125 34.625q-7.03125.0-11.0625-3.765625-4.015625-3.765625-4.015625-10.34375.0-6.59375 4.015625-10.359375Q24.75 6.390625 31.78125 6.390625t11.078125 3.78125q4.0625 3.796875 4.0625 10.34375.0 6.578125-4.03125 10.34375Q38.875 34.625 31.78125 34.625zm-9.859375 4.1875q-6.34375 1.5625-9.890625 5.90625Q8.5 49.078125 8.5 55.328125q0 8.734375 6.21875 13.8125 6.234375 5.078125 17.0625 5.078125 10.890625.0 17.09375-5.078125t6.203125-13.8125q0-6.25-3.546875-10.609375Q48 40.375 41.703125 38.8125q7.125-1.65625 11.09375-6.5 3.984375-4.828125 3.984375-11.796875.0-10.609375-6.46875-16.28125-6.46875-5.65625-18.53125-5.65625-12.046875.0-18.53125 5.65625Q6.78125 9.90625 6.78125 20.515625q0 6.96875 4 11.796875 4.015625 4.84375 11.140625 6.5zM18.3125 54.390625q0-5.65625 3.53125-8.828125 3.546875-3.171875 9.9375-3.171875 6.359375.0 9.9375 3.171875 3.59375 3.171875 3.59375 8.828125.0 5.671875-3.59375 8.84375-3.578125 3.171875-9.9375 3.171875-6.390625.0-9.9375-3.171875-3.53125-3.171875-3.53125-8.84375z" id="DejaVuSans-56"/></defs><use xlink:href="#DejaVuSans-56"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="ytick_6"><g id="line2d_13"><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="144.226206"/></g></g><g id="text_14"><g transform="translate(60.3125 148.025425)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-49"/><use x="63.623047" xlink:href="#DejaVuSans-48"/><use x="127.246094" xlink:href="#DejaVuSans-48"/></g></g></g><g id="ytick_7"><g id="line2d_14"><g><use style="stroke:#000;stroke-width:.8" x="86.4" xlink:href="#m290102adc4" y="83.971573"/></g></g><g id="text_15"><g transform="translate(60.3125 87.770792)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-49"/><use x="63.623047" xlink:href="#DejaVuSans-50"/><use x="127.246094" xlink:href="#DejaVuSans-48"/></g></g></g><g id="text_16"><g transform="translate(54.232812 335.547469)rotate(-90)scale(0.1 -0.1)"><defs><path d="M64.40625 67.28125V56.890625q-4.984375 4.640625-10.625 6.921875-5.640625 2.296875-11.984375 2.296875-12.5.0-19.140625-7.640625T16.015625 36.375q0-14.40625 6.640625-22.046875T41.796875 6.6875q6.34375.0 11.984375 2.296875t10.625 6.9375V5.609375Q59.234375 2.09375 53.4375.328125q-5.78125-1.75-12.21875-1.75-16.5625.0-26.09375 10.125Q5.609375 18.84375 5.609375 36.375q0 17.578125 9.515625 27.703125Q24.65625 74.21875 41.21875 74.21875q6.53125.0 12.3125-1.734375Q59.328125 70.75 64.40625 67.28125z" id="DejaVuSans-67"/><path d="M34.28125 27.484375Q23.390625 27.484375 19.1875 25t-4.203125-8.5q0-4.78125 3.15625-7.59375 3.15625-2.796875 8.5625-2.796875 7.484375.0 12 5.296875T43.21875 25.484375v2zm17.921875 3.71875V0H43.21875V8.296875q-3.078125-4.96875-7.671875-7.34375T24.3125-1.421875q-8.390625.0-13.359375 4.71875Q6 8.015625 6 15.921875q0 9.21875 6.171875 13.90625 6.1875 4.6875 18.4375 4.6875H43.21875v.890625q0 6.203125-4.078125 9.59375T27.6875 48.390625q-4.6875.0-9.140625-1.125-4.4375-1.125-8.53125-3.375v8.3125q4.921875 1.90625 9.5625 2.84375Q24.21875 56 28.609375 56q11.875.0 17.734375-6.15625 5.859375-6.140625 5.859375-18.640625z" id="DejaVuSans-97"/><path d="M9.421875 75.984375H18.40625V0H9.421875z" id="DejaVuSans-108"/><path d="M-.296875 72.90625H61.375v-8.3125H35.5V0H25.59375V64.59375H-.296875z" id="DejaVuSans-84"/><path d="M52 44.1875q3.375 6.0625 8.0625 8.9375T71.09375 56q8.546875.0 13.1875-5.984375 4.640625-5.96875 4.640625-17V0h-9.03125V32.71875q0 7.859375-2.796875 11.65625-2.78125 3.8125-8.484375 3.8125-6.984375.0-11.046875-4.640625-4.046875-4.625-4.046875-12.640625V0h-9.03125V32.71875q0 7.90625-2.78125 11.6875t-8.59375 3.78125q-6.890625.0-10.953125-4.65625-4.046875-4.65625-4.046875-12.625V0H9.078125V54.6875h9.03125v-8.5q3.078125 5.03125 7.375 7.421875T35.6875 56q5.96875.0 10.140625-3.03125Q50 49.953125 52 44.1875z" id="DejaVuSans-109"/><path d="M8.5-20.796875V54.6875h8.984375V20.703125Q17.484375 13.625 20.84375 10q3.375-3.609375 9.96875-3.609375 7.21875.0 10.859375 4.09375Q45.3125 14.59375 45.3125 22.796875V54.6875h8.984375V12.59375q0-2.921875.84375-4.3125Q56 6.890625 57.8125 6.890625q.4375.0 1.21875.265625t2.15625.859375V.78125q-2-1.125-3.796875-1.65625-1.78125-.546875-3.484375-.546875-3.375.0-5.375 1.90625t-2.734375 5.8125Q43.359375 2.4375 39.8125.5 36.28125-1.421875 31.5-1.421875q-4.984375.0-8.484375 1.90625-3.484375 1.90625-5.53125 5.71875v-27z" id="DejaVuSans-956"/><path d="M11.71875 12.40625H22.015625V4l-8-15.625H7.71875l4 15.625z" id="DejaVuSans-44"/><path d="M30.609375 48.390625q-7.21875.0-11.421875-5.640625T14.984375 27.296875 19.15625 11.84375q4.1875-5.640625 11.453125-5.640625 7.1875.0 11.375 5.65625Q46.1875 17.53125 46.1875 27.296875q0 9.71875-4.203125 15.40625-4.1875 5.6875-11.375 5.6875zm0 7.609375q11.71875.0 18.40625-7.625 6.703125-7.609375 6.703125-21.078125.0-13.421875-6.703125-21.078125-6.6875-7.640625-18.40625-7.640625-11.765625.0-18.4375 7.640625-6.65625 7.65625-6.65625 21.078125.0 13.46875 6.65625 21.078125Q18.84375 56 30.609375 56z" id="DejaVuSans-111"/><path d="M4.203125 54.6875H13.1875L24.421875 12.015625 35.59375 54.6875H46.1875L57.421875 12.015625 68.609375 54.6875H77.59375L63.28125.0H52.6875L40.921875 44.828125 29.109375.0H18.5z" id="DejaVuSans-119"/></defs><use xlink:href="#DejaVuSans-67"/><use x="69.824219" xlink:href="#DejaVuSans-97"/><use x="131.103516" xlink:href="#DejaVuSans-108"/><use x="158.886719" xlink:href="#DejaVuSans-108"/><use x="186.669922" xlink:href="#DejaVuSans-32"/><use x="218.457031" xlink:href="#DejaVuSans-84"/><use x="276.416016" xlink:href="#DejaVuSans-105"/><use x="304.199219" xlink:href="#DejaVuSans-109"/><use x="401.611328" xlink:href="#DejaVuSans-101"/><use x="463.134766" xlink:href="#DejaVuSans-32"/><use x="494.921875" xlink:href="#DejaVuSans-40"/><use x="533.935547" xlink:href="#DejaVuSans-956"/><use x="597.558594" xlink:href="#DejaVuSans-115"/><use x="649.658203" xlink:href="#DejaVuSans-44"/><use x="681.445312" xlink:href="#DejaVuSans-32"/><use x="713.232422" xlink:href="#DejaVuSans-108"/><use x="741.015625" xlink:href="#DejaVuSans-111"/><use x="802.197266" xlink:href="#DejaVuSans-119"/><use x="883.984375" xlink:href="#DejaVuSans-101"/><use x="945.507812" xlink:href="#DejaVuSans-114"/><use x="986.621094" xlink:href="#DejaVuSans-32"/><use x="1018.408203" xlink:href="#DejaVuSans-105"/><use x="1046.191406" xlink:href="#DejaVuSans-115"/><use x="1098.291016" xlink:href="#DejaVuSans-32"/><use x="1130.078125" xlink:href="#DejaVuSans-98"/><use x="1193.554688" xlink:href="#DejaVuSans-101"/><use x="1255.078125" xlink:href="#DejaVuSans-116"/><use x="1294.287109" xlink:href="#DejaVuSans-116"/><use x="1333.496094" xlink:href="#DejaVuSans-101"/><use x="1395.019531" xlink:href="#DejaVuSans-114"/><use x="1436.132812" xlink:href="#DejaVuSans-41"/></g></g></g><g id="LineCollection_1"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.480857V442.197178" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 439.934547V439.404927" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 437.738351V436.913313" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 417.812722v-1.766167" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 392.217733V389.412828" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 367.152645V363.255453" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 341.59792v-4.450065" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 295.002715V285.871458" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_2"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.142912V441.800016" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 439.558278V439.028013" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 437.726856V437.093521" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 416.702631V414.644028" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 391.953644V388.616435" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 368.46656V363.447903" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 341.422149V335.624445" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 290.241247v-6.862978" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_3"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.915466V441.545425" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 436.569833V435.98497" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 432.467881V431.729604" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 384.546492V380.152518" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 324.438134V318.757407" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 270.904433V262.675879" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 212.192749V196.582141" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 95.472452V80.352" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_4"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.825339V441.527094" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 436.49033V435.793327" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 432.034954V431.439476" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 384.67028V381.107287" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 329.289132V321.98053" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 272.830787V263.533289" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 214.746862V201.831003" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 101.708105V81.202293" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_5"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 443.127805V442.91801" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 440.60238V440.122951" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 438.662243V438.158588" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 417.0094V414.373411" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 390.056221V387.001013" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 365.898051V361.310526" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 336.964247V331.02005" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 288.48152V281.155164" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_6"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 443.151805V442.912087" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 440.576381V440.167027" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 438.778648V438.331405" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 416.820845V415.050029" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 391.26345V387.758086" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 366.480294V360.728283" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 336.691919V330.894698" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 287.278224v-11.56585" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_7"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 443.232V442.994579" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 440.736245V440.392792" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 438.429581V437.927289" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 416.508529V414.77185" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 390.384049V387.25163" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 364.340382v-4.424665" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 339.720735V329.72775" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 293.159151V282.310183" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_8"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.278325V441.929724" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 440.014442V439.48772" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 438.35951V437.780444" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 420.978341V419.448692" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 398.116118V395.83049" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 377.538357v-3.513215" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 354.274184V349.700206" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 311.559608V304.653908" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_9"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.83009V441.546445" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 439.801141V439.333468" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 438.161212V437.520806" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 419.359063V417.856397" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 397.246659V394.307841" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 378.698058V374.395908" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 354.546806V350.204869" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 313.363129v-7.24694" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="LineCollection_10"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.285613v-.345101" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M117.263898 440.358562V439.872681" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M125.407407 438.476833V437.880037" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M190.555476 420.059129v-1.281948" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M271.990562 397.414637V395.429311" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M353.425649 376.439825V372.906303" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M434.860736 356.457867V350.438873" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/><path clip-path="url(#pb8b9ddc494)" d="M597.730909 313.510639V306.288028" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_15"><defs><path d="M3 0H-3" id="md6378c21aa" style="stroke:red;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="110.749091" xlink:href="#md6378c21aa" y="442.480857"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="117.263898" xlink:href="#md6378c21aa" y="439.934547"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="125.407407" xlink:href="#md6378c21aa" y="437.738351"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="190.555476" xlink:href="#md6378c21aa" y="417.812722"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="271.990562" xlink:href="#md6378c21aa" y="392.217733"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="353.425649" xlink:href="#md6378c21aa" y="367.152645"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="434.860736" xlink:href="#md6378c21aa" y="341.59792"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="597.730909" xlink:href="#md6378c21aa" y="295.002715"/></g></g><g id="line2d_16"><g clip-path="url(#pb8b9ddc494)"><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="110.749091" xlink:href="#md6378c21aa" y="442.197178"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="117.263898" xlink:href="#md6378c21aa" y="439.404927"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="125.407407" xlink:href="#md6378c21aa" y="436.913313"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="190.555476" xlink:href="#md6378c21aa" y="416.046555"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="271.990562" xlink:href="#md6378c21aa" y="389.412828"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="353.425649" xlink:href="#md6378c21aa" y="363.255453"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="434.860736" xlink:href="#md6378c21aa" y="337.147855"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="597.730909" xlink:href="#md6378c21aa" y="285.871458"/></g></g><g id="line2d_17"><defs><path d="M3 0H-3" id="m09d8594692" style="stroke:green;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="110.749091" xlink:href="#m09d8594692" y="442.142912"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="117.263898" xlink:href="#m09d8594692" y="439.558278"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="125.407407" xlink:href="#m09d8594692" y="437.726856"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="190.555476" xlink:href="#m09d8594692" y="416.702631"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="271.990562" xlink:href="#m09d8594692" y="391.953644"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="353.425649" xlink:href="#m09d8594692" y="368.46656"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="434.860736" xlink:href="#m09d8594692" y="341.422149"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="597.730909" xlink:href="#m09d8594692" y="290.241247"/></g></g><g id="line2d_18"><g clip-path="url(#pb8b9ddc494)"><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="110.749091" xlink:href="#m09d8594692" y="441.800016"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="117.263898" xlink:href="#m09d8594692" y="439.028013"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="125.407407" xlink:href="#m09d8594692" y="437.093521"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="190.555476" xlink:href="#m09d8594692" y="414.644028"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="271.990562" xlink:href="#m09d8594692" y="388.616435"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="353.425649" xlink:href="#m09d8594692" y="363.447903"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="434.860736" xlink:href="#m09d8594692" y="335.624445"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="597.730909" xlink:href="#m09d8594692" y="283.378269"/></g></g><g id="line2d_19"><defs><path d="M3 0H-3" id="m6d052ebc51" style="stroke:#00f;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="110.749091" xlink:href="#m6d052ebc51" y="441.915466"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="117.263898" xlink:href="#m6d052ebc51" y="436.569833"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="125.407407" xlink:href="#m6d052ebc51" y="432.467881"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="190.555476" xlink:href="#m6d052ebc51" y="384.546492"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="271.990562" xlink:href="#m6d052ebc51" y="324.438134"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="353.425649" xlink:href="#m6d052ebc51" y="270.904433"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="434.860736" xlink:href="#m6d052ebc51" y="212.192749"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="597.730909" xlink:href="#m6d052ebc51" y="95.472452"/></g></g><g id="line2d_20"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="110.749091" xlink:href="#m6d052ebc51" y="441.545425"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="117.263898" xlink:href="#m6d052ebc51" y="435.98497"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="125.407407" xlink:href="#m6d052ebc51" y="431.729604"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="190.555476" xlink:href="#m6d052ebc51" y="380.152518"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="271.990562" xlink:href="#m6d052ebc51" y="318.757407"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="353.425649" xlink:href="#m6d052ebc51" y="262.675879"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="434.860736" xlink:href="#m6d052ebc51" y="196.582141"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="597.730909" xlink:href="#m6d052ebc51" y="80.352"/></g></g><g id="line2d_21"><defs><path d="M3 0H-3" id="mcb39ecdf50" style="stroke:#00bfbf;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="110.749091" xlink:href="#mcb39ecdf50" y="441.825339"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="117.263898" xlink:href="#mcb39ecdf50" y="436.49033"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="125.407407" xlink:href="#mcb39ecdf50" y="432.034954"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="190.555476" xlink:href="#mcb39ecdf50" y="384.67028"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="271.990562" xlink:href="#mcb39ecdf50" y="329.289132"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="353.425649" xlink:href="#mcb39ecdf50" y="272.830787"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="434.860736" xlink:href="#mcb39ecdf50" y="214.746862"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="597.730909" xlink:href="#mcb39ecdf50" y="101.708105"/></g></g><g id="line2d_22"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="110.749091" xlink:href="#mcb39ecdf50" y="441.527094"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="117.263898" xlink:href="#mcb39ecdf50" y="435.793327"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="125.407407" xlink:href="#mcb39ecdf50" y="431.439476"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="190.555476" xlink:href="#mcb39ecdf50" y="381.107287"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="271.990562" xlink:href="#mcb39ecdf50" y="321.98053"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="353.425649" xlink:href="#mcb39ecdf50" y="263.533289"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="434.860736" xlink:href="#mcb39ecdf50" y="201.831003"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="597.730909" xlink:href="#mcb39ecdf50" y="81.202293"/></g></g><g id="line2d_23"><defs><path d="M3 0H-3" id="m761933a0e0" style="stroke:#bf00bf;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="110.749091" xlink:href="#m761933a0e0" y="443.127805"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="117.263898" xlink:href="#m761933a0e0" y="440.60238"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="125.407407" xlink:href="#m761933a0e0" y="438.662243"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="190.555476" xlink:href="#m761933a0e0" y="417.0094"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="271.990562" xlink:href="#m761933a0e0" y="390.056221"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="353.425649" xlink:href="#m761933a0e0" y="365.898051"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="434.860736" xlink:href="#m761933a0e0" y="336.964247"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="597.730909" xlink:href="#m761933a0e0" y="288.48152"/></g></g><g id="line2d_24"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="110.749091" xlink:href="#m761933a0e0" y="442.91801"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="117.263898" xlink:href="#m761933a0e0" y="440.122951"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="125.407407" xlink:href="#m761933a0e0" y="438.158588"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="190.555476" xlink:href="#m761933a0e0" y="414.373411"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="271.990562" xlink:href="#m761933a0e0" y="387.001013"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="353.425649" xlink:href="#m761933a0e0" y="361.310526"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="434.860736" xlink:href="#m761933a0e0" y="331.02005"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="597.730909" xlink:href="#m761933a0e0" y="281.155164"/></g></g><g id="line2d_25"><g clip-path="url(#pb8b9ddc494)"><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="110.749091" xlink:href="#md6378c21aa" y="443.151805"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="117.263898" xlink:href="#md6378c21aa" y="440.576381"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="125.407407" xlink:href="#md6378c21aa" y="438.778648"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="190.555476" xlink:href="#md6378c21aa" y="416.820845"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="271.990562" xlink:href="#md6378c21aa" y="391.26345"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="353.425649" xlink:href="#md6378c21aa" y="366.480294"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="434.860736" xlink:href="#md6378c21aa" y="336.691919"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="597.730909" xlink:href="#md6378c21aa" y="287.278224"/></g></g><g id="line2d_26"><g clip-path="url(#pb8b9ddc494)"><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="110.749091" xlink:href="#md6378c21aa" y="442.912087"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="117.263898" xlink:href="#md6378c21aa" y="440.167027"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="125.407407" xlink:href="#md6378c21aa" y="438.331405"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="190.555476" xlink:href="#md6378c21aa" y="415.050029"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="271.990562" xlink:href="#md6378c21aa" y="387.758086"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="353.425649" xlink:href="#md6378c21aa" y="360.728283"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="434.860736" xlink:href="#md6378c21aa" y="330.894698"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="597.730909" xlink:href="#md6378c21aa" y="275.712374"/></g></g><g id="line2d_27"><g clip-path="url(#pb8b9ddc494)"><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="110.749091" xlink:href="#m09d8594692" y="443.232"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="117.263898" xlink:href="#m09d8594692" y="440.736245"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="125.407407" xlink:href="#m09d8594692" y="438.429581"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="190.555476" xlink:href="#m09d8594692" y="416.508529"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="271.990562" xlink:href="#m09d8594692" y="390.384049"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="353.425649" xlink:href="#m09d8594692" y="364.340382"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="434.860736" xlink:href="#m09d8594692" y="339.720735"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="597.730909" xlink:href="#m09d8594692" y="293.159151"/></g></g><g id="line2d_28"><g clip-path="url(#pb8b9ddc494)"><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="110.749091" xlink:href="#m09d8594692" y="442.994579"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="117.263898" xlink:href="#m09d8594692" y="440.392792"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="125.407407" xlink:href="#m09d8594692" y="437.927289"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="190.555476" xlink:href="#m09d8594692" y="414.77185"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="271.990562" xlink:href="#m09d8594692" y="387.25163"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="353.425649" xlink:href="#m09d8594692" y="359.915717"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="434.860736" xlink:href="#m09d8594692" y="329.72775"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="597.730909" xlink:href="#m09d8594692" y="282.310183"/></g></g><g id="line2d_29"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="110.749091" xlink:href="#m6d052ebc51" y="442.278325"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="117.263898" xlink:href="#m6d052ebc51" y="440.014442"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="125.407407" xlink:href="#m6d052ebc51" y="438.35951"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="190.555476" xlink:href="#m6d052ebc51" y="420.978341"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="271.990562" xlink:href="#m6d052ebc51" y="398.116118"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="353.425649" xlink:href="#m6d052ebc51" y="377.538357"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="434.860736" xlink:href="#m6d052ebc51" y="354.274184"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="597.730909" xlink:href="#m6d052ebc51" y="311.559608"/></g></g><g id="line2d_30"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="110.749091" xlink:href="#m6d052ebc51" y="441.929724"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="117.263898" xlink:href="#m6d052ebc51" y="439.48772"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="125.407407" xlink:href="#m6d052ebc51" y="437.780444"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="190.555476" xlink:href="#m6d052ebc51" y="419.448692"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="271.990562" xlink:href="#m6d052ebc51" y="395.83049"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="353.425649" xlink:href="#m6d052ebc51" y="374.025142"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="434.860736" xlink:href="#m6d052ebc51" y="349.700206"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="597.730909" xlink:href="#m6d052ebc51" y="304.653908"/></g></g><g id="line2d_31"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="110.749091" xlink:href="#mcb39ecdf50" y="441.83009"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="117.263898" xlink:href="#mcb39ecdf50" y="439.801141"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="125.407407" xlink:href="#mcb39ecdf50" y="438.161212"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="190.555476" xlink:href="#mcb39ecdf50" y="419.359063"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="271.990562" xlink:href="#mcb39ecdf50" y="397.246659"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="353.425649" xlink:href="#mcb39ecdf50" y="378.698058"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="434.860736" xlink:href="#mcb39ecdf50" y="354.546806"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="597.730909" xlink:href="#mcb39ecdf50" y="313.363129"/></g></g><g id="line2d_32"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="110.749091" xlink:href="#mcb39ecdf50" y="441.546445"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="117.263898" xlink:href="#mcb39ecdf50" y="439.333468"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="125.407407" xlink:href="#mcb39ecdf50" y="437.520806"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="190.555476" xlink:href="#mcb39ecdf50" y="417.856397"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="271.990562" xlink:href="#mcb39ecdf50" y="394.307841"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="353.425649" xlink:href="#mcb39ecdf50" y="374.395908"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="434.860736" xlink:href="#mcb39ecdf50" y="350.204869"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="597.730909" xlink:href="#mcb39ecdf50" y="306.116189"/></g></g><g id="line2d_33"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="110.749091" xlink:href="#m761933a0e0" y="442.285613"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="117.263898" xlink:href="#m761933a0e0" y="440.358562"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="125.407407" xlink:href="#m761933a0e0" y="438.476833"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="190.555476" xlink:href="#m761933a0e0" y="420.059129"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="271.990562" xlink:href="#m761933a0e0" y="397.414637"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="353.425649" xlink:href="#m761933a0e0" y="376.439825"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="434.860736" xlink:href="#m761933a0e0" y="356.457867"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="597.730909" xlink:href="#m761933a0e0" y="313.510639"/></g></g><g id="line2d_34"><g clip-path="url(#pb8b9ddc494)"><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="110.749091" xlink:href="#m761933a0e0" y="441.940512"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="117.263898" xlink:href="#m761933a0e0" y="439.872681"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="125.407407" xlink:href="#m761933a0e0" y="437.880037"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="190.555476" xlink:href="#m761933a0e0" y="418.777181"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="271.990562" xlink:href="#m761933a0e0" y="395.429311"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="353.425649" xlink:href="#m761933a0e0" y="372.906303"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="434.860736" xlink:href="#m761933a0e0" y="350.438873"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="597.730909" xlink:href="#m761933a0e0" y="306.288028"/></g></g><g id="line2d_35"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.339017 117.263898 439.669737 125.407407 437.325832l65.148069-20.396193 81.435086-26.114358 81.435087-25.611232 81.435087-25.831162 162.870173-48.9358" style="fill:none;stroke:red;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M0 1.5c.397805.0.77937-.158049 1.06066-.43934C1.341951.77937 1.5.397805 1.5.0s-.158049-.77937-.43934-1.06066C.77937-1.341951.397805-1.5.0-1.5s-.77937.158049-1.06066.43934C-1.341951-.77937-1.5-.397805-1.5.0s.158049.77937.43934 1.06066C-.77937 1.341951-.397805 1.5.0 1.5z" id="m6b484bd0fc" style="stroke:red;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="110.749091" xlink:href="#m6b484bd0fc" y="442.339017"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="117.263898" xlink:href="#m6b484bd0fc" y="439.669737"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="125.407407" xlink:href="#m6b484bd0fc" y="437.325832"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="190.555476" xlink:href="#m6b484bd0fc" y="416.929639"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="271.990562" xlink:href="#m6b484bd0fc" y="390.815281"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="353.425649" xlink:href="#m6b484bd0fc" y="365.204049"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="434.860736" xlink:href="#m6b484bd0fc" y="339.372887"/><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="597.730909" xlink:href="#m6b484bd0fc" y="290.437087"/></g></g><g id="line2d_36"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.971464 117.263898 439.293146 125.407407 437.410188l65.148069-21.736858 81.435086-25.38829 81.435087-24.327808 81.435087-27.433935 162.870173-51.713539" style="fill:none;stroke:green;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M0 1.5c.397805.0.77937-.158049 1.06066-.43934C1.341951.77937 1.5.397805 1.5.0s-.158049-.77937-.43934-1.06066C.77937-1.341951.397805-1.5.0-1.5s-.77937.158049-1.06066.43934C-1.341951-.77937-1.5-.397805-1.5.0s.158049.77937.43934 1.06066C-.77937 1.341951-.397805 1.5.0 1.5z" id="m2af241cea2" style="stroke:green;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="110.749091" xlink:href="#m2af241cea2" y="441.971464"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="117.263898" xlink:href="#m2af241cea2" y="439.293146"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="125.407407" xlink:href="#m2af241cea2" y="437.410188"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="190.555476" xlink:href="#m2af241cea2" y="415.67333"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="271.990562" xlink:href="#m2af241cea2" y="390.28504"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="353.425649" xlink:href="#m2af241cea2" y="365.957232"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="434.860736" xlink:href="#m2af241cea2" y="338.523297"/><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="597.730909" xlink:href="#m2af241cea2" y="286.809758"/></g></g><g id="line2d_37"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.730446 117.263898 436.277401 125.407407 432.098743l65.148069-49.749238 81.435086-60.751734 81.435087-54.807615 81.435087-62.402711L597.730909 87.912226" style="fill:none;stroke:#00f;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M0 1.5c.397805.0.77937-.158049 1.06066-.43934C1.341951.77937 1.5.397805 1.5.0s-.158049-.77937-.43934-1.06066C.77937-1.341951.397805-1.5.0-1.5s-.77937.158049-1.06066.43934C-1.341951-.77937-1.5-.397805-1.5.0s.158049.77937.43934 1.06066C-.77937 1.341951-.397805 1.5.0 1.5z" id="m1fe5ddc2d9" style="stroke:#00f;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="110.749091" xlink:href="#m1fe5ddc2d9" y="441.730446"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="117.263898" xlink:href="#m1fe5ddc2d9" y="436.277401"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="125.407407" xlink:href="#m1fe5ddc2d9" y="432.098743"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="190.555476" xlink:href="#m1fe5ddc2d9" y="382.349505"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="271.990562" xlink:href="#m1fe5ddc2d9" y="321.597771"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="353.425649" xlink:href="#m1fe5ddc2d9" y="266.790156"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="434.860736" xlink:href="#m1fe5ddc2d9" y="204.387445"/><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="597.730909" xlink:href="#m1fe5ddc2d9" y="87.912226"/></g></g><g id="line2d_38"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.676217 117.263898 436.141828 125.407407 431.737215l65.148069-48.848431 81.435086-57.253953 81.435087-57.452793 81.435087-59.893105L597.730909 91.455199" style="fill:none;stroke:#00bfbf;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M0 1.5c.397805.0.77937-.158049 1.06066-.43934C1.341951.77937 1.5.397805 1.5.0s-.158049-.77937-.43934-1.06066C.77937-1.341951.397805-1.5.0-1.5s-.77937.158049-1.06066.43934C-1.341951-.77937-1.5-.397805-1.5.0s.158049.77937.43934 1.06066C-.77937 1.341951-.397805 1.5.0 1.5z" id="m528b6aa0e0" style="stroke:#00bfbf;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="110.749091" xlink:href="#m528b6aa0e0" y="441.676217"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="117.263898" xlink:href="#m528b6aa0e0" y="436.141828"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="125.407407" xlink:href="#m528b6aa0e0" y="431.737215"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="190.555476" xlink:href="#m528b6aa0e0" y="382.888784"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="271.990562" xlink:href="#m528b6aa0e0" y="325.634831"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="353.425649" xlink:href="#m528b6aa0e0" y="268.182038"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="434.860736" xlink:href="#m528b6aa0e0" y="208.288933"/><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="597.730909" xlink:href="#m528b6aa0e0" y="91.455199"/></g></g><g id="line2d_39"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 443.022908 117.263898 440.362666 125.407407 438.410415l65.148069-22.719009 81.435086-27.162789 81.435087-24.924329 81.435087-29.612139 162.870173-49.173807" style="fill:none;stroke:#bf00bf;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M0 1.5c.397805.0.77937-.158049 1.06066-.43934C1.341951.77937 1.5.397805 1.5.0s-.158049-.77937-.43934-1.06066C.77937-1.341951.397805-1.5.0-1.5s-.77937.158049-1.06066.43934C-1.341951-.77937-1.5-.397805-1.5.0s.158049.77937.43934 1.06066C-.77937 1.341951-.397805 1.5.0 1.5z" id="m3b9367821a" style="stroke:#bf00bf;stroke-opacity:.5"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="110.749091" xlink:href="#m3b9367821a" y="443.022908"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="117.263898" xlink:href="#m3b9367821a" y="440.362666"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="125.407407" xlink:href="#m3b9367821a" y="438.410415"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="190.555476" xlink:href="#m3b9367821a" y="415.691406"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="271.990562" xlink:href="#m3b9367821a" y="388.528617"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="353.425649" xlink:href="#m3b9367821a" y="363.604288"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="434.860736" xlink:href="#m3b9367821a" y="333.992149"/><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="597.730909" xlink:href="#m3b9367821a" y="284.818342"/></g></g><g id="line2d_40"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 443.031946 117.263898 440.371704 125.407407 438.555027l65.148069-22.61959 81.435086-26.424669 81.435087-25.90648 81.435087-29.81098 162.870173-52.298009" style="fill:none;stroke:red;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M-.49999.49999h1v-1h-1z" id="m95685730c0"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:red;fill-opacity:.5" x="110.749091" xlink:href="#m95685730c0" y="443.031946"/><use style="fill:red;fill-opacity:.5" x="117.263898" xlink:href="#m95685730c0" y="440.371704"/><use style="fill:red;fill-opacity:.5" x="125.407407" xlink:href="#m95685730c0" y="438.555027"/><use style="fill:red;fill-opacity:.5" x="190.555476" xlink:href="#m95685730c0" y="415.935437"/><use style="fill:red;fill-opacity:.5" x="271.990562" xlink:href="#m95685730c0" y="389.510768"/><use style="fill:red;fill-opacity:.5" x="353.425649" xlink:href="#m95685730c0" y="363.604288"/><use style="fill:red;fill-opacity:.5" x="434.860736" xlink:href="#m95685730c0" y="333.793308"/><use style="fill:red;fill-opacity:.5" x="597.730909" xlink:href="#m95685730c0" y="281.495299"/></g></g><g id="line2d_41"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 443.11329 117.263898 440.564519 125.407407 438.178435l65.148069-22.538246 81.435086-26.82235 81.435087-26.689789 81.435087-27.403808 162.870173-46.989575" style="fill:none;stroke:green;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M-.49999.49999h1v-1h-1z" id="mf839074138"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:green;fill-opacity:.5" x="110.749091" xlink:href="#mf839074138" y="443.11329"/><use style="fill:green;fill-opacity:.5" x="117.263898" xlink:href="#mf839074138" y="440.564519"/><use style="fill:green;fill-opacity:.5" x="125.407407" xlink:href="#mf839074138" y="438.178435"/><use style="fill:green;fill-opacity:.5" x="190.555476" xlink:href="#mf839074138" y="415.640189"/><use style="fill:green;fill-opacity:.5" x="271.990562" xlink:href="#mf839074138" y="388.817839"/><use style="fill:green;fill-opacity:.5" x="353.425649" xlink:href="#mf839074138" y="362.12805"/><use style="fill:green;fill-opacity:.5" x="434.860736" xlink:href="#mf839074138" y="334.724242"/><use style="fill:green;fill-opacity:.5" x="597.730909" xlink:href="#mf839074138" y="287.734667"/></g></g><g id="line2d_42"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.104024 117.263898 439.751081 125.407407 438.069977l65.148069-17.856461 81.435086-23.240212 81.435087-21.191554 81.435087-23.794555 162.870173-43.880437" style="fill:none;stroke:#00f;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M-.49999.49999h1v-1h-1z" id="m75a6db4d1a"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00f;fill-opacity:.5" x="110.749091" xlink:href="#m75a6db4d1a" y="442.104024"/><use style="fill:#00f;fill-opacity:.5" x="117.263898" xlink:href="#m75a6db4d1a" y="439.751081"/><use style="fill:#00f;fill-opacity:.5" x="125.407407" xlink:href="#m75a6db4d1a" y="438.069977"/><use style="fill:#00f;fill-opacity:.5" x="190.555476" xlink:href="#m75a6db4d1a" y="420.213516"/><use style="fill:#00f;fill-opacity:.5" x="271.990562" xlink:href="#m75a6db4d1a" y="396.973304"/><use style="fill:#00f;fill-opacity:.5" x="353.425649" xlink:href="#m75a6db4d1a" y="375.78175"/><use style="fill:#00f;fill-opacity:.5" x="434.860736" xlink:href="#m75a6db4d1a" y="351.987195"/><use style="fill:#00f;fill-opacity:.5" x="597.730909" xlink:href="#m75a6db4d1a" y="308.106758"/></g></g><g id="line2d_43"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 441.688267 117.263898 439.567304 125.407407 437.841009l65.148069-19.233279 81.435086-22.83048 81.435087-19.230267 81.435087-24.171146 162.870173-42.636178" style="fill:none;stroke:#00bfbf;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M-.49999.49999h1v-1h-1z" id="meb08d22c3e"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#00bfbf;fill-opacity:.5" x="110.749091" xlink:href="#meb08d22c3e" y="441.688267"/><use style="fill:#00bfbf;fill-opacity:.5" x="117.263898" xlink:href="#meb08d22c3e" y="439.567304"/><use style="fill:#00bfbf;fill-opacity:.5" x="125.407407" xlink:href="#meb08d22c3e" y="437.841009"/><use style="fill:#00bfbf;fill-opacity:.5" x="190.555476" xlink:href="#meb08d22c3e" y="418.60773"/><use style="fill:#00bfbf;fill-opacity:.5" x="271.990562" xlink:href="#meb08d22c3e" y="395.77725"/><use style="fill:#00bfbf;fill-opacity:.5" x="353.425649" xlink:href="#meb08d22c3e" y="376.546983"/><use style="fill:#00bfbf;fill-opacity:.5" x="434.860736" xlink:href="#meb08d22c3e" y="352.375837"/><use style="fill:#00bfbf;fill-opacity:.5" x="597.730909" xlink:href="#meb08d22c3e" y="309.739659"/></g></g><g id="line2d_44"><path clip-path="url(#pb8b9ddc494)" d="M110.749091 442.113063 117.263898 440.115622 125.407407 438.178435l65.148069-18.76028 81.435086-22.996181 81.435087-21.74891 81.435087-21.224694 162.870173-43.549037" style="fill:none;stroke:#bf00bf;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/><defs><path d="M-.49999.49999h1v-1h-1z" id="m53fbaee4ab"/></defs><g clip-path="url(#pb8b9ddc494)"><use style="fill:#bf00bf;fill-opacity:.5" x="110.749091" xlink:href="#m53fbaee4ab" y="442.113063"/><use style="fill:#bf00bf;fill-opacity:.5" x="117.263898" xlink:href="#m53fbaee4ab" y="440.115622"/><use style="fill:#bf00bf;fill-opacity:.5" x="125.407407" xlink:href="#m53fbaee4ab" y="438.178435"/><use style="fill:#bf00bf;fill-opacity:.5" x="190.555476" xlink:href="#m53fbaee4ab" y="419.418155"/><use style="fill:#bf00bf;fill-opacity:.5" x="271.990562" xlink:href="#m53fbaee4ab" y="396.421974"/><use style="fill:#bf00bf;fill-opacity:.5" x="353.425649" xlink:href="#m53fbaee4ab" y="374.673064"/><use style="fill:#bf00bf;fill-opacity:.5" x="434.860736" xlink:href="#m53fbaee4ab" y="353.44837"/><use style="fill:#bf00bf;fill-opacity:.5" x="597.730909" xlink:href="#m53fbaee4ab" y="309.899333"/></g></g><g id="patch_3"><path d="M86.4 461.376V62.208" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="patch_4"><path d="M622.08 461.376V62.208" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="patch_5"><path d="M86.4 461.376H622.08" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="patch_6"><path d="M86.4 62.208H622.08" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="text_17"><g transform="translate(192.591563 56.208)scale(0.12 -0.12)"><defs><path d="M2.984375 54.6875H12.5L29.59375 8.796875 46.6875 54.6875h9.515625L35.6875.0H23.484375z" id="DejaVuSans-118"/><path d="M9.8125 72.90625h9.859375V43.015625h35.84375V72.90625H65.375V0H55.515625V34.71875H19.671875V0H9.8125z" id="DejaVuSans-72"/><path d="M9.8125 72.90625H24.515625l18.59375-49.609375L61.8125 72.90625H76.515625V0h-9.625V64.015625l-18.796875-50H38.1875l-18.796875 50V0H9.8125z" id="DejaVuSans-77"/><path d="M9.8125 72.90625H55.90625v-8.3125H19.671875V43.015625h34.71875V34.71875H19.671875V8.296875H56.78125V0H9.8125z" id="DejaVuSans-69"/><path d="M48.78125 52.59375V44.1875q-3.8125 2.109375-7.640625 3.15625T33.40625 48.390625q-8.75.0-13.59375-5.546875-4.828125-5.53125-4.828125-15.546875t4.828125-15.5625q4.84375-5.53125 13.59375-5.53125 3.90625.0 7.734375 1.046875t7.640625 3.15625V2.09375q-3.765625-1.75-7.796875-2.625-4.015625-.890625-8.5625-.890625-12.359375.0-19.640625 7.765625-7.265625 7.765625-7.265625 20.953125.0 13.375 7.34375 21.03125Q20.21875 56 33.015625 56q4.140625.0 8.09375-.859375 3.953125-.84375 7.671875-2.546875z" id="DejaVuSans-99"/><path d="M18.109375 8.203125v-29H9.078125V54.6875h9.03125V46.390625q2.84375 4.875 7.15625 7.234375Q29.59375 56 35.59375 56q9.96875.0 16.1875-7.90625 6.234375-7.90625 6.234375-20.796875T51.78125 6.484375q-6.21875-7.90625-16.1875-7.90625-6 0-10.328125 2.375-4.3125 2.375-7.15625 7.25zM48.6875 27.296875q0 9.90625-4.078125 15.546875T33.40625 48.484375q-7.140625.0-11.21875-5.640625T18.109375 27.296875 22.1875 11.75 33.40625 6.109375q7.125.0 11.203125 5.640625T48.6875 27.296875z" id="DejaVuSans-112"/><path d="M9.8125 72.90625H51.703125v-8.3125H19.671875V43.109375h28.90625V34.8125H19.671875V0H9.8125z" id="DejaVuSans-70"/><path d="M8.5 21.578125V54.6875h8.984375V21.921875q0-7.765625 3.015625-11.65625 3.03125-3.875 9.09375-3.875 7.265625.0 11.484375 4.640625Q45.3125 15.671875 45.3125 23.6875v31h8.984375V0H45.3125V8.40625Q42.046875 3.421875 37.71875 1 33.40625-1.421875 27.6875-1.421875q-9.421875.0-14.3125 5.859375Q8.5 10.296875 8.5 21.578125zM31.109375 56z" id="DejaVuSans-117"/></defs><use xlink:href="#DejaVuSans-83"/><use x="63.476562" xlink:href="#DejaVuSans-116"/><use x="102.685547" xlink:href="#DejaVuSans-114"/><use x="143.798828" xlink:href="#DejaVuSans-105"/><use x="171.582031" xlink:href="#DejaVuSans-110"/><use x="234.960938" xlink:href="#DejaVuSans-103"/><use x="298.4375" xlink:href="#DejaVuSans-32"/><use x="330.224609" xlink:href="#DejaVuSans-76"/><use x="384.1875" xlink:href="#DejaVuSans-101"/><use x="445.710938" xlink:href="#DejaVuSans-110"/><use x="509.089844" xlink:href="#DejaVuSans-103"/><use x="572.566406" xlink:href="#DejaVuSans-116"/><use x="611.775391" xlink:href="#DejaVuSans-104"/><use x="675.154297" xlink:href="#DejaVuSans-32"/><use x="706.941406" xlink:href="#DejaVuSans-118"/><use x="766.121094" xlink:href="#DejaVuSans-115"/><use x="818.220703" xlink:href="#DejaVuSans-32"/><use x="850.007812" xlink:href="#DejaVuSans-72"/><use x="925.203125" xlink:href="#DejaVuSans-84"/><use x="986.287109" xlink:href="#DejaVuSans-77"/><use x="1072.566406" xlink:href="#DejaVuSans-76"/><use x="1128.279297" xlink:href="#DejaVuSans-32"/><use x="1160.066406" xlink:href="#DejaVuSans-69"/><use x="1223.25" xlink:href="#DejaVuSans-115"/><use x="1275.349609" xlink:href="#DejaVuSans-99"/><use x="1330.330078" xlink:href="#DejaVuSans-97"/><use x="1391.609375" xlink:href="#DejaVuSans-112"/><use x="1455.085938" xlink:href="#DejaVuSans-101"/><use x="1516.609375" xlink:href="#DejaVuSans-32"/><use x="1548.396484" xlink:href="#DejaVuSans-70"/><use x="1600.416016" xlink:href="#DejaVuSans-117"/><use x="1663.794922" xlink:href="#DejaVuSans-110"/><use x="1727.173828" xlink:href="#DejaVuSans-99"/><use x="1782.154297" xlink:href="#DejaVuSans-116"/><use x="1821.363281" xlink:href="#DejaVuSans-105"/><use x="1849.146484" xlink:href="#DejaVuSans-111"/><use x="1910.328125" xlink:href="#DejaVuSans-110"/><use x="1973.707031" xlink:href="#DejaVuSans-32"/><use x="2005.494141" xlink:href="#DejaVuSans-67"/><use x="2075.318359" xlink:href="#DejaVuSans-97"/><use x="2136.597656" xlink:href="#DejaVuSans-108"/><use x="2164.380859" xlink:href="#DejaVuSans-108"/><use x="2192.164062" xlink:href="#DejaVuSans-32"/><use x="2223.951172" xlink:href="#DejaVuSans-84"/><use x="2281.910156" xlink:href="#DejaVuSans-105"/><use x="2309.693359" xlink:href="#DejaVuSans-109"/><use x="2407.105469" xlink:href="#DejaVuSans-101"/><use x="2468.628906" xlink:href="#DejaVuSans-32"/><use x="2500.416016" xlink:href="#DejaVuSans-40"/><use x="2539.429688" xlink:href="#DejaVuSans-956"/><use x="2603.052734" xlink:href="#DejaVuSans-115"/><use x="2655.152344" xlink:href="#DejaVuSans-41"/></g></g><g id="legend_1"><g id="patch_7"><path d="M93.4 216.98925H347.357813q2 0 2-2V69.208q0-2-2-2H93.4q-2 0-2 2V214.98925q0 2 2 2z" style="fill:#fff;opacity:.8;stroke:#ccc;stroke-linejoin:miter"/></g><g id="LineCollection_11"><path d="M105.4 80.306438v-10" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_45"><g><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="105.4" xlink:href="#md6378c21aa" y="80.306438"/></g></g><g id="line2d_46"><g><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="105.4" xlink:href="#md6378c21aa" y="70.306438"/></g></g><g id="line2d_47"><path d="M95.4 75.306438h20" style="fill:none;stroke:red;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_48"><g><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="105.4" xlink:href="#m6b484bd0fc" y="75.306438"/></g></g><g id="text_18"><g transform="translate(123.4 78.806438)scale(0.1 -0.1)"><defs><path d="M11.71875 12.40625H22.015625V0H11.71875zm0 39.296875H22.015625V39.3125H11.71875z" id="DejaVuSans-58"/><path d="M44.390625 34.1875Q47.5625 33.109375 50.5625 29.59375t6.03125-9.671875L66.609375.0H56L46.6875 18.703125q-3.625 7.328125-7.015625 9.71875t-9.25 2.390625h-10.75V0H9.8125V72.90625H32.078125q12.5.0 18.65625-5.234375 6.15625-5.21875 6.15625-15.765625.0-6.890625-3.203125-11.4375-3.203125-4.53125-9.296875-6.28125zM19.671875 64.796875v-25.875h12.40625q7.125.0 10.765625 3.296875t3.640625 9.6875-3.640625 9.640625-10.765625 3.25z" id="DejaVuSans-82"/><path d="M45.40625 46.390625v29.59375h8.984375V0H45.40625V8.203125q-2.828125-4.875-7.15625-7.25-4.3125-2.375-10.375-2.375-9.90625.0-16.140625 7.90625-6.21875 7.921875-6.21875 20.8125t6.21875 20.796875Q17.96875 56 27.875 56q6.0625.0 10.375-2.375 4.328125-2.359375 7.15625-7.234375zM14.796875 27.296875q0-9.90625 4.078125-15.546875T30.078125 6.109375 41.296875 11.75q4.109375 5.640625 4.109375 15.546875T41.296875 42.84375q-4.09375 5.640625-11.21875 5.640625T18.875 42.84375 14.796875 27.296875z" id="DejaVuSans-100"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-48"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-82"/><use x="257.462891" xlink:href="#DejaVuSans-101"/><use x="318.986328" xlink:href="#DejaVuSans-100"/><use x="382.462891" xlink:href="#DejaVuSans-117"/><use x="445.841797" xlink:href="#DejaVuSans-99"/><use x="500.822266" xlink:href="#DejaVuSans-101"/></g></g><g id="LineCollection_12"><path d="M105.4 94.984563v-10" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_49"><g><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="105.4" xlink:href="#m09d8594692" y="94.984563"/></g></g><g id="line2d_50"><g><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="105.4" xlink:href="#m09d8594692" y="84.984563"/></g></g><g id="line2d_51"><path d="M95.4 89.984563h20" style="fill:none;stroke:green;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_52"><g><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="105.4" xlink:href="#m2af241cea2" y="89.984563"/></g></g><g id="text_19"><g transform="translate(123.4 93.484563)scale(0.1 -0.1)"><defs><path d="M5.515625 54.6875H48.1875V46.484375L14.40625 7.171875H48.1875V0H4.296875V8.203125l33.796875 39.3125H5.515625z" id="DejaVuSans-122"/><path d="M34.1875 63.1875 20.796875 26.90625h26.8125zm-5.578125 9.71875h11.1875L67.578125.0h-10.25L50.6875 18.703125H17.828125L11.1875.0H.78125z" id="DejaVuSans-65"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-49"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-82"/><use x="257.462891" xlink:href="#DejaVuSans-101"/><use x="318.986328" xlink:href="#DejaVuSans-100"/><use x="382.462891" xlink:href="#DejaVuSans-117"/><use x="445.841797" xlink:href="#DejaVuSans-99"/><use x="500.822266" xlink:href="#DejaVuSans-101"/><use x="562.345703" xlink:href="#DejaVuSans-44"/><use x="594.132812" xlink:href="#DejaVuSans-32"/><use x="625.919922" xlink:href="#DejaVuSans-70"/><use x="676.189453" xlink:href="#DejaVuSans-114"/><use x="715.052734" xlink:href="#DejaVuSans-111"/><use x="776.234375" xlink:href="#DejaVuSans-122"/><use x="828.724609" xlink:href="#DejaVuSans-101"/><use x="890.248047" xlink:href="#DejaVuSans-110"/><use x="953.626953" xlink:href="#DejaVuSans-32"/><use x="985.414062" xlink:href="#DejaVuSans-65"/><use x="1053.822266" xlink:href="#DejaVuSans-114"/><use x="1093.185547" xlink:href="#DejaVuSans-114"/><use x="1134.298828" xlink:href="#DejaVuSans-97"/><use x="1195.578125" xlink:href="#DejaVuSans-121"/></g></g><g id="LineCollection_13"><path d="M105.4 109.662688v-10" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_53"><g><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="105.4" xlink:href="#m6d052ebc51" y="109.662688"/></g></g><g id="line2d_54"><g><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="105.4" xlink:href="#m6d052ebc51" y="99.662688"/></g></g><g id="line2d_55"><path d="M95.4 104.662688h20" style="fill:none;stroke:#00f;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_56"><g><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="105.4" xlink:href="#m1fe5ddc2d9" y="104.662688"/></g></g><g id="text_20"><g transform="translate(123.4 108.162688)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-50"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-77"/><use x="278.759766" xlink:href="#DejaVuSans-97"/><use x="340.039062" xlink:href="#DejaVuSans-116"/><use x="379.248047" xlink:href="#DejaVuSans-99"/><use x="434.228516" xlink:href="#DejaVuSans-104"/><use x="497.607422" xlink:href="#DejaVuSans-44"/><use x="529.394531" xlink:href="#DejaVuSans-32"/><use x="561.181641" xlink:href="#DejaVuSans-67"/><use x="631.005859" xlink:href="#DejaVuSans-97"/><use x="692.285156" xlink:href="#DejaVuSans-112"/><use x="755.761719" xlink:href="#DejaVuSans-116"/><use x="794.970703" xlink:href="#DejaVuSans-117"/><use x="858.349609" xlink:href="#DejaVuSans-114"/><use x="897.212891" xlink:href="#DejaVuSans-101"/></g></g><g id="LineCollection_14"><path d="M105.4 124.340813v-10" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_57"><g><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="105.4" xlink:href="#mcb39ecdf50" y="124.340813"/></g></g><g id="line2d_58"><g><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="105.4" xlink:href="#mcb39ecdf50" y="114.340813"/></g></g><g id="line2d_59"><path d="M95.4 119.340813h20" style="fill:none;stroke:#00bfbf;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_60"><g><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="105.4" xlink:href="#m528b6aa0e0" y="119.340813"/></g></g><g id="text_21"><g transform="translate(123.4 122.840813)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-51"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-77"/><use x="278.759766" xlink:href="#DejaVuSans-97"/><use x="340.039062" xlink:href="#DejaVuSans-116"/><use x="379.248047" xlink:href="#DejaVuSans-99"/><use x="434.228516" xlink:href="#DejaVuSans-104"/><use x="497.607422" xlink:href="#DejaVuSans-44"/><use x="529.394531" xlink:href="#DejaVuSans-32"/><use x="561.181641" xlink:href="#DejaVuSans-67"/><use x="631.005859" xlink:href="#DejaVuSans-97"/><use x="692.285156" xlink:href="#DejaVuSans-112"/><use x="755.761719" xlink:href="#DejaVuSans-116"/><use x="794.970703" xlink:href="#DejaVuSans-117"/><use x="858.349609" xlink:href="#DejaVuSans-114"/><use x="897.212891" xlink:href="#DejaVuSans-101"/><use x="958.736328" xlink:href="#DejaVuSans-44"/><use x="990.523438" xlink:href="#DejaVuSans-32"/><use x="1022.310547" xlink:href="#DejaVuSans-70"/><use x="1072.580078" xlink:href="#DejaVuSans-114"/><use x="1111.443359" xlink:href="#DejaVuSans-111"/><use x="1172.625" xlink:href="#DejaVuSans-122"/><use x="1225.115234" xlink:href="#DejaVuSans-101"/><use x="1286.638672" xlink:href="#DejaVuSans-110"/></g></g><g id="LineCollection_15"><path d="M105.4 139.018938v-10" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_61"><g><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="105.4" xlink:href="#m761933a0e0" y="139.018938"/></g></g><g id="line2d_62"><g><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="105.4" xlink:href="#m761933a0e0" y="129.018938"/></g></g><g id="line2d_63"><path d="M95.4 134.018938h20" style="fill:none;stroke:#bf00bf;stroke-linecap:square;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_64"><g><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="105.4" xlink:href="#m3b9367821a" y="134.018938"/></g></g><g id="text_22"><g transform="translate(123.4 137.518938)scale(0.1 -0.1)"><defs><path d="M9.8125 72.90625H23.09375L55.421875 11.921875V72.90625h9.5625V0H51.703125l-32.3125 60.984375V0H9.8125z" id="DejaVuSans-78"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-52"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-77"/><use x="278.759766" xlink:href="#DejaVuSans-97"/><use x="340.039062" xlink:href="#DejaVuSans-116"/><use x="379.248047" xlink:href="#DejaVuSans-99"/><use x="434.228516" xlink:href="#DejaVuSans-104"/><use x="497.607422" xlink:href="#DejaVuSans-44"/><use x="529.394531" xlink:href="#DejaVuSans-32"/><use x="561.181641" xlink:href="#DejaVuSans-78"/><use x="635.986328" xlink:href="#DejaVuSans-111"/><use x="697.167969" xlink:href="#DejaVuSans-32"/><use x="728.955078" xlink:href="#DejaVuSans-67"/><use x="798.779297" xlink:href="#DejaVuSans-97"/><use x="860.058594" xlink:href="#DejaVuSans-112"/><use x="923.535156" xlink:href="#DejaVuSans-116"/><use x="962.744141" xlink:href="#DejaVuSans-117"/><use x="1026.123047" xlink:href="#DejaVuSans-114"/><use x="1064.986328" xlink:href="#DejaVuSans-101"/></g></g><g id="LineCollection_16"><path d="M105.4 153.697063v-10" style="fill:none;stroke:red;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_65"><g><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="105.4" xlink:href="#md6378c21aa" y="153.697063"/></g></g><g id="line2d_66"><g><use style="fill:red;fill-opacity:.5;stroke:red;stroke-opacity:.5" x="105.4" xlink:href="#md6378c21aa" y="143.697063"/></g></g><g id="line2d_67"><path d="M95.4 148.697063h20" style="fill:none;stroke:red;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_68"><g><use style="fill:red;fill-opacity:.5" x="105.4" xlink:href="#m95685730c0" y="148.697063"/></g></g><g id="text_23"><g transform="translate(123.4 152.197063)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-53"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-77"/><use x="278.759766" xlink:href="#DejaVuSans-97"/><use x="340.039062" xlink:href="#DejaVuSans-116"/><use x="379.248047" xlink:href="#DejaVuSans-99"/><use x="434.228516" xlink:href="#DejaVuSans-104"/><use x="497.607422" xlink:href="#DejaVuSans-44"/><use x="529.394531" xlink:href="#DejaVuSans-32"/><use x="561.181641" xlink:href="#DejaVuSans-78"/><use x="635.986328" xlink:href="#DejaVuSans-111"/><use x="697.167969" xlink:href="#DejaVuSans-32"/><use x="728.955078" xlink:href="#DejaVuSans-67"/><use x="798.779297" xlink:href="#DejaVuSans-97"/><use x="860.058594" xlink:href="#DejaVuSans-112"/><use x="923.535156" xlink:href="#DejaVuSans-116"/><use x="962.744141" xlink:href="#DejaVuSans-117"/><use x="1026.123047" xlink:href="#DejaVuSans-114"/><use x="1064.986328" xlink:href="#DejaVuSans-101"/><use x="1126.509766" xlink:href="#DejaVuSans-44"/><use x="1158.296875" xlink:href="#DejaVuSans-32"/><use x="1190.083984" xlink:href="#DejaVuSans-70"/><use x="1240.353516" xlink:href="#DejaVuSans-114"/><use x="1279.216797" xlink:href="#DejaVuSans-111"/><use x="1340.398438" xlink:href="#DejaVuSans-122"/><use x="1392.888672" xlink:href="#DejaVuSans-101"/><use x="1454.412109" xlink:href="#DejaVuSans-110"/><use x="1517.791016" xlink:href="#DejaVuSans-32"/><use x="1549.578125" xlink:href="#DejaVuSans-77"/><use x="1635.857422" xlink:href="#DejaVuSans-97"/><use x="1697.136719" xlink:href="#DejaVuSans-112"/></g></g><g id="LineCollection_17"><path d="M105.4 168.375188v-10" style="fill:none;stroke:green;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_69"><g><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="105.4" xlink:href="#m09d8594692" y="168.375188"/></g></g><g id="line2d_70"><g><use style="fill:green;fill-opacity:.5;stroke:green;stroke-opacity:.5" x="105.4" xlink:href="#m09d8594692" y="158.375188"/></g></g><g id="line2d_71"><path d="M95.4 163.375188h20" style="fill:none;stroke:green;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_72"><g><use style="fill:green;fill-opacity:.5" x="105.4" xlink:href="#mf839074138" y="163.375188"/></g></g><g id="text_24"><g transform="translate(123.4 166.875188)scale(0.1 -0.1)"><defs><path d="M25.390625 72.90625H33.6875L8.296875-9.28125H0z" id="DejaVuSans-47"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-54"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-77"/><use x="278.759766" xlink:href="#DejaVuSans-97"/><use x="340.039062" xlink:href="#DejaVuSans-116"/><use x="379.248047" xlink:href="#DejaVuSans-99"/><use x="434.228516" xlink:href="#DejaVuSans-104"/><use x="497.607422" xlink:href="#DejaVuSans-44"/><use x="529.394531" xlink:href="#DejaVuSans-32"/><use x="561.181641" xlink:href="#DejaVuSans-78"/><use x="635.986328" xlink:href="#DejaVuSans-111"/><use x="697.167969" xlink:href="#DejaVuSans-32"/><use x="728.955078" xlink:href="#DejaVuSans-67"/><use x="798.779297" xlink:href="#DejaVuSans-97"/><use x="860.058594" xlink:href="#DejaVuSans-112"/><use x="923.535156" xlink:href="#DejaVuSans-116"/><use x="962.744141" xlink:href="#DejaVuSans-117"/><use x="1026.123047" xlink:href="#DejaVuSans-114"/><use x="1064.986328" xlink:href="#DejaVuSans-101"/><use x="1126.509766" xlink:href="#DejaVuSans-44"/><use x="1158.296875" xlink:href="#DejaVuSans-32"/><use x="1190.083984" xlink:href="#DejaVuSans-70"/><use x="1240.353516" xlink:href="#DejaVuSans-114"/><use x="1279.216797" xlink:href="#DejaVuSans-111"/><use x="1340.398438" xlink:href="#DejaVuSans-122"/><use x="1392.888672" xlink:href="#DejaVuSans-101"/><use x="1454.412109" xlink:href="#DejaVuSans-110"/><use x="1517.791016" xlink:href="#DejaVuSans-32"/><use x="1549.578125" xlink:href="#DejaVuSans-77"/><use x="1635.857422" xlink:href="#DejaVuSans-97"/><use x="1697.136719" xlink:href="#DejaVuSans-112"/><use x="1760.613281" xlink:href="#DejaVuSans-47"/><use x="1794.304688" xlink:href="#DejaVuSans-70"/><use x="1846.324219" xlink:href="#DejaVuSans-117"/><use x="1909.703125" xlink:href="#DejaVuSans-110"/><use x="1973.082031" xlink:href="#DejaVuSans-99"/><use x="2028.0625" xlink:href="#DejaVuSans-116"/><use x="2067.271484" xlink:href="#DejaVuSans-105"/><use x="2095.054688" xlink:href="#DejaVuSans-111"/><use x="2156.236328" xlink:href="#DejaVuSans-110"/></g></g><g id="LineCollection_18"><path d="M105.4 183.053313v-10" style="fill:none;stroke:#00f;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_73"><g><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="105.4" xlink:href="#m6d052ebc51" y="183.053313"/></g></g><g id="line2d_74"><g><use style="fill:#00f;fill-opacity:.5;stroke:#00f;stroke-opacity:.5" x="105.4" xlink:href="#m6d052ebc51" y="173.053313"/></g></g><g id="line2d_75"><path d="M95.4 178.053313h20" style="fill:none;stroke:#00f;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_76"><g><use style="fill:#00f;fill-opacity:.5" x="105.4" xlink:href="#m75a6db4d1a" y="178.053313"/></g></g><g id="text_25"><g transform="translate(123.4 181.553313)scale(0.1 -0.1)"><defs><path d="M8.203125 72.90625h46.875V68.703125L28.609375.0H18.3125L43.21875 64.59375H8.203125z" id="DejaVuSans-55"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-55"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-82"/><use x="257.462891" xlink:href="#DejaVuSans-101"/><use x="318.986328" xlink:href="#DejaVuSans-100"/><use x="382.462891" xlink:href="#DejaVuSans-117"/><use x="445.841797" xlink:href="#DejaVuSans-99"/><use x="500.822266" xlink:href="#DejaVuSans-101"/><use x="562.345703" xlink:href="#DejaVuSans-44"/><use x="594.132812" xlink:href="#DejaVuSans-32"/><use x="625.919922" xlink:href="#DejaVuSans-82"/><use x="690.902344" xlink:href="#DejaVuSans-101"/><use x="752.425781" xlink:href="#DejaVuSans-112"/><use x="815.902344" xlink:href="#DejaVuSans-108"/><use x="843.685547" xlink:href="#DejaVuSans-97"/><use x="904.964844" xlink:href="#DejaVuSans-99"/><use x="959.945312" xlink:href="#DejaVuSans-101"/><use x="1021.46875" xlink:href="#DejaVuSans-32"/><use x="1053.255859" xlink:href="#DejaVuSans-65"/><use x="1121.664062" xlink:href="#DejaVuSans-108"/><use x="1149.447266" xlink:href="#DejaVuSans-108"/></g></g><g id="LineCollection_19"><path d="M105.4 197.731438v-10" style="fill:none;stroke:#00bfbf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_77"><g><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="105.4" xlink:href="#mcb39ecdf50" y="197.731438"/></g></g><g id="line2d_78"><g><use style="fill:#00bfbf;fill-opacity:.5;stroke:#00bfbf;stroke-opacity:.5" x="105.4" xlink:href="#mcb39ecdf50" y="187.731438"/></g></g><g id="line2d_79"><path d="M95.4 192.731438h20" style="fill:none;stroke:#00bfbf;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_80"><g><use style="fill:#00bfbf;fill-opacity:.5" x="105.4" xlink:href="#meb08d22c3e" y="192.731438"/></g></g><g id="text_26"><g transform="translate(123.4 196.231438)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-56"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-82"/><use x="257.462891" xlink:href="#DejaVuSans-101"/><use x="318.986328" xlink:href="#DejaVuSans-100"/><use x="382.462891" xlink:href="#DejaVuSans-117"/><use x="445.841797" xlink:href="#DejaVuSans-99"/><use x="500.822266" xlink:href="#DejaVuSans-101"/><use x="562.345703" xlink:href="#DejaVuSans-44"/><use x="594.132812" xlink:href="#DejaVuSans-32"/><use x="625.919922" xlink:href="#DejaVuSans-82"/><use x="690.902344" xlink:href="#DejaVuSans-101"/><use x="752.425781" xlink:href="#DejaVuSans-112"/><use x="815.902344" xlink:href="#DejaVuSans-108"/><use x="843.685547" xlink:href="#DejaVuSans-97"/><use x="904.964844" xlink:href="#DejaVuSans-99"/><use x="959.945312" xlink:href="#DejaVuSans-101"/><use x="1021.46875" xlink:href="#DejaVuSans-32"/><use x="1053.255859" xlink:href="#DejaVuSans-65"/><use x="1121.664062" xlink:href="#DejaVuSans-108"/><use x="1149.447266" xlink:href="#DejaVuSans-108"/><use x="1177.230469" xlink:href="#DejaVuSans-44"/><use x="1209.017578" xlink:href="#DejaVuSans-32"/><use x="1240.804688" xlink:href="#DejaVuSans-70"/><use x="1291.074219" xlink:href="#DejaVuSans-114"/><use x="1329.9375" xlink:href="#DejaVuSans-111"/><use x="1391.119141" xlink:href="#DejaVuSans-122"/><use x="1443.609375" xlink:href="#DejaVuSans-101"/><use x="1505.132812" xlink:href="#DejaVuSans-110"/></g></g><g id="LineCollection_20"><path d="M105.4 212.409562v-10" style="fill:none;stroke:#bf00bf;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_81"><g><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="105.4" xlink:href="#m761933a0e0" y="212.409562"/></g></g><g id="line2d_82"><g><use style="fill:#bf00bf;fill-opacity:.5;stroke:#bf00bf;stroke-opacity:.5" x="105.4" xlink:href="#m761933a0e0" y="202.409562"/></g></g><g id="line2d_83"><path d="M95.4 207.409562h20" style="fill:none;stroke:#bf00bf;stroke-dasharray:5.55,2.4;stroke-dashoffset:0;stroke-opacity:.5;stroke-width:1.5"/></g><g id="line2d_84"><g><use style="fill:#bf00bf;fill-opacity:.5" x="105.4" xlink:href="#m53fbaee4ab" y="207.409562"/></g></g><g id="text_27"><g transform="translate(123.4 210.909562)scale(0.1 -0.1)"><defs><path d="M10.984375 1.515625V10.5Q14.703125 8.734375 18.5 7.8125q3.8125-.921875 7.484375-.921875 9.765625.0 14.90625 6.5625 5.15625 6.5625 5.890625 19.953125-2.828125-4.203125-7.1875-6.453125-4.34375-2.25-9.609375-2.25-10.9375.0-17.3125 6.609375-6.375 6.625-6.375 18.109375.0 11.21875 6.640625 18 6.640625 6.796875 17.671875 6.796875 12.65625.0 19.3125-9.703125Q56.59375 54.828125 56.59375 36.375q0-17.234375-8.1875-27.515625-8.171875-10.28125-21.984375-10.28125-3.71875.0-7.53125.734375-3.796875.734375-7.90625 2.203125zm19.625 30.90625q6.640625.0 10.515625 4.53125Q45.015625 41.5 45.015625 49.421875q0 7.859375-3.890625 12.421875-3.875 4.5625-10.515625 4.5625T20.09375 61.84375t-3.875-12.421875q0-7.921875 3.875-12.46875 3.875-4.53125 10.515625-4.53125z" id="DejaVuSans-57"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-57"/><use x="127.001953" xlink:href="#DejaVuSans-58"/><use x="160.693359" xlink:href="#DejaVuSans-32"/><use x="192.480469" xlink:href="#DejaVuSans-82"/><use x="257.462891" xlink:href="#DejaVuSans-101"/><use x="318.986328" xlink:href="#DejaVuSans-112"/><use x="382.462891" xlink:href="#DejaVuSans-108"/><use x="410.246094" xlink:href="#DejaVuSans-97"/><use x="471.525391" xlink:href="#DejaVuSans-99"/><use x="526.505859" xlink:href="#DejaVuSans-101"/><use x="588.029297" xlink:href="#DejaVuSans-32"/><use x="619.816406" xlink:href="#DejaVuSans-65"/><use x="688.224609" xlink:href="#DejaVuSans-108"/><use x="716.007812" xlink:href="#DejaVuSans-108"/><use x="743.791016" xlink:href="#DejaVuSans-32"/><use x="775.578125" xlink:href="#DejaVuSans-76"/><use x="831.291016" xlink:href="#DejaVuSans-105"/><use x="859.074219" xlink:href="#DejaVuSans-116"/><use x="898.283203" xlink:href="#DejaVuSans-101"/><use x="959.806641" xlink:href="#DejaVuSans-114"/><use x="1000.919922" xlink:href="#DejaVuSans-97"/><use x="1062.199219" xlink:href="#DejaVuSans-108"/></g></g></g></g></g><defs><clipPath id="pb8b9ddc494"><rect height="399.168" width="535.68" x="86.4" y="62.208"/></clipPath></defs></svg> \ No newline at end of file
diff --git a/static/files/posts/fastest-js-html-escape/times.svg b/static/files/posts/fastest-js-html-escape/times.svg
new file mode 100644
index 0000000..d0d4a6e
--- /dev/null
+++ b/static/files/posts/fastest-js-html-escape/times.svg
@@ -0,0 +1 @@
+<svg height="518.4pt" viewBox="0 0 691.2 518.4" width="691.2pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style>*{stroke-linecap:butt;stroke-linejoin:round}</style></defs><g id="figure_1"><g id="patch_1"><path d="M0 518.4H691.2V0H0z" style="fill:#fff"/></g><g id="axes_1"><g id="patch_2"><path d="M44.57 476.44H680.4v-451H44.57z" style="fill:#fff"/></g><g id="patch_3"><path clip-path="url(#p4aee96f274)" d="M44.57 455.94H269.446126V422.470612H44.57z" style="fill:green;opacity:.5"/></g><g id="patch_4"><path clip-path="url(#p4aee96f274)" d="M44.57 414.103265H269.710928V380.633878H44.57z" style="fill:green;opacity:.5"/></g><g id="patch_5"><path clip-path="url(#p4aee96f274)" d="M44.57 372.266531H272.418894V338.797143H44.57z" style="fill:green;opacity:.5"/></g><g id="patch_6"><path clip-path="url(#p4aee96f274)" d="M44.57 330.429796H306.203523V296.960408H44.57z" style="fill:#1f77b4;opacity:.5"/></g><g id="patch_7"><path clip-path="url(#p4aee96f274)" d="M44.57 288.593061H316.550753V255.123673H44.57z" style="fill:#1f77b4;opacity:.5"/></g><g id="patch_8"><path clip-path="url(#p4aee96f274)" d="M44.57 246.756327H311.039891V213.286939H44.57z" style="fill:#1f77b4;opacity:.5"/></g><g id="patch_9"><path clip-path="url(#p4aee96f274)" d="M44.57 204.919592H631.70908V171.450204H44.57z" style="fill:red;opacity:.5"/></g><g id="patch_10"><path clip-path="url(#p4aee96f274)" d="M44.57 163.082857H637.584668V129.613469H44.57z" style="fill:red;opacity:.5"/></g><g id="patch_11"><path clip-path="url(#p4aee96f274)" d="M44.57 121.246122H307.737371V87.776735H44.57z" style="fill:#1f77b4;opacity:.5"/></g><g id="patch_12"><path clip-path="url(#p4aee96f274)" d="M44.57 79.409388H301.721888V45.94H44.57z" style="fill:#1f77b4;opacity:.5"/></g><g id="matplotlib.axis_1"><g id="xtick_1"><g id="line2d_1"><defs><path d="M0 0V3.5" id="mf0ea27b64a" style="stroke:#000;stroke-width:.8"/></defs><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_1"><g transform="translate(41.38875 491.038437)scale(0.1 -0.1)"><defs><path d="M31.78125 66.40625q-7.609375.0-11.453125-7.5Q16.5 51.421875 16.5 36.375q0-14.984375 3.828125-22.484375 3.84375-7.5 11.453125-7.5 7.671875.0 11.5 7.5 3.84375 7.5 3.84375 22.484375.0 15.046875-3.84375 22.53125-3.828125 7.5-11.5 7.5zm0 7.8125q12.265625.0 18.734375-9.703125 6.46875-9.6875 6.46875-28.140625.0-18.40625-6.46875-28.109375-6.46875-9.6875-18.734375-9.6875-12.25.0-18.71875 9.6875Q6.59375 17.96875 6.59375 36.375q0 18.453125 6.46875 28.140625 6.46875 9.703125 18.71875 9.703125z" id="DejaVuSans-48"/></defs><use xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_2"><g id="line2d_2"><g><use style="stroke:#000;stroke-width:.8" x="144.49496" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_2"><g transform="translate(138.13246 491.038437)scale(0.1 -0.1)"><defs><path d="M19.1875 8.296875H53.609375V0H7.328125V8.296875Q12.9375 14.109375 22.625 23.890625 32.328125 33.6875 34.8125 36.53125q4.734375 5.3125 6.609375 9 1.890625 3.6875 1.890625 7.25.0 5.8125-4.078125 9.46875-4.078125 3.671875-10.625 3.671875-4.640625.0-9.796875-1.609375-5.140625-1.609375-11-4.890625v9.96875Q13.765625 71.78125 18.9375 73q5.1875 1.21875 9.484375 1.21875 11.328125.0 18.0625-5.671875 6.734375-5.65625 6.734375-15.125.0-4.5-1.6875-8.53125-1.671875-4.015625-6.125-9.484375-1.21875-1.421875-7.765625-8.1875Q31.109375 20.453125 19.1875 8.296875z" id="DejaVuSans-50"/></defs><use xlink:href="#DejaVuSans-50"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_3"><g id="line2d_3"><g><use style="stroke:#000;stroke-width:.8" x="244.41992" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_3"><g transform="translate(238.05742 491.038437)scale(0.1 -0.1)"><defs><path d="M37.796875 64.3125 12.890625 25.390625h24.90625zm-2.59375 8.59375h12.40625V25.390625h10.40625V17.1875H47.609375V0h-9.8125V17.1875H4.890625v9.515625z" id="DejaVuSans-52"/></defs><use xlink:href="#DejaVuSans-52"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_4"><g id="line2d_4"><g><use style="stroke:#000;stroke-width:.8" x="344.34488" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_4"><g transform="translate(337.98238 491.038437)scale(0.1 -0.1)"><defs><path d="M33.015625 40.375q-6.640625.0-10.53125-4.546875-3.875-4.53125-3.875-12.4375.0-7.859375 3.875-12.4375 3.890625-4.5625 10.53125-4.5625t10.515625 4.5625q3.875 4.578125 3.875 12.4375.0 7.90625-3.875 12.4375Q39.65625 40.375 33.015625 40.375zM52.59375 71.296875V62.3125q-3.71875 1.75-7.5 2.671875-3.78125.9375-7.5.9375-9.765625.0-14.921875-6.59375-5.140625-6.59375-5.875-19.921875 2.875 4.25 7.21875 6.515625Q28.375 48.1875 33.59375 48.1875q10.984375.0 17.359375-6.671875 6.375-6.65625 6.375-18.125.0-11.234375-6.640625-18.03125-6.640625-6.78125-17.671875-6.78125-12.65625.0-19.34375 9.6875-6.6875 9.703125-6.6875 28.109375.0 17.28125 8.203125 27.5625T37.203125 74.21875q3.71875.0 7.5-.734375t7.890625-2.1875z" id="DejaVuSans-54"/></defs><use xlink:href="#DejaVuSans-54"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_5"><g id="line2d_5"><g><use style="stroke:#000;stroke-width:.8" x="444.26984" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_5"><g transform="translate(437.90734 491.038437)scale(0.1 -0.1)"><defs><path d="M31.78125 34.625q-7.03125.0-11.0625-3.765625-4.015625-3.765625-4.015625-10.34375.0-6.59375 4.015625-10.359375Q24.75 6.390625 31.78125 6.390625t11.078125 3.78125q4.0625 3.796875 4.0625 10.34375.0 6.578125-4.03125 10.34375Q38.875 34.625 31.78125 34.625zm-9.859375 4.1875q-6.34375 1.5625-9.890625 5.90625Q8.5 49.078125 8.5 55.328125q0 8.734375 6.21875 13.8125 6.234375 5.078125 17.0625 5.078125 10.890625.0 17.09375-5.078125t6.203125-13.8125q0-6.25-3.546875-10.609375Q48 40.375 41.703125 38.8125q7.125-1.65625 11.09375-6.5 3.984375-4.828125 3.984375-11.796875.0-10.609375-6.46875-16.28125-6.46875-5.65625-18.53125-5.65625-12.046875.0-18.53125 5.65625Q6.78125 9.90625 6.78125 20.515625q0 6.96875 4 11.796875 4.015625 4.84375 11.140625 6.5zM18.3125 54.390625q0-5.65625 3.53125-8.828125 3.546875-3.171875 9.9375-3.171875 6.359375.0 9.9375 3.171875 3.59375 3.171875 3.59375 8.828125.0 5.671875-3.59375 8.84375-3.578125 3.171875-9.9375 3.171875-6.390625.0-9.9375-3.171875-3.53125-3.171875-3.53125-8.84375z" id="DejaVuSans-56"/></defs><use xlink:href="#DejaVuSans-56"/><use x="63.623047" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_6"><g id="line2d_6"><g><use style="stroke:#000;stroke-width:.8" x="544.1948" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_6"><g transform="translate(534.65105 491.038437)scale(0.1 -0.1)"><defs><path d="M12.40625 8.296875H28.515625v55.625L10.984375 60.40625v8.984375l17.4375 3.515625H38.28125V8.296875H54.390625V0H12.40625z" id="DejaVuSans-49"/></defs><use xlink:href="#DejaVuSans-49"/><use x="63.623047" xlink:href="#DejaVuSans-48"/><use x="127.246094" xlink:href="#DejaVuSans-48"/></g></g></g><g id="xtick_7"><g id="line2d_7"><g><use style="stroke:#000;stroke-width:.8" x="644.11976" xlink:href="#mf0ea27b64a" y="476.44"/></g></g><g id="text_7"><g transform="translate(634.57601 491.038437)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-49"/><use x="63.623047" xlink:href="#DejaVuSans-50"/><use x="127.246094" xlink:href="#DejaVuSans-48"/></g></g></g><g id="text_8"><g transform="translate(288.729531 504.716562)scale(0.1 -0.1)"><defs><path d="M64.40625 67.28125V56.890625q-4.984375 4.640625-10.625 6.921875-5.640625 2.296875-11.984375 2.296875-12.5.0-19.140625-7.640625T16.015625 36.375q0-14.40625 6.640625-22.046875T41.796875 6.6875q6.34375.0 11.984375 2.296875t10.625 6.9375V5.609375Q59.234375 2.09375 53.4375.328125q-5.78125-1.75-12.21875-1.75-16.5625.0-26.09375 10.125Q5.609375 18.84375 5.609375 36.375q0 17.578125 9.515625 27.703125Q24.65625 74.21875 41.21875 74.21875q6.53125.0 12.3125-1.734375Q59.328125 70.75 64.40625 67.28125z" id="DejaVuSans-67"/><path d="M34.28125 27.484375Q23.390625 27.484375 19.1875 25t-4.203125-8.5q0-4.78125 3.15625-7.59375 3.15625-2.796875 8.5625-2.796875 7.484375.0 12 5.296875T43.21875 25.484375v2zm17.921875 3.71875V0H43.21875V8.296875q-3.078125-4.96875-7.671875-7.34375T24.3125-1.421875q-8.390625.0-13.359375 4.71875Q6 8.015625 6 15.921875q0 9.21875 6.171875 13.90625 6.1875 4.6875 18.4375 4.6875H43.21875v.890625q0 6.203125-4.078125 9.59375T27.6875 48.390625q-4.6875.0-9.140625-1.125-4.4375-1.125-8.53125-3.375v8.3125q4.921875 1.90625 9.5625 2.84375Q24.21875 56 28.609375 56q11.875.0 17.734375-6.15625 5.859375-6.140625 5.859375-18.640625z" id="DejaVuSans-97"/><path d="M9.421875 75.984375H18.40625V0H9.421875z" id="DejaVuSans-108"/><path id="DejaVuSans-32"/><path d="M-.296875 72.90625H61.375v-8.3125H35.5V0H25.59375V64.59375H-.296875z" id="DejaVuSans-84"/><path d="M9.421875 54.6875H18.40625V0H9.421875zm0 21.296875H18.40625V64.59375H9.421875z" id="DejaVuSans-105"/><path d="M52 44.1875q3.375 6.0625 8.0625 8.9375T71.09375 56q8.546875.0 13.1875-5.984375 4.640625-5.96875 4.640625-17V0h-9.03125V32.71875q0 7.859375-2.796875 11.65625-2.78125 3.8125-8.484375 3.8125-6.984375.0-11.046875-4.640625-4.046875-4.625-4.046875-12.640625V0h-9.03125V32.71875q0 7.90625-2.78125 11.6875t-8.59375 3.78125q-6.890625.0-10.953125-4.65625-4.046875-4.65625-4.046875-12.625V0H9.078125V54.6875h9.03125v-8.5q3.078125 5.03125 7.375 7.421875T35.6875 56q5.96875.0 10.140625-3.03125Q50 49.953125 52 44.1875z" id="DejaVuSans-109"/><path d="M56.203125 29.59375V25.203125h-41.3125q.59375-9.28125 5.59375-14.140625t13.9375-4.859375q5.171875.0 10.03125 1.265625t9.65625 3.8125v-8.5Q49.265625.734375 44.1875-.34375T33.890625-1.421875q-13.09375.0-20.734375 7.609375-7.640625 7.625-7.640625 20.625.0 13.421875 7.25 21.296875Q20.015625 56 32.328125 56q11.03125.0 17.453125-7.109375 6.421875-7.09375 6.421875-19.296875zM47.21875 32.234375q-.09375 7.359375-4.125 11.75-4.03125 4.40625-10.671875 4.40625-7.515625.0-12.03125-4.25T15.1875 32.171875z" id="DejaVuSans-101"/><path d="M31 75.875q-6.53125-11.21875-9.71875-22.21875-3.171875-10.984375-3.171875-22.265625.0-11.265625 3.203125-22.328125T31-13.1875H23.1875Q15.875-1.703125 12.234375 9.375T8.59375 31.390625q0 10.890625 3.609375 21.921875 3.625 11.046875 10.984375 22.5625z" id="DejaVuSans-40"/><path d="M8.5-20.796875V54.6875h8.984375V20.703125Q17.484375 13.625 20.84375 10q3.375-3.609375 9.96875-3.609375 7.21875.0 10.859375 4.09375Q45.3125 14.59375 45.3125 22.796875V54.6875h8.984375V12.59375q0-2.921875.84375-4.3125Q56 6.890625 57.8125 6.890625q.4375.0 1.21875.265625t2.15625.859375V.78125q-2-1.125-3.796875-1.65625-1.78125-.546875-3.484375-.546875-3.375.0-5.375 1.90625t-2.734375 5.8125Q43.359375 2.4375 39.8125.5 36.28125-1.421875 31.5-1.421875q-4.984375.0-8.484375 1.90625-3.484375 1.90625-5.53125 5.71875v-27z" id="DejaVuSans-956"/><path d="M44.28125 53.078125v-8.5Q40.484375 46.53125 36.375 47.5q-4.09375.984375-8.5.984375-6.6875.0-10.03125-2.046875T14.5 40.28125q0-3.125 2.390625-4.90625t9.625-3.390625l3.078125-.6875Q39.15625 29.25 43.1875 25.515625T47.21875 15.09375q0-7.625-6.03125-12.078125-6.03125-4.4375-16.578125-4.4375-4.390625.0-9.15625.859375T5.421875 2v9.28125q4.984375-2.59375 9.8125-3.890625Q20.0625 6.109375 24.8125 6.109375q6.34375.0 9.75 2.171875 3.421875 2.171875 3.421875 6.125.0 3.65625-2.46875 5.609375-2.453125 1.953125-10.8125 3.765625l-3.125.734375q-8.34375 1.75-12.0625 5.390625Q5.8125 33.546875 5.8125 39.890625q0 7.71875 5.46875 11.90625Q16.75 56 26.8125 56q4.96875.0 9.359375-.734375 4.40625-.71875 8.109375-2.1875z" id="DejaVuSans-115"/><path d="M11.71875 12.40625H22.015625V4l-8-15.625H7.71875l4 15.625z" id="DejaVuSans-44"/><path d="M30.609375 48.390625q-7.21875.0-11.421875-5.640625T14.984375 27.296875 19.15625 11.84375q4.1875-5.640625 11.453125-5.640625 7.1875.0 11.375 5.65625Q46.1875 17.53125 46.1875 27.296875q0 9.71875-4.203125 15.40625-4.1875 5.6875-11.375 5.6875zm0 7.609375q11.71875.0 18.40625-7.625 6.703125-7.609375 6.703125-21.078125.0-13.421875-6.703125-21.078125-6.6875-7.640625-18.40625-7.640625-11.765625.0-18.4375 7.640625-6.65625 7.65625-6.65625 21.078125.0 13.46875 6.65625 21.078125Q18.84375 56 30.609375 56z" id="DejaVuSans-111"/><path d="M4.203125 54.6875H13.1875L24.421875 12.015625 35.59375 54.6875H46.1875L57.421875 12.015625 68.609375 54.6875H77.59375L63.28125.0H52.6875L40.921875 44.828125 29.109375.0H18.5z" id="DejaVuSans-119"/><path d="M41.109375 46.296875q-1.515625.875-3.296875 1.28125Q36.03125 48 33.890625 48q-7.625.0-11.703125-4.953125T18.109375 28.8125V0H9.078125V54.6875h9.03125v-8.5q2.84375 4.984375 7.375 7.390625Q30.03125 56 36.53125 56q.921875.0 2.046875-.125 1.125-.109375 2.484375-.359375z" id="DejaVuSans-114"/><path d="M48.6875 27.296875q0 9.90625-4.078125 15.546875T33.40625 48.484375q-7.140625.0-11.21875-5.640625T18.109375 27.296875 22.1875 11.75 33.40625 6.109375q7.125.0 11.203125 5.640625T48.6875 27.296875zM18.109375 46.390625q2.84375 4.875 7.15625 7.234375Q29.59375 56 35.59375 56q9.96875.0 16.1875-7.90625 6.234375-7.90625 6.234375-20.796875T51.78125 6.484375q-6.21875-7.90625-16.1875-7.90625-6 0-10.328125 2.375-4.3125 2.375-7.15625 7.25V0H9.078125V75.984375h9.03125z" id="DejaVuSans-98"/><path d="M18.3125 70.21875V54.6875h18.5V47.703125h-18.5v-29.6875q0-6.6875 1.828125-8.59375t7.453125-1.90625H36.8125V0H27.59375Q17.1875.0 13.234375 3.875 9.28125 7.765625 9.28125 18.015625v29.6875H2.6875V54.6875H9.28125V70.21875z" id="DejaVuSans-116"/><path d="M8.015625 75.875h7.8125q7.3125-11.515625 10.953125-22.5625 3.640625-11.03125 3.640625-21.921875.0-10.9375-3.640625-22.015625T15.828125-13.1875h-7.8125Q14.5-2 17.703125 9.0625T20.90625 31.390625q0 11.28125-3.203125 22.265625-3.203125 11-9.6875 22.21875z" id="DejaVuSans-41"/></defs><use xlink:href="#DejaVuSans-67"/><use x="69.824219" xlink:href="#DejaVuSans-97"/><use x="131.103516" xlink:href="#DejaVuSans-108"/><use x="158.886719" xlink:href="#DejaVuSans-108"/><use x="186.669922" xlink:href="#DejaVuSans-32"/><use x="218.457031" xlink:href="#DejaVuSans-84"/><use x="276.416016" xlink:href="#DejaVuSans-105"/><use x="304.199219" xlink:href="#DejaVuSans-109"/><use x="401.611328" xlink:href="#DejaVuSans-101"/><use x="463.134766" xlink:href="#DejaVuSans-32"/><use x="494.921875" xlink:href="#DejaVuSans-40"/><use x="533.935547" xlink:href="#DejaVuSans-956"/><use x="597.558594" xlink:href="#DejaVuSans-115"/><use x="649.658203" xlink:href="#DejaVuSans-44"/><use x="681.445312" xlink:href="#DejaVuSans-32"/><use x="713.232422" xlink:href="#DejaVuSans-108"/><use x="741.015625" xlink:href="#DejaVuSans-111"/><use x="802.197266" xlink:href="#DejaVuSans-119"/><use x="883.984375" xlink:href="#DejaVuSans-101"/><use x="945.507812" xlink:href="#DejaVuSans-114"/><use x="986.621094" xlink:href="#DejaVuSans-32"/><use x="1018.408203" xlink:href="#DejaVuSans-105"/><use x="1046.191406" xlink:href="#DejaVuSans-115"/><use x="1098.291016" xlink:href="#DejaVuSans-32"/><use x="1130.078125" xlink:href="#DejaVuSans-98"/><use x="1193.554688" xlink:href="#DejaVuSans-101"/><use x="1255.078125" xlink:href="#DejaVuSans-116"/><use x="1294.287109" xlink:href="#DejaVuSans-116"/><use x="1333.496094" xlink:href="#DejaVuSans-101"/><use x="1395.019531" xlink:href="#DejaVuSans-114"/><use x="1436.132812" xlink:href="#DejaVuSans-41"/></g></g></g><g id="matplotlib.axis_2"><g id="ytick_1"><g id="line2d_8"><defs><path d="M0 0H-3.5" id="m737a653f59" style="stroke:#000;stroke-width:.8"/></defs><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="439.205306"/></g></g><g id="text_9"><g transform="translate(24.87 443.004525)scale(0.1 -0.1)"><defs><path d="M54.890625 33.015625V0H45.90625V32.71875q0 7.765625-3.03125 11.609375Q39.84375 48.1875 33.796875 48.1875q-7.28125.0-11.484375-4.640625-4.203125-4.625-4.203125-12.640625V0H9.078125V75.984375h9.03125V46.1875q3.234375 4.9375 7.59375 7.375Q30.078125 56 35.796875 56q9.421875.0 14.25-5.828125 4.84375-5.828125 4.84375-17.15625z" id="DejaVuSans-104"/><path d="M10.984375 1.515625V10.5Q14.703125 8.734375 18.5 7.8125q3.8125-.921875 7.484375-.921875 9.765625.0 14.90625 6.5625 5.15625 6.5625 5.890625 19.953125-2.828125-4.203125-7.1875-6.453125-4.34375-2.25-9.609375-2.25-10.9375.0-17.3125 6.609375-6.375 6.625-6.375 18.109375.0 11.21875 6.640625 18 6.640625 6.796875 17.671875 6.796875 12.65625.0 19.3125-9.703125Q56.59375 54.828125 56.59375 36.375q0-17.234375-8.1875-27.515625-8.171875-10.28125-21.984375-10.28125-3.71875.0-7.53125.734375-3.796875.734375-7.90625 2.203125zm19.625 30.90625q6.640625.0 10.515625 4.53125Q45.015625 41.5 45.015625 49.421875q0 7.859375-3.890625 12.421875-3.875 4.5625-10.515625 4.5625T20.09375 61.84375t-3.875-12.421875q0-7.921875 3.875-12.46875 3.875-4.53125 10.515625-4.53125z" id="DejaVuSans-57"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-57"/></g></g></g><g id="ytick_2"><g id="line2d_9"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="397.368571"/></g></g><g id="text_10"><g transform="translate(24.87 401.16779)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-56"/></g></g></g><g id="ytick_3"><g id="line2d_10"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="355.531837"/></g></g><g id="text_11"><g transform="translate(24.87 359.331055)scale(0.1 -0.1)"><defs><path d="M8.203125 72.90625h46.875V68.703125L28.609375.0H18.3125L43.21875 64.59375H8.203125z" id="DejaVuSans-55"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-55"/></g></g></g><g id="ytick_4"><g id="line2d_11"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="313.695102"/></g></g><g id="text_12"><g transform="translate(24.87 317.494321)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-54"/></g></g></g><g id="ytick_5"><g id="line2d_12"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="271.858367"/></g></g><g id="text_13"><g transform="translate(24.87 275.657586)scale(0.1 -0.1)"><defs><path d="M10.796875 72.90625h38.71875v-8.3125h-29.6875V46.734375q2.140625.734375 4.28125 1.09375 2.15625.359375 4.3125.359375Q40.625 48.1875 47.75 41.5q7.140625-6.6875 7.140625-18.109375.0-11.765625-7.328125-18.296875-7.328125-6.515625-20.65625-6.515625-4.59375.0-9.359375.78125-4.75.78125-9.828125 2.34375V11.625q4.390625-2.390625 9.078125-3.5625t9.90625-1.171875q8.453125.0 13.375 4.4375 4.9375 4.4375 4.9375 12.0625.0 7.609375-4.9375 12.046875-4.921875 4.453125-13.375 4.453125-3.953125.0-7.890625-.875-3.921875-.875-8.015625-2.734375z" id="DejaVuSans-53"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-53"/></g></g></g><g id="ytick_6"><g id="line2d_13"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="230.021633"/></g></g><g id="text_14"><g transform="translate(24.87 233.820851)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-52"/></g></g></g><g id="ytick_7"><g id="line2d_14"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="188.184898"/></g></g><g id="text_15"><g transform="translate(24.87 191.984117)scale(0.1 -0.1)"><defs><path d="M40.578125 39.3125Q47.65625 37.796875 51.625 33q3.984375-4.78125 3.984375-11.8125.0-10.78125-7.421875-16.703125-7.421875-5.90625-21.09375-5.90625-4.578125.0-9.4375.90625T7.625 2.203125V11.71875q4.09375-2.390625 8.96875-3.609375 4.890625-1.21875 10.21875-1.21875 9.265625.0 14.125 3.65625T45.796875 21.1875q0 6.453125-4.515625 10.078125-4.515625 3.640625-12.5625 3.640625h-8.5v8.109375h8.890625q7.265625.0 11.125 2.90625t3.859375 8.375q0 5.609375-3.984375 8.609375-3.96875 3.015625-11.390625 3.015625-4.0625.0-8.703125-.890625Q15.375 64.15625 9.8125 62.3125v8.78125q5.625 1.5625 10.53125 2.34375t9.25.78125q11.234375.0 17.765625-5.109375 6.546875-5.09375 6.546875-13.78125.0-6.0625-3.46875-10.234375T40.578125 39.3125z" id="DejaVuSans-51"/></defs><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-51"/></g></g></g><g id="ytick_8"><g id="line2d_15"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="146.348163"/></g></g><g id="text_16"><g transform="translate(24.87 150.147382)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-50"/></g></g></g><g id="ytick_9"><g id="line2d_16"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="104.511429"/></g></g><g id="text_17"><g transform="translate(24.87 108.310647)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-49"/></g></g></g><g id="ytick_10"><g id="line2d_17"><g><use style="stroke:#000;stroke-width:.8" x="44.57" xlink:href="#m737a653f59" y="62.674694"/></g></g><g id="text_18"><g transform="translate(24.87 66.473913)scale(0.1 -0.1)"><use xlink:href="#DejaVuSans-104"/><use x="63.378906" xlink:href="#DejaVuSans-48"/></g></g></g><g id="text_19"><g transform="translate(18.790312 307.125156)rotate(-90)scale(0.1 -0.1)"><defs><path d="M9.8125 72.90625h9.859375V43.015625h35.84375V72.90625H65.375V0H55.515625V34.71875H19.671875V0H9.8125z" id="DejaVuSans-72"/><path d="M9.8125 72.90625H24.515625l18.59375-49.609375L61.8125 72.90625H76.515625V0h-9.625V64.015625l-18.796875-50H38.1875l-18.796875 50V0H9.8125z" id="DejaVuSans-77"/><path d="M9.8125 72.90625h9.859375V8.296875h35.5V0H9.8125z" id="DejaVuSans-76"/><path d="M9.8125 72.90625H55.90625v-8.3125H19.671875V43.015625h34.71875V34.71875H19.671875V8.296875H56.78125V0H9.8125z" id="DejaVuSans-69"/><path d="M48.78125 52.59375V44.1875q-3.8125 2.109375-7.640625 3.15625T33.40625 48.390625q-8.75.0-13.59375-5.546875-4.828125-5.53125-4.828125-15.546875t4.828125-15.5625q4.84375-5.53125 13.59375-5.53125 3.90625.0 7.734375 1.046875t7.640625 3.15625V2.09375q-3.765625-1.75-7.796875-2.625-4.015625-.890625-8.5625-.890625-12.359375.0-19.640625 7.765625-7.265625 7.765625-7.265625 20.953125.0 13.375 7.34375 21.03125Q20.21875 56 33.015625 56q4.140625.0 8.09375-.859375 3.953125-.84375 7.671875-2.546875z" id="DejaVuSans-99"/><path d="M18.109375 8.203125v-29H9.078125V54.6875h9.03125V46.390625q2.84375 4.875 7.15625 7.234375Q29.59375 56 35.59375 56q9.96875.0 16.1875-7.90625 6.234375-7.90625 6.234375-20.796875T51.78125 6.484375q-6.21875-7.90625-16.1875-7.90625-6 0-10.328125 2.375-4.3125 2.375-7.15625 7.25zM48.6875 27.296875q0 9.90625-4.078125 15.546875T33.40625 48.484375q-7.140625.0-11.21875-5.640625T18.109375 27.296875 22.1875 11.75 33.40625 6.109375q7.125.0 11.203125 5.640625T48.6875 27.296875z" id="DejaVuSans-112"/><path d="M9.8125 72.90625H51.703125v-8.3125H19.671875V43.109375h28.90625V34.8125H19.671875V0H9.8125z" id="DejaVuSans-70"/><path d="M8.5 21.578125V54.6875h8.984375V21.921875q0-7.765625 3.015625-11.65625 3.03125-3.875 9.09375-3.875 7.265625.0 11.484375 4.640625Q45.3125 15.671875 45.3125 23.6875v31h8.984375V0H45.3125V8.40625Q42.046875 3.421875 37.71875 1 33.40625-1.421875 27.6875-1.421875q-9.421875.0-14.3125 5.859375Q8.5 10.296875 8.5 21.578125zM31.109375 56z" id="DejaVuSans-117"/><path d="M54.890625 33.015625V0H45.90625V32.71875q0 7.765625-3.03125 11.609375Q39.84375 48.1875 33.796875 48.1875q-7.28125.0-11.484375-4.640625-4.203125-4.625-4.203125-12.640625V0H9.078125V54.6875h9.03125v-8.5q3.234375 4.9375 7.59375 7.375Q30.078125 56 35.796875 56q9.421875.0 14.25-5.828125 4.84375-5.828125 4.84375-17.15625z" id="DejaVuSans-110"/></defs><use xlink:href="#DejaVuSans-72"/><use x="75.195312" xlink:href="#DejaVuSans-84"/><use x="136.279297" xlink:href="#DejaVuSans-77"/><use x="222.558594" xlink:href="#DejaVuSans-76"/><use x="278.271484" xlink:href="#DejaVuSans-32"/><use x="310.058594" xlink:href="#DejaVuSans-69"/><use x="373.242188" xlink:href="#DejaVuSans-115"/><use x="425.341797" xlink:href="#DejaVuSans-99"/><use x="480.322266" xlink:href="#DejaVuSans-97"/><use x="541.601562" xlink:href="#DejaVuSans-112"/><use x="605.078125" xlink:href="#DejaVuSans-101"/><use x="666.601562" xlink:href="#DejaVuSans-32"/><use x="698.388672" xlink:href="#DejaVuSans-70"/><use x="750.408203" xlink:href="#DejaVuSans-117"/><use x="813.787109" xlink:href="#DejaVuSans-110"/><use x="877.166016" xlink:href="#DejaVuSans-99"/><use x="932.146484" xlink:href="#DejaVuSans-116"/><use x="971.355469" xlink:href="#DejaVuSans-105"/><use x="999.138672" xlink:href="#DejaVuSans-111"/><use x="1060.320312" xlink:href="#DejaVuSans-110"/></g></g></g><g id="LineCollection_1"><path clip-path="url(#p4aee96f274)" d="M263.457217 439.205306h11.977818" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M263.701844 397.368571h12.018167" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M266.692763 355.531837h11.452262" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M297.207678 313.695102h17.99169" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M306.960477 271.858367h19.180551" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M304.964957 230.021633h12.149868" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M614.705886 188.184898h34.006388" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M625.046955 146.348163h25.075426" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M302.046665 104.511429h11.381412" style="fill:none;stroke:#000;stroke-width:1.5"/><path clip-path="url(#p4aee96f274)" d="M294.150351 62.674694h15.143075" style="fill:none;stroke:#000;stroke-width:1.5"/></g><g id="line2d_18"><defs><path d="M0 2V-2" id="mbec91c4631" style="stroke:#000"/></defs><g clip-path="url(#p4aee96f274)"><use style="stroke:#000" x="263.457217" xlink:href="#mbec91c4631" y="439.205306"/><use style="stroke:#000" x="263.701844" xlink:href="#mbec91c4631" y="397.368571"/><use style="stroke:#000" x="266.692763" xlink:href="#mbec91c4631" y="355.531837"/><use style="stroke:#000" x="297.207678" xlink:href="#mbec91c4631" y="313.695102"/><use style="stroke:#000" x="306.960477" xlink:href="#mbec91c4631" y="271.858367"/><use style="stroke:#000" x="304.964957" xlink:href="#mbec91c4631" y="230.021633"/><use style="stroke:#000" x="614.705886" xlink:href="#mbec91c4631" y="188.184898"/><use style="stroke:#000" x="625.046955" xlink:href="#mbec91c4631" y="146.348163"/><use style="stroke:#000" x="302.046665" xlink:href="#mbec91c4631" y="104.511429"/><use style="stroke:#000" x="294.150351" xlink:href="#mbec91c4631" y="62.674694"/></g></g><g id="line2d_19"><g clip-path="url(#p4aee96f274)"><use style="stroke:#000" x="275.435035" xlink:href="#mbec91c4631" y="439.205306"/><use style="stroke:#000" x="275.720011" xlink:href="#mbec91c4631" y="397.368571"/><use style="stroke:#000" x="278.145025" xlink:href="#mbec91c4631" y="355.531837"/><use style="stroke:#000" x="315.199368" xlink:href="#mbec91c4631" y="313.695102"/><use style="stroke:#000" x="326.141028" xlink:href="#mbec91c4631" y="271.858367"/><use style="stroke:#000" x="317.114825" xlink:href="#mbec91c4631" y="230.021633"/><use style="stroke:#000" x="648.712274" xlink:href="#mbec91c4631" y="188.184898"/><use style="stroke:#000" x="650.122381" xlink:href="#mbec91c4631" y="146.348163"/><use style="stroke:#000" x="313.428077" xlink:href="#mbec91c4631" y="104.511429"/><use style="stroke:#000" x="309.293426" xlink:href="#mbec91c4631" y="62.674694"/></g></g><g id="patch_13"><path d="M44.57 476.44v-451" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="patch_14"><path d="M680.4 476.44v-451" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="patch_15"><path d="M44.57 476.44H680.4" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="patch_16"><path d="M44.57 25.44H680.4" style="fill:none;stroke:#000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:.8"/></g><g id="text_20"><g transform="translate(262.242813 19.44)scale(0.12 -0.12)"><use xlink:href="#DejaVuSans-72"/><use x="75.195312" xlink:href="#DejaVuSans-84"/><use x="136.279297" xlink:href="#DejaVuSans-77"/><use x="222.558594" xlink:href="#DejaVuSans-76"/><use x="278.271484" xlink:href="#DejaVuSans-32"/><use x="310.058594" xlink:href="#DejaVuSans-69"/><use x="373.242188" xlink:href="#DejaVuSans-115"/><use x="425.341797" xlink:href="#DejaVuSans-99"/><use x="480.322266" xlink:href="#DejaVuSans-97"/><use x="541.601562" xlink:href="#DejaVuSans-112"/><use x="605.078125" xlink:href="#DejaVuSans-101"/><use x="666.601562" xlink:href="#DejaVuSans-32"/><use x="698.388672" xlink:href="#DejaVuSans-70"/><use x="750.408203" xlink:href="#DejaVuSans-117"/><use x="813.787109" xlink:href="#DejaVuSans-110"/><use x="877.166016" xlink:href="#DejaVuSans-99"/><use x="932.146484" xlink:href="#DejaVuSans-116"/><use x="971.355469" xlink:href="#DejaVuSans-105"/><use x="999.138672" xlink:href="#DejaVuSans-111"/><use x="1060.320312" xlink:href="#DejaVuSans-110"/><use x="1123.699219" xlink:href="#DejaVuSans-32"/><use x="1155.486328" xlink:href="#DejaVuSans-67"/><use x="1225.310547" xlink:href="#DejaVuSans-97"/><use x="1286.589844" xlink:href="#DejaVuSans-108"/><use x="1314.373047" xlink:href="#DejaVuSans-108"/><use x="1342.15625" xlink:href="#DejaVuSans-32"/><use x="1373.943359" xlink:href="#DejaVuSans-84"/><use x="1431.902344" xlink:href="#DejaVuSans-105"/><use x="1459.685547" xlink:href="#DejaVuSans-109"/><use x="1557.097656" xlink:href="#DejaVuSans-101"/><use x="1618.621094" xlink:href="#DejaVuSans-115"/></g></g></g></g><defs><clipPath id="p4aee96f274"><rect height="451" width="635.83" x="44.57" y="25.44"/></clipPath></defs></svg> \ No newline at end of file