From 37031d744ac5c5e7591649baa7ca72ceb3bab36f Mon Sep 17 00:00:00 2001
From: Martin Larralde <martin.larralde@embl.de>
Date: Thu, 4 Aug 2022 00:17:06 +0200
Subject: [PATCH] Add benchmarks for next `pyfastani` release

---
 benches/mapping/plot.py     |   57 +-
 benches/mapping/v0.4.0.json | 6004 +++++++++++++++++++++++++++++++++++
 benches/mapping/v0.4.0.svg  | 2851 +++++++++++++++++
 3 files changed, 8885 insertions(+), 27 deletions(-)
 create mode 100644 benches/mapping/v0.4.0.json
 create mode 100644 benches/mapping/v0.4.0.svg

diff --git a/benches/mapping/plot.py b/benches/mapping/plot.py
index c8da6f4..dffff89 100644
--- a/benches/mapping/plot.py
+++ b/benches/mapping/plot.py
@@ -2,6 +2,7 @@ import argparse
 import itertools
 import json
 import os
+import random
 import re
 import math
 
@@ -10,8 +11,10 @@ import matplotlib.pyplot as plt
 import scipy.stats
 from scipy.optimize import curve_fit
 from numpy.polynomial import Polynomial
-from palettable.cartocolors.qualitative import Bold_9
+from palettable.cartocolors.qualitative import Prism_10
+from mpl_toolkits.mplot3d import Axes3D
 
+random.seed(0)
 
 parser = argparse.ArgumentParser()
 parser.add_argument("-i", "--input", required=True)
@@ -25,12 +28,25 @@ def exp_decay(x, a, b, c):
 with open(args.input) as f:
     data = json.load(f)
 
+# fig = plt.figure(1)
+# ax = fig.add_subplot(111, projection='3d')
+#
+# X = [ bench["nucleotides"] / 1e6 for bench in data["results"] ]
+# Y = [ bench["threads"] for bench in data["results"] ]
+# Z = [ bench["mean"] for bench in data["results"] ]
+# c = [ Bold_9.hex_colors[ X.index(bench["nucleotides"] / 1e6) % 9 ] for i, bench in enumerate(data["results"]) ]
+#
+# ax.scatter(X, Y, Z, c=c)
+# ax.set_xlabel("Genome size (Mbp)")
+# ax.set_ylabel("Number of Threads")
+# ax.set_zlabel("Time (s)")
+
 plt.figure(1, figsize=(12, 6))
 
 plt.subplot(1, 2, 1)
 data["results"].sort(key=lambda r: (r["threads"], r["nucleotides"]))
 for color, (threads, group) in zip(
-    itertools.cycle(Bold_9.hex_colors),
+    itertools.cycle(Prism_10.hex_colors),
     itertools.groupby(data["results"], key=lambda r: r["threads"])
 ):
     group = list(group)
@@ -42,7 +58,7 @@ for color, (threads, group) in zip(
     # reg = scipy.stats.linregress(X, Y)
     # plt.plot([ 0, max(X) ], [ reg.intercept, reg.slope*max(X) + reg.intercept ], color=color, linestyle="--", marker="")
     # ci = [1.96 * r["stddev"] / math.sqrt(len(r["times"])) for r in group]
-    plt.scatter(X, Y, marker="+", color=color, label=f"threads={threads}")
+    plt.scatter(X, Y, marker="+", color=color, label=f"Threads={threads}")
     # plt.plot(pX, p(pX), color=color, linestyle="--")
 
 plt.legend()
@@ -50,44 +66,31 @@ plt.xlabel("Genome size (Mbp)")
 plt.ylabel("Query Time (s)")
 
 plt.subplot(1, 2, 2)
+
+values = list({ r["nucleotides"] for r in data["results"] })
+choices = { random.choice(values) for _ in range(5) }
+data["results"] = [ r for r in data["results"] if r["nucleotides"] in choices ]
+
 data["results"].sort(key=lambda r: (r["nucleotides"], r["threads"]))
 for color, (nucleotides, group) in zip(
-    itertools.cycle(Bold_9.hex_colors),
+    itertools.cycle(Prism_10.hex_colors),
     itertools.groupby(data["results"], key=lambda r: r["nucleotides"])
 ):
     group = list(group)
-    X = numpy.array([r["threads"] for r in group])
+    X = numpy.array([r["threads"] for r in group if r["mean"]])
     Y = numpy.array([r["mean"] for r in group])
 
     popt, pcov = curve_fit(exp_decay, X, Y)
     pX = numpy.linspace(1, max(r["threads"] for r in group), 100)
 
-    plt.scatter(X, Y, marker="+", color=color, label=f"{group[0]['genome']} ({nucleotides/1e6:.1f} Mbp)")
-    plt.plot(pX, exp_decay(pX, *popt), color=color, linestyle="--")
+    name = ".".join(group[0]['genome'].split(".")[:2])
+    plt.scatter(X, Y, marker="+", color=color, label=f"{name} ({nucleotides/1e6:.1f} Mbp)")
+    plt.plot(pX, exp_decay(pX, *popt), color=color, linestyle="--", linewidth=0.3)
 
 plt.legend()
-plt.xlabel("Threads")
+plt.xlabel("Number of Threads")
 plt.ylabel("Query Time (s)")
 
-# plt.subplot(1, 2, 2)
-# data["results"].sort(key=lambda r: (r["backend"], r["residues"]))
-# for color, (backend, group) in zip(
-#     Bold_4.hex_colors, itertools.groupby(data["results"], key=lambda r: r["backend"])
-# ):
-#     group = list(group)
-#     X = numpy.array([r["residues"] for r in group])
-#     Y = numpy.array([r["mean"] for r in group])
-#     p = Polynomial.fit(X, Y, 2)
-#     # reg = scipy.stats.linregress(X, Y)
-#     # plt.plot([ 0, max(X) ], [ reg.intercept, reg.slope*max(X) + reg.intercept ], color=color, linestyle="--", marker="")
-#     # ci = [1.96 * r["stddev"] / math.sqrt(len(r["times"])) for r in group]
-#     plt.scatter(X, Y, marker="+", color=color, label=f"{backend}")
-#     plt.plot(X, p(X), color=color, linestyle="--")
-#
-# plt.legend()
-# plt.xlabel("Number of residues")
-# plt.ylabel("Time (s)")
-
 plt.tight_layout()
 output = args.output or args.input.replace(".json", ".svg")
 plt.savefig(output, transparent=True)
diff --git a/benches/mapping/v0.4.0.json b/benches/mapping/v0.4.0.json
new file mode 100644
index 0000000..83aa674
--- /dev/null
+++ b/benches/mapping/v0.4.0.json
@@ -0,0 +1,6004 @@
+{
+    "results": [
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 3.2658708095550537,
+            "mean": 3.0680113633473716,
+            "median": 2.978391170501709,
+            "min": 2.9597721099853516,
+            "nucleotides": 6121536,
+            "stddev": 0.17160401421247692,
+            "threads": 1,
+            "times": [
+                2.978391170501709,
+                3.2658708095550537,
+                2.9597721099853516
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 1.7194626331329346,
+            "mean": 1.6739720503489177,
+            "median": 1.6771368980407715,
+            "min": 1.6253166198730469,
+            "nucleotides": 6121536,
+            "stddev": 0.04715273214636891,
+            "threads": 2,
+            "times": [
+                1.6253166198730469,
+                1.6771368980407715,
+                1.7194626331329346
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 1.2698922157287598,
+            "mean": 1.2415706316630046,
+            "median": 1.2363998889923096,
+            "min": 1.2184197902679443,
+            "nucleotides": 6121536,
+            "stddev": 0.026122884230683825,
+            "threads": 3,
+            "times": [
+                1.2363998889923096,
+                1.2184197902679443,
+                1.2698922157287598
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 1.0721113681793213,
+            "mean": 1.0376389821370442,
+            "median": 1.0612480640411377,
+            "min": 0.9795575141906738,
+            "nucleotides": 6121536,
+            "stddev": 0.05059244541731119,
+            "threads": 4,
+            "times": [
+                1.0612480640411377,
+                0.9795575141906738,
+                1.0721113681793213
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 0.978614330291748,
+            "mean": 0.9457640647888184,
+            "median": 0.9487638473510742,
+            "min": 0.9099140167236328,
+            "nucleotides": 6121536,
+            "stddev": 0.03444825529188598,
+            "threads": 5,
+            "times": [
+                0.978614330291748,
+                0.9099140167236328,
+                0.9487638473510742
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 0.9091010093688965,
+            "mean": 0.8816922505696615,
+            "median": 0.8837225437164307,
+            "min": 0.8522531986236572,
+            "nucleotides": 6121536,
+            "stddev": 0.028478236678699025,
+            "threads": 6,
+            "times": [
+                0.8837225437164307,
+                0.9091010093688965,
+                0.8522531986236572
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 0.815077543258667,
+            "mean": 0.7954689661661783,
+            "median": 0.800823450088501,
+            "min": 0.7705059051513672,
+            "nucleotides": 6121536,
+            "stddev": 0.022763141357199215,
+            "threads": 7,
+            "times": [
+                0.7705059051513672,
+                0.800823450088501,
+                0.815077543258667
+            ]
+        },
+        {
+            "genome": "1134687.SAMN02463898.JH603150",
+            "max": 0.7924375534057617,
+            "mean": 0.7621413866678873,
+            "median": 0.7507171630859375,
+            "min": 0.7432694435119629,
+            "nucleotides": 6121536,
+            "stddev": 0.026500196621345173,
+            "threads": 8,
+            "times": [
+                0.7507171630859375,
+                0.7432694435119629,
+                0.7924375534057617
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 37.33222413063049,
+            "mean": 33.061643838882446,
+            "median": 31.173126220703125,
+            "min": 30.67958116531372,
+            "nucleotides": 12700734,
+            "stddev": 3.706654650979095,
+            "threads": 1,
+            "times": [
+                31.173126220703125,
+                30.67958116531372,
+                37.33222413063049
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 23.458167791366577,
+            "mean": 22.074385007222492,
+            "median": 21.545445680618286,
+            "min": 21.219541549682617,
+            "nucleotides": 12700734,
+            "stddev": 1.2094190633979593,
+            "threads": 2,
+            "times": [
+                23.458167791366577,
+                21.545445680618286,
+                21.219541549682617
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 16.462793827056885,
+            "mean": 15.737934271494547,
+            "median": 15.909804582595825,
+            "min": 14.841204404830933,
+            "nucleotides": 12700734,
+            "stddev": 0.8243437489587168,
+            "threads": 3,
+            "times": [
+                15.909804582595825,
+                16.462793827056885,
+                14.841204404830933
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 12.45797324180603,
+            "mean": 12.097561836242676,
+            "median": 11.965103387832642,
+            "min": 11.869608879089355,
+            "nucleotides": 12700734,
+            "stddev": 0.31575637166199033,
+            "threads": 4,
+            "times": [
+                11.869608879089355,
+                12.45797324180603,
+                11.965103387832642
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 10.57854151725769,
+            "mean": 10.34368896484375,
+            "median": 10.407341957092285,
+            "min": 10.045183420181274,
+            "nucleotides": 12700734,
+            "stddev": 0.2723168971912833,
+            "threads": 5,
+            "times": [
+                10.407341957092285,
+                10.045183420181274,
+                10.57854151725769
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 11.016937255859375,
+            "mean": 10.597804625829061,
+            "median": 10.579323768615723,
+            "min": 10.197152853012085,
+            "nucleotides": 12700734,
+            "stddev": 0.41020455062130506,
+            "threads": 6,
+            "times": [
+                10.197152853012085,
+                11.016937255859375,
+                10.579323768615723
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 11.464457750320435,
+            "mean": 10.605606238047281,
+            "median": 11.027157545089722,
+            "min": 9.32520341873169,
+            "nucleotides": 12700734,
+            "stddev": 1.130212989731225,
+            "threads": 7,
+            "times": [
+                9.32520341873169,
+                11.027157545089722,
+                11.464457750320435
+            ]
+        },
+        {
+            "genome": "1343740.SAMN02604192.CP006567",
+            "max": 10.56578254699707,
+            "mean": 10.480853160222372,
+            "median": 10.512900114059448,
+            "min": 10.363876819610596,
+            "nucleotides": 12700734,
+            "stddev": 0.10469831004148134,
+            "threads": 8,
+            "times": [
+                10.56578254699707,
+                10.363876819610596,
+                10.512900114059448
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 12.296414375305176,
+            "mean": 11.347312609354654,
+            "median": 11.186208724975586,
+            "min": 10.559314727783203,
+            "nucleotides": 5342582,
+            "stddev": 0.8796843993880753,
+            "threads": 1,
+            "times": [
+                11.186208724975586,
+                12.296414375305176,
+                10.559314727783203
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 6.340197563171387,
+            "mean": 6.119218508402507,
+            "median": 6.070342779159546,
+            "min": 5.947115182876587,
+            "nucleotides": 5342582,
+            "stddev": 0.20104742501790418,
+            "threads": 2,
+            "times": [
+                5.947115182876587,
+                6.070342779159546,
+                6.340197563171387
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 4.5378429889678955,
+            "mean": 4.480223655700684,
+            "median": 4.456955194473267,
+            "min": 4.445872783660889,
+            "nucleotides": 5342582,
+            "stddev": 0.050206529774244536,
+            "threads": 3,
+            "times": [
+                4.445872783660889,
+                4.5378429889678955,
+                4.456955194473267
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 4.2176995277404785,
+            "mean": 4.097461382548015,
+            "median": 4.112528324127197,
+            "min": 3.962156295776367,
+            "nucleotides": 5342582,
+            "stddev": 0.1284361529985961,
+            "threads": 4,
+            "times": [
+                4.2176995277404785,
+                4.112528324127197,
+                3.962156295776367
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 4.0670013427734375,
+            "mean": 3.918660322825114,
+            "median": 3.881333351135254,
+            "min": 3.8076462745666504,
+            "nucleotides": 5342582,
+            "stddev": 0.13364595004259766,
+            "threads": 5,
+            "times": [
+                3.8076462745666504,
+                3.881333351135254,
+                4.0670013427734375
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 4.039790868759155,
+            "mean": 3.8893064657847085,
+            "median": 3.886141538619995,
+            "min": 3.7419869899749756,
+            "nucleotides": 5342582,
+            "stddev": 0.14892716383418456,
+            "threads": 6,
+            "times": [
+                3.886141538619995,
+                3.7419869899749756,
+                4.039790868759155
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 3.6643388271331787,
+            "mean": 3.543825308481852,
+            "median": 3.5969676971435547,
+            "min": 3.3701694011688232,
+            "nucleotides": 5342582,
+            "stddev": 0.15411683197351672,
+            "threads": 7,
+            "times": [
+                3.5969676971435547,
+                3.6643388271331787,
+                3.3701694011688232
+            ]
+        },
+        {
+            "genome": "198092.SAMN02745194.FQZF01000081",
+            "max": 3.695751190185547,
+            "mean": 3.5108088652292886,
+            "median": 3.425022840499878,
+            "min": 3.4116525650024414,
+            "nucleotides": 5342582,
+            "stddev": 0.16030420685961105,
+            "threads": 8,
+            "times": [
+                3.4116525650024414,
+                3.425022840499878,
+                3.695751190185547
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 1.827066421508789,
+            "mean": 1.6784319877624512,
+            "median": 1.6200919151306152,
+            "min": 1.5881376266479492,
+            "nucleotides": 2290405,
+            "stddev": 0.1297089638746268,
+            "threads": 1,
+            "times": [
+                1.6200919151306152,
+                1.827066421508789,
+                1.5881376266479492
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.8831443786621094,
+            "mean": 0.8364336490631104,
+            "median": 0.8147926330566406,
+            "min": 0.811363935470581,
+            "nucleotides": 2290405,
+            "stddev": 0.04048898846028714,
+            "threads": 2,
+            "times": [
+                0.811363935470581,
+                0.8831443786621094,
+                0.8147926330566406
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.6053166389465332,
+            "mean": 0.5905090967814127,
+            "median": 0.5868511199951172,
+            "min": 0.5793595314025879,
+            "nucleotides": 2290405,
+            "stddev": 0.013359582839250395,
+            "threads": 3,
+            "times": [
+                0.6053166389465332,
+                0.5868511199951172,
+                0.5793595314025879
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.5414955615997314,
+            "mean": 0.5039759476979574,
+            "median": 0.4872090816497803,
+            "min": 0.48322319984436035,
+            "nucleotides": 2290405,
+            "stddev": 0.03255399950766947,
+            "threads": 4,
+            "times": [
+                0.4872090816497803,
+                0.48322319984436035,
+                0.5414955615997314
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.4428882598876953,
+            "mean": 0.4335939089457194,
+            "median": 0.4404926300048828,
+            "min": 0.4174008369445801,
+            "nucleotides": 2290405,
+            "stddev": 0.014074673930838248,
+            "threads": 5,
+            "times": [
+                0.4404926300048828,
+                0.4174008369445801,
+                0.4428882598876953
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.4169614315032959,
+            "mean": 0.39419253667195636,
+            "median": 0.38854455947875977,
+            "min": 0.3770716190338135,
+            "nucleotides": 2290405,
+            "stddev": 0.020535920225151116,
+            "threads": 6,
+            "times": [
+                0.38854455947875977,
+                0.4169614315032959,
+                0.3770716190338135
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.39346957206726074,
+            "mean": 0.3660290241241455,
+            "median": 0.3596370220184326,
+            "min": 0.34498047828674316,
+            "nucleotides": 2290405,
+            "stddev": 0.024868480494463985,
+            "threads": 7,
+            "times": [
+                0.39346957206726074,
+                0.3596370220184326,
+                0.34498047828674316
+            ]
+        },
+        {
+            "genome": "76856.SAMN03263147.CP012717",
+            "max": 0.37534284591674805,
+            "mean": 0.3586881160736084,
+            "median": 0.3519110679626465,
+            "min": 0.34881043434143066,
+            "nucleotides": 2290405,
+            "stddev": 0.01450649860663242,
+            "threads": 8,
+            "times": [
+                0.37534284591674805,
+                0.34881043434143066,
+                0.3519110679626465
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 11.979612350463867,
+            "mean": 11.74518871307373,
+            "median": 11.75689172744751,
+            "min": 11.499062061309814,
+            "nucleotides": 13047416,
+            "stddev": 0.2404888053747733,
+            "threads": 1,
+            "times": [
+                11.979612350463867,
+                11.75689172744751,
+                11.499062061309814
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 6.827632904052734,
+            "mean": 6.6785257657368975,
+            "median": 6.8123533725738525,
+            "min": 6.3955910205841064,
+            "nucleotides": 13047416,
+            "stddev": 0.24514774837138475,
+            "threads": 2,
+            "times": [
+                6.3955910205841064,
+                6.8123533725738525,
+                6.827632904052734
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 5.163528203964233,
+            "mean": 5.009286403656006,
+            "median": 4.96744704246521,
+            "min": 4.896883964538574,
+            "nucleotides": 13047416,
+            "stddev": 0.13815819452121714,
+            "threads": 3,
+            "times": [
+                4.96744704246521,
+                5.163528203964233,
+                4.896883964538574
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 4.263455867767334,
+            "mean": 4.088849147160848,
+            "median": 4.049269914627075,
+            "min": 3.9538216590881348,
+            "nucleotides": 13047416,
+            "stddev": 0.15856614560513954,
+            "threads": 4,
+            "times": [
+                4.049269914627075,
+                3.9538216590881348,
+                4.263455867767334
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 3.7952497005462646,
+            "mean": 3.726691802342733,
+            "median": 3.753173828125,
+            "min": 3.6316518783569336,
+            "nucleotides": 13047416,
+            "stddev": 0.08495313486518609,
+            "threads": 5,
+            "times": [
+                3.753173828125,
+                3.6316518783569336,
+                3.7952497005462646
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 3.496755599975586,
+            "mean": 3.451353073120117,
+            "median": 3.4289259910583496,
+            "min": 3.428377628326416,
+            "nucleotides": 13047416,
+            "stddev": 0.0393206975913146,
+            "threads": 6,
+            "times": [
+                3.496755599975586,
+                3.4289259910583496,
+                3.428377628326416
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 3.089311361312866,
+            "mean": 3.060453017552694,
+            "median": 3.0861377716064453,
+            "min": 3.0059099197387695,
+            "nucleotides": 13047416,
+            "stddev": 0.04726235348838067,
+            "threads": 7,
+            "times": [
+                3.089311361312866,
+                3.0059099197387695,
+                3.0861377716064453
+            ]
+        },
+        {
+            "genome": "1909395.SAMN05912833.CP017717",
+            "max": 2.944851875305176,
+            "mean": 2.935833136240641,
+            "median": 2.9361319541931152,
+            "min": 2.926515579223633,
+            "nucleotides": 13047416,
+            "stddev": 0.009171799584816632,
+            "threads": 8,
+            "times": [
+                2.926515579223633,
+                2.9361319541931152,
+                2.944851875305176
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 4.5888831615448,
+            "mean": 4.307336330413818,
+            "median": 4.352874279022217,
+            "min": 3.9802515506744385,
+            "nucleotides": 3166051,
+            "stddev": 0.30686053511368744,
+            "threads": 1,
+            "times": [
+                4.5888831615448,
+                4.352874279022217,
+                3.9802515506744385
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 2.302578926086426,
+            "mean": 2.288647174835205,
+            "median": 2.281944513320923,
+            "min": 2.2814180850982666,
+            "nucleotides": 3166051,
+            "stddev": 0.012068121285553086,
+            "threads": 2,
+            "times": [
+                2.302578926086426,
+                2.2814180850982666,
+                2.281944513320923
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 1.714782476425171,
+            "mean": 1.6917296250661213,
+            "median": 1.6806013584136963,
+            "min": 1.679805040359497,
+            "nucleotides": 3166051,
+            "stddev": 0.019968324853319144,
+            "threads": 3,
+            "times": [
+                1.679805040359497,
+                1.6806013584136963,
+                1.714782476425171
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 1.5155980587005615,
+            "mean": 1.4456753730773926,
+            "median": 1.424748420715332,
+            "min": 1.3966796398162842,
+            "nucleotides": 3166051,
+            "stddev": 0.062159879253881084,
+            "threads": 4,
+            "times": [
+                1.424748420715332,
+                1.3966796398162842,
+                1.5155980587005615
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 1.3180830478668213,
+            "mean": 1.2976620197296143,
+            "median": 1.2899258136749268,
+            "min": 1.2849771976470947,
+            "nucleotides": 3166051,
+            "stddev": 0.017857379224936114,
+            "threads": 5,
+            "times": [
+                1.2849771976470947,
+                1.2899258136749268,
+                1.3180830478668213
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 1.2434256076812744,
+            "mean": 1.2321279843648274,
+            "median": 1.229520320892334,
+            "min": 1.223438024520874,
+            "nucleotides": 3166051,
+            "stddev": 0.010245769943631026,
+            "threads": 6,
+            "times": [
+                1.229520320892334,
+                1.2434256076812744,
+                1.223438024520874
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 1.1295254230499268,
+            "mean": 1.1088953018188477,
+            "median": 1.109886884689331,
+            "min": 1.0872735977172852,
+            "nucleotides": 3166051,
+            "stddev": 0.021143358612736782,
+            "threads": 7,
+            "times": [
+                1.109886884689331,
+                1.1295254230499268,
+                1.0872735977172852
+            ]
+        },
+        {
+            "genome": "1194088.SAMN02470121.JH815329",
+            "max": 1.0828275680541992,
+            "mean": 1.0710455576578777,
+            "median": 1.0743470191955566,
+            "min": 1.055962085723877,
+            "nucleotides": 3166051,
+            "stddev": 0.013733654700180684,
+            "threads": 8,
+            "times": [
+                1.0828275680541992,
+                1.055962085723877,
+                1.0743470191955566
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 14.405674695968628,
+            "mean": 13.792062282562256,
+            "median": 13.548685550689697,
+            "min": 13.421826601028442,
+            "nucleotides": 11936683,
+            "stddev": 0.5351760866220421,
+            "threads": 1,
+            "times": [
+                14.405674695968628,
+                13.548685550689697,
+                13.421826601028442
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 7.792621374130249,
+            "mean": 7.700740416844686,
+            "median": 7.743762493133545,
+            "min": 7.565837383270264,
+            "nucleotides": 11936683,
+            "stddev": 0.11935626884981278,
+            "threads": 2,
+            "times": [
+                7.565837383270264,
+                7.743762493133545,
+                7.792621374130249
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 5.600484132766724,
+            "mean": 5.535222291946411,
+            "median": 5.564205646514893,
+            "min": 5.440977096557617,
+            "nucleotides": 11936683,
+            "stddev": 0.08361010573839166,
+            "threads": 3,
+            "times": [
+                5.440977096557617,
+                5.564205646514893,
+                5.600484132766724
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 6.398127555847168,
+            "mean": 5.838282982508342,
+            "median": 5.953479528427124,
+            "min": 5.163241863250732,
+            "nucleotides": 11936683,
+            "stddev": 0.6254505188970253,
+            "threads": 4,
+            "times": [
+                5.163241863250732,
+                6.398127555847168,
+                5.953479528427124
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 5.0985801219940186,
+            "mean": 4.959359884262085,
+            "median": 5.014232873916626,
+            "min": 4.76526665687561,
+            "nucleotides": 11936683,
+            "stddev": 0.17329959680429324,
+            "threads": 5,
+            "times": [
+                4.76526665687561,
+                5.014232873916626,
+                5.0985801219940186
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 4.428834438323975,
+            "mean": 4.297564665476481,
+            "median": 4.278895616531372,
+            "min": 4.184963941574097,
+            "nucleotides": 11936683,
+            "stddev": 0.12300245866503731,
+            "threads": 6,
+            "times": [
+                4.184963941574097,
+                4.278895616531372,
+                4.428834438323975
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 4.854970455169678,
+            "mean": 4.454841375350952,
+            "median": 4.311601877212524,
+            "min": 4.197951793670654,
+            "nucleotides": 11936683,
+            "stddev": 0.35115031789776807,
+            "threads": 7,
+            "times": [
+                4.197951793670654,
+                4.311601877212524,
+                4.854970455169678
+            ]
+        },
+        {
+            "genome": "749414.SAMN02603683.CP002047",
+            "max": 4.484367609024048,
+            "mean": 4.132331609725952,
+            "median": 4.067548513412476,
+            "min": 3.845078706741333,
+            "nucleotides": 11936683,
+            "stddev": 0.32453075712701024,
+            "threads": 8,
+            "times": [
+                4.484367609024048,
+                4.067548513412476,
+                3.845078706741333
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 2.604748010635376,
+            "mean": 2.4418019453684487,
+            "median": 2.5034189224243164,
+            "min": 2.2172389030456543,
+            "nucleotides": 5166100,
+            "stddev": 0.20096844531511185,
+            "threads": 1,
+            "times": [
+                2.5034189224243164,
+                2.604748010635376,
+                2.2172389030456543
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 1.266632318496704,
+            "mean": 1.2445532480875652,
+            "median": 1.2462100982666016,
+            "min": 1.2208173274993896,
+            "nucleotides": 5166100,
+            "stddev": 0.022952390167645526,
+            "threads": 2,
+            "times": [
+                1.266632318496704,
+                1.2208173274993896,
+                1.2462100982666016
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 0.9030256271362305,
+            "mean": 0.8856145540873209,
+            "median": 0.8848068714141846,
+            "min": 0.8690111637115479,
+            "nucleotides": 5166100,
+            "stddev": 0.017021609618148085,
+            "threads": 3,
+            "times": [
+                0.8690111637115479,
+                0.9030256271362305,
+                0.8848068714141846
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 0.7951221466064453,
+            "mean": 0.766810417175293,
+            "median": 0.7847940921783447,
+            "min": 0.7205150127410889,
+            "nucleotides": 5166100,
+            "stddev": 0.04042419486968597,
+            "threads": 4,
+            "times": [
+                0.7847940921783447,
+                0.7951221466064453,
+                0.7205150127410889
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 0.6964590549468994,
+            "mean": 0.6798863410949707,
+            "median": 0.684476375579834,
+            "min": 0.6587235927581787,
+            "nucleotides": 5166100,
+            "stddev": 0.019281923894629086,
+            "threads": 5,
+            "times": [
+                0.6587235927581787,
+                0.684476375579834,
+                0.6964590549468994
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 0.6096711158752441,
+            "mean": 0.6020867824554443,
+            "median": 0.6026613712310791,
+            "min": 0.5939278602600098,
+            "nucleotides": 5166100,
+            "stddev": 0.007887340396956776,
+            "threads": 6,
+            "times": [
+                0.6096711158752441,
+                0.5939278602600098,
+                0.6026613712310791
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 0.5574700832366943,
+            "mean": 0.5473660628000895,
+            "median": 0.5460705757141113,
+            "min": 0.5385575294494629,
+            "nucleotides": 5166100,
+            "stddev": 0.00952259879345879,
+            "threads": 7,
+            "times": [
+                0.5460705757141113,
+                0.5385575294494629,
+                0.5574700832366943
+            ]
+        },
+        {
+            "genome": "36809.SAMN04572937.CP014954",
+            "max": 0.536273717880249,
+            "mean": 0.532457192738851,
+            "median": 0.5307140350341797,
+            "min": 0.530383825302124,
+            "nucleotides": 5166100,
+            "stddev": 0.003309328894652053,
+            "threads": 8,
+            "times": [
+                0.5307140350341797,
+                0.530383825302124,
+                0.536273717880249
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 3.343160629272461,
+            "mean": 3.2529725233713784,
+            "median": 3.214127540588379,
+            "min": 3.201629400253296,
+            "nucleotides": 2517763,
+            "stddev": 0.07835478104415512,
+            "threads": 1,
+            "times": [
+                3.201629400253296,
+                3.343160629272461,
+                3.214127540588379
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.9487664699554443,
+            "mean": 1.9134243329366047,
+            "median": 1.9267778396606445,
+            "min": 1.8647286891937256,
+            "nucleotides": 2517763,
+            "stddev": 0.04358123742174385,
+            "threads": 2,
+            "times": [
+                1.9267778396606445,
+                1.8647286891937256,
+                1.9487664699554443
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.6240406036376953,
+            "mean": 1.5720961888631184,
+            "median": 1.6080167293548584,
+            "min": 1.4842312335968018,
+            "nucleotides": 2517763,
+            "stddev": 0.07651391317742101,
+            "threads": 3,
+            "times": [
+                1.4842312335968018,
+                1.6080167293548584,
+                1.6240406036376953
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.4783525466918945,
+            "mean": 1.4403038024902344,
+            "median": 1.447101354598999,
+            "min": 1.3954575061798096,
+            "nucleotides": 2517763,
+            "stddev": 0.04186349210682955,
+            "threads": 4,
+            "times": [
+                1.447101354598999,
+                1.4783525466918945,
+                1.3954575061798096
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.4273877143859863,
+            "mean": 1.3861237366994221,
+            "median": 1.375356912612915,
+            "min": 1.3556265830993652,
+            "nucleotides": 2517763,
+            "stddev": 0.03707233964246471,
+            "threads": 5,
+            "times": [
+                1.375356912612915,
+                1.3556265830993652,
+                1.4273877143859863
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.3451941013336182,
+            "mean": 1.3161725203196208,
+            "median": 1.3032402992248535,
+            "min": 1.3000831604003906,
+            "nucleotides": 2517763,
+            "stddev": 0.025182950677060133,
+            "threads": 6,
+            "times": [
+                1.3000831604003906,
+                1.3032402992248535,
+                1.3451941013336182
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.3396615982055664,
+            "mean": 1.3152945041656494,
+            "median": 1.3155977725982666,
+            "min": 1.2906241416931152,
+            "nucleotides": 2517763,
+            "stddev": 0.024520134871352187,
+            "threads": 7,
+            "times": [
+                1.2906241416931152,
+                1.3155977725982666,
+                1.3396615982055664
+            ]
+        },
+        {
+            "genome": "518637.SAMN00008825.DS996879",
+            "max": 1.3285610675811768,
+            "mean": 1.2983829975128174,
+            "median": 1.2838997840881348,
+            "min": 1.2826881408691406,
+            "nucleotides": 2517763,
+            "stddev": 0.026141995995153846,
+            "threads": 8,
+            "times": [
+                1.3285610675811768,
+                1.2838997840881348,
+                1.2826881408691406
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 1.9546582698822021,
+            "mean": 1.9295334021250408,
+            "median": 1.9272477626800537,
+            "min": 1.9066941738128662,
+            "nucleotides": 4763416,
+            "stddev": 0.024063597791923845,
+            "threads": 1,
+            "times": [
+                1.9546582698822021,
+                1.9272477626800537,
+                1.9066941738128662
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 1.1159417629241943,
+            "mean": 1.0971691608428955,
+            "median": 1.0957086086273193,
+            "min": 1.0798571109771729,
+            "nucleotides": 4763416,
+            "stddev": 0.01808660930399169,
+            "threads": 2,
+            "times": [
+                1.1159417629241943,
+                1.0957086086273193,
+                1.0798571109771729
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 0.88726806640625,
+            "mean": 0.8425363699595133,
+            "median": 0.826284646987915,
+            "min": 0.814056396484375,
+            "nucleotides": 4763416,
+            "stddev": 0.039218312404367635,
+            "threads": 3,
+            "times": [
+                0.814056396484375,
+                0.88726806640625,
+                0.826284646987915
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 0.7912495136260986,
+            "mean": 0.7526985009511312,
+            "median": 0.7715017795562744,
+            "min": 0.6953442096710205,
+            "nucleotides": 4763416,
+            "stddev": 0.050642169151863536,
+            "threads": 4,
+            "times": [
+                0.7715017795562744,
+                0.7912495136260986,
+                0.6953442096710205
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 0.6445400714874268,
+            "mean": 0.6359999974568685,
+            "median": 0.6394948959350586,
+            "min": 0.6239650249481201,
+            "nucleotides": 4763416,
+            "stddev": 0.01072351955065594,
+            "threads": 5,
+            "times": [
+                0.6239650249481201,
+                0.6394948959350586,
+                0.6445400714874268
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 0.601708173751831,
+            "mean": 0.5963224569956461,
+            "median": 0.6007587909698486,
+            "min": 0.5865004062652588,
+            "nucleotides": 4763416,
+            "stddev": 0.008519380395862627,
+            "threads": 6,
+            "times": [
+                0.5865004062652588,
+                0.601708173751831,
+                0.6007587909698486
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 0.5711143016815186,
+            "mean": 0.5654322306315104,
+            "median": 0.5659480094909668,
+            "min": 0.5592343807220459,
+            "nucleotides": 4763416,
+            "stddev": 0.005956731601702903,
+            "threads": 7,
+            "times": [
+                0.5711143016815186,
+                0.5659480094909668,
+                0.5592343807220459
+            ]
+        },
+        {
+            "genome": "82977.SAMN02928654.JPRU01000001",
+            "max": 0.569110631942749,
+            "mean": 0.5581940015157064,
+            "median": 0.5605249404907227,
+            "min": 0.5449464321136475,
+            "nucleotides": 4763416,
+            "stddev": 0.012249575328317526,
+            "threads": 8,
+            "times": [
+                0.5605249404907227,
+                0.5449464321136475,
+                0.569110631942749
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 1.314500331878662,
+            "mean": 1.258467197418213,
+            "median": 1.2461967468261719,
+            "min": 1.2147045135498047,
+            "nucleotides": 3690120,
+            "stddev": 0.051016902172518946,
+            "threads": 1,
+            "times": [
+                1.314500331878662,
+                1.2147045135498047,
+                1.2461967468261719
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.6951680183410645,
+            "mean": 0.6866796016693115,
+            "median": 0.6852626800537109,
+            "min": 0.6796081066131592,
+            "nucleotides": 3690120,
+            "stddev": 0.007876132514985902,
+            "threads": 2,
+            "times": [
+                0.6951680183410645,
+                0.6852626800537109,
+                0.6796081066131592
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.5174160003662109,
+            "mean": 0.5042359034220377,
+            "median": 0.5072338581085205,
+            "min": 0.48805785179138184,
+            "nucleotides": 3690120,
+            "stddev": 0.014906911858667707,
+            "threads": 3,
+            "times": [
+                0.48805785179138184,
+                0.5174160003662109,
+                0.5072338581085205
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.46608495712280273,
+            "mean": 0.4580092430114746,
+            "median": 0.4638364315032959,
+            "min": 0.4441063404083252,
+            "nucleotides": 3690120,
+            "stddev": 0.012092642079375736,
+            "threads": 4,
+            "times": [
+                0.4441063404083252,
+                0.4638364315032959,
+                0.46608495712280273
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.436276912689209,
+            "mean": 0.4330051740010579,
+            "median": 0.43540525436401367,
+            "min": 0.42733335494995117,
+            "nucleotides": 3690120,
+            "stddev": 0.004931236718141186,
+            "threads": 5,
+            "times": [
+                0.436276912689209,
+                0.43540525436401367,
+                0.42733335494995117
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.3915410041809082,
+            "mean": 0.37772075335184735,
+            "median": 0.3810281753540039,
+            "min": 0.3605930805206299,
+            "nucleotides": 3690120,
+            "stddev": 0.015736828617795445,
+            "threads": 6,
+            "times": [
+                0.3605930805206299,
+                0.3915410041809082,
+                0.3810281753540039
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.34702181816101074,
+            "mean": 0.33653632799784344,
+            "median": 0.3363924026489258,
+            "min": 0.32619476318359375,
+            "nucleotides": 3690120,
+            "stddev": 0.010414273409010985,
+            "threads": 7,
+            "times": [
+                0.32619476318359375,
+                0.34702181816101074,
+                0.3363924026489258
+            ]
+        },
+        {
+            "genome": "570952.SAMN02441250.ATVH01000001",
+            "max": 0.37464213371276855,
+            "mean": 0.360745906829834,
+            "median": 0.35657548904418945,
+            "min": 0.35102009773254395,
+            "nucleotides": 3690120,
+            "stddev": 0.012350887998151051,
+            "threads": 8,
+            "times": [
+                0.37464213371276855,
+                0.35102009773254395,
+                0.35657548904418945
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 2.1978888511657715,
+            "mean": 2.0680970350901284,
+            "median": 2.0231642723083496,
+            "min": 1.9832379817962646,
+            "nucleotides": 6979496,
+            "stddev": 0.11416200685286672,
+            "threads": 1,
+            "times": [
+                2.0231642723083496,
+                2.1978888511657715,
+                1.9832379817962646
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 1.2332310676574707,
+            "mean": 1.2142876784006755,
+            "median": 1.2155849933624268,
+            "min": 1.194046974182129,
+            "nucleotides": 6979496,
+            "stddev": 0.019624234124000068,
+            "threads": 2,
+            "times": [
+                1.2155849933624268,
+                1.194046974182129,
+                1.2332310676574707
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 0.9112629890441895,
+            "mean": 0.9011054039001465,
+            "median": 0.9046015739440918,
+            "min": 0.8874516487121582,
+            "nucleotides": 6979496,
+            "stddev": 0.01228464024032002,
+            "threads": 3,
+            "times": [
+                0.9112629890441895,
+                0.9046015739440918,
+                0.8874516487121582
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 0.8359413146972656,
+            "mean": 0.8086423873901367,
+            "median": 0.8048985004425049,
+            "min": 0.7850873470306396,
+            "nucleotides": 6979496,
+            "stddev": 0.025632869990834934,
+            "threads": 4,
+            "times": [
+                0.8048985004425049,
+                0.8359413146972656,
+                0.7850873470306396
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 0.7601120471954346,
+            "mean": 0.7475624879201254,
+            "median": 0.7420213222503662,
+            "min": 0.7405540943145752,
+            "nucleotides": 6979496,
+            "stddev": 0.010892968739387193,
+            "threads": 5,
+            "times": [
+                0.7405540943145752,
+                0.7601120471954346,
+                0.7420213222503662
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 0.7142057418823242,
+            "mean": 0.6987996896107992,
+            "median": 0.6941559314727783,
+            "min": 0.6880373954772949,
+            "nucleotides": 6979496,
+            "stddev": 0.01368827803731092,
+            "threads": 6,
+            "times": [
+                0.6880373954772949,
+                0.6941559314727783,
+                0.7142057418823242
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 0.6558539867401123,
+            "mean": 0.6533481280008951,
+            "median": 0.6557328701019287,
+            "min": 0.6484575271606445,
+            "nucleotides": 6979496,
+            "stddev": 0.004235817482376513,
+            "threads": 7,
+            "times": [
+                0.6558539867401123,
+                0.6557328701019287,
+                0.6484575271606445
+            ]
+        },
+        {
+            "genome": "154046.SAMEA3545258.CYZE01000001",
+            "max": 0.673804759979248,
+            "mean": 0.6565515200297037,
+            "median": 0.6548573970794678,
+            "min": 0.6409924030303955,
+            "nucleotides": 6979496,
+            "stddev": 0.01647164932733256,
+            "threads": 8,
+            "times": [
+                0.6409924030303955,
+                0.673804759979248,
+                0.6548573970794678
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.9273436069488525,
+            "mean": 0.9220463434855143,
+            "median": 0.9217989444732666,
+            "min": 0.9169964790344238,
+            "nucleotides": 1752918,
+            "stddev": 0.005177998524800226,
+            "threads": 1,
+            "times": [
+                0.9217989444732666,
+                0.9169964790344238,
+                0.9273436069488525
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.5614712238311768,
+            "mean": 0.5464407602945963,
+            "median": 0.5408468246459961,
+            "min": 0.5370042324066162,
+            "nucleotides": 1752918,
+            "stddev": 0.013157792534193965,
+            "threads": 2,
+            "times": [
+                0.5370042324066162,
+                0.5408468246459961,
+                0.5614712238311768
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.49287986755371094,
+            "mean": 0.4676551818847656,
+            "median": 0.46026039123535156,
+            "min": 0.4498252868652344,
+            "nucleotides": 1752918,
+            "stddev": 0.02245966219974448,
+            "threads": 3,
+            "times": [
+                0.4498252868652344,
+                0.49287986755371094,
+                0.46026039123535156
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.46000194549560547,
+            "mean": 0.4334994951883952,
+            "median": 0.42273402214050293,
+            "min": 0.41776251792907715,
+            "nucleotides": 1752918,
+            "stddev": 0.02308601021713516,
+            "threads": 4,
+            "times": [
+                0.42273402214050293,
+                0.46000194549560547,
+                0.41776251792907715
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.41684436798095703,
+            "mean": 0.40432365735371906,
+            "median": 0.4054133892059326,
+            "min": 0.3907132148742676,
+            "nucleotides": 1752918,
+            "stddev": 0.013099615540297663,
+            "threads": 5,
+            "times": [
+                0.3907132148742676,
+                0.4054133892059326,
+                0.41684436798095703
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.4092683792114258,
+            "mean": 0.3991711139678955,
+            "median": 0.39698076248168945,
+            "min": 0.3912642002105713,
+            "nucleotides": 1752918,
+            "stddev": 0.009199774187367116,
+            "threads": 6,
+            "times": [
+                0.39698076248168945,
+                0.4092683792114258,
+                0.3912642002105713
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.3936779499053955,
+            "mean": 0.38727593421936035,
+            "median": 0.3917112350463867,
+            "min": 0.37643861770629883,
+            "nucleotides": 1752918,
+            "stddev": 0.009436766593350101,
+            "threads": 7,
+            "times": [
+                0.3917112350463867,
+                0.3936779499053955,
+                0.37643861770629883
+            ]
+        },
+        {
+            "genome": "562982.SAMN02595332.GL622607",
+            "max": 0.40387392044067383,
+            "mean": 0.3942532539367676,
+            "median": 0.39873480796813965,
+            "min": 0.38015103340148926,
+            "nucleotides": 1752918,
+            "stddev": 0.012480267916617747,
+            "threads": 8,
+            "times": [
+                0.40387392044067383,
+                0.38015103340148926,
+                0.39873480796813965
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 4.053152561187744,
+            "mean": 3.9307148456573486,
+            "median": 3.889065742492676,
+            "min": 3.849926233291626,
+            "nucleotides": 2242885,
+            "stddev": 0.1078249550584247,
+            "threads": 1,
+            "times": [
+                4.053152561187744,
+                3.889065742492676,
+                3.849926233291626
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 2.4088263511657715,
+            "mean": 2.352647542953491,
+            "median": 2.4055233001708984,
+            "min": 2.2435929775238037,
+            "nucleotides": 2242885,
+            "stddev": 0.0944584629202814,
+            "threads": 2,
+            "times": [
+                2.2435929775238037,
+                2.4055233001708984,
+                2.4088263511657715
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 2.257936954498291,
+            "mean": 2.083855946858724,
+            "median": 2.027740716934204,
+            "min": 1.9658901691436768,
+            "nucleotides": 2242885,
+            "stddev": 0.15389775983133194,
+            "threads": 3,
+            "times": [
+                2.027740716934204,
+                2.257936954498291,
+                1.9658901691436768
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 1.986006498336792,
+            "mean": 1.8384157816569011,
+            "median": 1.8016176223754883,
+            "min": 1.7276232242584229,
+            "nucleotides": 2242885,
+            "stddev": 0.1330641103969796,
+            "threads": 4,
+            "times": [
+                1.986006498336792,
+                1.7276232242584229,
+                1.8016176223754883
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 1.7695410251617432,
+            "mean": 1.7184437115987141,
+            "median": 1.7028570175170898,
+            "min": 1.6829330921173096,
+            "nucleotides": 2242885,
+            "stddev": 0.04535903758737481,
+            "threads": 5,
+            "times": [
+                1.6829330921173096,
+                1.7695410251617432,
+                1.7028570175170898
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 1.680659532546997,
+            "mean": 1.6697982947031658,
+            "median": 1.6695997714996338,
+            "min": 1.6591355800628662,
+            "nucleotides": 2242885,
+            "stddev": 0.010763349442972489,
+            "threads": 6,
+            "times": [
+                1.6695997714996338,
+                1.6591355800628662,
+                1.680659532546997
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 1.8166248798370361,
+            "mean": 1.682684024175008,
+            "median": 1.6246616840362549,
+            "min": 1.6067655086517334,
+            "nucleotides": 2242885,
+            "stddev": 0.11634080490075506,
+            "threads": 7,
+            "times": [
+                1.6067655086517334,
+                1.8166248798370361,
+                1.6246616840362549
+            ]
+        },
+        {
+            "genome": "596327.SAMN00002220.ACLR01000250",
+            "max": 2.118497133255005,
+            "mean": 1.9391804536183674,
+            "median": 2.081531047821045,
+            "min": 1.6175131797790527,
+            "nucleotides": 2242885,
+            "stddev": 0.2791845252919478,
+            "threads": 8,
+            "times": [
+                1.6175131797790527,
+                2.081531047821045,
+                2.118497133255005
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 2.0147132873535156,
+            "mean": 1.9564056396484375,
+            "median": 1.9595742225646973,
+            "min": 1.8949294090270996,
+            "nucleotides": 2350819,
+            "stddev": 0.059954768909589826,
+            "threads": 1,
+            "times": [
+                2.0147132873535156,
+                1.8949294090270996,
+                1.9595742225646973
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 1.1097369194030762,
+            "mean": 1.0829630692799885,
+            "median": 1.0761899948120117,
+            "min": 1.062962293624878,
+            "nucleotides": 2350819,
+            "stddev": 0.024111663308121076,
+            "threads": 2,
+            "times": [
+                1.062962293624878,
+                1.1097369194030762,
+                1.0761899948120117
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 0.8718550205230713,
+            "mean": 0.8334577083587646,
+            "median": 0.8187787532806396,
+            "min": 0.809739351272583,
+            "nucleotides": 2350819,
+            "stddev": 0.033558797404677994,
+            "threads": 3,
+            "times": [
+                0.809739351272583,
+                0.8187787532806396,
+                0.8718550205230713
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 0.7571792602539062,
+            "mean": 0.7473185062408447,
+            "median": 0.7462489604949951,
+            "min": 0.7385272979736328,
+            "nucleotides": 2350819,
+            "stddev": 0.00937186589228818,
+            "threads": 4,
+            "times": [
+                0.7571792602539062,
+                0.7462489604949951,
+                0.7385272979736328
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 0.6469676494598389,
+            "mean": 0.6230201721191406,
+            "median": 0.6155154705047607,
+            "min": 0.6065773963928223,
+            "nucleotides": 2350819,
+            "stddev": 0.021215172529231715,
+            "threads": 5,
+            "times": [
+                0.6065773963928223,
+                0.6469676494598389,
+                0.6155154705047607
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 0.6389269828796387,
+            "mean": 0.6111203829447428,
+            "median": 0.6152729988098145,
+            "min": 0.5791611671447754,
+            "nucleotides": 2350819,
+            "stddev": 0.030098527314563767,
+            "threads": 6,
+            "times": [
+                0.5791611671447754,
+                0.6152729988098145,
+                0.6389269828796387
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 0.6028347015380859,
+            "mean": 0.5812946160634359,
+            "median": 0.5911707878112793,
+            "min": 0.5498783588409424,
+            "nucleotides": 2350819,
+            "stddev": 0.027825305645383356,
+            "threads": 7,
+            "times": [
+                0.6028347015380859,
+                0.5498783588409424,
+                0.5911707878112793
+            ]
+        },
+        {
+            "genome": "1852381.SAMEA4555866.LT635840",
+            "max": 0.5628688335418701,
+            "mean": 0.560964028040568,
+            "median": 0.5605325698852539,
+            "min": 0.5594906806945801,
+            "nucleotides": 2350819,
+            "stddev": 0.0017299122144645814,
+            "threads": 8,
+            "times": [
+                0.5605325698852539,
+                0.5628688335418701,
+                0.5594906806945801
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 1.9453809261322021,
+            "mean": 1.890536864598592,
+            "median": 1.881197214126587,
+            "min": 1.8450324535369873,
+            "nucleotides": 6250224,
+            "stddev": 0.05082200105517852,
+            "threads": 1,
+            "times": [
+                1.9453809261322021,
+                1.8450324535369873,
+                1.881197214126587
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 1.1047437191009521,
+            "mean": 1.067718505859375,
+            "median": 1.0526361465454102,
+            "min": 1.0457756519317627,
+            "nucleotides": 6250224,
+            "stddev": 0.032247734932459464,
+            "threads": 2,
+            "times": [
+                1.1047437191009521,
+                1.0526361465454102,
+                1.0457756519317627
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 0.7946500778198242,
+            "mean": 0.764924685160319,
+            "median": 0.7575106620788574,
+            "min": 0.7426133155822754,
+            "nucleotides": 6250224,
+            "stddev": 0.026798917137286177,
+            "threads": 3,
+            "times": [
+                0.7575106620788574,
+                0.7946500778198242,
+                0.7426133155822754
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 0.8992490768432617,
+            "mean": 0.8046705722808838,
+            "median": 0.839745283126831,
+            "min": 0.6750173568725586,
+            "nucleotides": 6250224,
+            "stddev": 0.11615783471617429,
+            "threads": 4,
+            "times": [
+                0.6750173568725586,
+                0.8992490768432617,
+                0.839745283126831
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 0.7130708694458008,
+            "mean": 0.6677711804707845,
+            "median": 0.6603336334228516,
+            "min": 0.6299090385437012,
+            "nucleotides": 6250224,
+            "stddev": 0.04207683875144394,
+            "threads": 5,
+            "times": [
+                0.6603336334228516,
+                0.6299090385437012,
+                0.7130708694458008
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 0.7433469295501709,
+            "mean": 0.6788171927134196,
+            "median": 0.7164044380187988,
+            "min": 0.5767002105712891,
+            "nucleotides": 6250224,
+            "stddev": 0.08945603944866813,
+            "threads": 6,
+            "times": [
+                0.7164044380187988,
+                0.7433469295501709,
+                0.5767002105712891
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 0.5472984313964844,
+            "mean": 0.5325339635213217,
+            "median": 0.5447115898132324,
+            "min": 0.505591869354248,
+            "nucleotides": 6250224,
+            "stddev": 0.02336836036021366,
+            "threads": 7,
+            "times": [
+                0.5447115898132324,
+                0.5472984313964844,
+                0.505591869354248
+            ]
+        },
+        {
+            "genome": "1267533.SAMN02440487.KB906733",
+            "max": 0.5387036800384521,
+            "mean": 0.5167330106099447,
+            "median": 0.507622480392456,
+            "min": 0.5038728713989258,
+            "nucleotides": 6250224,
+            "stddev": 0.019119299889212887,
+            "threads": 8,
+            "times": [
+                0.5387036800384521,
+                0.507622480392456,
+                0.5038728713989258
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 6.791081666946411,
+            "mean": 6.259451627731323,
+            "median": 6.233180284500122,
+            "min": 5.7540929317474365,
+            "nucleotides": 12191466,
+            "stddev": 0.5189933013428699,
+            "threads": 1,
+            "times": [
+                6.233180284500122,
+                6.791081666946411,
+                5.7540929317474365
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 3.3506882190704346,
+            "mean": 3.3375580310821533,
+            "median": 3.346360921859741,
+            "min": 3.315624952316284,
+            "nucleotides": 12191466,
+            "stddev": 0.019117435324848976,
+            "threads": 2,
+            "times": [
+                3.315624952316284,
+                3.3506882190704346,
+                3.346360921859741
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 2.4777586460113525,
+            "mean": 2.355816205342611,
+            "median": 2.3274378776550293,
+            "min": 2.26225209236145,
+            "nucleotides": 12191466,
+            "stddev": 0.1105204314969516,
+            "threads": 3,
+            "times": [
+                2.26225209236145,
+                2.4777586460113525,
+                2.3274378776550293
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 2.307528257369995,
+            "mean": 2.198188384373983,
+            "median": 2.14760684967041,
+            "min": 2.139430046081543,
+            "nucleotides": 12191466,
+            "stddev": 0.09477932738377506,
+            "threads": 4,
+            "times": [
+                2.307528257369995,
+                2.14760684967041,
+                2.139430046081543
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 2.043003559112549,
+            "mean": 1.8976653416951497,
+            "median": 1.8913064002990723,
+            "min": 1.7586860656738281,
+            "nucleotides": 12191466,
+            "stddev": 0.14226537305535142,
+            "threads": 5,
+            "times": [
+                2.043003559112549,
+                1.8913064002990723,
+                1.7586860656738281
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 1.7260375022888184,
+            "mean": 1.7156745592753093,
+            "median": 1.723233938217163,
+            "min": 1.6977522373199463,
+            "nucleotides": 12191466,
+            "stddev": 0.015584357897575788,
+            "threads": 6,
+            "times": [
+                1.7260375022888184,
+                1.6977522373199463,
+                1.723233938217163
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 1.5525872707366943,
+            "mean": 1.5405291716257732,
+            "median": 1.5452640056610107,
+            "min": 1.5237362384796143,
+            "nucleotides": 12191466,
+            "stddev": 0.014996983215990552,
+            "threads": 7,
+            "times": [
+                1.5237362384796143,
+                1.5452640056610107,
+                1.5525872707366943
+            ]
+        },
+        {
+            "genome": "1391654.SAMN03951129.CP012333",
+            "max": 1.5563642978668213,
+            "mean": 1.5019274552663167,
+            "median": 1.4902174472808838,
+            "min": 1.4592006206512451,
+            "nucleotides": 12191466,
+            "stddev": 0.04962900621388007,
+            "threads": 8,
+            "times": [
+                1.5563642978668213,
+                1.4592006206512451,
+                1.4902174472808838
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 24.212145805358887,
+            "mean": 23.81741801897685,
+            "median": 23.850500345230103,
+            "min": 23.389607906341553,
+            "nucleotides": 6535106,
+            "stddev": 0.41226566563650147,
+            "threads": 1,
+            "times": [
+                24.212145805358887,
+                23.850500345230103,
+                23.389607906341553
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 13.80272388458252,
+            "mean": 13.633346398671469,
+            "median": 13.646174430847168,
+            "min": 13.451140880584717,
+            "nucleotides": 6535106,
+            "stddev": 0.17614218967117257,
+            "threads": 2,
+            "times": [
+                13.451140880584717,
+                13.646174430847168,
+                13.80272388458252
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 10.849692821502686,
+            "mean": 10.651797771453857,
+            "median": 10.582891464233398,
+            "min": 10.522809028625488,
+            "nucleotides": 6535106,
+            "stddev": 0.17399515192244813,
+            "threads": 3,
+            "times": [
+                10.522809028625488,
+                10.582891464233398,
+                10.849692821502686
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 9.241122007369995,
+            "mean": 9.089568694432577,
+            "median": 9.140257358551025,
+            "min": 8.887326717376709,
+            "nucleotides": 6535106,
+            "stddev": 0.1822629482586712,
+            "threads": 4,
+            "times": [
+                8.887326717376709,
+                9.140257358551025,
+                9.241122007369995
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 8.564164400100708,
+            "mean": 8.519075552622477,
+            "median": 8.515719890594482,
+            "min": 8.477342367172241,
+            "nucleotides": 6535106,
+            "stddev": 0.04350817970442498,
+            "threads": 5,
+            "times": [
+                8.477342367172241,
+                8.564164400100708,
+                8.515719890594482
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 8.156871795654297,
+            "mean": 8.091878414154053,
+            "median": 8.103574752807617,
+            "min": 8.015188694000244,
+            "nucleotides": 6535106,
+            "stddev": 0.07156206101701033,
+            "threads": 6,
+            "times": [
+                8.015188694000244,
+                8.156871795654297,
+                8.103574752807617
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 8.451975107192993,
+            "mean": 7.943555196126302,
+            "median": 7.72945237159729,
+            "min": 7.649238109588623,
+            "nucleotides": 6535106,
+            "stddev": 0.4421274549654153,
+            "threads": 7,
+            "times": [
+                7.649238109588623,
+                8.451975107192993,
+                7.72945237159729
+            ]
+        },
+        {
+            "genome": "419481.SAMN05216233.FMUX01000052",
+            "max": 7.358264207839966,
+            "mean": 7.343649864196777,
+            "median": 7.351177215576172,
+            "min": 7.321508169174194,
+            "nucleotides": 6535106,
+            "stddev": 0.01949993227402538,
+            "threads": 8,
+            "times": [
+                7.351177215576172,
+                7.321508169174194,
+                7.358264207839966
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 1.8284668922424316,
+            "mean": 1.8127574920654297,
+            "median": 1.8234164714813232,
+            "min": 1.7863891124725342,
+            "nucleotides": 5741430,
+            "stddev": 0.02297488344328062,
+            "threads": 1,
+            "times": [
+                1.8234164714813232,
+                1.8284668922424316,
+                1.7863891124725342
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 1.0540030002593994,
+            "mean": 1.0398736794789631,
+            "median": 1.0492265224456787,
+            "min": 1.0163915157318115,
+            "nucleotides": 5741430,
+            "stddev": 0.02047590524890842,
+            "threads": 2,
+            "times": [
+                1.0492265224456787,
+                1.0163915157318115,
+                1.0540030002593994
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 0.8179564476013184,
+            "mean": 0.8039414087931315,
+            "median": 0.7990601062774658,
+            "min": 0.7948076725006104,
+            "nucleotides": 5741430,
+            "stddev": 0.012322206898639257,
+            "threads": 3,
+            "times": [
+                0.7948076725006104,
+                0.7990601062774658,
+                0.8179564476013184
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 0.6850423812866211,
+            "mean": 0.6749416987101237,
+            "median": 0.6755204200744629,
+            "min": 0.6642622947692871,
+            "nucleotides": 5741430,
+            "stddev": 0.010402124193169795,
+            "threads": 4,
+            "times": [
+                0.6642622947692871,
+                0.6850423812866211,
+                0.6755204200744629
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 0.6538853645324707,
+            "mean": 0.6262048880259196,
+            "median": 0.6199021339416504,
+            "min": 0.6048271656036377,
+            "nucleotides": 5741430,
+            "stddev": 0.02512907185552855,
+            "threads": 5,
+            "times": [
+                0.6199021339416504,
+                0.6048271656036377,
+                0.6538853645324707
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 0.5894668102264404,
+            "mean": 0.5801161924997965,
+            "median": 0.5765810012817383,
+            "min": 0.5743007659912109,
+            "nucleotides": 5741430,
+            "stddev": 0.008177738510579294,
+            "threads": 6,
+            "times": [
+                0.5894668102264404,
+                0.5765810012817383,
+                0.5743007659912109
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 0.5506463050842285,
+            "mean": 0.5459287961324056,
+            "median": 0.5438308715820312,
+            "min": 0.543309211730957,
+            "nucleotides": 5741430,
+            "stddev": 0.0040938002250907055,
+            "threads": 7,
+            "times": [
+                0.543309211730957,
+                0.5438308715820312,
+                0.5506463050842285
+            ]
+        },
+        {
+            "genome": "373.SAMN04223557.LMVL01000001",
+            "max": 0.5349645614624023,
+            "mean": 0.528281052907308,
+            "median": 0.5271189212799072,
+            "min": 0.5227596759796143,
+            "nucleotides": 5741430,
+            "stddev": 0.006184878321482697,
+            "threads": 8,
+            "times": [
+                0.5271189212799072,
+                0.5349645614624023,
+                0.5227596759796143
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 2.479778528213501,
+            "mean": 2.4295193354288735,
+            "median": 2.457254648208618,
+            "min": 2.351524829864502,
+            "nucleotides": 4150685,
+            "stddev": 0.06847764939227763,
+            "threads": 1,
+            "times": [
+                2.479778528213501,
+                2.351524829864502,
+                2.457254648208618
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 1.3515832424163818,
+            "mean": 1.3335716724395752,
+            "median": 1.3450844287872314,
+            "min": 1.3040473461151123,
+            "nucleotides": 4150685,
+            "stddev": 0.025774464656547903,
+            "threads": 2,
+            "times": [
+                1.3450844287872314,
+                1.3515832424163818,
+                1.3040473461151123
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 1.2579259872436523,
+            "mean": 1.1284998257954915,
+            "median": 1.0669522285461426,
+            "min": 1.0606212615966797,
+            "nucleotides": 4150685,
+            "stddev": 0.11213103377759806,
+            "threads": 3,
+            "times": [
+                1.2579259872436523,
+                1.0669522285461426,
+                1.0606212615966797
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 0.9787158966064453,
+            "mean": 0.9453461964925131,
+            "median": 0.9322652816772461,
+            "min": 0.9250574111938477,
+            "nucleotides": 4150685,
+            "stddev": 0.029122860668153658,
+            "threads": 4,
+            "times": [
+                0.9250574111938477,
+                0.9787158966064453,
+                0.9322652816772461
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 0.9310181140899658,
+            "mean": 0.8861307303110758,
+            "median": 0.8694705963134766,
+            "min": 0.8579034805297852,
+            "nucleotides": 4150685,
+            "stddev": 0.03930149435801833,
+            "threads": 5,
+            "times": [
+                0.8579034805297852,
+                0.8694705963134766,
+                0.9310181140899658
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 0.8194408416748047,
+            "mean": 0.8096216519673666,
+            "median": 0.8135805130004883,
+            "min": 0.7958436012268066,
+            "nucleotides": 4150685,
+            "stddev": 0.012286654333049176,
+            "threads": 6,
+            "times": [
+                0.7958436012268066,
+                0.8194408416748047,
+                0.8135805130004883
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 0.7655043601989746,
+            "mean": 0.755587657292684,
+            "median": 0.757781982421875,
+            "min": 0.7434766292572021,
+            "nucleotides": 4150685,
+            "stddev": 0.011176606358382206,
+            "threads": 7,
+            "times": [
+                0.7655043601989746,
+                0.7434766292572021,
+                0.757781982421875
+            ]
+        },
+        {
+            "genome": "298701.SAMN02471586.AGFG01000084",
+            "max": 0.7464697360992432,
+            "mean": 0.7303307056427002,
+            "median": 0.7277913093566895,
+            "min": 0.716731071472168,
+            "nucleotides": 4150685,
+            "stddev": 0.015031082581553041,
+            "threads": 8,
+            "times": [
+                0.716731071472168,
+                0.7277913093566895,
+                0.7464697360992432
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 1.3013420104980469,
+            "mean": 1.2595349947611492,
+            "median": 1.240844488143921,
+            "min": 1.2364184856414795,
+            "nucleotides": 5036047,
+            "stddev": 0.03627350683566201,
+            "threads": 1,
+            "times": [
+                1.2364184856414795,
+                1.240844488143921,
+                1.3013420104980469
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.719043493270874,
+            "mean": 0.7136592070261637,
+            "median": 0.7111630439758301,
+            "min": 0.7107710838317871,
+            "nucleotides": 5036047,
+            "stddev": 0.0046670453139392,
+            "threads": 2,
+            "times": [
+                0.7107710838317871,
+                0.719043493270874,
+                0.7111630439758301
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.6022169589996338,
+            "mean": 0.5607951482137045,
+            "median": 0.5547752380371094,
+            "min": 0.5253932476043701,
+            "nucleotides": 5036047,
+            "stddev": 0.038764031614841044,
+            "threads": 3,
+            "times": [
+                0.5253932476043701,
+                0.5547752380371094,
+                0.6022169589996338
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.4979209899902344,
+            "mean": 0.4800020058949788,
+            "median": 0.48889732360839844,
+            "min": 0.4531877040863037,
+            "nucleotides": 5036047,
+            "stddev": 0.023656113900167707,
+            "threads": 4,
+            "times": [
+                0.4531877040863037,
+                0.4979209899902344,
+                0.48889732360839844
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.42862606048583984,
+            "mean": 0.4212501843770345,
+            "median": 0.4273073673248291,
+            "min": 0.40781712532043457,
+            "nucleotides": 5036047,
+            "stddev": 0.011652040363249704,
+            "threads": 5,
+            "times": [
+                0.40781712532043457,
+                0.4273073673248291,
+                0.42862606048583984
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.3946342468261719,
+            "mean": 0.39018821716308594,
+            "median": 0.39389610290527344,
+            "min": 0.3820343017578125,
+            "nucleotides": 5036047,
+            "stddev": 0.0070711361491104414,
+            "threads": 6,
+            "times": [
+                0.39389610290527344,
+                0.3820343017578125,
+                0.3946342468261719
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.37661314010620117,
+            "mean": 0.37343931198120117,
+            "median": 0.3745303153991699,
+            "min": 0.3691744804382324,
+            "nucleotides": 5036047,
+            "stddev": 0.0038374641050413568,
+            "threads": 7,
+            "times": [
+                0.37661314010620117,
+                0.3691744804382324,
+                0.3745303153991699
+            ]
+        },
+        {
+            "genome": "1189612.SAMN02469969.ALWO02000056",
+            "max": 0.36704564094543457,
+            "mean": 0.3638609250386556,
+            "median": 0.36521148681640625,
+            "min": 0.359325647354126,
+            "nucleotides": 5036047,
+            "stddev": 0.004033309819379388,
+            "threads": 8,
+            "times": [
+                0.36521148681640625,
+                0.359325647354126,
+                0.36704564094543457
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 2.7814273834228516,
+            "mean": 2.733766714731852,
+            "median": 2.738168239593506,
+            "min": 2.681704521179199,
+            "nucleotides": 5174581,
+            "stddev": 0.05000692331415153,
+            "threads": 1,
+            "times": [
+                2.7814273834228516,
+                2.681704521179199,
+                2.738168239593506
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 1.6048378944396973,
+            "mean": 1.5249603589375813,
+            "median": 1.4860706329345703,
+            "min": 1.4839725494384766,
+            "nucleotides": 5174581,
+            "stddev": 0.0691839287479974,
+            "threads": 2,
+            "times": [
+                1.4839725494384766,
+                1.6048378944396973,
+                1.4860706329345703
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 1.1379358768463135,
+            "mean": 1.1167155901590984,
+            "median": 1.1169064044952393,
+            "min": 1.0953044891357422,
+            "nucleotides": 5174581,
+            "stddev": 0.02131633439678173,
+            "threads": 3,
+            "times": [
+                1.1379358768463135,
+                1.0953044891357422,
+                1.1169064044952393
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 0.9252679347991943,
+            "mean": 0.8921651840209961,
+            "median": 0.8761632442474365,
+            "min": 0.8750643730163574,
+            "nucleotides": 5174581,
+            "stddev": 0.02867308775329667,
+            "threads": 4,
+            "times": [
+                0.8750643730163574,
+                0.8761632442474365,
+                0.9252679347991943
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 0.8285675048828125,
+            "mean": 0.8034218152364095,
+            "median": 0.8119425773620605,
+            "min": 0.7697553634643555,
+            "nucleotides": 5174581,
+            "stddev": 0.03031780887461352,
+            "threads": 5,
+            "times": [
+                0.7697553634643555,
+                0.8119425773620605,
+                0.8285675048828125
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 0.7709295749664307,
+            "mean": 0.7629209359486898,
+            "median": 0.7658836841583252,
+            "min": 0.7519495487213135,
+            "nucleotides": 5174581,
+            "stddev": 0.00983075565669332,
+            "threads": 6,
+            "times": [
+                0.7658836841583252,
+                0.7709295749664307,
+                0.7519495487213135
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 0.7059814929962158,
+            "mean": 0.6949249903361002,
+            "median": 0.6971588134765625,
+            "min": 0.6816346645355225,
+            "nucleotides": 5174581,
+            "stddev": 0.01232617087301468,
+            "threads": 7,
+            "times": [
+                0.6971588134765625,
+                0.6816346645355225,
+                0.7059814929962158
+            ]
+        },
+        {
+            "genome": "398579.SAMN02598386.CP000851",
+            "max": 0.7258672714233398,
+            "mean": 0.6864059766133627,
+            "median": 0.6676220893859863,
+            "min": 0.6657285690307617,
+            "nucleotides": 5174581,
+            "stddev": 0.03418759564365215,
+            "threads": 8,
+            "times": [
+                0.6676220893859863,
+                0.6657285690307617,
+                0.7258672714233398
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 1.560260534286499,
+            "mean": 1.5396773020426433,
+            "median": 1.5524213314056396,
+            "min": 1.506350040435791,
+            "nucleotides": 5250260,
+            "stddev": 0.029127187473398333,
+            "threads": 1,
+            "times": [
+                1.560260534286499,
+                1.5524213314056396,
+                1.506350040435791
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.9069762229919434,
+            "mean": 0.8840850194295248,
+            "median": 0.8895654678344727,
+            "min": 0.8557133674621582,
+            "nucleotides": 5250260,
+            "stddev": 0.026067155105733698,
+            "threads": 2,
+            "times": [
+                0.8557133674621582,
+                0.8895654678344727,
+                0.9069762229919434
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.6739177703857422,
+            "mean": 0.665936549504598,
+            "median": 0.6695215702056885,
+            "min": 0.6543703079223633,
+            "nucleotides": 5250260,
+            "stddev": 0.010255003766929458,
+            "threads": 3,
+            "times": [
+                0.6543703079223633,
+                0.6695215702056885,
+                0.6739177703857422
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.6077795028686523,
+            "mean": 0.601926326751709,
+            "median": 0.6047854423522949,
+            "min": 0.5932140350341797,
+            "nucleotides": 5250260,
+            "stddev": 0.007692146632923725,
+            "threads": 4,
+            "times": [
+                0.6077795028686523,
+                0.6047854423522949,
+                0.5932140350341797
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.5811240673065186,
+            "mean": 0.5535456339518229,
+            "median": 0.5412817001342773,
+            "min": 0.5382311344146729,
+            "nucleotides": 5250260,
+            "stddev": 0.023932278987320622,
+            "threads": 5,
+            "times": [
+                0.5412817001342773,
+                0.5382311344146729,
+                0.5811240673065186
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.5220193862915039,
+            "mean": 0.5190813541412354,
+            "median": 0.5196053981781006,
+            "min": 0.5156192779541016,
+            "nucleotides": 5250260,
+            "stddev": 0.003232075694820939,
+            "threads": 6,
+            "times": [
+                0.5220193862915039,
+                0.5196053981781006,
+                0.5156192779541016
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.5078871250152588,
+            "mean": 0.4955039819081624,
+            "median": 0.4945080280303955,
+            "min": 0.484116792678833,
+            "nucleotides": 5250260,
+            "stddev": 0.011916422195483488,
+            "threads": 7,
+            "times": [
+                0.4945080280303955,
+                0.484116792678833,
+                0.5078871250152588
+            ]
+        },
+        {
+            "genome": "1216006.SAMEA4552037.FQXZ01000077",
+            "max": 0.5334270000457764,
+            "mean": 0.5139101346333822,
+            "median": 0.5106098651885986,
+            "min": 0.4976935386657715,
+            "nucleotides": 5250260,
+            "stddev": 0.01809389121651846,
+            "threads": 8,
+            "times": [
+                0.5106098651885986,
+                0.4976935386657715,
+                0.5334270000457764
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 1.0357329845428467,
+            "mean": 0.9756921927134196,
+            "median": 0.9702713489532471,
+            "min": 0.921072244644165,
+            "nucleotides": 3466544,
+            "stddev": 0.05752226072428336,
+            "threads": 1,
+            "times": [
+                1.0357329845428467,
+                0.9702713489532471,
+                0.921072244644165
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.529099702835083,
+            "mean": 0.5053678353627523,
+            "median": 0.5114612579345703,
+            "min": 0.4755425453186035,
+            "nucleotides": 3466544,
+            "stddev": 0.02729358219967297,
+            "threads": 2,
+            "times": [
+                0.5114612579345703,
+                0.4755425453186035,
+                0.529099702835083
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.41606688499450684,
+            "mean": 0.40952420234680176,
+            "median": 0.41416168212890625,
+            "min": 0.3983440399169922,
+            "nucleotides": 3466544,
+            "stddev": 0.009729053060676935,
+            "threads": 3,
+            "times": [
+                0.41606688499450684,
+                0.3983440399169922,
+                0.41416168212890625
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.369396448135376,
+            "mean": 0.3421594301859538,
+            "median": 0.32875680923461914,
+            "min": 0.3283250331878662,
+            "nucleotides": 3466544,
+            "stddev": 0.023588937401279816,
+            "threads": 4,
+            "times": [
+                0.32875680923461914,
+                0.3283250331878662,
+                0.369396448135376
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.34993529319763184,
+            "mean": 0.33851877848307294,
+            "median": 0.3358895778656006,
+            "min": 0.32973146438598633,
+            "nucleotides": 3466544,
+            "stddev": 0.01035534627995399,
+            "threads": 5,
+            "times": [
+                0.34993529319763184,
+                0.32973146438598633,
+                0.3358895778656006
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.3101770877838135,
+            "mean": 0.30168906847635907,
+            "median": 0.30254411697387695,
+            "min": 0.2923460006713867,
+            "nucleotides": 3466544,
+            "stddev": 0.008946242107866778,
+            "threads": 6,
+            "times": [
+                0.3101770877838135,
+                0.2923460006713867,
+                0.30254411697387695
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.29520225524902344,
+            "mean": 0.2795089880625407,
+            "median": 0.27584171295166016,
+            "min": 0.2674829959869385,
+            "nucleotides": 3466544,
+            "stddev": 0.01421886119082093,
+            "threads": 7,
+            "times": [
+                0.2674829959869385,
+                0.29520225524902344,
+                0.27584171295166016
+            ]
+        },
+        {
+            "genome": "1341181.SAMN02470908.AVGG01000001",
+            "max": 0.27445387840270996,
+            "mean": 0.2701849937438965,
+            "median": 0.27208781242370605,
+            "min": 0.26401329040527344,
+            "nucleotides": 3466544,
+            "stddev": 0.005474213060269766,
+            "threads": 8,
+            "times": [
+                0.26401329040527344,
+                0.27445387840270996,
+                0.27208781242370605
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 9.234830379486084,
+            "mean": 8.951558828353882,
+            "median": 9.031810998916626,
+            "min": 8.588035106658936,
+            "nucleotides": 12489432,
+            "stddev": 0.3307814072736105,
+            "threads": 1,
+            "times": [
+                9.031810998916626,
+                9.234830379486084,
+                8.588035106658936
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 5.07977032661438,
+            "mean": 4.984521150588989,
+            "median": 4.981384754180908,
+            "min": 4.89240837097168,
+            "nucleotides": 12489432,
+            "stddev": 0.09372034646962075,
+            "threads": 2,
+            "times": [
+                5.07977032661438,
+                4.981384754180908,
+                4.89240837097168
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 3.8592636585235596,
+            "mean": 3.7435969511667886,
+            "median": 3.6959519386291504,
+            "min": 3.6755752563476562,
+            "nucleotides": 12489432,
+            "stddev": 0.10068710288943608,
+            "threads": 3,
+            "times": [
+                3.6755752563476562,
+                3.8592636585235596,
+                3.6959519386291504
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 3.2767181396484375,
+            "mean": 3.0751969814300537,
+            "median": 3.0208609104156494,
+            "min": 2.928011894226074,
+            "nucleotides": 12489432,
+            "stddev": 0.1805915774866097,
+            "threads": 4,
+            "times": [
+                3.2767181396484375,
+                3.0208609104156494,
+                2.928011894226074
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 2.9923698902130127,
+            "mean": 2.8948744932810464,
+            "median": 2.866036891937256,
+            "min": 2.826216697692871,
+            "nucleotides": 12489432,
+            "stddev": 0.08674921489331393,
+            "threads": 5,
+            "times": [
+                2.826216697692871,
+                2.866036891937256,
+                2.9923698902130127
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 2.678769826889038,
+            "mean": 2.6433420976003013,
+            "median": 2.6497702598571777,
+            "min": 2.6014862060546875,
+            "nucleotides": 12489432,
+            "stddev": 0.03904075389663303,
+            "threads": 6,
+            "times": [
+                2.6497702598571777,
+                2.6014862060546875,
+                2.678769826889038
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 2.390516519546509,
+            "mean": 2.349085251490275,
+            "median": 2.3296902179718018,
+            "min": 2.3270490169525146,
+            "nucleotides": 12489432,
+            "stddev": 0.03590482509728589,
+            "threads": 7,
+            "times": [
+                2.3270490169525146,
+                2.3296902179718018,
+                2.390516519546509
+            ]
+        },
+        {
+            "genome": "48.SAMN03704078.CP011509",
+            "max": 2.2747833728790283,
+            "mean": 2.2462499141693115,
+            "median": 2.25169038772583,
+            "min": 2.212275981903076,
+            "nucleotides": 12489432,
+            "stddev": 0.03160684334198085,
+            "threads": 8,
+            "times": [
+                2.212275981903076,
+                2.25169038772583,
+                2.2747833728790283
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.6013197898864746,
+            "mean": 0.5761746565500895,
+            "median": 0.5785791873931885,
+            "min": 0.5486249923706055,
+            "nucleotides": 2335761,
+            "stddev": 0.02642956200433849,
+            "threads": 1,
+            "times": [
+                0.5785791873931885,
+                0.6013197898864746,
+                0.5486249923706055
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.37387537956237793,
+            "mean": 0.3705403010050456,
+            "median": 0.3691370487213135,
+            "min": 0.3686084747314453,
+            "nucleotides": 2335761,
+            "stddev": 0.0029003291801750443,
+            "threads": 2,
+            "times": [
+                0.3686084747314453,
+                0.37387537956237793,
+                0.3691370487213135
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.32564306259155273,
+            "mean": 0.3172103563944499,
+            "median": 0.3155243396759033,
+            "min": 0.31046366691589355,
+            "nucleotides": 2335761,
+            "stddev": 0.007728874597958554,
+            "threads": 3,
+            "times": [
+                0.3155243396759033,
+                0.31046366691589355,
+                0.32564306259155273
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.30060839653015137,
+            "mean": 0.29226430257161456,
+            "median": 0.28832292556762695,
+            "min": 0.28786158561706543,
+            "nucleotides": 2335761,
+            "stddev": 0.00722987805078091,
+            "threads": 4,
+            "times": [
+                0.28786158561706543,
+                0.28832292556762695,
+                0.30060839653015137
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.28296852111816406,
+            "mean": 0.2791457176208496,
+            "median": 0.2774169445037842,
+            "min": 0.2770516872406006,
+            "nucleotides": 2335761,
+            "stddev": 0.0033156783847934955,
+            "threads": 5,
+            "times": [
+                0.28296852111816406,
+                0.2774169445037842,
+                0.2770516872406006
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.27608489990234375,
+            "mean": 0.27320392926534015,
+            "median": 0.2741103172302246,
+            "min": 0.26941657066345215,
+            "nucleotides": 2335761,
+            "stddev": 0.0034253186810470175,
+            "threads": 6,
+            "times": [
+                0.2741103172302246,
+                0.27608489990234375,
+                0.26941657066345215
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.27353882789611816,
+            "mean": 0.2689018249511719,
+            "median": 0.2678854465484619,
+            "min": 0.26528120040893555,
+            "nucleotides": 2335761,
+            "stddev": 0.004221595873883467,
+            "threads": 7,
+            "times": [
+                0.2678854465484619,
+                0.26528120040893555,
+                0.27353882789611816
+            ]
+        },
+        {
+            "genome": "1123263.SAMN02441153.AUKY01000001",
+            "max": 0.2744300365447998,
+            "mean": 0.2678244908650716,
+            "median": 0.2714366912841797,
+            "min": 0.25760674476623535,
+            "nucleotides": 2335761,
+            "stddev": 0.008974507254859845,
+            "threads": 8,
+            "times": [
+                0.2714366912841797,
+                0.25760674476623535,
+                0.2744300365447998
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 3.235421895980835,
+            "mean": 3.213460127512614,
+            "median": 3.2236406803131104,
+            "min": 3.1813178062438965,
+            "nucleotides": 4390842,
+            "stddev": 0.02845251962583357,
+            "threads": 1,
+            "times": [
+                3.2236406803131104,
+                3.1813178062438965,
+                3.235421895980835
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 2.4558799266815186,
+            "mean": 2.2918032010396323,
+            "median": 2.2570760250091553,
+            "min": 2.1624536514282227,
+            "nucleotides": 4390842,
+            "stddev": 0.14976390525939332,
+            "threads": 2,
+            "times": [
+                2.4558799266815186,
+                2.1624536514282227,
+                2.2570760250091553
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 1.5033831596374512,
+            "mean": 1.4475754102071126,
+            "median": 1.4524164199829102,
+            "min": 1.3869266510009766,
+            "nucleotides": 4390842,
+            "stddev": 0.05837898708170901,
+            "threads": 3,
+            "times": [
+                1.4524164199829102,
+                1.3869266510009766,
+                1.5033831596374512
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 1.3085873126983643,
+            "mean": 1.2859439849853516,
+            "median": 1.3079171180725098,
+            "min": 1.2413275241851807,
+            "nucleotides": 4390842,
+            "stddev": 0.03864044152127433,
+            "threads": 4,
+            "times": [
+                1.3079171180725098,
+                1.2413275241851807,
+                1.3085873126983643
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 1.0796785354614258,
+            "mean": 1.0519523620605469,
+            "median": 1.0445661544799805,
+            "min": 1.0316123962402344,
+            "nucleotides": 4390842,
+            "stddev": 0.02486977043973569,
+            "threads": 5,
+            "times": [
+                1.0796785354614258,
+                1.0316123962402344,
+                1.0445661544799805
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 1.172490119934082,
+            "mean": 1.0654693444569905,
+            "median": 1.0393962860107422,
+            "min": 0.9845216274261475,
+            "nucleotides": 4390842,
+            "stddev": 0.09665863555049015,
+            "threads": 6,
+            "times": [
+                1.172490119934082,
+                1.0393962860107422,
+                0.9845216274261475
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 0.9466018676757812,
+            "mean": 0.9106334845225016,
+            "median": 0.8987987041473389,
+            "min": 0.8864998817443848,
+            "nucleotides": 4390842,
+            "stddev": 0.03175072752112459,
+            "threads": 7,
+            "times": [
+                0.8987987041473389,
+                0.8864998817443848,
+                0.9466018676757812
+            ]
+        },
+        {
+            "genome": "1773.SAMN06010452.MQJB01000001",
+            "max": 0.8935284614562988,
+            "mean": 0.8839803536732992,
+            "median": 0.880678653717041,
+            "min": 0.8777339458465576,
+            "nucleotides": 4390842,
+            "stddev": 0.008398964090139684,
+            "threads": 8,
+            "times": [
+                0.8777339458465576,
+                0.8935284614562988,
+                0.880678653717041
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 2.28291654586792,
+            "mean": 2.160214900970459,
+            "median": 2.0989933013916016,
+            "min": 2.0987348556518555,
+            "nucleotides": 6002354,
+            "stddev": 0.10626282013929919,
+            "threads": 1,
+            "times": [
+                2.0989933013916016,
+                2.28291654586792,
+                2.0987348556518555
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 1.19000244140625,
+            "mean": 1.1687930425008137,
+            "median": 1.1668930053710938,
+            "min": 1.1494836807250977,
+            "nucleotides": 6002354,
+            "stddev": 0.020326094007577067,
+            "threads": 2,
+            "times": [
+                1.19000244140625,
+                1.1668930053710938,
+                1.1494836807250977
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 0.9051368236541748,
+            "mean": 0.8886173566182455,
+            "median": 0.880563497543335,
+            "min": 0.8801517486572266,
+            "nucleotides": 6002354,
+            "stddev": 0.014307759351123798,
+            "threads": 3,
+            "times": [
+                0.880563497543335,
+                0.8801517486572266,
+                0.9051368236541748
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 0.8062703609466553,
+            "mean": 0.7870161533355713,
+            "median": 0.7783682346343994,
+            "min": 0.7764098644256592,
+            "nucleotides": 6002354,
+            "stddev": 0.016703358540026123,
+            "threads": 4,
+            "times": [
+                0.7764098644256592,
+                0.8062703609466553,
+                0.7783682346343994
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 0.721458911895752,
+            "mean": 0.708936850229899,
+            "median": 0.7149913311004639,
+            "min": 0.6903603076934814,
+            "nucleotides": 6002354,
+            "stddev": 0.016409550566404776,
+            "threads": 5,
+            "times": [
+                0.6903603076934814,
+                0.7149913311004639,
+                0.721458911895752
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 0.6827926635742188,
+            "mean": 0.673723300298055,
+            "median": 0.6732025146484375,
+            "min": 0.6651747226715088,
+            "nucleotides": 6002354,
+            "stddev": 0.008820508697489097,
+            "threads": 6,
+            "times": [
+                0.6732025146484375,
+                0.6827926635742188,
+                0.6651747226715088
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 0.6215970516204834,
+            "mean": 0.6187515258789062,
+            "median": 0.6185610294342041,
+            "min": 0.6160964965820312,
+            "nucleotides": 6002354,
+            "stddev": 0.002755221062699588,
+            "threads": 7,
+            "times": [
+                0.6185610294342041,
+                0.6215970516204834,
+                0.6160964965820312
+            ]
+        },
+        {
+            "genome": "1561204.SAMN03107784.JSEP01000001",
+            "max": 0.6472737789154053,
+            "mean": 0.6170570055643717,
+            "median": 0.6065640449523926,
+            "min": 0.5973331928253174,
+            "nucleotides": 6002354,
+            "stddev": 0.02657239548024942,
+            "threads": 8,
+            "times": [
+                0.5973331928253174,
+                0.6065640449523926,
+                0.6472737789154053
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 1.7867176532745361,
+            "mean": 1.7490710417429607,
+            "median": 1.77241849899292,
+            "min": 1.6880769729614258,
+            "nucleotides": 3456908,
+            "stddev": 0.0533040690115428,
+            "threads": 1,
+            "times": [
+                1.7867176532745361,
+                1.77241849899292,
+                1.6880769729614258
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 1.0611519813537598,
+            "mean": 1.0214043458302815,
+            "median": 1.028909683227539,
+            "min": 0.9741513729095459,
+            "nucleotides": 3456908,
+            "stddev": 0.043983224466844835,
+            "threads": 2,
+            "times": [
+                1.028909683227539,
+                1.0611519813537598,
+                0.9741513729095459
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 0.7469456195831299,
+            "mean": 0.7406505743662516,
+            "median": 0.7467794418334961,
+            "min": 0.7282266616821289,
+            "nucleotides": 3456908,
+            "stddev": 0.010759744817984645,
+            "threads": 3,
+            "times": [
+                0.7469456195831299,
+                0.7282266616821289,
+                0.7467794418334961
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 0.6667149066925049,
+            "mean": 0.6428137620290121,
+            "median": 0.6505088806152344,
+            "min": 0.6112174987792969,
+            "nucleotides": 3456908,
+            "stddev": 0.02853772431034523,
+            "threads": 4,
+            "times": [
+                0.6112174987792969,
+                0.6667149066925049,
+                0.6505088806152344
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 0.6031312942504883,
+            "mean": 0.5842504501342773,
+            "median": 0.5795559883117676,
+            "min": 0.5700640678405762,
+            "nucleotides": 3456908,
+            "stddev": 0.01702612241420073,
+            "threads": 5,
+            "times": [
+                0.6031312942504883,
+                0.5700640678405762,
+                0.5795559883117676
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 0.5654058456420898,
+            "mean": 0.5475545724232992,
+            "median": 0.5502128601074219,
+            "min": 0.5270450115203857,
+            "nucleotides": 3456908,
+            "stddev": 0.019318081392490645,
+            "threads": 6,
+            "times": [
+                0.5654058456420898,
+                0.5270450115203857,
+                0.5502128601074219
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 0.4949924945831299,
+            "mean": 0.486708402633667,
+            "median": 0.4887576103210449,
+            "min": 0.47637510299682617,
+            "nucleotides": 3456908,
+            "stddev": 0.009476352488112167,
+            "threads": 7,
+            "times": [
+                0.4949924945831299,
+                0.47637510299682617,
+                0.4887576103210449
+            ]
+        },
+        {
+            "genome": "926561.SAMN02261313.KB900617",
+            "max": 0.5161914825439453,
+            "mean": 0.503430445988973,
+            "median": 0.5054357051849365,
+            "min": 0.4886641502380371,
+            "nucleotides": 3456908,
+            "stddev": 0.013872790069132512,
+            "threads": 8,
+            "times": [
+                0.5054357051849365,
+                0.4886641502380371,
+                0.5161914825439453
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 2.426734685897827,
+            "mean": 2.387264092763265,
+            "median": 2.3982033729553223,
+            "min": 2.3368542194366455,
+            "nucleotides": 2549353,
+            "stddev": 0.04592793758879395,
+            "threads": 1,
+            "times": [
+                2.426734685897827,
+                2.3982033729553223,
+                2.3368542194366455
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 1.3485000133514404,
+            "mean": 1.3091812133789062,
+            "median": 1.306528091430664,
+            "min": 1.2725155353546143,
+            "nucleotides": 2549353,
+            "stddev": 0.03806165414385879,
+            "threads": 2,
+            "times": [
+                1.2725155353546143,
+                1.306528091430664,
+                1.3485000133514404
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 1.0103681087493896,
+            "mean": 1.0017194747924805,
+            "median": 1.0041134357452393,
+            "min": 0.9906768798828125,
+            "nucleotides": 2549353,
+            "stddev": 0.010061531213064969,
+            "threads": 3,
+            "times": [
+                0.9906768798828125,
+                1.0103681087493896,
+                1.0041134357452393
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 0.8230481147766113,
+            "mean": 0.7962890466054281,
+            "median": 0.7875196933746338,
+            "min": 0.7782993316650391,
+            "nucleotides": 2549353,
+            "stddev": 0.023628151949665156,
+            "threads": 4,
+            "times": [
+                0.7782993316650391,
+                0.7875196933746338,
+                0.8230481147766113
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 0.7621731758117676,
+            "mean": 0.7354559898376465,
+            "median": 0.7326462268829346,
+            "min": 0.7115485668182373,
+            "nucleotides": 2549353,
+            "stddev": 0.025428995946226624,
+            "threads": 5,
+            "times": [
+                0.7326462268829346,
+                0.7621731758117676,
+                0.7115485668182373
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 0.7066564559936523,
+            "mean": 0.6970300674438477,
+            "median": 0.6987905502319336,
+            "min": 0.685643196105957,
+            "nucleotides": 2549353,
+            "stddev": 0.010616673090583336,
+            "threads": 6,
+            "times": [
+                0.6987905502319336,
+                0.7066564559936523,
+                0.685643196105957
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 0.6650195121765137,
+            "mean": 0.6356319586435953,
+            "median": 0.6264791488647461,
+            "min": 0.6153972148895264,
+            "nucleotides": 2549353,
+            "stddev": 0.026046564881868517,
+            "threads": 7,
+            "times": [
+                0.6650195121765137,
+                0.6153972148895264,
+                0.6264791488647461
+            ]
+        },
+        {
+            "genome": "76859.SAMN03263149.CP012713",
+            "max": 0.6243972778320312,
+            "mean": 0.6092462539672852,
+            "median": 0.613511323928833,
+            "min": 0.5898301601409912,
+            "nucleotides": 2549353,
+            "stddev": 0.01767383723754484,
+            "threads": 8,
+            "times": [
+                0.613511323928833,
+                0.5898301601409912,
+                0.6243972778320312
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 21.44798469543457,
+            "mean": 20.95178238550822,
+            "median": 20.896960735321045,
+            "min": 20.510401725769043,
+            "nucleotides": 12130542,
+            "stddev": 0.4711894695858992,
+            "threads": 1,
+            "times": [
+                21.44798469543457,
+                20.510401725769043,
+                20.896960735321045
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 13.73959994316101,
+            "mean": 12.887895663579306,
+            "median": 12.557544231414795,
+            "min": 12.36654281616211,
+            "nucleotides": 12130542,
+            "stddev": 0.7437543411977348,
+            "threads": 2,
+            "times": [
+                12.557544231414795,
+                12.36654281616211,
+                13.73959994316101
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 9.985825538635254,
+            "mean": 9.475516557693481,
+            "median": 9.263156414031982,
+            "min": 9.177567720413208,
+            "nucleotides": 12130542,
+            "stddev": 0.44400765549843263,
+            "threads": 3,
+            "times": [
+                9.985825538635254,
+                9.177567720413208,
+                9.263156414031982
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 9.499097347259521,
+            "mean": 8.786922693252563,
+            "median": 8.691340208053589,
+            "min": 8.17033052444458,
+            "nucleotides": 12130542,
+            "stddev": 0.6695202207260342,
+            "threads": 4,
+            "times": [
+                8.17033052444458,
+                9.499097347259521,
+                8.691340208053589
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 7.401310205459595,
+            "mean": 7.348591407140096,
+            "median": 7.344372272491455,
+            "min": 7.300091743469238,
+            "nucleotides": 12130542,
+            "stddev": 0.05074096062167951,
+            "threads": 5,
+            "times": [
+                7.300091743469238,
+                7.401310205459595,
+                7.344372272491455
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 6.76315975189209,
+            "mean": 6.673840602238973,
+            "median": 6.724547624588013,
+            "min": 6.533814430236816,
+            "nucleotides": 12130542,
+            "stddev": 0.1227934066956354,
+            "threads": 6,
+            "times": [
+                6.724547624588013,
+                6.533814430236816,
+                6.76315975189209
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 7.330328941345215,
+            "mean": 6.824107964833577,
+            "median": 6.636204481124878,
+            "min": 6.50579047203064,
+            "nucleotides": 12130542,
+            "stddev": 0.44322309420573386,
+            "threads": 7,
+            "times": [
+                6.50579047203064,
+                6.636204481124878,
+                7.330328941345215
+            ]
+        },
+        {
+            "genome": "576784.SAMEA2519540.LK022848",
+            "max": 7.865732431411743,
+            "mean": 7.45763897895813,
+            "median": 7.8093485832214355,
+            "min": 6.697835922241211,
+            "nucleotides": 12130542,
+            "stddev": 0.6586124037182014,
+            "threads": 8,
+            "times": [
+                6.697835922241211,
+                7.865732431411743,
+                7.8093485832214355
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 37.6277494430542,
+            "mean": 35.876874128977455,
+            "median": 36.41824007034302,
+            "min": 33.584632873535156,
+            "nucleotides": 8593292,
+            "stddev": 2.0752122085543014,
+            "threads": 1,
+            "times": [
+                37.6277494430542,
+                36.41824007034302,
+                33.584632873535156
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 19.99537205696106,
+            "mean": 19.525898694992065,
+            "median": 19.607693433761597,
+            "min": 18.97463059425354,
+            "nucleotides": 8593292,
+            "stddev": 0.5152631055008242,
+            "threads": 2,
+            "times": [
+                19.607693433761597,
+                18.97463059425354,
+                19.99537205696106
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 13.56803822517395,
+            "mean": 13.558100700378418,
+            "median": 13.555246114730835,
+            "min": 13.551017761230469,
+            "nucleotides": 8593292,
+            "stddev": 0.008862028132847366,
+            "threads": 3,
+            "times": [
+                13.56803822517395,
+                13.551017761230469,
+                13.555246114730835
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 11.458889722824097,
+            "mean": 11.442957480748495,
+            "median": 11.448482513427734,
+            "min": 11.421500205993652,
+            "nucleotides": 8593292,
+            "stddev": 0.019297369815172268,
+            "threads": 4,
+            "times": [
+                11.448482513427734,
+                11.458889722824097,
+                11.421500205993652
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 10.881673097610474,
+            "mean": 10.610869407653809,
+            "median": 10.488710880279541,
+            "min": 10.462224245071411,
+            "nucleotides": 8593292,
+            "stddev": 0.2348964970615171,
+            "threads": 5,
+            "times": [
+                10.881673097610474,
+                10.488710880279541,
+                10.462224245071411
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 9.729912042617798,
+            "mean": 9.637310107549032,
+            "median": 9.676751613616943,
+            "min": 9.505266666412354,
+            "nucleotides": 8593292,
+            "stddev": 0.11740149301989411,
+            "threads": 6,
+            "times": [
+                9.676751613616943,
+                9.729912042617798,
+                9.505266666412354
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 8.821001768112183,
+            "mean": 8.79829772313436,
+            "median": 8.79053544998169,
+            "min": 8.783355951309204,
+            "nucleotides": 8593292,
+            "stddev": 0.019987284559522898,
+            "threads": 7,
+            "times": [
+                8.79053544998169,
+                8.783355951309204,
+                8.821001768112183
+            ]
+        },
+        {
+            "genome": "1173028.SAMN02261253.KB235946",
+            "max": 8.492013216018677,
+            "mean": 8.44775128364563,
+            "median": 8.429358959197998,
+            "min": 8.421881675720215,
+            "nucleotides": 8593292,
+            "stddev": 0.03851384731624346,
+            "threads": 8,
+            "times": [
+                8.492013216018677,
+                8.429358959197998,
+                8.421881675720215
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 1.6236271858215332,
+            "mean": 1.5898854732513428,
+            "median": 1.599860429763794,
+            "min": 1.5461688041687012,
+            "nucleotides": 4075245,
+            "stddev": 0.03968091531376154,
+            "threads": 1,
+            "times": [
+                1.5461688041687012,
+                1.6236271858215332,
+                1.599860429763794
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.8897068500518799,
+            "mean": 0.8641655445098877,
+            "median": 0.8711819648742676,
+            "min": 0.8316078186035156,
+            "nucleotides": 4075245,
+            "stddev": 0.029678224001054517,
+            "threads": 2,
+            "times": [
+                0.8316078186035156,
+                0.8711819648742676,
+                0.8897068500518799
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.6699457168579102,
+            "mean": 0.659272034962972,
+            "median": 0.6557192802429199,
+            "min": 0.6521511077880859,
+            "nucleotides": 4075245,
+            "stddev": 0.009414275201129764,
+            "threads": 3,
+            "times": [
+                0.6521511077880859,
+                0.6557192802429199,
+                0.6699457168579102
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.5905489921569824,
+            "mean": 0.564677874247233,
+            "median": 0.5620782375335693,
+            "min": 0.5414063930511475,
+            "nucleotides": 4075245,
+            "stddev": 0.024674224303946703,
+            "threads": 4,
+            "times": [
+                0.5905489921569824,
+                0.5620782375335693,
+                0.5414063930511475
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.4958467483520508,
+            "mean": 0.4947851498921712,
+            "median": 0.49555277824401855,
+            "min": 0.49295592308044434,
+            "nucleotides": 4075245,
+            "stddev": 0.0015909612354358313,
+            "threads": 5,
+            "times": [
+                0.49295592308044434,
+                0.4958467483520508,
+                0.49555277824401855
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.456956148147583,
+            "mean": 0.4533678690592448,
+            "median": 0.45249176025390625,
+            "min": 0.4506556987762451,
+            "nucleotides": 4075245,
+            "stddev": 0.0032403071689720716,
+            "threads": 6,
+            "times": [
+                0.45249176025390625,
+                0.456956148147583,
+                0.4506556987762451
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.4383974075317383,
+            "mean": 0.4270612398783366,
+            "median": 0.42496562004089355,
+            "min": 0.41782069206237793,
+            "nucleotides": 4075245,
+            "stddev": 0.010447201623117406,
+            "threads": 7,
+            "times": [
+                0.41782069206237793,
+                0.4383974075317383,
+                0.42496562004089355
+            ]
+        },
+        {
+            "genome": "1121279.SAMN02745887.FPKR01000026",
+            "max": 0.41227245330810547,
+            "mean": 0.4106166362762451,
+            "median": 0.41013145446777344,
+            "min": 0.40944600105285645,
+            "nucleotides": 4075245,
+            "stddev": 0.0014743673654332085,
+            "threads": 8,
+            "times": [
+                0.41013145446777344,
+                0.40944600105285645,
+                0.41227245330810547
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 39.751708984375,
+            "mean": 37.032409270604454,
+            "median": 36.384453535079956,
+            "min": 34.9610652923584,
+            "nucleotides": 7928946,
+            "stddev": 2.4601731082108698,
+            "threads": 1,
+            "times": [
+                39.751708984375,
+                36.384453535079956,
+                34.9610652923584
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 22.006908416748047,
+            "mean": 21.56996234258016,
+            "median": 21.447495937347412,
+            "min": 21.25548267364502,
+            "nucleotides": 7928946,
+            "stddev": 0.3903955393667528,
+            "threads": 2,
+            "times": [
+                21.25548267364502,
+                21.447495937347412,
+                22.006908416748047
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 16.448467254638672,
+            "mean": 16.265443007151287,
+            "median": 16.354309558868408,
+            "min": 15.993552207946777,
+            "nucleotides": 7928946,
+            "stddev": 0.24012470288839743,
+            "threads": 3,
+            "times": [
+                15.993552207946777,
+                16.354309558868408,
+                16.448467254638672
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 14.229989767074585,
+            "mean": 14.175990343093872,
+            "median": 14.190264225006104,
+            "min": 14.107717037200928,
+            "nucleotides": 7928946,
+            "stddev": 0.06237357530495052,
+            "threads": 4,
+            "times": [
+                14.107717037200928,
+                14.229989767074585,
+                14.190264225006104
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 13.093015193939209,
+            "mean": 12.876741647720337,
+            "median": 12.813008069992065,
+            "min": 12.724201679229736,
+            "nucleotides": 7928946,
+            "stddev": 0.1924898149399672,
+            "threads": 5,
+            "times": [
+                12.724201679229736,
+                12.813008069992065,
+                13.093015193939209
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 11.919664859771729,
+            "mean": 11.769962469736734,
+            "median": 11.702094078063965,
+            "min": 11.688128471374512,
+            "nucleotides": 7928946,
+            "stddev": 0.1298339852626927,
+            "threads": 6,
+            "times": [
+                11.702094078063965,
+                11.688128471374512,
+                11.919664859771729
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 11.037723302841187,
+            "mean": 10.928820053736368,
+            "median": 10.918079853057861,
+            "min": 10.830657005310059,
+            "nucleotides": 7928946,
+            "stddev": 0.10395011700942601,
+            "threads": 7,
+            "times": [
+                10.830657005310059,
+                11.037723302841187,
+                10.918079853057861
+            ]
+        },
+        {
+            "genome": "645465.SAMN02595349.GG753638",
+            "max": 10.803286790847778,
+            "mean": 10.754264911015829,
+            "median": 10.773032665252686,
+            "min": 10.686475276947021,
+            "nucleotides": 7928946,
+            "stddev": 0.06062510943716289,
+            "threads": 8,
+            "times": [
+                10.803286790847778,
+                10.773032665252686,
+                10.686475276947021
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 20.354764938354492,
+            "mean": 20.041306575139362,
+            "median": 20.085496425628662,
+            "min": 19.683658361434937,
+            "nucleotides": 12012215,
+            "stddev": 0.3377285397488207,
+            "threads": 1,
+            "times": [
+                20.354764938354492,
+                19.683658361434937,
+                20.085496425628662
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 12.07799768447876,
+            "mean": 11.891429503758749,
+            "median": 11.897969961166382,
+            "min": 11.698320865631104,
+            "nucleotides": 12012215,
+            "stddev": 0.18992289193221232,
+            "threads": 2,
+            "times": [
+                11.698320865631104,
+                11.897969961166382,
+                12.07799768447876
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 9.200594186782837,
+            "mean": 9.037472248077393,
+            "median": 8.979803085327148,
+            "min": 8.932019472122192,
+            "nucleotides": 12012215,
+            "stddev": 0.1432738412551198,
+            "threads": 3,
+            "times": [
+                8.932019472122192,
+                8.979803085327148,
+                9.200594186782837
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 8.06303334236145,
+            "mean": 7.861096143722534,
+            "median": 7.853395700454712,
+            "min": 7.66685938835144,
+            "nucleotides": 12012215,
+            "stddev": 0.19819920050008286,
+            "threads": 4,
+            "times": [
+                7.66685938835144,
+                8.06303334236145,
+                7.853395700454712
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 7.23755955696106,
+            "mean": 7.137865702311198,
+            "median": 7.090509414672852,
+            "min": 7.085528135299683,
+            "nucleotides": 12012215,
+            "stddev": 0.08637332792742905,
+            "threads": 5,
+            "times": [
+                7.085528135299683,
+                7.23755955696106,
+                7.090509414672852
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 6.527527570724487,
+            "mean": 6.415966510772705,
+            "median": 6.396422624588013,
+            "min": 6.323949337005615,
+            "nucleotides": 12012215,
+            "stddev": 0.10318670905898726,
+            "threads": 6,
+            "times": [
+                6.396422624588013,
+                6.323949337005615,
+                6.527527570724487
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 5.96964430809021,
+            "mean": 5.928826411565145,
+            "median": 5.958729267120361,
+            "min": 5.858105659484863,
+            "nucleotides": 12012215,
+            "stddev": 0.06148864212961493,
+            "threads": 7,
+            "times": [
+                5.858105659484863,
+                5.96964430809021,
+                5.958729267120361
+            ]
+        },
+        {
+            "genome": "1912.SAMN05935554.CP018627",
+            "max": 5.92070198059082,
+            "mean": 5.875106652577718,
+            "median": 5.896527528762817,
+            "min": 5.808090448379517,
+            "nucleotides": 12012215,
+            "stddev": 0.059283047738349186,
+            "threads": 8,
+            "times": [
+                5.896527528762817,
+                5.92070198059082,
+                5.808090448379517
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 6.0376362800598145,
+            "mean": 5.757610162099202,
+            "median": 5.785461902618408,
+            "min": 5.449732303619385,
+            "nucleotides": 4727130,
+            "stddev": 0.2949399277244083,
+            "threads": 1,
+            "times": [
+                6.0376362800598145,
+                5.785461902618408,
+                5.449732303619385
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.6667754650115967,
+            "mean": 3.6171185970306396,
+            "median": 3.6293485164642334,
+            "min": 3.555231809616089,
+            "nucleotides": 4727130,
+            "stddev": 0.056768608946865126,
+            "threads": 2,
+            "times": [
+                3.555231809616089,
+                3.6293485164642334,
+                3.6667754650115967
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.353721857070923,
+            "mean": 3.32236647605896,
+            "median": 3.333378553390503,
+            "min": 3.279999017715454,
+            "nucleotides": 4727130,
+            "stddev": 0.038075105331764676,
+            "threads": 3,
+            "times": [
+                3.353721857070923,
+                3.279999017715454,
+                3.333378553390503
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.1884584426879883,
+            "mean": 3.1629202365875244,
+            "median": 3.1528306007385254,
+            "min": 3.1474716663360596,
+            "nucleotides": 4727130,
+            "stddev": 0.02227845422386415,
+            "threads": 4,
+            "times": [
+                3.1884584426879883,
+                3.1474716663360596,
+                3.1528306007385254
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.2073936462402344,
+            "mean": 3.178669532140096,
+            "median": 3.192570447921753,
+            "min": 3.136044502258301,
+            "nucleotides": 4727130,
+            "stddev": 0.037651051531334565,
+            "threads": 5,
+            "times": [
+                3.192570447921753,
+                3.2073936462402344,
+                3.136044502258301
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.1601834297180176,
+            "mean": 3.1276835600535073,
+            "median": 3.1321768760681152,
+            "min": 3.0906903743743896,
+            "nucleotides": 4727130,
+            "stddev": 0.03496374696529938,
+            "threads": 6,
+            "times": [
+                3.1601834297180176,
+                3.0906903743743896,
+                3.1321768760681152
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.113297462463379,
+            "mean": 3.1095396677652993,
+            "median": 3.1128597259521484,
+            "min": 3.102461814880371,
+            "nucleotides": 4727130,
+            "stddev": 0.006133506697545284,
+            "threads": 7,
+            "times": [
+                3.102461814880371,
+                3.1128597259521484,
+                3.113297462463379
+            ]
+        },
+        {
+            "genome": "1512.SAMEA3545330.CYZY01000001",
+            "max": 3.1179540157318115,
+            "mean": 3.109785477320353,
+            "median": 3.113558769226074,
+            "min": 3.097843647003174,
+            "nucleotides": 4727130,
+            "stddev": 0.010572844057053764,
+            "threads": 8,
+            "times": [
+                3.113558769226074,
+                3.1179540157318115,
+                3.097843647003174
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 5.412468433380127,
+            "mean": 5.226773977279663,
+            "median": 5.236304044723511,
+            "min": 5.031549453735352,
+            "nucleotides": 5183539,
+            "stddev": 0.19063822780994744,
+            "threads": 1,
+            "times": [
+                5.412468433380127,
+                5.236304044723511,
+                5.031549453735352
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 2.885931968688965,
+            "mean": 2.8188774585723877,
+            "median": 2.798917293548584,
+            "min": 2.7717831134796143,
+            "nucleotides": 5183539,
+            "stddev": 0.05963469147429564,
+            "threads": 2,
+            "times": [
+                2.7717831134796143,
+                2.798917293548584,
+                2.885931968688965
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 2.21832275390625,
+            "mean": 2.2125986417134604,
+            "median": 2.2137203216552734,
+            "min": 2.2057528495788574,
+            "nucleotides": 5183539,
+            "stddev": 0.006359579240708471,
+            "threads": 3,
+            "times": [
+                2.2137203216552734,
+                2.21832275390625,
+                2.2057528495788574
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 1.9354326725006104,
+            "mean": 1.9197020530700684,
+            "median": 1.9278955459594727,
+            "min": 1.895777940750122,
+            "nucleotides": 5183539,
+            "stddev": 0.021058832632587565,
+            "threads": 4,
+            "times": [
+                1.9278955459594727,
+                1.895777940750122,
+                1.9354326725006104
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 1.7982637882232666,
+            "mean": 1.7322423458099365,
+            "median": 1.7357425689697266,
+            "min": 1.6627206802368164,
+            "nucleotides": 5183539,
+            "stddev": 0.06783931162889902,
+            "threads": 5,
+            "times": [
+                1.7357425689697266,
+                1.6627206802368164,
+                1.7982637882232666
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 1.5833072662353516,
+            "mean": 1.5726416905721028,
+            "median": 1.5736544132232666,
+            "min": 1.5609633922576904,
+            "nucleotides": 5183539,
+            "stddev": 0.011206309894810855,
+            "threads": 6,
+            "times": [
+                1.5609633922576904,
+                1.5736544132232666,
+                1.5833072662353516
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 1.5322322845458984,
+            "mean": 1.4851501782735188,
+            "median": 1.5011987686157227,
+            "min": 1.4220194816589355,
+            "nucleotides": 5183539,
+            "stddev": 0.05683206330082554,
+            "threads": 7,
+            "times": [
+                1.4220194816589355,
+                1.5322322845458984,
+                1.5011987686157227
+            ]
+        },
+        {
+            "genome": "1281227.SAMN01885939.KE702177",
+            "max": 1.5396499633789062,
+            "mean": 1.5163205464680989,
+            "median": 1.523916244506836,
+            "min": 1.4853954315185547,
+            "nucleotides": 5183539,
+            "stddev": 0.027913429176083512,
+            "threads": 8,
+            "times": [
+                1.523916244506836,
+                1.4853954315185547,
+                1.5396499633789062
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 6.100963592529297,
+            "mean": 5.792840083440145,
+            "median": 5.748943328857422,
+            "min": 5.528613328933716,
+            "nucleotides": 8269569,
+            "stddev": 0.2886891058849548,
+            "threads": 1,
+            "times": [
+                6.100963592529297,
+                5.528613328933716,
+                5.748943328857422
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 3.2945895195007324,
+            "mean": 3.1955317656199136,
+            "median": 3.163456439971924,
+            "min": 3.128549337387085,
+            "nucleotides": 8269569,
+            "stddev": 0.08754401981661428,
+            "threads": 2,
+            "times": [
+                3.128549337387085,
+                3.2945895195007324,
+                3.163456439971924
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 2.4413139820098877,
+            "mean": 2.3714908758799234,
+            "median": 2.3907809257507324,
+            "min": 2.2823777198791504,
+            "nucleotides": 8269569,
+            "stddev": 0.08120506987273843,
+            "threads": 3,
+            "times": [
+                2.2823777198791504,
+                2.4413139820098877,
+                2.3907809257507324
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 2.16080379486084,
+            "mean": 2.076403538386027,
+            "median": 2.0584096908569336,
+            "min": 2.0099971294403076,
+            "nucleotides": 8269569,
+            "stddev": 0.0769967304207801,
+            "threads": 4,
+            "times": [
+                2.0099971294403076,
+                2.16080379486084,
+                2.0584096908569336
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 1.8173742294311523,
+            "mean": 1.7699023882548015,
+            "median": 1.7601115703582764,
+            "min": 1.7322213649749756,
+            "nucleotides": 8269569,
+            "stddev": 0.043412528924092746,
+            "threads": 5,
+            "times": [
+                1.7322213649749756,
+                1.7601115703582764,
+                1.8173742294311523
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 1.7404205799102783,
+            "mean": 1.7229453722635906,
+            "median": 1.7296357154846191,
+            "min": 1.698779821395874,
+            "nucleotides": 8269569,
+            "stddev": 0.02161154116959516,
+            "threads": 6,
+            "times": [
+                1.7404205799102783,
+                1.698779821395874,
+                1.7296357154846191
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 1.590876579284668,
+            "mean": 1.5837600231170654,
+            "median": 1.587777853012085,
+            "min": 1.5726256370544434,
+            "nucleotides": 8269569,
+            "stddev": 0.009766342246293313,
+            "threads": 7,
+            "times": [
+                1.590876579284668,
+                1.587777853012085,
+                1.5726256370544434
+            ]
+        },
+        {
+            "genome": "722472.SAMN05444171.FNTI01000002",
+            "max": 1.5168945789337158,
+            "mean": 1.5018935998280842,
+            "median": 1.4945619106292725,
+            "min": 1.4942243099212646,
+            "nucleotides": 8269569,
+            "stddev": 0.012992325586868839,
+            "threads": 8,
+            "times": [
+                1.4945619106292725,
+                1.4942243099212646,
+                1.5168945789337158
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 3.74798583984375,
+            "mean": 3.601978619893392,
+            "median": 3.532789468765259,
+            "min": 3.525160551071167,
+            "nucleotides": 4577635,
+            "stddev": 0.12650348336911513,
+            "threads": 1,
+            "times": [
+                3.74798583984375,
+                3.525160551071167,
+                3.532789468765259
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 2.0578484535217285,
+            "mean": 2.0095189412434897,
+            "median": 2.0020875930786133,
+            "min": 1.968620777130127,
+            "nucleotides": 4577635,
+            "stddev": 0.045075639321276416,
+            "threads": 2,
+            "times": [
+                1.968620777130127,
+                2.0020875930786133,
+                2.0578484535217285
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 1.4467699527740479,
+            "mean": 1.4243683815002441,
+            "median": 1.432379961013794,
+            "min": 1.3939552307128906,
+            "nucleotides": 4577635,
+            "stddev": 0.027303621945188337,
+            "threads": 3,
+            "times": [
+                1.3939552307128906,
+                1.432379961013794,
+                1.4467699527740479
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 1.296241283416748,
+            "mean": 1.2382660706837971,
+            "median": 1.2124063968658447,
+            "min": 1.2061505317687988,
+            "nucleotides": 4577635,
+            "stddev": 0.05030534693848447,
+            "threads": 4,
+            "times": [
+                1.2061505317687988,
+                1.296241283416748,
+                1.2124063968658447
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 1.1267743110656738,
+            "mean": 1.0772780577341716,
+            "median": 1.0757064819335938,
+            "min": 1.029353380203247,
+            "nucleotides": 4577635,
+            "stddev": 0.04872947599141771,
+            "threads": 5,
+            "times": [
+                1.0757064819335938,
+                1.029353380203247,
+                1.1267743110656738
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 1.0420329570770264,
+            "mean": 0.9903309345245361,
+            "median": 0.9787087440490723,
+            "min": 0.9502511024475098,
+            "nucleotides": 4577635,
+            "stddev": 0.046981737871160126,
+            "threads": 6,
+            "times": [
+                0.9502511024475098,
+                1.0420329570770264,
+                0.9787087440490723
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 1.0035600662231445,
+            "mean": 0.9900049368540446,
+            "median": 1.0020453929901123,
+            "min": 0.964409351348877,
+            "nucleotides": 4577635,
+            "stddev": 0.02217936105402897,
+            "threads": 7,
+            "times": [
+                1.0035600662231445,
+                1.0020453929901123,
+                0.964409351348877
+            ]
+        },
+        {
+            "genome": "54388.SAMEA2645827.CCVK01000001",
+            "max": 0.9469726085662842,
+            "mean": 0.9436808427174886,
+            "median": 0.9427649974822998,
+            "min": 0.9413049221038818,
+            "nucleotides": 4577635,
+            "stddev": 0.002942744778287479,
+            "threads": 8,
+            "times": [
+                0.9413049221038818,
+                0.9469726085662842,
+                0.9427649974822998
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 4.3434484004974365,
+            "mean": 4.235387325286865,
+            "median": 4.223942756652832,
+            "min": 4.138770818710327,
+            "nucleotides": 7976073,
+            "stddev": 0.10281761393345516,
+            "threads": 1,
+            "times": [
+                4.3434484004974365,
+                4.223942756652832,
+                4.138770818710327
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 2.4012515544891357,
+            "mean": 2.3904075622558594,
+            "median": 2.399092674255371,
+            "min": 2.3708784580230713,
+            "nucleotides": 7976073,
+            "stddev": 0.016947112587908923,
+            "threads": 2,
+            "times": [
+                2.399092674255371,
+                2.3708784580230713,
+                2.4012515544891357
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 1.9032552242279053,
+            "mean": 1.8755574226379395,
+            "median": 1.865461826324463,
+            "min": 1.8579552173614502,
+            "nucleotides": 7976073,
+            "stddev": 0.0242788684707243,
+            "threads": 3,
+            "times": [
+                1.8579552173614502,
+                1.9032552242279053,
+                1.865461826324463
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 1.7000162601470947,
+            "mean": 1.6699050267537434,
+            "median": 1.6576602458953857,
+            "min": 1.65203857421875,
+            "nucleotides": 7976073,
+            "stddev": 0.02622814481547685,
+            "threads": 4,
+            "times": [
+                1.65203857421875,
+                1.7000162601470947,
+                1.6576602458953857
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 1.515650987625122,
+            "mean": 1.5108116467793782,
+            "median": 1.5113775730133057,
+            "min": 1.505406379699707,
+            "nucleotides": 7976073,
+            "stddev": 0.005145697451566173,
+            "threads": 5,
+            "times": [
+                1.505406379699707,
+                1.515650987625122,
+                1.5113775730133057
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 1.471071720123291,
+            "mean": 1.4419867197672527,
+            "median": 1.435326337814331,
+            "min": 1.4195621013641357,
+            "nucleotides": 7976073,
+            "stddev": 0.026392815726964083,
+            "threads": 6,
+            "times": [
+                1.4195621013641357,
+                1.435326337814331,
+                1.471071720123291
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 1.3685691356658936,
+            "mean": 1.3577243487040203,
+            "median": 1.355513095855713,
+            "min": 1.349090814590454,
+            "nucleotides": 7976073,
+            "stddev": 0.00992564745237496,
+            "threads": 7,
+            "times": [
+                1.349090814590454,
+                1.355513095855713,
+                1.3685691356658936
+            ]
+        },
+        {
+            "genome": "1210082.SAMD00040656.BDBO01000001",
+            "max": 1.3507280349731445,
+            "mean": 1.3426946798960369,
+            "median": 1.3479056358337402,
+            "min": 1.3294503688812256,
+            "nucleotides": 7976073,
+            "stddev": 0.011556397142635523,
+            "threads": 8,
+            "times": [
+                1.3294503688812256,
+                1.3507280349731445,
+                1.3479056358337402
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 16.79230546951294,
+            "mean": 16.527068853378296,
+            "median": 16.556596994400024,
+            "min": 16.232304096221924,
+            "nucleotides": 16040666,
+            "stddev": 0.2811659969770619,
+            "threads": 1,
+            "times": [
+                16.79230546951294,
+                16.556596994400024,
+                16.232304096221924
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 9.448756456375122,
+            "mean": 9.33091370264689,
+            "median": 9.337629079818726,
+            "min": 9.206355571746826,
+            "nucleotides": 16040666,
+            "stddev": 0.12133989218334217,
+            "threads": 2,
+            "times": [
+                9.337629079818726,
+                9.206355571746826,
+                9.448756456375122
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 7.049110651016235,
+            "mean": 7.021435260772705,
+            "median": 7.033562660217285,
+            "min": 6.981632471084595,
+            "nucleotides": 16040666,
+            "stddev": 0.03533598102059737,
+            "threads": 3,
+            "times": [
+                6.981632471084595,
+                7.049110651016235,
+                7.033562660217285
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 6.019341707229614,
+            "mean": 5.900925715764363,
+            "median": 5.850118160247803,
+            "min": 5.833317279815674,
+            "nucleotides": 16040666,
+            "stddev": 0.10289474073949266,
+            "threads": 4,
+            "times": [
+                5.833317279815674,
+                6.019341707229614,
+                5.850118160247803
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 5.8349080085754395,
+            "mean": 5.627877155939738,
+            "median": 5.5574774742126465,
+            "min": 5.491245985031128,
+            "nucleotides": 16040666,
+            "stddev": 0.18232658335278365,
+            "threads": 5,
+            "times": [
+                5.491245985031128,
+                5.8349080085754395,
+                5.5574774742126465
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 4.987882614135742,
+            "mean": 4.796217838923137,
+            "median": 4.742685079574585,
+            "min": 4.658085823059082,
+            "nucleotides": 16040666,
+            "stddev": 0.1712915587345681,
+            "threads": 6,
+            "times": [
+                4.987882614135742,
+                4.658085823059082,
+                4.742685079574585
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 4.5123207569122314,
+            "mean": 4.494519472122192,
+            "median": 4.507883548736572,
+            "min": 4.463354110717773,
+            "nucleotides": 16040666,
+            "stddev": 0.027081026895218886,
+            "threads": 7,
+            "times": [
+                4.5123207569122314,
+                4.463354110717773,
+                4.507883548736572
+            ]
+        },
+        {
+            "genome": "888845.SAMN05017598.CP016211",
+            "max": 4.278472900390625,
+            "mean": 4.2259994347890215,
+            "median": 4.214847564697266,
+            "min": 4.184677839279175,
+            "nucleotides": 16040666,
+            "stddev": 0.047881640814958756,
+            "threads": 8,
+            "times": [
+                4.184677839279175,
+                4.214847564697266,
+                4.278472900390625
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 4.870405912399292,
+            "mean": 4.628937880198161,
+            "median": 4.714040040969849,
+            "min": 4.302367687225342,
+            "nucleotides": 2737273,
+            "stddev": 0.2934256969672228,
+            "threads": 1,
+            "times": [
+                4.870405912399292,
+                4.302367687225342,
+                4.714040040969849
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 2.672459602355957,
+            "mean": 2.665850877761841,
+            "median": 2.671016216278076,
+            "min": 2.6540768146514893,
+            "nucleotides": 2737273,
+            "stddev": 0.010222145686565086,
+            "threads": 2,
+            "times": [
+                2.6540768146514893,
+                2.671016216278076,
+                2.672459602355957
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 1.9870316982269287,
+            "mean": 1.9567348957061768,
+            "median": 1.9456326961517334,
+            "min": 1.9375402927398682,
+            "nucleotides": 2737273,
+            "stddev": 0.02654795529755867,
+            "threads": 3,
+            "times": [
+                1.9375402927398682,
+                1.9870316982269287,
+                1.9456326961517334
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 1.6464853286743164,
+            "mean": 1.5936450958251953,
+            "median": 1.5713696479797363,
+            "min": 1.5630803108215332,
+            "nucleotides": 2737273,
+            "stddev": 0.045948296304570355,
+            "threads": 4,
+            "times": [
+                1.5713696479797363,
+                1.5630803108215332,
+                1.6464853286743164
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 1.5286118984222412,
+            "mean": 1.5118763446807861,
+            "median": 1.5196654796600342,
+            "min": 1.487351655960083,
+            "nucleotides": 2737273,
+            "stddev": 0.021704950352459455,
+            "threads": 5,
+            "times": [
+                1.5196654796600342,
+                1.487351655960083,
+                1.5286118984222412
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 1.5419352054595947,
+            "mean": 1.464085340499878,
+            "median": 1.4715814590454102,
+            "min": 1.378739356994629,
+            "nucleotides": 2737273,
+            "stddev": 0.0818557577937345,
+            "threads": 6,
+            "times": [
+                1.378739356994629,
+                1.4715814590454102,
+                1.5419352054595947
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 1.6582887172698975,
+            "mean": 1.5928576787312825,
+            "median": 1.6521286964416504,
+            "min": 1.4681556224822998,
+            "nucleotides": 2737273,
+            "stddev": 0.10803906047672968,
+            "threads": 7,
+            "times": [
+                1.4681556224822998,
+                1.6582887172698975,
+                1.6521286964416504
+            ]
+        },
+        {
+            "genome": "28131.SAMD00034934.AP014926",
+            "max": 1.3483912944793701,
+            "mean": 1.319214661916097,
+            "median": 1.3311662673950195,
+            "min": 1.2780864238739014,
+            "nucleotides": 2737273,
+            "stddev": 0.03664456798566172,
+            "threads": 8,
+            "times": [
+                1.3311662673950195,
+                1.2780864238739014,
+                1.3483912944793701
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 1.5773606300354004,
+            "mean": 1.469605286916097,
+            "median": 1.4198658466339111,
+            "min": 1.4115893840789795,
+            "nucleotides": 3326529,
+            "stddev": 0.09341057454150949,
+            "threads": 1,
+            "times": [
+                1.4198658466339111,
+                1.4115893840789795,
+                1.5773606300354004
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.8777339458465576,
+            "mean": 0.8446227709452311,
+            "median": 0.848947286605835,
+            "min": 0.8071870803833008,
+            "nucleotides": 3326529,
+            "stddev": 0.03547169482061466,
+            "threads": 2,
+            "times": [
+                0.8071870803833008,
+                0.848947286605835,
+                0.8777339458465576
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.9038565158843994,
+            "mean": 0.8169148763020834,
+            "median": 0.8521549701690674,
+            "min": 0.6947331428527832,
+            "nucleotides": 3326529,
+            "stddev": 0.10892448966529755,
+            "threads": 3,
+            "times": [
+                0.6947331428527832,
+                0.8521549701690674,
+                0.9038565158843994
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.6448359489440918,
+            "mean": 0.6412873268127441,
+            "median": 0.6430270671844482,
+            "min": 0.6359989643096924,
+            "nucleotides": 3326529,
+            "stddev": 0.00466830769956905,
+            "threads": 4,
+            "times": [
+                0.6359989643096924,
+                0.6448359489440918,
+                0.6430270671844482
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.5271799564361572,
+            "mean": 0.5121524333953857,
+            "median": 0.5142731666564941,
+            "min": 0.49500417709350586,
+            "nucleotides": 3326529,
+            "stddev": 0.016192384822821072,
+            "threads": 5,
+            "times": [
+                0.5142731666564941,
+                0.49500417709350586,
+                0.5271799564361572
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.5000357627868652,
+            "mean": 0.4752184549967448,
+            "median": 0.46320176124572754,
+            "min": 0.4624178409576416,
+            "nucleotides": 3326529,
+            "stddev": 0.02149599281765552,
+            "threads": 6,
+            "times": [
+                0.46320176124572754,
+                0.5000357627868652,
+                0.4624178409576416
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.4771716594696045,
+            "mean": 0.46272484461466473,
+            "median": 0.4576699733734131,
+            "min": 0.45333290100097656,
+            "nucleotides": 3326529,
+            "stddev": 0.012697849966849488,
+            "threads": 7,
+            "times": [
+                0.4576699733734131,
+                0.4771716594696045,
+                0.45333290100097656
+            ]
+        },
+        {
+            "genome": "33039.SAMEA3545241.CZBR01000001",
+            "max": 0.4683239459991455,
+            "mean": 0.46160586675008136,
+            "median": 0.4595158100128174,
+            "min": 0.45697784423828125,
+            "nucleotides": 3326529,
+            "stddev": 0.005954809750588907,
+            "threads": 8,
+            "times": [
+                0.45697784423828125,
+                0.4595158100128174,
+                0.4683239459991455
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 1.891282558441162,
+            "mean": 1.8741497993469238,
+            "median": 1.8857831954956055,
+            "min": 1.845383644104004,
+            "nucleotides": 6563280,
+            "stddev": 0.02506350960652892,
+            "threads": 1,
+            "times": [
+                1.891282558441162,
+                1.8857831954956055,
+                1.845383644104004
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 1.0954139232635498,
+            "mean": 1.0685316721598308,
+            "median": 1.070413589477539,
+            "min": 1.0397675037384033,
+            "nucleotides": 6563280,
+            "stddev": 0.027870902588275983,
+            "threads": 2,
+            "times": [
+                1.0954139232635498,
+                1.0397675037384033,
+                1.070413589477539
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 0.9127671718597412,
+            "mean": 0.8809236685434977,
+            "median": 0.8862028121948242,
+            "min": 0.8438010215759277,
+            "nucleotides": 6563280,
+            "stddev": 0.03478483131353222,
+            "threads": 3,
+            "times": [
+                0.8438010215759277,
+                0.8862028121948242,
+                0.9127671718597412
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 0.8112795352935791,
+            "mean": 0.7821516195933024,
+            "median": 0.7886269092559814,
+            "min": 0.7465484142303467,
+            "nucleotides": 6563280,
+            "stddev": 0.03284777832194152,
+            "threads": 4,
+            "times": [
+                0.7886269092559814,
+                0.8112795352935791,
+                0.7465484142303467
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 0.7311770915985107,
+            "mean": 0.7198435465494791,
+            "median": 0.72763991355896,
+            "min": 0.7007136344909668,
+            "nucleotides": 6563280,
+            "stddev": 0.016661124171126113,
+            "threads": 5,
+            "times": [
+                0.7007136344909668,
+                0.7311770915985107,
+                0.72763991355896
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 0.6780509948730469,
+            "mean": 0.6699487368265787,
+            "median": 0.6701765060424805,
+            "min": 0.661618709564209,
+            "nucleotides": 6563280,
+            "stddev": 0.008218510158754246,
+            "threads": 6,
+            "times": [
+                0.6701765060424805,
+                0.6780509948730469,
+                0.661618709564209
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 0.66510009765625,
+            "mean": 0.6577367782592773,
+            "median": 0.6553726196289062,
+            "min": 0.6527376174926758,
+            "nucleotides": 6563280,
+            "stddev": 0.006511502397362694,
+            "threads": 7,
+            "times": [
+                0.66510009765625,
+                0.6527376174926758,
+                0.6553726196289062
+            ]
+        },
+        {
+            "genome": "1121935.SAMN02440417.AQXX01000001",
+            "max": 0.6537020206451416,
+            "mean": 0.6474007765452067,
+            "median": 0.6464745998382568,
+            "min": 0.6420257091522217,
+            "nucleotides": 6563280,
+            "stddev": 0.005892997114312533,
+            "threads": 8,
+            "times": [
+                0.6420257091522217,
+                0.6537020206451416,
+                0.6464745998382568
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 7.923877954483032,
+            "mean": 7.8809629281361895,
+            "median": 7.883488178253174,
+            "min": 7.835522651672363,
+            "nucleotides": 5411525,
+            "stddev": 0.0442317482110559,
+            "threads": 1,
+            "times": [
+                7.835522651672363,
+                7.923877954483032,
+                7.883488178253174
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 4.623734474182129,
+            "mean": 4.570610523223877,
+            "median": 4.545984745025635,
+            "min": 4.542112350463867,
+            "nucleotides": 5411525,
+            "stddev": 0.04604741560578151,
+            "threads": 2,
+            "times": [
+                4.545984745025635,
+                4.542112350463867,
+                4.623734474182129
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 3.335681676864624,
+            "mean": 3.323693116505941,
+            "median": 3.321460723876953,
+            "min": 3.313936948776245,
+            "nucleotides": 5411525,
+            "stddev": 0.01104291549124833,
+            "threads": 3,
+            "times": [
+                3.313936948776245,
+                3.335681676864624,
+                3.321460723876953
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 3.0470006465911865,
+            "mean": 2.9436801274617515,
+            "median": 2.902153253555298,
+            "min": 2.8818864822387695,
+            "nucleotides": 5411525,
+            "stddev": 0.09005016801639576,
+            "threads": 4,
+            "times": [
+                2.902153253555298,
+                2.8818864822387695,
+                3.0470006465911865
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 2.7712841033935547,
+            "mean": 2.7347424825032554,
+            "median": 2.743511199951172,
+            "min": 2.689432144165039,
+            "nucleotides": 5411525,
+            "stddev": 0.04162455539279302,
+            "threads": 5,
+            "times": [
+                2.743511199951172,
+                2.7712841033935547,
+                2.689432144165039
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 2.611159324645996,
+            "mean": 2.589332421620687,
+            "median": 2.58125376701355,
+            "min": 2.5755841732025146,
+            "nucleotides": 5411525,
+            "stddev": 0.019114035294848716,
+            "threads": 6,
+            "times": [
+                2.611159324645996,
+                2.58125376701355,
+                2.5755841732025146
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 2.5236430168151855,
+            "mean": 2.4734408855438232,
+            "median": 2.4553658962249756,
+            "min": 2.4413137435913086,
+            "nucleotides": 5411525,
+            "stddev": 0.04404039323791612,
+            "threads": 7,
+            "times": [
+                2.4553658962249756,
+                2.4413137435913086,
+                2.5236430168151855
+            ]
+        },
+        {
+            "genome": "715226.SAMN02469919.GL883076",
+            "max": 2.3687195777893066,
+            "mean": 2.353661139806112,
+            "median": 2.3565587997436523,
+            "min": 2.335705041885376,
+            "nucleotides": 5411525,
+            "stddev": 0.016696922473114707,
+            "threads": 8,
+            "times": [
+                2.335705041885376,
+                2.3565587997436523,
+                2.3687195777893066
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 15.446929454803467,
+            "mean": 15.085156281789144,
+            "median": 15.348926544189453,
+            "min": 14.459612846374512,
+            "nucleotides": 13033779,
+            "stddev": 0.5439481453364462,
+            "threads": 1,
+            "times": [
+                15.348926544189453,
+                15.446929454803467,
+                14.459612846374512
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 8.488686800003052,
+            "mean": 8.296326319376627,
+            "median": 8.344601392745972,
+            "min": 8.05569076538086,
+            "nucleotides": 13033779,
+            "stddev": 0.22049774042208997,
+            "threads": 2,
+            "times": [
+                8.05569076538086,
+                8.488686800003052,
+                8.344601392745972
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 6.332055568695068,
+            "mean": 6.250008424123128,
+            "median": 6.274486064910889,
+            "min": 6.143483638763428,
+            "nucleotides": 13033779,
+            "stddev": 0.09663958486788357,
+            "threads": 3,
+            "times": [
+                6.143483638763428,
+                6.274486064910889,
+                6.332055568695068
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 5.504133939743042,
+            "mean": 5.425871054331462,
+            "median": 5.498302936553955,
+            "min": 5.275176286697388,
+            "nucleotides": 13033779,
+            "stddev": 0.13053805917725078,
+            "threads": 4,
+            "times": [
+                5.275176286697388,
+                5.504133939743042,
+                5.498302936553955
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 4.949095964431763,
+            "mean": 4.887063980102539,
+            "median": 4.91468358039856,
+            "min": 4.797412395477295,
+            "nucleotides": 13033779,
+            "stddev": 0.07952426053145761,
+            "threads": 5,
+            "times": [
+                4.91468358039856,
+                4.949095964431763,
+                4.797412395477295
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 4.521174907684326,
+            "mean": 4.468090852101644,
+            "median": 4.471735239028931,
+            "min": 4.411362409591675,
+            "nucleotides": 13033779,
+            "stddev": 0.054996884924457076,
+            "threads": 6,
+            "times": [
+                4.411362409591675,
+                4.521174907684326,
+                4.471735239028931
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 4.181305408477783,
+            "mean": 4.138195037841797,
+            "median": 4.130973815917969,
+            "min": 4.102305889129639,
+            "nucleotides": 13033779,
+            "stddev": 0.039991756011262466,
+            "threads": 7,
+            "times": [
+                4.102305889129639,
+                4.130973815917969,
+                4.181305408477783
+            ]
+        },
+        {
+            "genome": "448385.SAMEA3138271.AM746676",
+            "max": 3.97576642036438,
+            "mean": 3.9192539850870767,
+            "median": 3.9041953086853027,
+            "min": 3.877800226211548,
+            "nucleotides": 13033779,
+            "stddev": 0.050689413100050845,
+            "threads": 8,
+            "times": [
+                3.877800226211548,
+                3.9041953086853027,
+                3.97576642036438
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 1.1624481678009033,
+            "mean": 1.1349384784698486,
+            "median": 1.1285769939422607,
+            "min": 1.1137902736663818,
+            "nucleotides": 1980223,
+            "stddev": 0.024944919912632115,
+            "threads": 1,
+            "times": [
+                1.1624481678009033,
+                1.1285769939422607,
+                1.1137902736663818
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.7626125812530518,
+            "mean": 0.7539611657460531,
+            "median": 0.7625224590301514,
+            "min": 0.736748456954956,
+            "nucleotides": 1980223,
+            "stddev": 0.014906711188223115,
+            "threads": 2,
+            "times": [
+                0.7625224590301514,
+                0.7626125812530518,
+                0.736748456954956
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.6445095539093018,
+            "mean": 0.633556048075358,
+            "median": 0.6348123550415039,
+            "min": 0.6213462352752686,
+            "nucleotides": 1980223,
+            "stddev": 0.011632650726740117,
+            "threads": 3,
+            "times": [
+                0.6348123550415039,
+                0.6445095539093018,
+                0.6213462352752686
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.5793697834014893,
+            "mean": 0.5463126500447592,
+            "median": 0.5327012538909912,
+            "min": 0.5268669128417969,
+            "nucleotides": 1980223,
+            "stddev": 0.02877656048232761,
+            "threads": 4,
+            "times": [
+                0.5268669128417969,
+                0.5327012538909912,
+                0.5793697834014893
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.564058780670166,
+            "mean": 0.5414474805196127,
+            "median": 0.5483202934265137,
+            "min": 0.5119633674621582,
+            "nucleotides": 1980223,
+            "stddev": 0.026719088443811437,
+            "threads": 5,
+            "times": [
+                0.5119633674621582,
+                0.5483202934265137,
+                0.564058780670166
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.5187027454376221,
+            "mean": 0.4913961887359619,
+            "median": 0.47860026359558105,
+            "min": 0.4768855571746826,
+            "nucleotides": 1980223,
+            "stddev": 0.02366370815622952,
+            "threads": 6,
+            "times": [
+                0.5187027454376221,
+                0.47860026359558105,
+                0.4768855571746826
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.5441181659698486,
+            "mean": 0.5233200391133627,
+            "median": 0.5152838230133057,
+            "min": 0.5105581283569336,
+            "nucleotides": 1980223,
+            "stddev": 0.018166028956549066,
+            "threads": 7,
+            "times": [
+                0.5441181659698486,
+                0.5152838230133057,
+                0.5105581283569336
+            ]
+        },
+        {
+            "genome": "585506.SAMN00139194.GG697140",
+            "max": 0.5003812313079834,
+            "mean": 0.4838128089904785,
+            "median": 0.47803235054016113,
+            "min": 0.473024845123291,
+            "nucleotides": 1980223,
+            "stddev": 0.01456548115214157,
+            "threads": 8,
+            "times": [
+                0.5003812313079834,
+                0.473024845123291,
+                0.47803235054016113
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 3.041559934616089,
+            "mean": 2.9394513765970864,
+            "median": 2.9345791339874268,
+            "min": 2.842215061187744,
+            "nucleotides": 4681672,
+            "stddev": 0.0997617095962987,
+            "threads": 1,
+            "times": [
+                3.041559934616089,
+                2.9345791339874268,
+                2.842215061187744
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 1.6587128639221191,
+            "mean": 1.6069178581237793,
+            "median": 1.5911731719970703,
+            "min": 1.5708675384521484,
+            "nucleotides": 4681672,
+            "stddev": 0.04599045180961704,
+            "threads": 2,
+            "times": [
+                1.5911731719970703,
+                1.6587128639221191,
+                1.5708675384521484
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 1.145512580871582,
+            "mean": 1.1225395202636719,
+            "median": 1.1359028816223145,
+            "min": 1.0862030982971191,
+            "nucleotides": 4681672,
+            "stddev": 0.03183297427061875,
+            "threads": 3,
+            "times": [
+                1.0862030982971191,
+                1.145512580871582,
+                1.1359028816223145
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 0.9601964950561523,
+            "mean": 0.930758555730184,
+            "median": 0.9244365692138672,
+            "min": 0.9076426029205322,
+            "nucleotides": 4681672,
+            "stddev": 0.026841265428160545,
+            "threads": 4,
+            "times": [
+                0.9076426029205322,
+                0.9244365692138672,
+                0.9601964950561523
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 0.8886764049530029,
+            "mean": 0.8814725081125895,
+            "median": 0.8885726928710938,
+            "min": 0.8671684265136719,
+            "nucleotides": 4681672,
+            "stddev": 0.012387806579066135,
+            "threads": 5,
+            "times": [
+                0.8885726928710938,
+                0.8671684265136719,
+                0.8886764049530029
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 0.804983377456665,
+            "mean": 0.7973357836405436,
+            "median": 0.801053524017334,
+            "min": 0.7859704494476318,
+            "nucleotides": 4681672,
+            "stddev": 0.010036884626271383,
+            "threads": 6,
+            "times": [
+                0.801053524017334,
+                0.7859704494476318,
+                0.804983377456665
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 0.7532122135162354,
+            "mean": 0.7478563785552979,
+            "median": 0.7512624263763428,
+            "min": 0.7390944957733154,
+            "nucleotides": 4681672,
+            "stddev": 0.0076503829895386705,
+            "threads": 7,
+            "times": [
+                0.7390944957733154,
+                0.7512624263763428,
+                0.7532122135162354
+            ]
+        },
+        {
+            "genome": "649639.SAMN00007429.CP002394",
+            "max": 0.7408668994903564,
+            "mean": 0.7332506974538168,
+            "median": 0.7301080226898193,
+            "min": 0.7287771701812744,
+            "nucleotides": 4681672,
+            "stddev": 0.006629305559100353,
+            "threads": 8,
+            "times": [
+                0.7301080226898193,
+                0.7408668994903564,
+                0.7287771701812744
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 20.834776163101196,
+            "mean": 20.14899555842082,
+            "median": 20.127973794937134,
+            "min": 19.48423671722412,
+            "nucleotides": 14782125,
+            "stddev": 0.6755150883751319,
+            "threads": 1,
+            "times": [
+                20.834776163101196,
+                20.127973794937134,
+                19.48423671722412
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 11.46631669998169,
+            "mean": 11.081981976826986,
+            "median": 11.175854682922363,
+            "min": 10.603774547576904,
+            "nucleotides": 14782125,
+            "stddev": 0.4388665000669586,
+            "threads": 2,
+            "times": [
+                10.603774547576904,
+                11.46631669998169,
+                11.175854682922363
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 8.490114450454712,
+            "mean": 8.453215758005777,
+            "median": 8.453364849090576,
+            "min": 8.416167974472046,
+            "nucleotides": 14782125,
+            "stddev": 0.03697346343903185,
+            "threads": 3,
+            "times": [
+                8.490114450454712,
+                8.416167974472046,
+                8.453364849090576
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 7.653115749359131,
+            "mean": 7.351304133733113,
+            "median": 7.276774168014526,
+            "min": 7.124022483825684,
+            "nucleotides": 14782125,
+            "stddev": 0.27230673467749944,
+            "threads": 4,
+            "times": [
+                7.124022483825684,
+                7.276774168014526,
+                7.653115749359131
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 6.7729408740997314,
+            "mean": 6.610866069793701,
+            "median": 6.648238897323608,
+            "min": 6.411418437957764,
+            "nucleotides": 14782125,
+            "stddev": 0.18363595545723319,
+            "threads": 5,
+            "times": [
+                6.648238897323608,
+                6.411418437957764,
+                6.7729408740997314
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 5.979651689529419,
+            "mean": 5.920661052068074,
+            "median": 5.9177374839782715,
+            "min": 5.864593982696533,
+            "nucleotides": 14782125,
+            "stddev": 0.05758454144292856,
+            "threads": 6,
+            "times": [
+                5.979651689529419,
+                5.9177374839782715,
+                5.864593982696533
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 5.563353061676025,
+            "mean": 5.472220341364543,
+            "median": 5.431798458099365,
+            "min": 5.421509504318237,
+            "nucleotides": 14782125,
+            "stddev": 0.07909074014071275,
+            "threads": 7,
+            "times": [
+                5.563353061676025,
+                5.431798458099365,
+                5.421509504318237
+            ]
+        },
+        {
+            "genome": "1254432.SAMN02603858.CP003969",
+            "max": 5.212461233139038,
+            "mean": 5.203650236129761,
+            "median": 5.2114293575286865,
+            "min": 5.187060117721558,
+            "nucleotides": 14782125,
+            "stddev": 0.014376724711055009,
+            "threads": 8,
+            "times": [
+                5.2114293575286865,
+                5.212461233139038,
+                5.187060117721558
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 2.3748629093170166,
+            "mean": 2.246522823969523,
+            "median": 2.2619383335113525,
+            "min": 2.1027672290802,
+            "nucleotides": 2355383,
+            "stddev": 0.13670129206305856,
+            "threads": 1,
+            "times": [
+                2.3748629093170166,
+                2.2619383335113525,
+                2.1027672290802
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 1.3486876487731934,
+            "mean": 1.3160302639007568,
+            "median": 1.3139402866363525,
+            "min": 1.2854628562927246,
+            "nucleotides": 2355383,
+            "stddev": 0.03166416902073824,
+            "threads": 2,
+            "times": [
+                1.2854628562927246,
+                1.3139402866363525,
+                1.3486876487731934
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 1.0919530391693115,
+            "mean": 1.0721790790557861,
+            "median": 1.0794017314910889,
+            "min": 1.045182466506958,
+            "nucleotides": 2355383,
+            "stddev": 0.024207367637601798,
+            "threads": 3,
+            "times": [
+                1.0919530391693115,
+                1.0794017314910889,
+                1.045182466506958
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 0.9969949722290039,
+            "mean": 0.9748406410217285,
+            "median": 0.98394775390625,
+            "min": 0.9435791969299316,
+            "nucleotides": 2355383,
+            "stddev": 0.02784808595790396,
+            "threads": 4,
+            "times": [
+                0.9969949722290039,
+                0.98394775390625,
+                0.9435791969299316
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 0.94869065284729,
+            "mean": 0.9194331963857015,
+            "median": 0.9061703681945801,
+            "min": 0.9034385681152344,
+            "nucleotides": 2355383,
+            "stddev": 0.02537449017950292,
+            "threads": 5,
+            "times": [
+                0.9061703681945801,
+                0.94869065284729,
+                0.9034385681152344
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 0.9082422256469727,
+            "mean": 0.9057912031809489,
+            "median": 0.9059820175170898,
+            "min": 0.9031493663787842,
+            "nucleotides": 2355383,
+            "stddev": 0.002551785936271105,
+            "threads": 6,
+            "times": [
+                0.9031493663787842,
+                0.9082422256469727,
+                0.9059820175170898
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 0.8973472118377686,
+            "mean": 0.8796413739522299,
+            "median": 0.8828201293945312,
+            "min": 0.8587567806243896,
+            "nucleotides": 2355383,
+            "stddev": 0.019490605684023853,
+            "threads": 7,
+            "times": [
+                0.8587567806243896,
+                0.8828201293945312,
+                0.8973472118377686
+            ]
+        },
+        {
+            "genome": "322095.SAMN03854412.KQ960406",
+            "max": 0.8515892028808594,
+            "mean": 0.8464828332265218,
+            "median": 0.8489301204681396,
+            "min": 0.8389291763305664,
+            "nucleotides": 2355383,
+            "stddev": 0.006675401051305443,
+            "threads": 8,
+            "times": [
+                0.8489301204681396,
+                0.8389291763305664,
+                0.8515892028808594
+            ]
+        }
+    ]
+}
\ No newline at end of file
diff --git a/benches/mapping/v0.4.0.svg b/benches/mapping/v0.4.0.svg
new file mode 100644
index 0000000..1ed5b8f
--- /dev/null
+++ b/benches/mapping/v0.4.0.svg
@@ -0,0 +1,2851 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="864pt" height="432pt" viewBox="0 0 864 432" xmlns="http://www.w3.org/2000/svg" version="1.1">
+ <metadata>
+  <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+   <cc:Work>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+    <dc:date>2022-08-04T00:16:39.976613</dc:date>
+    <dc:format>image/svg+xml</dc:format>
+    <dc:creator>
+     <cc:Agent>
+      <dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title>
+     </cc:Agent>
+    </dc:creator>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs>
+  <style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
+ </defs>
+ <g id="figure_1">
+  <g id="patch_1">
+   <path d="M 0 432 
+L 864 432 
+L 864 0 
+L 0 0 
+L 0 432 
+z
+" style="fill: none"/>
+  </g>
+  <g id="axes_1">
+   <g id="patch_2">
+    <path d="M 44.66 390.04 
+L 426.6 390.04 
+L 426.6 10.8 
+L 44.66 10.8 
+L 44.66 390.04 
+z
+" style="fill: none"/>
+   </g>
+   <g id="PathCollection_1">
+    <defs>
+     <path id="mb0d56af583" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #5f4690; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#mb0d56af583" x="62.020909" y="366.666786" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="67.544833" y="364.670368" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="73.927996" y="338.452691" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="75.082818" y="359.573703" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="76.185051" y="369.910233" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="76.550987" y="356.966977" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="76.661901" y="354.246373" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="80.608029" y="344.808289" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="81.375724" y="352.926558" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="85.94252" y="331.905033" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="96.362603" y="334.920885" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="100.26251" y="361.531996" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="103.430956" y="358.911278" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="103.665128" y="366.163717" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="109.09843" y="363.511965" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="118.457666" y="360.404057" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="120.290995" y="352.530305" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="126.127245" y="345.17882" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="130.666654" y="341.535448" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="133.194941" y="347.748365" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="134.299653" y="321.320794" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="135.181469" y="357.218974" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="141.806897" y="363.501952" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="144.96742" y="352.415123" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="145.173524" y="349.677194" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="145.39122" y="326.298765" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="147.012661" y="360.874889" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="149.256253" y="268.90279" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="150.931693" y="301.408837" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="158.948982" y="358.314052" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="165.289909" y="355.055734" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="168.186247" y="346.542781" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="171.313599" y="357.584668" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="178.236748" y="151.963108" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="178.921427" y="357.738339" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="189.036231" y="355.919579" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="212.109587" y="28.038182" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="213.254859" y="335.595594" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="220.387344" y="320.990422" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="228.2544" y="38.87433" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="309.504863" y="245.976902" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="311.340428" y="187.373977" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="314.215988" y="178.835897" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="315.696552" y="316.614725" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="322.937666" y="291.369215" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="328.072688" y="65.274439" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="336.166285" y="233.850781" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="336.497689" y="265.171667" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="378.654263" y="186.364113" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="409.239091" y="220.329099" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_2">
+    <defs>
+     <path id="m514f723333" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #1d6996; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#m514f723333" x="62.020909" y="370.189066" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="67.544833" y="368.243022" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="73.927996" y="353.251178" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="75.082818" y="367.469628" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="76.185051" y="371.83859" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="76.550987" y="365.157773" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="76.661901" y="362.972162" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="80.608029" y="357.370038" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="81.375724" y="363.03639" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="85.94252" y="350.314082" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="96.362603" y="353.851348" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="100.26251" y="367.392834" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="103.430956" y="365.735046" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="103.665128" y="370.574231" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="109.09843" y="368.873962" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="118.457666" y="367.209569" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="120.290995" y="362.807665" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="126.127245" y="353.821752" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="130.666654" y="356.468901" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="133.194941" y="360.244334" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="134.299653" y="341.393472" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="135.181469" y="365.024554" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="141.806897" y="368.620958" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="144.96742" y="363.642445" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="145.173524" y="361.012899" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="145.39122" y="348.879059" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="147.012661" y="367.022772" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="149.256253" y="317.929775" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="150.931693" y="332.452004" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="158.948982" y="365.561848" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="165.289909" y="364.352894" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="168.186247" y="359.615526" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="171.313599" y="365.300731" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="178.236748" y="247.465276" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="178.921427" y="365.293105" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="189.036231" y="363.926263" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="212.109587" y="173.038852" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="213.254859" y="352.897079" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="220.387344" y="345.346945" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="228.2544" y="192.207267" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="309.504863" y="303.098892" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="311.340428" y="263.800279" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="314.215988" y="254.455816" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="315.696552" y="344.015079" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="322.937666" y="328.570515" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="328.072688" y="168.308577" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="336.166285" y="297.513725" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="336.497689" y="312.684814" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="378.654263" y="271.390955" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="409.239091" y="287.811776" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_3">
+    <defs>
+     <path id="me2bb4eae18" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #38a6a5; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#me2bb4eae18" x="62.020909" y="370.927886" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="67.544833" y="369.372133" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="73.927996" y="355.771798" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="75.082818" y="369.77581" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="76.185051" y="372.338697" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="76.550987" y="367.497535" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="76.661901" y="365.258901" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="80.608029" y="360.570878" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="81.375724" y="365.919643" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="85.94252" y="356.963889" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="96.362603" y="359.449003" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="100.26251" y="367.652667" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="103.430956" y="368.367843" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="103.665128" y="371.473015" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="109.09843" y="370.584846" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="118.457666" y="369.130979" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="120.290995" y="364.730748" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="126.127245" y="361.738584" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="130.666654" y="361.95621" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="133.194941" y="364.786641" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="134.299653" y="344.15754" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="135.181469" y="367.412399" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="141.806897" y="370.054456" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="144.96742" y="367.008429" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="145.173524" y="364.841255" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="145.39122" y="354.564501" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="147.012661" y="369.068482" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="149.256253" y="333.299616" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="150.931693" y="344.145099" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="158.948982" y="367.774327" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="165.289909" y="366.98027" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="168.186247" y="363.670415" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="171.313599" y="368.140211" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="178.236748" y="275.425052" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="178.921427" y="367.052418" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="189.036231" y="366.863162" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="212.109587" y="222.782522" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="213.254859" y="357.725139" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="220.387344" y="353.074473" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="228.2544" y="248.1709" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="309.504863" y="323.406259" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="311.340428" y="290.563554" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="314.215988" y="286.455748" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="315.696552" y="353.221463" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="322.937666" y="340.207408" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="328.072688" y="227.729289" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="336.166285" y="316.703279" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="336.497689" y="328.338276" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="378.654263" y="296.042478" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="409.239091" y="309.469146" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_4">
+    <defs>
+     <path id="ma4ec1027c7" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #0f8554; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#ma4ec1027c7" x="62.020909" y="371.248184" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="67.544833" y="370.190267" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="73.927996" y="358.073438" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="75.082818" y="370.587284" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="76.185051" y="372.572631" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="76.550987" y="368.305314" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="76.661901" y="366.171702" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="80.608029" y="361.806774" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="81.375724" y="367.846088" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="85.94252" y="360.3688" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="96.362603" y="361.756402" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="100.26251" y="369.299632" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="103.430956" y="369.285318" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="103.665128" y="372.104735" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="109.09843" y="371.018341" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="118.457666" y="370.018045" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="120.290995" y="366.448289" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="126.127245" y="363.254299" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="130.666654" y="363.701403" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="133.194941" y="366.585087" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="134.299653" y="345.652763" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="135.181469" y="368.254863" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="141.806897" y="370.812102" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="144.96742" y="368.122527" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="145.173524" y="366.947" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="145.39122" y="357.311168" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="147.012661" y="369.668744" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="149.256253" y="336.889008" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="150.931693" y="347.70871" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="158.948982" y="368.984035" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="165.289909" y="367.933046" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="168.186247" y="365.582804" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="171.313599" y="367.767489" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="178.236748" y="290.075014" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="178.921427" y="367.978663" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="189.036231" y="367.730243" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="212.109587" y="242.376577" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="213.254859" y="359.653665" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="220.387344" y="355.841684" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="228.2544" y="268.005871" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="309.504863" y="320.564277" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="311.340428" y="301.59514" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="314.215988" y="292.913108" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="315.696552" y="354.699634" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="322.937666" y="346.475397" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="328.072688" y="261.867252" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="336.166285" y="324.431711" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="336.497689" y="336.96977" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="378.654263" y="306.375767" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="409.239091" y="319.976838" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_5">
+    <defs>
+     <path id="m369739e5e2" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #73af48; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#m369739e5e2" x="62.020909" y="371.521783" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="67.544833" y="370.235891" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="73.927996" y="359.198489" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="75.082818" y="371.247299" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="76.185051" y="372.695652" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="76.550987" y="369.470935" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="76.661901" y="366.691291" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="80.608029" y="362.314853" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="81.375724" y="368.416556" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="85.94252" y="361.135595" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="96.362603" y="363.144412" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="100.26251" y="370.510608" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="103.430956" y="369.834502" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="103.665128" y="372.138875" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="109.09843" y="371.25282" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="118.457666" y="370.673471" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="120.290995" y="367.003588" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="126.127245" y="365.448579" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="130.666654" y="365.211085" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="133.194941" y="367.047271" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="134.299653" y="345.505072" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="135.181469" y="369.349215" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="141.806897" y="371.363053" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="144.96742" y="368.937666" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="145.173524" y="367.7792" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="145.39122" y="359.069091" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="147.012661" y="370.122439" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="149.256253" y="338.565734" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="150.931693" y="349.668044" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="158.948982" y="369.44107" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="165.289909" y="368.665242" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="168.186247" y="366.444371" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="171.313599" y="369.051277" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="178.236748" y="295.424871" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="178.921427" y="368.562963" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="189.036231" y="368.303026" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="212.109587" y="254.560414" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="213.254859" y="361.14558" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="220.387344" y="358.71593" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="228.2544" y="275.808862" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="309.504863" y="328.806467" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="311.340428" y="308.377307" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="314.215988" y="306.401206" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="315.696552" y="357.51782" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="322.937666" y="348.166389" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="328.072688" y="278.314373" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="336.166285" y="329.48443" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="336.497689" y="340.365938" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="378.654263" y="313.3193" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="409.239091" y="322.537379" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_6">
+    <defs>
+     <path id="m547baf4d51" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #edad08; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#m547baf4d51" x="62.020909" y="371.570102" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="67.544833" y="370.705252" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="73.927996" y="359.654666" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="75.082818" y="371.616789" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="76.185051" y="372.751372" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="76.550987" y="369.582526" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="76.661901" y="366.81922" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="80.608029" y="362.970828" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="81.375724" y="368.776899" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="85.94252" y="361.58376" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="96.362603" y="363.758964" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="100.26251" y="370.85696" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="103.430956" y="370.178621" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="103.665128" y="372.48425" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="109.09843" y="371.771255" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="118.457666" y="371.061866" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="120.290995" y="367.72106" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="126.127245" y="365.321822" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="130.666654" y="366.02644" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="133.194941" y="367.836272" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="134.299653" y="345.983199" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="135.181469" y="369.721295" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="141.806897" y="371.65434" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="144.96742" y="369.66724" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="145.173524" y="368.159001" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="145.39122" y="360.565762" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="147.012661" y="370.445631" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="149.256253" y="338.841002" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="150.931693" y="351.031641" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="158.948982" y="369.873271" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="165.289909" y="368.995461" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="168.186247" y="367.045211" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="171.313599" y="368.947692" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="178.236748" y="299.430956" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="178.921427" y="369.030857" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="189.036231" y="368.760304" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="212.109587" y="264.939348" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="213.254859" y="361.790992" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="220.387344" y="359.156274" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="228.2544" y="284.938513" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="309.504863" y="335.012519" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="311.340428" y="315.146991" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="314.215988" y="312.72875" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="315.696552" y="359.224457" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="322.937666" y="350.52516" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="328.072688" y="275.931378" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="336.166285" y="333.413393" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="336.497689" y="342.947955" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="378.654263" y="319.791768" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     <use xlink:href="#m547baf4d51" x="409.239091" y="330.336349" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_7">
+    <defs>
+     <path id="m918e2fae00" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #e17c05; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#m918e2fae00" x="62.020909" y="371.68165" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="67.544833" y="370.405883" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="73.927996" y="359.533829" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="75.082818" y="371.880895" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="76.185051" y="372.791715" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="76.550987" y="369.86222" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="76.661901" y="367.064443" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="80.608029" y="362.979062" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="81.375724" y="369.352666" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="85.94252" y="360.376185" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="96.362603" y="364.914591" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="100.26251" y="370.97412" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="103.430956" y="370.749212" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="103.665128" y="372.692246" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="109.09843" y="372.157466" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="118.457666" y="371.308559" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="120.290995" y="368.227769" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="126.127245" y="366.773811" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="130.666654" y="366.029498" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="133.194941" y="368.30027" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="134.299653" y="346.153345" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="135.181469" y="370.010971" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="141.806897" y="371.811404" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="144.96742" y="370.180389" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="145.173524" y="368.79664" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="145.39122" y="361.386223" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="147.012661" y="370.666731" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="149.256253" y="342.080787" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="150.931693" y="352.118426" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="158.948982" y="370.193867" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="165.289909" y="369.510964" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="168.186247" y="367.853778" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="171.313599" y="370.319478" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="178.236748" y="300.821872" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="178.921427" y="369.145376" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="189.036231" y="369.186531" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="212.109587" y="272.827247" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="213.254859" y="362.581171" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="220.387344" y="360.461499" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="228.2544" y="292.806437" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="309.504863" y="333.537641" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="311.340428" y="319.715196" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="314.215988" y="311.319602" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="315.696552" y="360.8669" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="322.937666" y="353.284584" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="328.072688" y="275.858217" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="336.166285" y="336.507024" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="336.497689" y="346.61366" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="378.654263" y="323.997066" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     <use xlink:href="#m918e2fae00" x="409.239091" y="333.165556" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_8">
+    <defs>
+     <path id="m4c774dfa48" d="M -3 0 
+L 3 0 
+M 0 3 
+L 0 -3 
+" style="stroke: #cc503e; stroke-width: 1.5"/>
+    </defs>
+    <g clip-path="url(#p5aa1a7da45)">
+     <use xlink:href="#m4c774dfa48" x="62.020909" y="371.61622" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="67.544833" y="370.776366" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="73.927996" y="357.128507" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="75.082818" y="371.949735" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="76.185051" y="372.801818" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="76.550987" y="370.052872" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="76.661901" y="367.375391" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="80.608029" y="363.137651" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="81.375724" y="369.600101" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="85.94252" y="362.9423" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="96.362603" y="365.269531" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="100.26251" y="370.984614" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="103.430956" y="370.592399" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="103.665128" y="372.779682" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="109.09843" y="371.930438" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="118.457666" y="371.46277" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="120.290995" y="368.464619" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="126.127245" y="367.023754" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="130.666654" y="366.463906" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="133.194941" y="368.437237" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="134.299653" y="346.15104" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="135.181469" y="370.078849" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="141.806897" y="371.901227" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="144.96742" y="370.320198" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="145.173524" y="368.876528" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="145.39122" y="361.093919" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="147.012661" y="370.494125" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="149.256253" y="342.390402" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="150.931693" y="353.241673" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="158.948982" y="370.35936" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="165.289909" y="369.526855" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="168.186247" y="368.166311" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="171.313599" y="370.467653" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="178.236748" y="306.447545" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="178.921427" y="369.242303" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="189.036231" y="369.156491" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="212.109587" y="274.464156" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="213.254859" y="362.722114" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="220.387344" y="361.229209" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="228.2544" y="296.093722" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="309.504863" y="336.562009" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="311.340428" y="320.218959" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="314.215988" y="305.378601" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="315.696552" y="361.228892" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="322.937666" y="354.248932" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="328.072688" y="277.028102" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="336.166285" y="338.560166" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="336.497689" y="347.782296" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="378.654263" y="326.51561" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     <use xlink:href="#m4c774dfa48" x="409.239091" y="335.68363" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="matplotlib.axis_1">
+    <g id="xtick_1">
+     <g id="line2d_1">
+      <defs>
+       <path id="mdb12e53103" d="M 0 0 
+L 0 3.5 
+" style="stroke: #000000; stroke-width: 0.8"/>
+      </defs>
+      <g>
+       <use xlink:href="#mdb12e53103" x="68.02545" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_1">
+      <!-- 2 -->
+      <g transform="translate(64.8442 404.638438)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-32" d="M 1228 531 
+L 3431 531 
+L 3431 0 
+L 469 0 
+L 469 531 
+Q 828 903 1448 1529 
+Q 2069 2156 2228 2338 
+Q 2531 2678 2651 2914 
+Q 2772 3150 2772 3378 
+Q 2772 3750 2511 3984 
+Q 2250 4219 1831 4219 
+Q 1534 4219 1204 4116 
+Q 875 4013 500 3803 
+L 500 4441 
+Q 881 4594 1212 4672 
+Q 1544 4750 1819 4750 
+Q 2544 4750 2975 4387 
+Q 3406 4025 3406 3419 
+Q 3406 3131 3298 2873 
+Q 3191 2616 2906 2266 
+Q 2828 2175 2409 1742 
+Q 1991 1309 1228 531 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-32"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_2">
+     <g id="line2d_2">
+      <g>
+       <use xlink:href="#mdb12e53103" x="116.629076" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_2">
+      <!-- 4 -->
+      <g transform="translate(113.447826 404.638438)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-34" d="M 2419 4116 
+L 825 1625 
+L 2419 1625 
+L 2419 4116 
+z
+M 2253 4666 
+L 3047 4666 
+L 3047 1625 
+L 3713 1625 
+L 3713 1100 
+L 3047 1100 
+L 3047 0 
+L 2419 0 
+L 2419 1100 
+L 313 1100 
+L 313 1709 
+L 2253 4666 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-34"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_3">
+     <g id="line2d_3">
+      <g>
+       <use xlink:href="#mdb12e53103" x="165.232702" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_3">
+      <!-- 6 -->
+      <g transform="translate(162.051452 404.638438)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-36" d="M 2113 2584 
+Q 1688 2584 1439 2293 
+Q 1191 2003 1191 1497 
+Q 1191 994 1439 701 
+Q 1688 409 2113 409 
+Q 2538 409 2786 701 
+Q 3034 994 3034 1497 
+Q 3034 2003 2786 2293 
+Q 2538 2584 2113 2584 
+z
+M 3366 4563 
+L 3366 3988 
+Q 3128 4100 2886 4159 
+Q 2644 4219 2406 4219 
+Q 1781 4219 1451 3797 
+Q 1122 3375 1075 2522 
+Q 1259 2794 1537 2939 
+Q 1816 3084 2150 3084 
+Q 2853 3084 3261 2657 
+Q 3669 2231 3669 1497 
+Q 3669 778 3244 343 
+Q 2819 -91 2113 -91 
+Q 1303 -91 875 529 
+Q 447 1150 447 2328 
+Q 447 3434 972 4092 
+Q 1497 4750 2381 4750 
+Q 2619 4750 2861 4703 
+Q 3103 4656 3366 4563 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-36"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_4">
+     <g id="line2d_4">
+      <g>
+       <use xlink:href="#mdb12e53103" x="213.836328" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_4">
+      <!-- 8 -->
+      <g transform="translate(210.655078 404.638438)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-38" d="M 2034 2216 
+Q 1584 2216 1326 1975 
+Q 1069 1734 1069 1313 
+Q 1069 891 1326 650 
+Q 1584 409 2034 409 
+Q 2484 409 2743 651 
+Q 3003 894 3003 1313 
+Q 3003 1734 2745 1975 
+Q 2488 2216 2034 2216 
+z
+M 1403 2484 
+Q 997 2584 770 2862 
+Q 544 3141 544 3541 
+Q 544 4100 942 4425 
+Q 1341 4750 2034 4750 
+Q 2731 4750 3128 4425 
+Q 3525 4100 3525 3541 
+Q 3525 3141 3298 2862 
+Q 3072 2584 2669 2484 
+Q 3125 2378 3379 2068 
+Q 3634 1759 3634 1313 
+Q 3634 634 3220 271 
+Q 2806 -91 2034 -91 
+Q 1263 -91 848 271 
+Q 434 634 434 1313 
+Q 434 1759 690 2068 
+Q 947 2378 1403 2484 
+z
+M 1172 3481 
+Q 1172 3119 1398 2916 
+Q 1625 2713 2034 2713 
+Q 2441 2713 2670 2916 
+Q 2900 3119 2900 3481 
+Q 2900 3844 2670 4047 
+Q 2441 4250 2034 4250 
+Q 1625 4250 1398 4047 
+Q 1172 3844 1172 3481 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-38"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_5">
+     <g id="line2d_5">
+      <g>
+       <use xlink:href="#mdb12e53103" x="262.439955" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_5">
+      <!-- 10 -->
+      <g transform="translate(256.077455 404.638438)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-31" d="M 794 531 
+L 1825 531 
+L 1825 4091 
+L 703 3866 
+L 703 4441 
+L 1819 4666 
+L 2450 4666 
+L 2450 531 
+L 3481 531 
+L 3481 0 
+L 794 0 
+L 794 531 
+z
+" transform="scale(0.015625)"/>
+        <path id="DejaVuSans-30" d="M 2034 4250 
+Q 1547 4250 1301 3770 
+Q 1056 3291 1056 2328 
+Q 1056 1369 1301 889 
+Q 1547 409 2034 409 
+Q 2525 409 2770 889 
+Q 3016 1369 3016 2328 
+Q 3016 3291 2770 3770 
+Q 2525 4250 2034 4250 
+z
+M 2034 4750 
+Q 2819 4750 3233 4129 
+Q 3647 3509 3647 2328 
+Q 3647 1150 3233 529 
+Q 2819 -91 2034 -91 
+Q 1250 -91 836 529 
+Q 422 1150 422 2328 
+Q 422 3509 836 4129 
+Q 1250 4750 2034 4750 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-30" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_6">
+     <g id="line2d_6">
+      <g>
+       <use xlink:href="#mdb12e53103" x="311.043581" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_6">
+      <!-- 12 -->
+      <g transform="translate(304.681081 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-32" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_7">
+     <g id="line2d_7">
+      <g>
+       <use xlink:href="#mdb12e53103" x="359.647207" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_7">
+      <!-- 14 -->
+      <g transform="translate(353.284707 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-34" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_8">
+     <g id="line2d_8">
+      <g>
+       <use xlink:href="#mdb12e53103" x="408.250833" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_8">
+      <!-- 16 -->
+      <g transform="translate(401.888333 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-36" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_9">
+     <!-- Genome size (Mbp) -->
+     <g transform="translate(187.0675 418.316562)scale(0.1 -0.1)">
+      <defs>
+       <path id="DejaVuSans-47" d="M 3809 666 
+L 3809 1919 
+L 2778 1919 
+L 2778 2438 
+L 4434 2438 
+L 4434 434 
+Q 4069 175 3628 42 
+Q 3188 -91 2688 -91 
+Q 1594 -91 976 548 
+Q 359 1188 359 2328 
+Q 359 3472 976 4111 
+Q 1594 4750 2688 4750 
+Q 3144 4750 3555 4637 
+Q 3966 4525 4313 4306 
+L 4313 3634 
+Q 3963 3931 3569 4081 
+Q 3175 4231 2741 4231 
+Q 1884 4231 1454 3753 
+Q 1025 3275 1025 2328 
+Q 1025 1384 1454 906 
+Q 1884 428 2741 428 
+Q 3075 428 3337 486 
+Q 3600 544 3809 666 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-65" d="M 3597 1894 
+L 3597 1613 
+L 953 1613 
+Q 991 1019 1311 708 
+Q 1631 397 2203 397 
+Q 2534 397 2845 478 
+Q 3156 559 3463 722 
+L 3463 178 
+Q 3153 47 2828 -22 
+Q 2503 -91 2169 -91 
+Q 1331 -91 842 396 
+Q 353 884 353 1716 
+Q 353 2575 817 3079 
+Q 1281 3584 2069 3584 
+Q 2775 3584 3186 3129 
+Q 3597 2675 3597 1894 
+z
+M 3022 2063 
+Q 3016 2534 2758 2815 
+Q 2500 3097 2075 3097 
+Q 1594 3097 1305 2825 
+Q 1016 2553 972 2059 
+L 3022 2063 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-6e" d="M 3513 2113 
+L 3513 0 
+L 2938 0 
+L 2938 2094 
+Q 2938 2591 2744 2837 
+Q 2550 3084 2163 3084 
+Q 1697 3084 1428 2787 
+Q 1159 2491 1159 1978 
+L 1159 0 
+L 581 0 
+L 581 3500 
+L 1159 3500 
+L 1159 2956 
+Q 1366 3272 1645 3428 
+Q 1925 3584 2291 3584 
+Q 2894 3584 3203 3211 
+Q 3513 2838 3513 2113 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-6f" d="M 1959 3097 
+Q 1497 3097 1228 2736 
+Q 959 2375 959 1747 
+Q 959 1119 1226 758 
+Q 1494 397 1959 397 
+Q 2419 397 2687 759 
+Q 2956 1122 2956 1747 
+Q 2956 2369 2687 2733 
+Q 2419 3097 1959 3097 
+z
+M 1959 3584 
+Q 2709 3584 3137 3096 
+Q 3566 2609 3566 1747 
+Q 3566 888 3137 398 
+Q 2709 -91 1959 -91 
+Q 1206 -91 779 398 
+Q 353 888 353 1747 
+Q 353 2609 779 3096 
+Q 1206 3584 1959 3584 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-6d" d="M 3328 2828 
+Q 3544 3216 3844 3400 
+Q 4144 3584 4550 3584 
+Q 5097 3584 5394 3201 
+Q 5691 2819 5691 2113 
+L 5691 0 
+L 5113 0 
+L 5113 2094 
+Q 5113 2597 4934 2840 
+Q 4756 3084 4391 3084 
+Q 3944 3084 3684 2787 
+Q 3425 2491 3425 1978 
+L 3425 0 
+L 2847 0 
+L 2847 2094 
+Q 2847 2600 2669 2842 
+Q 2491 3084 2119 3084 
+Q 1678 3084 1418 2786 
+Q 1159 2488 1159 1978 
+L 1159 0 
+L 581 0 
+L 581 3500 
+L 1159 3500 
+L 1159 2956 
+Q 1356 3278 1631 3431 
+Q 1906 3584 2284 3584 
+Q 2666 3584 2933 3390 
+Q 3200 3197 3328 2828 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-20" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-73" d="M 2834 3397 
+L 2834 2853 
+Q 2591 2978 2328 3040 
+Q 2066 3103 1784 3103 
+Q 1356 3103 1142 2972 
+Q 928 2841 928 2578 
+Q 928 2378 1081 2264 
+Q 1234 2150 1697 2047 
+L 1894 2003 
+Q 2506 1872 2764 1633 
+Q 3022 1394 3022 966 
+Q 3022 478 2636 193 
+Q 2250 -91 1575 -91 
+Q 1294 -91 989 -36 
+Q 684 19 347 128 
+L 347 722 
+Q 666 556 975 473 
+Q 1284 391 1588 391 
+Q 1994 391 2212 530 
+Q 2431 669 2431 922 
+Q 2431 1156 2273 1281 
+Q 2116 1406 1581 1522 
+L 1381 1569 
+Q 847 1681 609 1914 
+Q 372 2147 372 2553 
+Q 372 3047 722 3315 
+Q 1072 3584 1716 3584 
+Q 2034 3584 2315 3537 
+Q 2597 3491 2834 3397 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-69" d="M 603 3500 
+L 1178 3500 
+L 1178 0 
+L 603 0 
+L 603 3500 
+z
+M 603 4863 
+L 1178 4863 
+L 1178 4134 
+L 603 4134 
+L 603 4863 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-7a" d="M 353 3500 
+L 3084 3500 
+L 3084 2975 
+L 922 459 
+L 3084 459 
+L 3084 0 
+L 275 0 
+L 275 525 
+L 2438 3041 
+L 353 3041 
+L 353 3500 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-28" d="M 1984 4856 
+Q 1566 4138 1362 3434 
+Q 1159 2731 1159 2009 
+Q 1159 1288 1364 580 
+Q 1569 -128 1984 -844 
+L 1484 -844 
+Q 1016 -109 783 600 
+Q 550 1309 550 2009 
+Q 550 2706 781 3412 
+Q 1013 4119 1484 4856 
+L 1984 4856 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-4d" d="M 628 4666 
+L 1569 4666 
+L 2759 1491 
+L 3956 4666 
+L 4897 4666 
+L 4897 0 
+L 4281 0 
+L 4281 4097 
+L 3078 897 
+L 2444 897 
+L 1241 4097 
+L 1241 0 
+L 628 0 
+L 628 4666 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-62" d="M 3116 1747 
+Q 3116 2381 2855 2742 
+Q 2594 3103 2138 3103 
+Q 1681 3103 1420 2742 
+Q 1159 2381 1159 1747 
+Q 1159 1113 1420 752 
+Q 1681 391 2138 391 
+Q 2594 391 2855 752 
+Q 3116 1113 3116 1747 
+z
+M 1159 2969 
+Q 1341 3281 1617 3432 
+Q 1894 3584 2278 3584 
+Q 2916 3584 3314 3078 
+Q 3713 2572 3713 1747 
+Q 3713 922 3314 415 
+Q 2916 -91 2278 -91 
+Q 1894 -91 1617 61 
+Q 1341 213 1159 525 
+L 1159 0 
+L 581 0 
+L 581 4863 
+L 1159 4863 
+L 1159 2969 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-70" d="M 1159 525 
+L 1159 -1331 
+L 581 -1331 
+L 581 3500 
+L 1159 3500 
+L 1159 2969 
+Q 1341 3281 1617 3432 
+Q 1894 3584 2278 3584 
+Q 2916 3584 3314 3078 
+Q 3713 2572 3713 1747 
+Q 3713 922 3314 415 
+Q 2916 -91 2278 -91 
+Q 1894 -91 1617 61 
+Q 1341 213 1159 525 
+z
+M 3116 1747 
+Q 3116 2381 2855 2742 
+Q 2594 3103 2138 3103 
+Q 1681 3103 1420 2742 
+Q 1159 2381 1159 1747 
+Q 1159 1113 1420 752 
+Q 1681 391 2138 391 
+Q 2594 391 2855 752 
+Q 3116 1113 3116 1747 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-29" d="M 513 4856 
+L 1013 4856 
+Q 1481 4119 1714 3412 
+Q 1947 2706 1947 2009 
+Q 1947 1309 1714 600 
+Q 1481 -109 1013 -844 
+L 513 -844 
+Q 928 -128 1133 580 
+Q 1338 1288 1338 2009 
+Q 1338 2731 1133 3434 
+Q 928 4138 513 4856 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-47"/>
+      <use xlink:href="#DejaVuSans-65" x="77.490234"/>
+      <use xlink:href="#DejaVuSans-6e" x="139.013672"/>
+      <use xlink:href="#DejaVuSans-6f" x="202.392578"/>
+      <use xlink:href="#DejaVuSans-6d" x="263.574219"/>
+      <use xlink:href="#DejaVuSans-65" x="360.986328"/>
+      <use xlink:href="#DejaVuSans-20" x="422.509766"/>
+      <use xlink:href="#DejaVuSans-73" x="454.296875"/>
+      <use xlink:href="#DejaVuSans-69" x="506.396484"/>
+      <use xlink:href="#DejaVuSans-7a" x="534.179688"/>
+      <use xlink:href="#DejaVuSans-65" x="586.669922"/>
+      <use xlink:href="#DejaVuSans-20" x="648.193359"/>
+      <use xlink:href="#DejaVuSans-28" x="679.980469"/>
+      <use xlink:href="#DejaVuSans-4d" x="718.994141"/>
+      <use xlink:href="#DejaVuSans-62" x="805.273438"/>
+      <use xlink:href="#DejaVuSans-70" x="868.75"/>
+      <use xlink:href="#DejaVuSans-29" x="932.226562"/>
+     </g>
+    </g>
+   </g>
+   <g id="matplotlib.axis_2">
+    <g id="ytick_1">
+     <g id="line2d_9">
+      <defs>
+       <path id="m4d51105eae" d="M 0 0 
+L -3.5 0 
+" style="stroke: #000000; stroke-width: 0.8"/>
+      </defs>
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="375.31337" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_10">
+      <!-- 0 -->
+      <g transform="translate(31.2975 379.112588)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-30"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_2">
+     <g id="line2d_10">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="328.425361" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_11">
+      <!-- 5 -->
+      <g transform="translate(31.2975 332.224579)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-35" d="M 691 4666 
+L 3169 4666 
+L 3169 4134 
+L 1269 4134 
+L 1269 2991 
+Q 1406 3038 1543 3061 
+Q 1681 3084 1819 3084 
+Q 2600 3084 3056 2656 
+Q 3513 2228 3513 1497 
+Q 3513 744 3044 326 
+Q 2575 -91 1722 -91 
+Q 1428 -91 1123 -41 
+Q 819 9 494 109 
+L 494 744 
+Q 775 591 1075 516 
+Q 1375 441 1709 441 
+Q 2250 441 2565 725 
+Q 2881 1009 2881 1497 
+Q 2881 1984 2565 2268 
+Q 2250 2553 1709 2553 
+Q 1456 2553 1204 2497 
+Q 953 2441 691 2322 
+L 691 4666 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-35"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_3">
+     <g id="line2d_11">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="281.537352" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_12">
+      <!-- 10 -->
+      <g transform="translate(24.935 285.33657)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-30" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_4">
+     <g id="line2d_12">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="234.649343" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_13">
+      <!-- 15 -->
+      <g transform="translate(24.935 238.448561)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-35" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_5">
+     <g id="line2d_13">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="187.761334" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_14">
+      <!-- 20 -->
+      <g transform="translate(24.935 191.560552)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-32"/>
+       <use xlink:href="#DejaVuSans-30" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_6">
+     <g id="line2d_14">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="140.873325" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_15">
+      <!-- 25 -->
+      <g transform="translate(24.935 144.672543)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-32"/>
+       <use xlink:href="#DejaVuSans-35" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_7">
+     <g id="line2d_15">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="93.985316" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_16">
+      <!-- 30 -->
+      <g transform="translate(24.935 97.784534)scale(0.1 -0.1)">
+       <defs>
+        <path id="DejaVuSans-33" d="M 2597 2516 
+Q 3050 2419 3304 2112 
+Q 3559 1806 3559 1356 
+Q 3559 666 3084 287 
+Q 2609 -91 1734 -91 
+Q 1441 -91 1130 -33 
+Q 819 25 488 141 
+L 488 750 
+Q 750 597 1062 519 
+Q 1375 441 1716 441 
+Q 2309 441 2620 675 
+Q 2931 909 2931 1356 
+Q 2931 1769 2642 2001 
+Q 2353 2234 1838 2234 
+L 1294 2234 
+L 1294 2753 
+L 1863 2753 
+Q 2328 2753 2575 2939 
+Q 2822 3125 2822 3475 
+Q 2822 3834 2567 4026 
+Q 2313 4219 1838 4219 
+Q 1578 4219 1281 4162 
+Q 984 4106 628 3988 
+L 628 4550 
+Q 988 4650 1302 4700 
+Q 1616 4750 1894 4750 
+Q 2613 4750 3031 4423 
+Q 3450 4097 3450 3541 
+Q 3450 3153 3228 2886 
+Q 3006 2619 2597 2516 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#DejaVuSans-33"/>
+       <use xlink:href="#DejaVuSans-30" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_8">
+     <g id="line2d_16">
+      <g>
+       <use xlink:href="#m4d51105eae" x="44.66" y="47.097307" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_17">
+      <!-- 35 -->
+      <g transform="translate(24.935 50.896525)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-33"/>
+       <use xlink:href="#DejaVuSans-35" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_18">
+     <!-- Query Time (s) -->
+     <g transform="translate(18.855313 237.534063)rotate(-90)scale(0.1 -0.1)">
+      <defs>
+       <path id="DejaVuSans-51" d="M 2522 4238 
+Q 1834 4238 1429 3725 
+Q 1025 3213 1025 2328 
+Q 1025 1447 1429 934 
+Q 1834 422 2522 422 
+Q 3209 422 3611 934 
+Q 4013 1447 4013 2328 
+Q 4013 3213 3611 3725 
+Q 3209 4238 2522 4238 
+z
+M 3406 84 
+L 4238 -825 
+L 3475 -825 
+L 2784 -78 
+Q 2681 -84 2626 -87 
+Q 2572 -91 2522 -91 
+Q 1538 -91 948 567 
+Q 359 1225 359 2328 
+Q 359 3434 948 4092 
+Q 1538 4750 2522 4750 
+Q 3503 4750 4090 4092 
+Q 4678 3434 4678 2328 
+Q 4678 1516 4351 937 
+Q 4025 359 3406 84 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-75" d="M 544 1381 
+L 544 3500 
+L 1119 3500 
+L 1119 1403 
+Q 1119 906 1312 657 
+Q 1506 409 1894 409 
+Q 2359 409 2629 706 
+Q 2900 1003 2900 1516 
+L 2900 3500 
+L 3475 3500 
+L 3475 0 
+L 2900 0 
+L 2900 538 
+Q 2691 219 2414 64 
+Q 2138 -91 1772 -91 
+Q 1169 -91 856 284 
+Q 544 659 544 1381 
+z
+M 1991 3584 
+L 1991 3584 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-72" d="M 2631 2963 
+Q 2534 3019 2420 3045 
+Q 2306 3072 2169 3072 
+Q 1681 3072 1420 2755 
+Q 1159 2438 1159 1844 
+L 1159 0 
+L 581 0 
+L 581 3500 
+L 1159 3500 
+L 1159 2956 
+Q 1341 3275 1631 3429 
+Q 1922 3584 2338 3584 
+Q 2397 3584 2469 3576 
+Q 2541 3569 2628 3553 
+L 2631 2963 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-79" d="M 2059 -325 
+Q 1816 -950 1584 -1140 
+Q 1353 -1331 966 -1331 
+L 506 -1331 
+L 506 -850 
+L 844 -850 
+Q 1081 -850 1212 -737 
+Q 1344 -625 1503 -206 
+L 1606 56 
+L 191 3500 
+L 800 3500 
+L 1894 763 
+L 2988 3500 
+L 3597 3500 
+L 2059 -325 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-54" d="M -19 4666 
+L 3928 4666 
+L 3928 4134 
+L 2272 4134 
+L 2272 0 
+L 1638 0 
+L 1638 4134 
+L -19 4134 
+L -19 4666 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-51"/>
+      <use xlink:href="#DejaVuSans-75" x="78.710938"/>
+      <use xlink:href="#DejaVuSans-65" x="142.089844"/>
+      <use xlink:href="#DejaVuSans-72" x="203.613281"/>
+      <use xlink:href="#DejaVuSans-79" x="244.726562"/>
+      <use xlink:href="#DejaVuSans-20" x="303.90625"/>
+      <use xlink:href="#DejaVuSans-54" x="335.693359"/>
+      <use xlink:href="#DejaVuSans-69" x="393.652344"/>
+      <use xlink:href="#DejaVuSans-6d" x="421.435547"/>
+      <use xlink:href="#DejaVuSans-65" x="518.847656"/>
+      <use xlink:href="#DejaVuSans-20" x="580.371094"/>
+      <use xlink:href="#DejaVuSans-28" x="612.158203"/>
+      <use xlink:href="#DejaVuSans-73" x="651.171875"/>
+      <use xlink:href="#DejaVuSans-29" x="703.271484"/>
+     </g>
+    </g>
+   </g>
+   <g id="patch_3">
+    <path d="M 44.66 390.04 
+L 44.66 10.8 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="patch_4">
+    <path d="M 426.6 390.04 
+L 426.6 10.8 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="patch_5">
+    <path d="M 44.66 390.04 
+L 426.6 390.04 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="patch_6">
+    <path d="M 44.66 10.8 
+L 426.6 10.8 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="legend_1">
+    <g id="patch_7">
+     <path d="M 332.6875 136.225 
+L 419.6 136.225 
+Q 421.6 136.225 421.6 134.225 
+L 421.6 17.8 
+Q 421.6 15.8 419.6 15.8 
+L 332.6875 15.8 
+Q 330.6875 15.8 330.6875 17.8 
+L 330.6875 134.225 
+Q 330.6875 136.225 332.6875 136.225 
+z
+" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
+    </g>
+    <g id="PathCollection_9">
+     <g>
+      <use xlink:href="#mb0d56af583" x="344.6875" y="24.773438" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_19">
+     <!-- Threads=1 -->
+     <g transform="translate(362.6875 27.398438)scale(0.1 -0.1)">
+      <defs>
+       <path id="DejaVuSans-68" d="M 3513 2113 
+L 3513 0 
+L 2938 0 
+L 2938 2094 
+Q 2938 2591 2744 2837 
+Q 2550 3084 2163 3084 
+Q 1697 3084 1428 2787 
+Q 1159 2491 1159 1978 
+L 1159 0 
+L 581 0 
+L 581 4863 
+L 1159 4863 
+L 1159 2956 
+Q 1366 3272 1645 3428 
+Q 1925 3584 2291 3584 
+Q 2894 3584 3203 3211 
+Q 3513 2838 3513 2113 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-61" d="M 2194 1759 
+Q 1497 1759 1228 1600 
+Q 959 1441 959 1056 
+Q 959 750 1161 570 
+Q 1363 391 1709 391 
+Q 2188 391 2477 730 
+Q 2766 1069 2766 1631 
+L 2766 1759 
+L 2194 1759 
+z
+M 3341 1997 
+L 3341 0 
+L 2766 0 
+L 2766 531 
+Q 2569 213 2275 61 
+Q 1981 -91 1556 -91 
+Q 1019 -91 701 211 
+Q 384 513 384 1019 
+Q 384 1609 779 1909 
+Q 1175 2209 1959 2209 
+L 2766 2209 
+L 2766 2266 
+Q 2766 2663 2505 2880 
+Q 2244 3097 1772 3097 
+Q 1472 3097 1187 3025 
+Q 903 2953 641 2809 
+L 641 3341 
+Q 956 3463 1253 3523 
+Q 1550 3584 1831 3584 
+Q 2591 3584 2966 3190 
+Q 3341 2797 3341 1997 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-64" d="M 2906 2969 
+L 2906 4863 
+L 3481 4863 
+L 3481 0 
+L 2906 0 
+L 2906 525 
+Q 2725 213 2448 61 
+Q 2172 -91 1784 -91 
+Q 1150 -91 751 415 
+Q 353 922 353 1747 
+Q 353 2572 751 3078 
+Q 1150 3584 1784 3584 
+Q 2172 3584 2448 3432 
+Q 2725 3281 2906 2969 
+z
+M 947 1747 
+Q 947 1113 1208 752 
+Q 1469 391 1925 391 
+Q 2381 391 2643 752 
+Q 2906 1113 2906 1747 
+Q 2906 2381 2643 2742 
+Q 2381 3103 1925 3103 
+Q 1469 3103 1208 2742 
+Q 947 2381 947 1747 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-3d" d="M 678 2906 
+L 4684 2906 
+L 4684 2381 
+L 678 2381 
+L 678 2906 
+z
+M 678 1631 
+L 4684 1631 
+L 4684 1100 
+L 678 1100 
+L 678 1631 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-31" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_10">
+     <g>
+      <use xlink:href="#m514f723333" x="344.6875" y="39.451563" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_20">
+     <!-- Threads=2 -->
+     <g transform="translate(362.6875 42.076563)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-32" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_11">
+     <g>
+      <use xlink:href="#me2bb4eae18" x="344.6875" y="54.129688" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_21">
+     <!-- Threads=3 -->
+     <g transform="translate(362.6875 56.754688)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-33" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_12">
+     <g>
+      <use xlink:href="#ma4ec1027c7" x="344.6875" y="68.807813" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_22">
+     <!-- Threads=4 -->
+     <g transform="translate(362.6875 71.432813)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-34" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_13">
+     <g>
+      <use xlink:href="#m369739e5e2" x="344.6875" y="83.485938" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_23">
+     <!-- Threads=5 -->
+     <g transform="translate(362.6875 86.110938)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-35" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_14">
+     <g>
+      <use xlink:href="#m547baf4d51" x="344.6875" y="98.164063" style="fill: #edad08; stroke: #edad08; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_24">
+     <!-- Threads=6 -->
+     <g transform="translate(362.6875 100.789063)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-36" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_15">
+     <g>
+      <use xlink:href="#m918e2fae00" x="344.6875" y="112.842188" style="fill: #e17c05; stroke: #e17c05; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_25">
+     <!-- Threads=7 -->
+     <g transform="translate(362.6875 115.467188)scale(0.1 -0.1)">
+      <defs>
+       <path id="DejaVuSans-37" d="M 525 4666 
+L 3525 4666 
+L 3525 4397 
+L 1831 0 
+L 1172 0 
+L 2766 4134 
+L 525 4134 
+L 525 4666 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-37" x="485.494141"/>
+     </g>
+    </g>
+    <g id="PathCollection_16">
+     <g>
+      <use xlink:href="#m4c774dfa48" x="344.6875" y="127.520313" style="fill: #cc503e; stroke: #cc503e; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_26">
+     <!-- Threads=8 -->
+     <g transform="translate(362.6875 130.145313)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-54"/>
+      <use xlink:href="#DejaVuSans-68" x="61.083984"/>
+      <use xlink:href="#DejaVuSans-72" x="124.462891"/>
+      <use xlink:href="#DejaVuSans-65" x="163.326172"/>
+      <use xlink:href="#DejaVuSans-61" x="224.849609"/>
+      <use xlink:href="#DejaVuSans-64" x="286.128906"/>
+      <use xlink:href="#DejaVuSans-73" x="349.605469"/>
+      <use xlink:href="#DejaVuSans-3d" x="401.705078"/>
+      <use xlink:href="#DejaVuSans-38" x="485.494141"/>
+     </g>
+    </g>
+   </g>
+  </g>
+  <g id="axes_2">
+   <g id="patch_8">
+    <path d="M 471.26 390.04 
+L 853.2 390.04 
+L 853.2 10.8 
+L 471.26 10.8 
+L 471.26 390.04 
+z
+" style="fill: none"/>
+   </g>
+   <g id="PathCollection_17">
+    <g clip-path="url(#p731926d378)">
+     <use xlink:href="#mb0d56af583" x="488.620909" y="359.265349" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="538.223506" y="367.660756" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="587.826104" y="370.339529" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="637.428701" y="371.018263" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="687.031299" y="371.385391" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="736.633896" y="372.197118" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="786.236494" y="372.801818" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     <use xlink:href="#mb0d56af583" x="835.839091" y="372.446355" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_18">
+    <g clip-path="url(#p731926d378)">
+     <use xlink:href="#m514f723333" x="488.620909" y="300.99974" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="538.223506" y="336.354253" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="587.826104" y="345.256087" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="637.428701" y="349.55661" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="687.031299" y="352.309032" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="736.633896" y="354.652407" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="786.236494" y="355.937022" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     <use xlink:href="#m514f723333" x="835.839091" y="355.479355" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_19">
+    <g clip-path="url(#p731926d378)">
+     <use xlink:href="#me2bb4eae18" x="488.620909" y="332.696286" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="538.223506" y="353.1646" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="587.826104" y="359.513437" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="637.428701" y="362.507712" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="687.031299" y="363.856687" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="736.633896" y="364.797437" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="786.236494" y="366.06343" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     <use xlink:href="#me2bb4eae18" x="835.839091" y="366.552771" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_20">
+    <g clip-path="url(#p731926d378)">
+     <use xlink:href="#ma4ec1027c7" x="488.620909" y="28.038182" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="538.223506" y="177.568238" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="587.826104" y="221.345536" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="637.428701" y="244.283336" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="687.031299" y="252.659738" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="736.633896" y="258.932161" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="786.236494" y="261.109952" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     <use xlink:href="#ma4ec1027c7" x="835.839091" y="269.918205" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="PathCollection_21">
+    <g clip-path="url(#p731926d378)">
+     <use xlink:href="#m369739e5e2" x="488.620909" y="205.291563" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="538.223506" y="279.684048" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="587.826104" y="304.193053" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="637.428701" y="317.707592" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="687.031299" y="323.025053" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="736.633896" y="327.06778" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="786.236494" y="332.807263" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     <use xlink:href="#m369739e5e2" x="835.839091" y="334.637024" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+    </g>
+   </g>
+   <g id="matplotlib.axis_3">
+    <g id="xtick_9">
+     <g id="line2d_17">
+      <g>
+       <use xlink:href="#mdb12e53103" x="488.620909" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_27">
+      <!-- 1 -->
+      <g transform="translate(485.439659 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_10">
+     <g id="line2d_18">
+      <g>
+       <use xlink:href="#mdb12e53103" x="538.223506" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_28">
+      <!-- 2 -->
+      <g transform="translate(535.042256 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-32"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_11">
+     <g id="line2d_19">
+      <g>
+       <use xlink:href="#mdb12e53103" x="587.826104" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_29">
+      <!-- 3 -->
+      <g transform="translate(584.644854 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-33"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_12">
+     <g id="line2d_20">
+      <g>
+       <use xlink:href="#mdb12e53103" x="637.428701" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_30">
+      <!-- 4 -->
+      <g transform="translate(634.247451 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-34"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_13">
+     <g id="line2d_21">
+      <g>
+       <use xlink:href="#mdb12e53103" x="687.031299" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_31">
+      <!-- 5 -->
+      <g transform="translate(683.850049 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-35"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_14">
+     <g id="line2d_22">
+      <g>
+       <use xlink:href="#mdb12e53103" x="736.633896" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_32">
+      <!-- 6 -->
+      <g transform="translate(733.452646 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-36"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_15">
+     <g id="line2d_23">
+      <g>
+       <use xlink:href="#mdb12e53103" x="786.236494" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_33">
+      <!-- 7 -->
+      <g transform="translate(783.055244 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-37"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_16">
+     <g id="line2d_24">
+      <g>
+       <use xlink:href="#mdb12e53103" x="835.839091" y="390.04" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_34">
+      <!-- 8 -->
+      <g transform="translate(832.657841 404.638438)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-38"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_35">
+     <!-- Number of Threads -->
+     <g transform="translate(614.06125 418.316562)scale(0.1 -0.1)">
+      <defs>
+       <path id="DejaVuSans-4e" d="M 628 4666 
+L 1478 4666 
+L 3547 763 
+L 3547 4666 
+L 4159 4666 
+L 4159 0 
+L 3309 0 
+L 1241 3903 
+L 1241 0 
+L 628 0 
+L 628 4666 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-66" d="M 2375 4863 
+L 2375 4384 
+L 1825 4384 
+Q 1516 4384 1395 4259 
+Q 1275 4134 1275 3809 
+L 1275 3500 
+L 2222 3500 
+L 2222 3053 
+L 1275 3053 
+L 1275 0 
+L 697 0 
+L 697 3053 
+L 147 3053 
+L 147 3500 
+L 697 3500 
+L 697 3744 
+Q 697 4328 969 4595 
+Q 1241 4863 1831 4863 
+L 2375 4863 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-4e"/>
+      <use xlink:href="#DejaVuSans-75" x="74.804688"/>
+      <use xlink:href="#DejaVuSans-6d" x="138.183594"/>
+      <use xlink:href="#DejaVuSans-62" x="235.595703"/>
+      <use xlink:href="#DejaVuSans-65" x="299.072266"/>
+      <use xlink:href="#DejaVuSans-72" x="360.595703"/>
+      <use xlink:href="#DejaVuSans-20" x="401.708984"/>
+      <use xlink:href="#DejaVuSans-6f" x="433.496094"/>
+      <use xlink:href="#DejaVuSans-66" x="494.677734"/>
+      <use xlink:href="#DejaVuSans-20" x="529.882812"/>
+      <use xlink:href="#DejaVuSans-54" x="561.669922"/>
+      <use xlink:href="#DejaVuSans-68" x="622.753906"/>
+      <use xlink:href="#DejaVuSans-72" x="686.132812"/>
+      <use xlink:href="#DejaVuSans-65" x="724.996094"/>
+      <use xlink:href="#DejaVuSans-61" x="786.519531"/>
+      <use xlink:href="#DejaVuSans-64" x="847.798828"/>
+      <use xlink:href="#DejaVuSans-73" x="911.275391"/>
+     </g>
+    </g>
+   </g>
+   <g id="matplotlib.axis_4">
+    <g id="ytick_9">
+     <g id="line2d_25">
+      <g>
+       <use xlink:href="#m4d51105eae" x="471.26" y="377.743093" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_36">
+      <!-- 0 -->
+      <g transform="translate(457.8975 381.542312)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-30"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_10">
+     <g id="line2d_26">
+      <g>
+       <use xlink:href="#m4d51105eae" x="471.26" y="304.329402" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_37">
+      <!-- 5 -->
+      <g transform="translate(457.8975 308.128621)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-35"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_11">
+     <g id="line2d_27">
+      <g>
+       <use xlink:href="#m4d51105eae" x="471.26" y="230.915712" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_38">
+      <!-- 10 -->
+      <g transform="translate(451.535 234.714931)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-30" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_12">
+     <g id="line2d_28">
+      <g>
+       <use xlink:href="#m4d51105eae" x="471.26" y="157.502021" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_39">
+      <!-- 15 -->
+      <g transform="translate(451.535 161.30124)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-31"/>
+       <use xlink:href="#DejaVuSans-35" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_13">
+     <g id="line2d_29">
+      <g>
+       <use xlink:href="#m4d51105eae" x="471.26" y="84.088331" style="stroke: #000000; stroke-width: 0.8"/>
+      </g>
+     </g>
+     <g id="text_40">
+      <!-- 20 -->
+      <g transform="translate(451.535 87.88755)scale(0.1 -0.1)">
+       <use xlink:href="#DejaVuSans-32"/>
+       <use xlink:href="#DejaVuSans-30" x="63.623047"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_41">
+     <!-- Query Time (s) -->
+     <g transform="translate(445.455312 237.534063)rotate(-90)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-51"/>
+      <use xlink:href="#DejaVuSans-75" x="78.710938"/>
+      <use xlink:href="#DejaVuSans-65" x="142.089844"/>
+      <use xlink:href="#DejaVuSans-72" x="203.613281"/>
+      <use xlink:href="#DejaVuSans-79" x="244.726562"/>
+      <use xlink:href="#DejaVuSans-20" x="303.90625"/>
+      <use xlink:href="#DejaVuSans-54" x="335.693359"/>
+      <use xlink:href="#DejaVuSans-69" x="393.652344"/>
+      <use xlink:href="#DejaVuSans-6d" x="421.435547"/>
+      <use xlink:href="#DejaVuSans-65" x="518.847656"/>
+      <use xlink:href="#DejaVuSans-20" x="580.371094"/>
+      <use xlink:href="#DejaVuSans-28" x="612.158203"/>
+      <use xlink:href="#DejaVuSans-73" x="651.171875"/>
+      <use xlink:href="#DejaVuSans-29" x="703.271484"/>
+     </g>
+    </g>
+   </g>
+   <g id="line2d_30">
+    <path d="M 488.620909 359.35059 
+L 492.128163 360.200096 
+L 495.635418 360.993627 
+L 499.142672 361.734872 
+L 502.649927 362.427275 
+L 506.157181 363.074055 
+L 509.664435 363.678218 
+L 513.17169 364.242573 
+L 516.678944 364.769741 
+L 520.186198 365.262174 
+L 523.693453 365.72216 
+L 527.200707 366.151837 
+L 530.707961 366.553202 
+L 534.215216 366.928121 
+L 537.72247 367.278336 
+L 541.229725 367.605476 
+L 544.736979 367.911059 
+L 548.244233 368.196508 
+L 551.751488 368.463148 
+L 555.258742 368.712218 
+L 558.765996 368.944878 
+L 562.273251 369.162207 
+L 565.780505 369.365216 
+L 569.287759 369.554849 
+L 572.795014 369.731986 
+L 576.302268 369.897452 
+L 579.809522 370.052015 
+L 583.316777 370.196394 
+L 586.824031 370.33126 
+L 590.331286 370.457239 
+L 593.83854 370.574917 
+L 597.345794 370.684842 
+L 600.853049 370.787523 
+L 604.360303 370.883439 
+L 607.867557 370.973034 
+L 611.374812 371.056726 
+L 614.882066 371.134904 
+L 618.38932 371.20793 
+L 621.896575 371.276145 
+L 625.403829 371.339864 
+L 628.911084 371.399386 
+L 632.418338 371.454985 
+L 635.925592 371.506921 
+L 639.432847 371.555435 
+L 642.940101 371.600752 
+L 646.447355 371.643083 
+L 649.95461 371.682625 
+L 653.461864 371.719561 
+L 656.969118 371.754064 
+L 660.476373 371.786293 
+L 663.983627 371.816399 
+L 667.490882 371.844521 
+L 670.998136 371.87079 
+L 674.50539 371.895328 
+L 678.012645 371.918249 
+L 681.519899 371.93966 
+L 685.027153 371.95966 
+L 688.534408 371.978343 
+L 692.041662 371.995794 
+L 695.548916 372.012095 
+L 699.056171 372.027323 
+L 702.563425 372.041547 
+L 706.07068 372.054834 
+L 709.577934 372.067245 
+L 713.085188 372.078838 
+L 716.592443 372.089668 
+L 720.099697 372.099784 
+L 723.606951 372.109233 
+L 727.114206 372.11806 
+L 730.62146 372.126305 
+L 734.128714 372.134007 
+L 737.635969 372.141202 
+L 741.143223 372.147922 
+L 744.650478 372.1542 
+L 748.157732 372.160064 
+L 751.664986 372.165541 
+L 755.172241 372.170658 
+L 758.679495 372.175437 
+L 762.186749 372.179902 
+L 765.694004 372.184072 
+L 769.201258 372.187968 
+L 772.708512 372.191607 
+L 776.215767 372.195006 
+L 779.723021 372.198181 
+L 783.230275 372.201147 
+L 786.73753 372.203918 
+L 790.244784 372.206506 
+L 793.752039 372.208923 
+L 797.259293 372.211181 
+L 800.766547 372.213291 
+L 804.273802 372.215261 
+L 807.781056 372.217102 
+L 811.28831 372.218821 
+L 814.795565 372.220427 
+L 818.302819 372.221927 
+L 821.810073 372.223329 
+L 825.317328 372.224637 
+L 828.824582 372.22586 
+L 832.331837 372.227002 
+L 835.839091 372.228069 
+" clip-path="url(#p731926d378)" style="fill: none; stroke-dasharray: 1.11,0.48; stroke-dashoffset: 0; stroke: #5f4690; stroke-width: 0.3"/>
+   </g>
+   <g id="line2d_31">
+    <path d="M 488.620909 301.476147 
+L 492.128163 304.952637 
+L 495.635418 308.201572 
+L 499.142672 311.237848 
+L 502.649927 314.075384 
+L 506.157181 316.727188 
+L 509.664435 319.205418 
+L 513.17169 321.521436 
+L 516.678944 323.685858 
+L 520.186198 325.708607 
+L 523.693453 327.598958 
+L 527.200707 329.365575 
+L 530.707961 331.016557 
+L 534.215216 332.559475 
+L 537.72247 334.001401 
+L 541.229725 335.348945 
+L 544.736979 336.608285 
+L 548.244233 337.785195 
+L 551.751488 338.885071 
+L 555.258742 339.912954 
+L 558.765996 340.873556 
+L 562.273251 341.771282 
+L 565.780505 342.610248 
+L 569.287759 343.394299 
+L 572.795014 344.127029 
+L 576.302268 344.811799 
+L 579.809522 345.451747 
+L 583.316777 346.049807 
+L 586.824031 346.608721 
+L 590.331286 347.131051 
+L 593.83854 347.619192 
+L 597.345794 348.075382 
+L 600.853049 348.501712 
+L 604.360303 348.900136 
+L 607.867557 349.272481 
+L 611.374812 349.620455 
+L 614.882066 349.945651 
+L 618.38932 350.249562 
+L 621.896575 350.533581 
+L 625.403829 350.799009 
+L 628.911084 351.047063 
+L 632.418338 351.278881 
+L 635.925592 351.495525 
+L 639.432847 351.697989 
+L 642.940101 351.8872 
+L 646.447355 352.064027 
+L 649.95461 352.229279 
+L 653.461864 352.383715 
+L 656.969118 352.528042 
+L 660.476373 352.662922 
+L 663.983627 352.788974 
+L 667.490882 352.906775 
+L 670.998136 353.016865 
+L 674.50539 353.119749 
+L 678.012645 353.215899 
+L 681.519899 353.305755 
+L 685.027153 353.38973 
+L 688.534408 353.468208 
+L 692.041662 353.54155 
+L 695.548916 353.610091 
+L 699.056171 353.674145 
+L 702.563425 353.734007 
+L 706.07068 353.789951 
+L 709.577934 353.842233 
+L 713.085188 353.891092 
+L 716.592443 353.936754 
+L 720.099697 353.979426 
+L 723.606951 354.019306 
+L 727.114206 354.056575 
+L 730.62146 354.091405 
+L 734.128714 354.123955 
+L 737.635969 354.154375 
+L 741.143223 354.182803 
+L 744.650478 354.209371 
+L 748.157732 354.234199 
+L 751.664986 354.257403 
+L 755.172241 354.279087 
+L 758.679495 354.299352 
+L 762.186749 354.318291 
+L 765.694004 354.33599 
+L 769.201258 354.352531 
+L 772.708512 354.367989 
+L 776.215767 354.382435 
+L 779.723021 354.395936 
+L 783.230275 354.408553 
+L 786.73753 354.420344 
+L 790.244784 354.431363 
+L 793.752039 354.441661 
+L 797.259293 354.451285 
+L 800.766547 354.460279 
+L 804.273802 354.468684 
+L 807.781056 354.47654 
+L 811.28831 354.483881 
+L 814.795565 354.490741 
+L 818.302819 354.497153 
+L 821.810073 354.503144 
+L 825.317328 354.508744 
+L 828.824582 354.513977 
+L 832.331837 354.518867 
+L 835.839091 354.523438 
+" clip-path="url(#p731926d378)" style="fill: none; stroke-dasharray: 1.11,0.48; stroke-dashoffset: 0; stroke: #1d6996; stroke-width: 0.3"/>
+   </g>
+   <g id="line2d_32">
+    <path d="M 488.620909 332.951595 
+L 492.128163 334.935713 
+L 495.635418 336.799133 
+L 499.142672 338.549196 
+L 502.649927 340.192798 
+L 506.157181 341.736416 
+L 509.664435 343.186132 
+L 513.17169 344.547658 
+L 516.678944 345.826359 
+L 520.186198 347.027273 
+L 523.693453 348.155133 
+L 527.200707 349.214382 
+L 530.707961 350.209195 
+L 534.215216 351.14349 
+L 537.72247 352.02095 
+L 541.229725 352.845032 
+L 544.736979 353.618983 
+L 548.244233 354.345853 
+L 551.751488 355.028505 
+L 555.258742 355.66963 
+L 558.765996 356.271753 
+L 562.273251 356.837248 
+L 565.780505 357.368343 
+L 569.287759 357.867129 
+L 572.795014 358.335574 
+L 576.302268 358.775521 
+L 579.809522 359.188706 
+L 583.316777 359.576755 
+L 586.824031 359.941198 
+L 590.331286 360.283472 
+L 593.83854 360.604924 
+L 597.345794 360.906821 
+L 600.853049 361.190353 
+L 604.360303 361.456637 
+L 607.867557 361.706723 
+L 611.374812 361.941595 
+L 614.882066 362.162179 
+L 618.38932 362.369345 
+L 621.896575 362.563908 
+L 625.403829 362.746635 
+L 628.911084 362.918247 
+L 632.418338 363.079419 
+L 635.925592 363.230787 
+L 639.432847 363.372946 
+L 642.940101 363.506458 
+L 646.447355 363.631847 
+L 649.95461 363.749609 
+L 653.461864 363.860208 
+L 656.969118 363.964078 
+L 660.476373 364.061629 
+L 663.983627 364.153247 
+L 667.490882 364.239291 
+L 670.998136 364.3201 
+L 674.50539 364.395994 
+L 678.012645 364.467271 
+L 681.519899 364.534212 
+L 685.027153 364.597081 
+L 688.534408 364.656125 
+L 692.041662 364.711578 
+L 695.548916 364.763657 
+L 699.056171 364.812568 
+L 702.563425 364.858504 
+L 706.07068 364.901645 
+L 709.577934 364.942162 
+L 713.085188 364.980215 
+L 716.592443 365.015952 
+L 720.099697 365.049516 
+L 723.606951 365.081037 
+L 727.114206 365.110641 
+L 730.62146 365.138445 
+L 734.128714 365.164556 
+L 737.635969 365.18908 
+L 741.143223 365.212111 
+L 744.650478 365.233742 
+L 748.157732 365.254057 
+L 751.664986 365.273136 
+L 755.172241 365.291054 
+L 758.679495 365.307882 
+L 762.186749 365.323687 
+L 765.694004 365.33853 
+L 769.201258 365.35247 
+L 772.708512 365.365562 
+L 776.215767 365.377858 
+L 779.723021 365.389406 
+L 783.230275 365.400251 
+L 786.73753 365.410437 
+L 790.244784 365.420003 
+L 793.752039 365.428987 
+L 797.259293 365.437424 
+L 800.766547 365.445348 
+L 804.273802 365.45279 
+L 807.781056 365.45978 
+L 811.28831 365.466344 
+L 814.795565 365.472509 
+L 818.302819 365.478299 
+L 821.810073 365.483737 
+L 825.317328 365.488844 
+L 828.824582 365.49364 
+L 832.331837 365.498144 
+L 835.839091 365.502375 
+" clip-path="url(#p731926d378)" style="fill: none; stroke-dasharray: 1.11,0.48; stroke-dashoffset: 0; stroke: #38a6a5; stroke-width: 0.3"/>
+   </g>
+   <g id="line2d_33">
+    <path d="M 488.620909 29.483272 
+L 492.128163 44.427738 
+L 495.635418 58.411166 
+L 499.142672 71.495358 
+L 502.649927 83.738142 
+L 506.157181 95.193626 
+L 509.664435 105.91244 
+L 513.17169 115.941956 
+L 516.678944 125.326501 
+L 520.186198 134.107552 
+L 523.693453 142.323918 
+L 527.200707 150.011912 
+L 530.707961 157.205512 
+L 534.215216 163.936512 
+L 537.72247 170.234659 
+L 541.229725 176.12779 
+L 544.736979 181.64195 
+L 548.244233 186.801509 
+L 551.751488 191.629271 
+L 555.258742 196.146574 
+L 558.765996 200.37338 
+L 562.273251 204.328373 
+L 565.780505 208.029031 
+L 569.287759 211.491709 
+L 572.795014 214.731713 
+L 576.302268 217.76336 
+L 579.809522 220.600051 
+L 583.316777 223.254322 
+L 586.824031 225.737904 
+L 590.331286 228.061774 
+L 593.83854 230.236202 
+L 597.345794 232.270799 
+L 600.853049 234.174556 
+L 604.360303 235.955888 
+L 607.867557 237.622667 
+L 611.374812 239.18226 
+L 614.882066 240.64156 
+L 618.38932 242.007017 
+L 621.896575 243.284665 
+L 625.403829 244.48015 
+L 628.911084 245.598758 
+L 632.418338 246.645431 
+L 635.925592 247.624795 
+L 639.432847 248.541179 
+L 642.940101 249.398633 
+L 646.447355 250.200946 
+L 649.95461 250.951665 
+L 653.461864 251.654107 
+L 656.969118 252.311377 
+L 660.476373 252.926379 
+L 663.983627 253.501833 
+L 667.490882 254.040281 
+L 670.998136 254.544102 
+L 674.50539 255.015525 
+L 678.012645 255.456631 
+L 681.519899 255.869371 
+L 685.027153 256.255569 
+L 688.534408 256.616932 
+L 692.041662 256.955056 
+L 695.548916 257.271437 
+L 699.056171 257.567471 
+L 702.563425 257.844469 
+L 706.07068 258.103654 
+L 709.577934 258.346171 
+L 713.085188 258.573093 
+L 716.592443 258.785422 
+L 720.099697 258.984097 
+L 723.606951 259.169995 
+L 727.114206 259.343939 
+L 730.62146 259.506697 
+L 734.128714 259.658988 
+L 737.635969 259.801486 
+L 741.143223 259.934821 
+L 744.650478 260.059581 
+L 748.157732 260.176318 
+L 751.664986 260.285548 
+L 755.172241 260.387754 
+L 758.679495 260.483387 
+L 762.186749 260.57287 
+L 765.694004 260.656599 
+L 769.201258 260.734943 
+L 772.708512 260.80825 
+L 776.215767 260.876842 
+L 779.723021 260.941023 
+L 783.230275 261.001077 
+L 786.73753 261.057269 
+L 790.244784 261.109847 
+L 793.752039 261.159045 
+L 797.259293 261.205078 
+L 800.766547 261.248151 
+L 804.273802 261.288455 
+L 807.781056 261.326166 
+L 811.28831 261.361453 
+L 814.795565 261.39447 
+L 818.302819 261.425364 
+L 821.810073 261.454271 
+L 825.317328 261.481319 
+L 828.824582 261.506628 
+L 832.331837 261.53031 
+L 835.839091 261.552468 
+" clip-path="url(#p731926d378)" style="fill: none; stroke-dasharray: 1.11,0.48; stroke-dashoffset: 0; stroke: #0f8554; stroke-width: 0.3"/>
+   </g>
+   <g id="line2d_34">
+    <path d="M 488.620909 206.461729 
+L 492.128163 213.35673 
+L 495.635418 219.870727 
+L 499.142672 226.024773 
+L 502.649927 231.838759 
+L 506.157181 237.331476 
+L 509.664435 242.520676 
+L 513.17169 247.423131 
+L 516.678944 252.054686 
+L 520.186198 256.430311 
+L 523.693453 260.564148 
+L 527.200707 264.469556 
+L 530.707961 268.15916 
+L 534.215216 271.644884 
+L 537.72247 274.937993 
+L 541.229725 278.049132 
+L 544.736979 280.988356 
+L 548.244233 283.765164 
+L 551.751488 286.388531 
+L 555.258742 288.866936 
+L 558.765996 291.208389 
+L 562.273251 293.420458 
+L 565.780505 295.510293 
+L 569.287759 297.484647 
+L 572.795014 299.349903 
+L 576.302268 301.112089 
+L 579.809522 302.776899 
+L 583.316777 304.349716 
+L 586.824031 305.835621 
+L 590.331286 307.239419 
+L 593.83854 308.565645 
+L 597.345794 309.818587 
+L 600.853049 311.002294 
+L 604.360303 312.120591 
+L 607.867557 313.177094 
+L 611.374812 314.175216 
+L 614.882066 315.118184 
+L 618.38932 316.009046 
+L 621.896575 316.85068 
+L 625.403829 317.645808 
+L 628.911084 318.396998 
+L 632.418338 319.106679 
+L 635.925592 319.777144 
+L 639.432847 320.410561 
+L 642.940101 321.008976 
+L 646.447355 321.574324 
+L 649.95461 322.108433 
+L 653.461864 322.613027 
+L 656.969118 323.089739 
+L 660.476373 323.540108 
+L 663.983627 323.965591 
+L 667.490882 324.367562 
+L 670.998136 324.747322 
+L 674.50539 325.106096 
+L 678.012645 325.445046 
+L 681.519899 325.765266 
+L 685.027153 326.067791 
+L 688.534408 326.353599 
+L 692.041662 326.623614 
+L 695.548916 326.878708 
+L 699.056171 327.119707 
+L 702.563425 327.347388 
+L 706.07068 327.562488 
+L 709.577934 327.765703 
+L 713.085188 327.957688 
+L 716.592443 328.139064 
+L 720.099697 328.310418 
+L 723.606951 328.472303 
+L 727.114206 328.625242 
+L 730.62146 328.769731 
+L 734.128714 328.906235 
+L 737.635969 329.035196 
+L 741.143223 329.157032 
+L 744.650478 329.272135 
+L 748.157732 329.380877 
+L 751.664986 329.483611 
+L 755.172241 329.580667 
+L 758.679495 329.672361 
+L 762.186749 329.758988 
+L 765.694004 329.840828 
+L 769.201258 329.918146 
+L 772.708512 329.991191 
+L 776.215767 330.0602 
+L 779.723021 330.125395 
+L 783.230275 330.186988 
+L 786.73753 330.245178 
+L 790.244784 330.300152 
+L 793.752039 330.352088 
+L 797.259293 330.401155 
+L 800.766547 330.44751 
+L 804.273802 330.491303 
+L 807.781056 330.532677 
+L 811.28831 330.571765 
+L 814.795565 330.608692 
+L 818.302819 330.643579 
+L 821.810073 330.676538 
+L 825.317328 330.707676 
+L 828.824582 330.737094 
+L 832.331837 330.764885 
+L 835.839091 330.791141 
+" clip-path="url(#p731926d378)" style="fill: none; stroke-dasharray: 1.11,0.48; stroke-dashoffset: 0; stroke: #73af48; stroke-width: 0.3"/>
+   </g>
+   <g id="patch_9">
+    <path d="M 471.26 390.04 
+L 471.26 10.8 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="patch_10">
+    <path d="M 853.2 390.04 
+L 853.2 10.8 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="patch_11">
+    <path d="M 471.26 390.04 
+L 853.2 390.04 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="patch_12">
+    <path d="M 471.26 10.8 
+L 853.2 10.8 
+" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
+   </g>
+   <g id="legend_2">
+    <g id="patch_13">
+     <path d="M 628.348437 92.190625 
+L 846.2 92.190625 
+Q 848.2 92.190625 848.2 90.190625 
+L 848.2 17.8 
+Q 848.2 15.8 846.2 15.8 
+L 628.348437 15.8 
+Q 626.348437 15.8 626.348437 17.8 
+L 626.348437 90.190625 
+Q 626.348437 92.190625 628.348437 92.190625 
+z
+" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
+    </g>
+    <g id="PathCollection_22">
+     <g>
+      <use xlink:href="#mb0d56af583" x="640.348437" y="24.773438" style="fill: #5f4690; stroke: #5f4690; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_42">
+     <!-- 570952.SAMN02441250 (3.7 Mbp) -->
+     <g transform="translate(658.348437 27.398438)scale(0.1 -0.1)">
+      <defs>
+       <path id="DejaVuSans-39" d="M 703 97 
+L 703 672 
+Q 941 559 1184 500 
+Q 1428 441 1663 441 
+Q 2288 441 2617 861 
+Q 2947 1281 2994 2138 
+Q 2813 1869 2534 1725 
+Q 2256 1581 1919 1581 
+Q 1219 1581 811 2004 
+Q 403 2428 403 3163 
+Q 403 3881 828 4315 
+Q 1253 4750 1959 4750 
+Q 2769 4750 3195 4129 
+Q 3622 3509 3622 2328 
+Q 3622 1225 3098 567 
+Q 2575 -91 1691 -91 
+Q 1453 -91 1209 -44 
+Q 966 3 703 97 
+z
+M 1959 2075 
+Q 2384 2075 2632 2365 
+Q 2881 2656 2881 3163 
+Q 2881 3666 2632 3958 
+Q 2384 4250 1959 4250 
+Q 1534 4250 1286 3958 
+Q 1038 3666 1038 3163 
+Q 1038 2656 1286 2365 
+Q 1534 2075 1959 2075 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-2e" d="M 684 794 
+L 1344 794 
+L 1344 0 
+L 684 0 
+L 684 794 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-53" d="M 3425 4513 
+L 3425 3897 
+Q 3066 4069 2747 4153 
+Q 2428 4238 2131 4238 
+Q 1616 4238 1336 4038 
+Q 1056 3838 1056 3469 
+Q 1056 3159 1242 3001 
+Q 1428 2844 1947 2747 
+L 2328 2669 
+Q 3034 2534 3370 2195 
+Q 3706 1856 3706 1288 
+Q 3706 609 3251 259 
+Q 2797 -91 1919 -91 
+Q 1588 -91 1214 -16 
+Q 841 59 441 206 
+L 441 856 
+Q 825 641 1194 531 
+Q 1563 422 1919 422 
+Q 2459 422 2753 634 
+Q 3047 847 3047 1241 
+Q 3047 1584 2836 1778 
+Q 2625 1972 2144 2069 
+L 1759 2144 
+Q 1053 2284 737 2584 
+Q 422 2884 422 3419 
+Q 422 4038 858 4394 
+Q 1294 4750 2059 4750 
+Q 2388 4750 2728 4690 
+Q 3069 4631 3425 4513 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-41" d="M 2188 4044 
+L 1331 1722 
+L 3047 1722 
+L 2188 4044 
+z
+M 1831 4666 
+L 2547 4666 
+L 4325 0 
+L 3669 0 
+L 3244 1197 
+L 1141 1197 
+L 716 0 
+L 50 0 
+L 1831 4666 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-35"/>
+      <use xlink:href="#DejaVuSans-37" x="63.623047"/>
+      <use xlink:href="#DejaVuSans-30" x="127.246094"/>
+      <use xlink:href="#DejaVuSans-39" x="190.869141"/>
+      <use xlink:href="#DejaVuSans-35" x="254.492188"/>
+      <use xlink:href="#DejaVuSans-32" x="318.115234"/>
+      <use xlink:href="#DejaVuSans-2e" x="381.738281"/>
+      <use xlink:href="#DejaVuSans-53" x="413.525391"/>
+      <use xlink:href="#DejaVuSans-41" x="478.876953"/>
+      <use xlink:href="#DejaVuSans-4d" x="547.285156"/>
+      <use xlink:href="#DejaVuSans-4e" x="633.564453"/>
+      <use xlink:href="#DejaVuSans-30" x="708.369141"/>
+      <use xlink:href="#DejaVuSans-32" x="771.992188"/>
+      <use xlink:href="#DejaVuSans-34" x="835.615234"/>
+      <use xlink:href="#DejaVuSans-34" x="899.238281"/>
+      <use xlink:href="#DejaVuSans-31" x="962.861328"/>
+      <use xlink:href="#DejaVuSans-32" x="1026.484375"/>
+      <use xlink:href="#DejaVuSans-35" x="1090.107422"/>
+      <use xlink:href="#DejaVuSans-30" x="1153.730469"/>
+      <use xlink:href="#DejaVuSans-20" x="1217.353516"/>
+      <use xlink:href="#DejaVuSans-28" x="1249.140625"/>
+      <use xlink:href="#DejaVuSans-33" x="1288.154297"/>
+      <use xlink:href="#DejaVuSans-2e" x="1351.777344"/>
+      <use xlink:href="#DejaVuSans-37" x="1383.564453"/>
+      <use xlink:href="#DejaVuSans-20" x="1447.1875"/>
+      <use xlink:href="#DejaVuSans-4d" x="1478.974609"/>
+      <use xlink:href="#DejaVuSans-62" x="1565.253906"/>
+      <use xlink:href="#DejaVuSans-70" x="1628.730469"/>
+      <use xlink:href="#DejaVuSans-29" x="1692.207031"/>
+     </g>
+    </g>
+    <g id="PathCollection_23">
+     <g>
+      <use xlink:href="#m514f723333" x="640.348437" y="39.451563" style="fill: #1d6996; stroke: #1d6996; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_43">
+     <!-- 1281227.SAMN01885939 (5.2 Mbp) -->
+     <g transform="translate(658.348437 42.076563)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-31"/>
+      <use xlink:href="#DejaVuSans-32" x="63.623047"/>
+      <use xlink:href="#DejaVuSans-38" x="127.246094"/>
+      <use xlink:href="#DejaVuSans-31" x="190.869141"/>
+      <use xlink:href="#DejaVuSans-32" x="254.492188"/>
+      <use xlink:href="#DejaVuSans-32" x="318.115234"/>
+      <use xlink:href="#DejaVuSans-37" x="381.738281"/>
+      <use xlink:href="#DejaVuSans-2e" x="445.361328"/>
+      <use xlink:href="#DejaVuSans-53" x="477.148438"/>
+      <use xlink:href="#DejaVuSans-41" x="542.5"/>
+      <use xlink:href="#DejaVuSans-4d" x="610.908203"/>
+      <use xlink:href="#DejaVuSans-4e" x="697.1875"/>
+      <use xlink:href="#DejaVuSans-30" x="771.992188"/>
+      <use xlink:href="#DejaVuSans-31" x="835.615234"/>
+      <use xlink:href="#DejaVuSans-38" x="899.238281"/>
+      <use xlink:href="#DejaVuSans-38" x="962.861328"/>
+      <use xlink:href="#DejaVuSans-35" x="1026.484375"/>
+      <use xlink:href="#DejaVuSans-39" x="1090.107422"/>
+      <use xlink:href="#DejaVuSans-33" x="1153.730469"/>
+      <use xlink:href="#DejaVuSans-39" x="1217.353516"/>
+      <use xlink:href="#DejaVuSans-20" x="1280.976562"/>
+      <use xlink:href="#DejaVuSans-28" x="1312.763672"/>
+      <use xlink:href="#DejaVuSans-35" x="1351.777344"/>
+      <use xlink:href="#DejaVuSans-2e" x="1415.400391"/>
+      <use xlink:href="#DejaVuSans-32" x="1447.1875"/>
+      <use xlink:href="#DejaVuSans-20" x="1510.810547"/>
+      <use xlink:href="#DejaVuSans-4d" x="1542.597656"/>
+      <use xlink:href="#DejaVuSans-62" x="1628.876953"/>
+      <use xlink:href="#DejaVuSans-70" x="1692.353516"/>
+      <use xlink:href="#DejaVuSans-29" x="1755.830078"/>
+     </g>
+    </g>
+    <g id="PathCollection_24">
+     <g>
+      <use xlink:href="#me2bb4eae18" x="640.348437" y="54.129687" style="fill: #38a6a5; stroke: #38a6a5; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_44">
+     <!-- 1134687.SAMN02463898 (6.1 Mbp) -->
+     <g transform="translate(658.348437 56.754687)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-31"/>
+      <use xlink:href="#DejaVuSans-31" x="63.623047"/>
+      <use xlink:href="#DejaVuSans-33" x="127.246094"/>
+      <use xlink:href="#DejaVuSans-34" x="190.869141"/>
+      <use xlink:href="#DejaVuSans-36" x="254.492188"/>
+      <use xlink:href="#DejaVuSans-38" x="318.115234"/>
+      <use xlink:href="#DejaVuSans-37" x="381.738281"/>
+      <use xlink:href="#DejaVuSans-2e" x="445.361328"/>
+      <use xlink:href="#DejaVuSans-53" x="477.148438"/>
+      <use xlink:href="#DejaVuSans-41" x="542.5"/>
+      <use xlink:href="#DejaVuSans-4d" x="610.908203"/>
+      <use xlink:href="#DejaVuSans-4e" x="697.1875"/>
+      <use xlink:href="#DejaVuSans-30" x="771.992188"/>
+      <use xlink:href="#DejaVuSans-32" x="835.615234"/>
+      <use xlink:href="#DejaVuSans-34" x="899.238281"/>
+      <use xlink:href="#DejaVuSans-36" x="962.861328"/>
+      <use xlink:href="#DejaVuSans-33" x="1026.484375"/>
+      <use xlink:href="#DejaVuSans-38" x="1090.107422"/>
+      <use xlink:href="#DejaVuSans-39" x="1153.730469"/>
+      <use xlink:href="#DejaVuSans-38" x="1217.353516"/>
+      <use xlink:href="#DejaVuSans-20" x="1280.976562"/>
+      <use xlink:href="#DejaVuSans-28" x="1312.763672"/>
+      <use xlink:href="#DejaVuSans-36" x="1351.777344"/>
+      <use xlink:href="#DejaVuSans-2e" x="1415.400391"/>
+      <use xlink:href="#DejaVuSans-31" x="1447.1875"/>
+      <use xlink:href="#DejaVuSans-20" x="1510.810547"/>
+      <use xlink:href="#DejaVuSans-4d" x="1542.597656"/>
+      <use xlink:href="#DejaVuSans-62" x="1628.876953"/>
+      <use xlink:href="#DejaVuSans-70" x="1692.353516"/>
+      <use xlink:href="#DejaVuSans-29" x="1755.830078"/>
+     </g>
+    </g>
+    <g id="PathCollection_25">
+     <g>
+      <use xlink:href="#ma4ec1027c7" x="640.348437" y="68.807813" style="fill: #0f8554; stroke: #0f8554; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_45">
+     <!-- 419481.SAMN05216233 (6.5 Mbp) -->
+     <g transform="translate(658.348437 71.432813)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-34"/>
+      <use xlink:href="#DejaVuSans-31" x="63.623047"/>
+      <use xlink:href="#DejaVuSans-39" x="127.246094"/>
+      <use xlink:href="#DejaVuSans-34" x="190.869141"/>
+      <use xlink:href="#DejaVuSans-38" x="254.492188"/>
+      <use xlink:href="#DejaVuSans-31" x="318.115234"/>
+      <use xlink:href="#DejaVuSans-2e" x="381.738281"/>
+      <use xlink:href="#DejaVuSans-53" x="413.525391"/>
+      <use xlink:href="#DejaVuSans-41" x="478.876953"/>
+      <use xlink:href="#DejaVuSans-4d" x="547.285156"/>
+      <use xlink:href="#DejaVuSans-4e" x="633.564453"/>
+      <use xlink:href="#DejaVuSans-30" x="708.369141"/>
+      <use xlink:href="#DejaVuSans-35" x="771.992188"/>
+      <use xlink:href="#DejaVuSans-32" x="835.615234"/>
+      <use xlink:href="#DejaVuSans-31" x="899.238281"/>
+      <use xlink:href="#DejaVuSans-36" x="962.861328"/>
+      <use xlink:href="#DejaVuSans-32" x="1026.484375"/>
+      <use xlink:href="#DejaVuSans-33" x="1090.107422"/>
+      <use xlink:href="#DejaVuSans-33" x="1153.730469"/>
+      <use xlink:href="#DejaVuSans-20" x="1217.353516"/>
+      <use xlink:href="#DejaVuSans-28" x="1249.140625"/>
+      <use xlink:href="#DejaVuSans-36" x="1288.154297"/>
+      <use xlink:href="#DejaVuSans-2e" x="1351.777344"/>
+      <use xlink:href="#DejaVuSans-35" x="1383.564453"/>
+      <use xlink:href="#DejaVuSans-20" x="1447.1875"/>
+      <use xlink:href="#DejaVuSans-4d" x="1478.974609"/>
+      <use xlink:href="#DejaVuSans-62" x="1565.253906"/>
+      <use xlink:href="#DejaVuSans-70" x="1628.730469"/>
+      <use xlink:href="#DejaVuSans-29" x="1692.207031"/>
+     </g>
+    </g>
+    <g id="PathCollection_26">
+     <g>
+      <use xlink:href="#m369739e5e2" x="640.348437" y="83.485937" style="fill: #73af48; stroke: #73af48; stroke-width: 1.5"/>
+     </g>
+    </g>
+    <g id="text_46">
+     <!-- 1909395.SAMN05912833 (13.0 Mbp) -->
+     <g transform="translate(658.348437 86.110937)scale(0.1 -0.1)">
+      <use xlink:href="#DejaVuSans-31"/>
+      <use xlink:href="#DejaVuSans-39" x="63.623047"/>
+      <use xlink:href="#DejaVuSans-30" x="127.246094"/>
+      <use xlink:href="#DejaVuSans-39" x="190.869141"/>
+      <use xlink:href="#DejaVuSans-33" x="254.492188"/>
+      <use xlink:href="#DejaVuSans-39" x="318.115234"/>
+      <use xlink:href="#DejaVuSans-35" x="381.738281"/>
+      <use xlink:href="#DejaVuSans-2e" x="445.361328"/>
+      <use xlink:href="#DejaVuSans-53" x="477.148438"/>
+      <use xlink:href="#DejaVuSans-41" x="542.5"/>
+      <use xlink:href="#DejaVuSans-4d" x="610.908203"/>
+      <use xlink:href="#DejaVuSans-4e" x="697.1875"/>
+      <use xlink:href="#DejaVuSans-30" x="771.992188"/>
+      <use xlink:href="#DejaVuSans-35" x="835.615234"/>
+      <use xlink:href="#DejaVuSans-39" x="899.238281"/>
+      <use xlink:href="#DejaVuSans-31" x="962.861328"/>
+      <use xlink:href="#DejaVuSans-32" x="1026.484375"/>
+      <use xlink:href="#DejaVuSans-38" x="1090.107422"/>
+      <use xlink:href="#DejaVuSans-33" x="1153.730469"/>
+      <use xlink:href="#DejaVuSans-33" x="1217.353516"/>
+      <use xlink:href="#DejaVuSans-20" x="1280.976562"/>
+      <use xlink:href="#DejaVuSans-28" x="1312.763672"/>
+      <use xlink:href="#DejaVuSans-31" x="1351.777344"/>
+      <use xlink:href="#DejaVuSans-33" x="1415.400391"/>
+      <use xlink:href="#DejaVuSans-2e" x="1479.023438"/>
+      <use xlink:href="#DejaVuSans-30" x="1510.810547"/>
+      <use xlink:href="#DejaVuSans-20" x="1574.433594"/>
+      <use xlink:href="#DejaVuSans-4d" x="1606.220703"/>
+      <use xlink:href="#DejaVuSans-62" x="1692.5"/>
+      <use xlink:href="#DejaVuSans-70" x="1755.976562"/>
+      <use xlink:href="#DejaVuSans-29" x="1819.453125"/>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+ <defs>
+  <clipPath id="p5aa1a7da45">
+   <rect x="44.66" y="10.8" width="381.94" height="379.24"/>
+  </clipPath>
+  <clipPath id="p731926d378">
+   <rect x="471.26" y="10.8" width="381.94" height="379.24"/>
+  </clipPath>
+ </defs>
+</svg>
-- 
GitLab