Skip to content

Instantly share code, notes, and snippets.

@plokhotnyuk
Last active September 6, 2019 14:40
Show Gist options
  • Save plokhotnyuk/6e24503f007eb85994aa51ea1218a3fe to your computer and use it in GitHub Desktop.
Save plokhotnyuk/6e24503f007eb85994aa51ea1218a3fe to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1238" onload="init(evt)" viewBox="0 0 1200 1238" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:black; }
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0" y="0" width="100%" height="100%" fill="rgb(240,240,220)"/>
<text x="600" y="24" text-anchor="middle" style="font-size:17px">Flame Graph</text>
<text x="10" y="1221" id="details"> </text>
<text x="10" y="24" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer">Reset Zoom</text>
<text x="1090" y="24" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer">Search</text>
<text x="1090" y="1221" id="matched"> </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (107078 samples, 100.00%)</title><rect x="10.0" y="1187.0" width="1180.0" height="15" fill="#f67575" rx="2" ry="2"/>
<text x="13.0" y="1198.0">all</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinWorkerThread.run (61650 samples, 57.57%)</title><rect x="12.2" y="1171.0" width="679.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="15.2" y="1182.0">java/util/concurrent/ForkJoinWorkerThread.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.runWorker (61648 samples, 57.57%)</title><rect x="12.2" y="1155.0" width="679.4" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="15.2" y="1166.0">java/util/concurrent/ForkJoinPool.runWorker</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool$WorkQueue.runTask (55020 samples, 51.38%)</title><rect x="15.3" y="1139.0" width="606.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="18.3" y="1150.0">java/util/concurrent/ForkJoinPool$WorkQueue.runTask</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask.doExec (55020 samples, 51.38%)</title><rect x="15.3" y="1123.0" width="606.4" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="18.3" y="1134.0">java/util/concurrent/ForkJoinTask.doExec</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask$RunnableExecuteAction.exec (54087 samples, 50.51%)</title><rect x="15.7" y="1107.0" width="596.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="18.7" y="1118.0">java/util/concurrent/ForkJoinTask$RunnableExecuteAction.exec</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$$anon$7.run (1455 samples, 1.36%)</title><rect x="18.0" y="1091.0" width="16.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="21.0" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/Callback$AsyncIdempotentCallback.apply (1440 samples, 1.34%)</title><rect x="18.2" y="1075.0" width="15.9" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="21.2" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/Callback$AsyncIdempotentCallback.apply (1432 samples, 1.34%)</title><rect x="18.3" y="1059.0" width="15.8" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="21.3" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC.execute (1432 samples, 1.34%)</title><rect x="18.3" y="1043.0" width="15.8" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="21.3" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/BlockContext$.withBlockContext (1370 samples, 1.28%)</title><rect x="19.0" y="1027.0" width="15.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="22.0" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (1340 samples, 1.25%)</title><rect x="19.3" y="1011.0" width="14.8" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="22.3" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC$$Lambda$2871/1081405681.apply$mcV$sp (1340 samples, 1.25%)</title><rect x="19.3" y="995.0" width="14.8" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="22.3" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC.$anonfun$execute$1 (1340 samples, 1.25%)</title><rect x="19.3" y="979.0" width="14.8" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="22.3" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC.cats$effect$internals$TrampolineEC$$localRunLoop (1340 samples, 1.25%)</title><rect x="19.3" y="963.0" width="14.8" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="22.3" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/Callback$AsyncIdempotentCallback$$anon$3.run (1340 samples, 1.25%)</title><rect x="19.3" y="947.0" width="14.8" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="22.3" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$RestartCallback.apply (1340 samples, 1.25%)</title><rect x="19.3" y="931.0" width="14.8" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="22.3" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$RestartCallback.apply (1340 samples, 1.25%)</title><rect x="19.3" y="915.0" width="14.8" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="22.3" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.cats$effect$internals$IORunLoop$$loop (1250 samples, 1.17%)</title><rect x="20.3" y="899.0" width="13.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="23.3" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/FlatMap$$Lambda$2790/1871427936.apply (98 samples, 0.09%)</title><rect x="21.6" y="883.0" width="1.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="24.6" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$$Lambda$2778/17305586.apply (876 samples, 0.82%)</title><rect x="22.7" y="883.0" width="9.6" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="25.7" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1$adapted (876 samples, 0.82%)</title><rect x="22.7" y="867.0" width="9.6" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="25.7" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1 (860 samples, 0.80%)</title><rect x="22.8" y="851.0" width="9.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="25.8" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$$$Lambda$3334/869955982.apply (811 samples, 0.76%)</title><rect x="23.4" y="835.0" width="8.9" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="26.4" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$1$adapted (811 samples, 0.76%)</title><rect x="23.4" y="819.0" width="8.9" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="26.4" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$1 (811 samples, 0.76%)</title><rect x="23.4" y="803.0" width="8.9" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="26.4" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Always.value (284 samples, 0.27%)</title><rect x="23.4" y="787.0" width="3.1" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="26.4" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer$$Lambda$3330/1517288795.apply (279 samples, 0.26%)</title><rect x="23.5" y="771.0" width="3.0" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="26.5" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer.$anonfun$write$1 (279 samples, 0.26%)</title><rect x="23.5" y="755.0" width="3.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="26.5" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.writeHeaders (277 samples, 0.26%)</title><rect x="23.5" y="739.0" width="3.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="26.5" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer$.headersToByteBuffer (274 samples, 0.26%)</title><rect x="23.5" y="723.0" width="3.0" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="26.5" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.getBytes (274 samples, 0.26%)</title><rect x="23.5" y="707.0" width="3.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="26.5" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringCoding.encode (274 samples, 0.26%)</title><rect x="23.5" y="691.0" width="3.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="26.5" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/ISO_8859_1.newEncoder (199 samples, 0.19%)</title><rect x="24.3" y="675.0" width="2.2" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="27.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Successful.onComplete (521 samples, 0.49%)</title><rect x="26.6" y="787.0" width="5.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="29.6" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Kept.onComplete$ (521 samples, 0.49%)</title><rect x="26.6" y="771.0" width="5.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="29.6" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Kept.onComplete (521 samples, 0.49%)</title><rect x="26.6" y="755.0" width="5.7" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="29.6" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (521 samples, 0.49%)</title><rect x="26.6" y="739.0" width="5.7" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="29.6" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (346 samples, 0.32%)</title><rect x="28.5" y="723.0" width="3.8" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="31.5" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (346 samples, 0.32%)</title><rect x="28.5" y="707.0" width="3.8" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="31.5" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (345 samples, 0.32%)</title><rect x="28.5" y="691.0" width="3.8" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="31.5" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (341 samples, 0.32%)</title><rect x="28.5" y="675.0" width="3.8" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="31.5" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (243 samples, 0.23%)</title><rect x="29.6" y="659.0" width="2.7" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="32.6" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (202 samples, 0.19%)</title><rect x="30.0" y="643.0" width="2.2" height="15" fill="#f97979" rx="2" ry="2"/>
<text x="33.0" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (177 samples, 0.17%)</title><rect x="30.3" y="627.0" width="1.9" height="15" fill="#d74848" rx="2" ry="2"/>
<text x="33.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (177 samples, 0.17%)</title><rect x="30.3" y="611.0" width="1.9" height="15" fill="#db4e4e" rx="2" ry="2"/>
<text x="33.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (158 samples, 0.15%)</title><rect x="30.5" y="595.0" width="1.7" height="15" fill="#f47272" rx="2" ry="2"/>
<text x="33.5" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (157 samples, 0.15%)</title><rect x="30.5" y="579.0" width="1.7" height="15" fill="#fa7b7b" rx="2" ry="2"/>
<text x="33.5" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (153 samples, 0.14%)</title><rect x="30.6" y="563.0" width="1.6" height="15" fill="#cb3737" rx="2" ry="2"/>
<text x="33.6" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (134 samples, 0.13%)</title><rect x="30.8" y="547.0" width="1.4" height="15" fill="#fc7d7d" rx="2" ry="2"/>
<text x="33.8" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (132 samples, 0.12%)</title><rect x="30.8" y="531.0" width="1.4" height="15" fill="#e45c5c" rx="2" ry="2"/>
<text x="33.8" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (122 samples, 0.11%)</title><rect x="30.9" y="515.0" width="1.3" height="15" fill="#cc3838" rx="2" ry="2"/>
<text x="33.9" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$2.run (17855 samples, 16.67%)</title><rect x="34.6" y="1091.0" width="196.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="37.6" y="1102.0">org/http4s/server/blaze/Ht..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunSync (17823 samples, 16.64%)</title><rect x="34.6" y="1075.0" width="196.4" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="37.6" y="1086.0">cats/effect/IO.unsafeRunSync</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunTimed (17823 samples, 16.64%)</title><rect x="34.6" y="1059.0" width="196.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="37.6" y="1070.0">cats/effect/IO.unsafeRunTi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.step (17651 samples, 16.48%)</title><rect x="36.5" y="1043.0" width="194.5" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="39.5" y="1054.0">cats/effect/internals/IOR..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (17640 samples, 16.47%)</title><rect x="36.6" y="1027.0" width="194.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="39.6" y="1038.0">scala/runtime/java8/JFunc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$Lambda$2787/1219056276.apply$mcV$sp (17640 samples, 16.47%)</title><rect x="36.6" y="1011.0" width="194.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="39.6" y="1022.0">cats/effect/IO$$Lambda$27..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.$anonfun$runAsync$1 (17640 samples, 16.47%)</title><rect x="36.6" y="995.0" width="194.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="39.6" y="1006.0">cats/effect/IO.$anonfun$r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunAsync (17640 samples, 16.47%)</title><rect x="36.6" y="979.0" width="194.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="39.6" y="990.0">cats/effect/IO.unsafeRunA..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.start (17640 samples, 16.47%)</title><rect x="36.6" y="963.0" width="194.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="39.6" y="974.0">cats/effect/internals/IOR..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.cats$effect$internals$IORunLoop$$loop (17614 samples, 16.45%)</title><rect x="36.9" y="947.0" width="194.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="39.9" y="958.0">cats/effect/internals/IOR..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$$Lambda$2778/17305586.apply (100 samples, 0.09%)</title><rect x="39.5" y="931.0" width="1.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="42.5" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1$adapted (100 samples, 0.09%)</title><rect x="39.5" y="915.0" width="1.1" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="42.5" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$Map.apply (239 samples, 0.22%)</title><rect x="40.6" y="931.0" width="2.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="43.6" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$Map.apply (212 samples, 0.20%)</title><rect x="40.9" y="915.0" width="2.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="43.9" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.pure (208 samples, 0.19%)</title><rect x="40.9" y="899.0" width="2.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="43.9" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (94 samples, 0.09%)</title><rect x="42.2" y="883.0" width="1.0" height="15" fill="#f16e6e" rx="2" ry="2"/>
<text x="45.2" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.liftedTree1$1 (5859 samples, 5.47%)</title><rect x="43.3" y="931.0" width="64.5" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="46.3" y="942.0">cats/ef..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Sync$OptionTSync$$Lambda$3146/2132793378.apply (5842 samples, 5.46%)</title><rect x="43.5" y="915.0" width="64.3" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="46.5" y="926.0">cats/ef..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Sync$OptionTSync.$anonfun$suspend$3 (5842 samples, 5.46%)</title><rect x="43.5" y="899.0" width="64.3" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="46.5" y="910.0">cats/ef..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$2$$Lambda$3145/659658301.apply (5836 samples, 5.45%)</title><rect x="43.5" y="883.0" width="64.3" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="46.5" y="894.0">org/htt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$2.$anonfun$run$1 (5815 samples, 5.43%)</title><rect x="43.8" y="867.0" width="64.0" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="46.8" y="878.0">org/htt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/data/KleisliSemigroupK$$Lambda$3005/1249246130.apply (5815 samples, 5.43%)</title><rect x="43.8" y="851.0" width="64.0" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="46.8" y="862.0">cats/da..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/data/KleisliSemigroupK.$anonfun$combineK$1 (5815 samples, 5.43%)</title><rect x="43.8" y="835.0" width="64.0" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="46.8" y="846.0">cats/da..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HttpService$$$Lambda$2810/625609609.apply (5727 samples, 5.35%)</title><rect x="44.7" y="819.0" width="63.1" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="47.7" y="830.0">org/htt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HttpService$.$anonfun$apply$1 (5727 samples, 5.35%)</title><rect x="44.7" y="803.0" width="63.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="47.7" y="814.0">org/htt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/PartialFunction$AndThen.applyOrElse (5674 samples, 5.30%)</title><rect x="45.3" y="787.0" width="62.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="48.3" y="798.0">scala/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HttpService$$$Lambda$3167/165676551.apply (143 samples, 0.13%)</title><rect x="45.3" y="771.0" width="1.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="48.3" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HttpService$.$anonfun$apply$2 (143 samples, 0.13%)</title><rect x="45.3" y="755.0" width="1.6" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="48.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/data/OptionT$.liftF (143 samples, 0.13%)</title><rect x="45.3" y="739.0" width="1.6" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="48.3" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>z/HelloWorldService$$anonfun$1.applyOrElse (5531 samples, 5.17%)</title><rect x="46.9" y="771.0" width="60.9" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="49.9" y="782.0">z/Hell..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>z/HelloWorldService$$anonfun$1.applyOrElse (5478 samples, 5.12%)</title><rect x="47.5" y="755.0" width="60.3" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="50.5" y="766.0">z/Hell..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Json$.obj (322 samples, 0.30%)</title><rect x="48.8" y="739.0" width="3.6" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="51.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Json$.fromFields (322 samples, 0.30%)</title><rect x="48.8" y="723.0" width="3.6" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="51.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/JsonObject$.fromIterable (197 samples, 0.18%)</title><rect x="49.8" y="707.0" width="2.2" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="52.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.put (197 samples, 0.18%)</title><rect x="49.8" y="691.0" width="2.2" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="52.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.putVal (197 samples, 0.18%)</title><rect x="49.8" y="675.0" width="2.2" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="52.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/package$.jsonEncoder (1251 samples, 1.17%)</title><rect x="52.6" y="739.0" width="13.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="55.6" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/CirceInstances.jsonEncoder$ (1251 samples, 1.17%)</title><rect x="52.6" y="723.0" width="13.8" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="55.6" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/CirceInstances.jsonEncoder (1251 samples, 1.17%)</title><rect x="52.6" y="707.0" width="13.8" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="55.6" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/package$.jsonEncoderWithPrinter (1251 samples, 1.17%)</title><rect x="52.6" y="691.0" width="13.8" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="55.6" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/CirceInstances.jsonEncoderWithPrinter$ (1251 samples, 1.17%)</title><rect x="52.6" y="675.0" width="13.8" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="55.6" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/CirceInstances.jsonEncoderWithPrinter (1251 samples, 1.17%)</title><rect x="52.6" y="659.0" width="13.8" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="55.6" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$2.withContentType (679 samples, 0.63%)</title><rect x="52.6" y="643.0" width="7.5" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="55.6" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder.withContentType$ (679 samples, 0.63%)</title><rect x="52.6" y="627.0" width="7.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="55.6" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder.withContentType (679 samples, 0.63%)</title><rect x="52.6" y="611.0" width="7.5" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="55.6" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$3.&lt;init&gt; (679 samples, 0.63%)</title><rect x="52.6" y="595.0" width="7.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="55.6" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.put (567 samples, 0.53%)</title><rect x="53.5" y="579.0" width="6.2" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="56.5" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$plus$plus (560 samples, 0.52%)</title><rect x="53.6" y="563.0" width="6.1" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="56.6" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toList (249 samples, 0.23%)</title><rect x="53.7" y="547.0" width="2.7" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="56.7" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList$ (249 samples, 0.23%)</title><rect x="53.7" y="531.0" width="2.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="56.7" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList (249 samples, 0.23%)</title><rect x="53.7" y="515.0" width="2.7" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="56.7" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.to (249 samples, 0.23%)</title><rect x="53.7" y="499.0" width="2.7" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="56.7" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to$ (249 samples, 0.23%)</title><rect x="53.7" y="483.0" width="2.7" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="56.7" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to (249 samples, 0.23%)</title><rect x="53.7" y="467.0" width="2.7" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="56.7" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (170 samples, 0.16%)</title><rect x="54.0" y="451.0" width="1.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="57.0" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (170 samples, 0.16%)</title><rect x="54.0" y="435.0" width="1.9" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="57.0" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (170 samples, 0.16%)</title><rect x="54.0" y="419.0" width="1.9" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="57.0" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (170 samples, 0.16%)</title><rect x="54.0" y="403.0" width="1.9" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="57.0" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.foreach (127 samples, 0.12%)</title><rect x="54.5" y="387.0" width="1.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="57.5" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (122 samples, 0.11%)</title><rect x="54.6" y="371.0" width="1.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="57.6" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (122 samples, 0.11%)</title><rect x="54.6" y="355.0" width="1.3" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="57.6" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$36/1201484275.apply (105 samples, 0.10%)</title><rect x="54.7" y="339.0" width="1.2" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="57.7" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (96 samples, 0.09%)</title><rect x="54.8" y="323.0" width="1.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="57.8" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (299 samples, 0.28%)</title><rect x="56.4" y="547.0" width="3.3" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="59.4" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers$$Lambda$3242/1406502539.apply (280 samples, 0.26%)</title><rect x="56.6" y="531.0" width="3.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="59.6" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$anonfun$$plus$plus$1 (280 samples, 0.26%)</title><rect x="56.6" y="515.0" width="3.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="59.6" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.exists (280 samples, 0.26%)</title><rect x="56.6" y="499.0" width="3.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="59.6" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.exists$ (280 samples, 0.26%)</title><rect x="56.6" y="483.0" width="3.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="59.6" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.exists (280 samples, 0.26%)</title><rect x="56.6" y="467.0" width="3.1" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="59.6" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers$$Lambda$3244/25793608.apply (243 samples, 0.23%)</title><rect x="57.0" y="451.0" width="2.7" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="60.0" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$anonfun$$plus$plus$2$adapted (224 samples, 0.21%)</title><rect x="57.3" y="435.0" width="2.4" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="60.3" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$anonfun$$plus$plus$2 (224 samples, 0.21%)</title><rect x="57.3" y="419.0" width="2.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="60.3" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Content$minusType.name (133 samples, 0.12%)</title><rect x="57.5" y="403.0" width="1.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="60.5" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$4.contramap (105 samples, 0.10%)</title><rect x="60.1" y="643.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="63.1" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder.contramap$ (105 samples, 0.10%)</title><rect x="60.1" y="627.0" width="1.2" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="63.1" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder.contramap (105 samples, 0.10%)</title><rect x="60.1" y="611.0" width="1.2" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="63.1" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$2.&lt;init&gt; (105 samples, 0.10%)</title><rect x="60.1" y="595.0" width="1.2" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="63.1" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$.chunkEncoder (464 samples, 0.43%)</title><rect x="61.3" y="643.0" width="5.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="64.3" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoderInstances.chunkEncoder$ (464 samples, 0.43%)</title><rect x="61.3" y="627.0" width="5.1" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="64.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoderInstances.chunkEncoder (464 samples, 0.43%)</title><rect x="61.3" y="611.0" width="5.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="64.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$.simple (384 samples, 0.36%)</title><rect x="61.3" y="595.0" width="4.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="64.3" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$.encodeBy (258 samples, 0.24%)</title><rect x="62.7" y="579.0" width="2.8" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="65.7" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toList (237 samples, 0.22%)</title><rect x="62.9" y="563.0" width="2.6" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="65.9" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList$ (237 samples, 0.22%)</title><rect x="62.9" y="547.0" width="2.6" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="65.9" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList (237 samples, 0.22%)</title><rect x="62.9" y="531.0" width="2.6" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="65.9" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.to (237 samples, 0.22%)</title><rect x="62.9" y="515.0" width="2.6" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="65.9" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to$ (237 samples, 0.22%)</title><rect x="62.9" y="499.0" width="2.6" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="65.9" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to (237 samples, 0.22%)</title><rect x="62.9" y="483.0" width="2.6" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="65.9" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (162 samples, 0.15%)</title><rect x="63.1" y="467.0" width="1.8" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="66.1" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (159 samples, 0.15%)</title><rect x="63.2" y="451.0" width="1.7" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="66.2" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (159 samples, 0.15%)</title><rect x="63.2" y="435.0" width="1.7" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="66.2" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (159 samples, 0.15%)</title><rect x="63.2" y="419.0" width="1.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="66.2" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.foreach (126 samples, 0.12%)</title><rect x="63.5" y="403.0" width="1.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="66.5" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (121 samples, 0.11%)</title><rect x="63.6" y="387.0" width="1.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="66.6" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (121 samples, 0.11%)</title><rect x="63.6" y="371.0" width="1.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="66.6" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$36/1201484275.apply (106 samples, 0.10%)</title><rect x="63.7" y="355.0" width="1.2" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="66.7" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (104 samples, 0.10%)</title><rect x="63.8" y="339.0" width="1.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="66.8" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (92 samples, 0.09%)</title><rect x="63.8" y="323.0" width="1.0" height="15" fill="#fd7f7f" rx="2" ry="2"/>
<text x="66.8" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/$minus$greater$.unapply (1428 samples, 1.33%)</title><rect x="66.4" y="739.0" width="15.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="69.4" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Request.pathInfo (156 samples, 0.15%)</title><rect x="67.3" y="723.0" width="1.7" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="70.3" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Request.pathInfo$lzycompute (156 samples, 0.15%)</title><rect x="67.3" y="707.0" width="1.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="70.3" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Request.x$8 (156 samples, 0.15%)</title><rect x="67.3" y="691.0" width="1.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="70.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Request.x$8$lzycompute (156 samples, 0.15%)</title><rect x="67.3" y="675.0" width="1.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="70.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringOps.splitAt (156 samples, 0.15%)</title><rect x="67.3" y="659.0" width="1.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="70.3" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.splitAt$ (156 samples, 0.15%)</title><rect x="67.3" y="643.0" width="1.7" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="70.3" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.splitAt (156 samples, 0.15%)</title><rect x="67.3" y="627.0" width="1.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="70.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringOps.take (99 samples, 0.09%)</title><rect x="67.9" y="611.0" width="1.1" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="70.9" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.take$ (99 samples, 0.09%)</title><rect x="67.9" y="595.0" width="1.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="70.9" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/Path$.apply (1168 samples, 1.09%)</title><rect x="69.0" y="723.0" width="12.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="72.0" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.substring (124 samples, 0.12%)</title><rect x="69.7" y="707.0" width="1.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="72.7" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/Path$.apply (607 samples, 0.57%)</title><rect x="71.2" y="707.0" width="6.7" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="74.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/UrlCodingUtils$.urlDecode (466 samples, 0.44%)</title><rect x="72.8" y="691.0" width="5.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="75.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/Charset.decode (466 samples, 0.44%)</title><rect x="72.8" y="675.0" width="5.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="75.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetDecoder.decode (392 samples, 0.37%)</title><rect x="72.8" y="659.0" width="4.3" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="75.8" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetDecoder.decode (392 samples, 0.37%)</title><rect x="72.8" y="643.0" width="4.3" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="75.8" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Decoder.decodeLoop (392 samples, 0.37%)</title><rect x="72.8" y="627.0" width="4.3" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="75.8" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/UrlCodingUtils$.urlDecode (357 samples, 0.33%)</title><rect x="77.9" y="707.0" width="4.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="80.9" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/Charset.decode (328 samples, 0.31%)</title><rect x="78.2" y="691.0" width="3.7" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="81.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetDecoder.decode (284 samples, 0.27%)</title><rect x="78.2" y="675.0" width="3.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="81.2" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetDecoder.decode (284 samples, 0.27%)</title><rect x="78.2" y="659.0" width="3.2" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="81.2" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Decoder.decodeLoop (284 samples, 0.27%)</title><rect x="78.2" y="643.0" width="3.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="81.2" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/Responses$OkOps.apply (1375 samples, 1.28%)</title><rect x="82.2" y="739.0" width="15.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="85.2" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator.apply$ (1375 samples, 1.28%)</title><rect x="82.2" y="723.0" width="15.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="85.2" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator.apply (1375 samples, 1.28%)</title><rect x="82.2" y="707.0" width="15.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="85.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$3.toEntity (1287 samples, 1.20%)</title><rect x="82.8" y="691.0" width="14.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="85.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$2.toEntity (1287 samples, 1.20%)</title><rect x="82.8" y="675.0" width="14.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="85.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$anon$4.toEntity (350 samples, 0.33%)</title><rect x="82.8" y="659.0" width="3.9" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="85.8" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$$$Lambda$3226/772620333.apply (350 samples, 0.33%)</title><rect x="82.8" y="643.0" width="3.9" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="85.8" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$.$anonfun$simple$1 (350 samples, 0.33%)</title><rect x="82.8" y="627.0" width="3.9" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="85.8" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$.chunk (110 samples, 0.10%)</title><rect x="83.1" y="611.0" width="1.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="86.1" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/CirceInstances$$Lambda$3237/1541506682.apply (937 samples, 0.88%)</title><rect x="86.7" y="659.0" width="10.3" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="89.7" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/circe/CirceInstances.$anonfun$jsonEncoderWithPrinter$1 (937 samples, 0.88%)</title><rect x="86.7" y="643.0" width="10.3" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="89.7" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer.prettyByteBuffer (855 samples, 0.80%)</title><rect x="87.5" y="627.0" width="9.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="90.5" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer.prettyByteBuffer (855 samples, 0.80%)</title><rect x="87.5" y="611.0" width="9.5" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="90.5" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Json$JObject.foldWith (442 samples, 0.41%)</title><rect x="88.0" y="595.0" width="4.9" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="91.0" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$PrintingFolder.onObject (442 samples, 0.41%)</title><rect x="88.0" y="579.0" width="4.9" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="91.0" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$PrintingFolder.onObject (442 samples, 0.41%)</title><rect x="88.0" y="563.0" width="4.9" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="91.0" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/JsonObject$LinkedHashMapJsonObject.appendToFolder (442 samples, 0.41%)</title><rect x="88.0" y="547.0" width="4.9" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="91.0" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Json$JString.foldWith (191 samples, 0.18%)</title><rect x="88.7" y="531.0" width="2.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="91.7" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$PrintingFolder.onString (191 samples, 0.18%)</title><rect x="88.7" y="515.0" width="2.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="91.7" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$PrintingFolder.onString (156 samples, 0.15%)</title><rect x="89.0" y="499.0" width="1.7" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="92.0" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$AppendableByteBuffer.append (144 samples, 0.13%)</title><rect x="89.1" y="483.0" width="1.6" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="92.1" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$PrintingFolder.onString (130 samples, 0.12%)</title><rect x="90.8" y="531.0" width="1.4" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="93.8" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$AppendableByteBuffer.append (130 samples, 0.12%)</title><rect x="90.8" y="515.0" width="1.4" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="93.8" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/circe/Printer$AppendableByteBuffer.toByteBuffer (370 samples, 0.35%)</title><rect x="92.9" y="595.0" width="4.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="95.9" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/Charset.encode (370 samples, 0.35%)</title><rect x="92.9" y="579.0" width="4.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="95.9" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetEncoder.encode (324 samples, 0.30%)</title><rect x="92.9" y="563.0" width="3.6" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="95.9" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetEncoder.encode (324 samples, 0.30%)</title><rect x="92.9" y="547.0" width="3.6" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="95.9" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder.encodeLoop (324 samples, 0.30%)</title><rect x="92.9" y="531.0" width="3.6" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="95.9" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder.encodeArrayLoop (124 samples, 0.12%)</title><rect x="95.1" y="515.0" width="1.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="98.1" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>z/HelloWorldService.stringEncoder (825 samples, 0.77%)</title><rect x="98.3" y="739.0" width="9.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="101.3" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoderInstances.stringEncoder$ (825 samples, 0.77%)</title><rect x="98.3" y="723.0" width="9.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="101.3" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoderInstances.stringEncoder (825 samples, 0.77%)</title><rect x="98.3" y="707.0" width="9.1" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="101.3" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$.simple (796 samples, 0.74%)</title><rect x="98.3" y="691.0" width="8.8" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="101.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/EntityEncoder$.encodeBy (796 samples, 0.74%)</title><rect x="98.3" y="675.0" width="8.8" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="101.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toList (734 samples, 0.69%)</title><rect x="99.0" y="659.0" width="8.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="102.0" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList$ (734 samples, 0.69%)</title><rect x="99.0" y="643.0" width="8.1" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="102.0" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList (734 samples, 0.69%)</title><rect x="99.0" y="627.0" width="8.1" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="102.0" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.to (734 samples, 0.69%)</title><rect x="99.0" y="611.0" width="8.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="102.0" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to$ (734 samples, 0.69%)</title><rect x="99.0" y="595.0" width="8.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="102.0" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to (734 samples, 0.69%)</title><rect x="99.0" y="579.0" width="8.1" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="102.0" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (431 samples, 0.40%)</title><rect x="100.0" y="563.0" width="4.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="103.0" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (405 samples, 0.38%)</title><rect x="100.3" y="547.0" width="4.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="103.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (405 samples, 0.38%)</title><rect x="100.3" y="531.0" width="4.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="103.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (405 samples, 0.38%)</title><rect x="100.3" y="515.0" width="4.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="103.3" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.foreach (305 samples, 0.28%)</title><rect x="101.4" y="499.0" width="3.3" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="104.4" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (271 samples, 0.25%)</title><rect x="101.7" y="483.0" width="3.0" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="104.7" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (271 samples, 0.25%)</title><rect x="101.7" y="467.0" width="3.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="104.7" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$36/1201484275.apply (207 samples, 0.19%)</title><rect x="102.4" y="451.0" width="2.3" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="105.4" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (163 samples, 0.15%)</title><rect x="102.9" y="435.0" width="1.8" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="105.9" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (119 samples, 0.11%)</title><rect x="102.9" y="419.0" width="1.3" height="15" fill="#e45a5a" rx="2" ry="2"/>
<text x="105.9" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.sizeHint (184 samples, 0.17%)</title><rect x="104.8" y="563.0" width="2.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="107.8" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/Builder.sizeHint$ (162 samples, 0.15%)</title><rect x="105.0" y="547.0" width="1.8" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="108.0" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/Builder.sizeHint (162 samples, 0.15%)</title><rect x="105.0" y="531.0" width="1.8" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="108.0" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (115 samples, 0.11%)</title><rect x="105.0" y="515.0" width="1.3" height="15" fill="#ef6b6b" rx="2" ry="2"/>
<text x="108.0" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.popNextBind (150 samples, 0.14%)</title><rect x="107.8" y="931.0" width="1.7" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="110.8" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (162 samples, 0.15%)</title><rect x="109.5" y="931.0" width="1.8" height="15" fill="#e15757" rx="2" ry="2"/>
<text x="112.5" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>oop_disjoint_arraycopy (95 samples, 0.09%)</title><rect x="111.3" y="931.0" width="1.0" height="15" fill="#e86161" rx="2" ry="2"/>
<text x="114.3" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator$$Lambda$3247/1843397313.apply (1217 samples, 1.14%)</title><rect x="112.3" y="931.0" width="13.4" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="115.3" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator.$anonfun$apply$1 (1170 samples, 1.09%)</title><rect x="112.8" y="915.0" width="12.9" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="115.8" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.map (1148 samples, 1.07%)</title><rect x="113.1" y="899.0" width="12.6" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="116.1" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator$$Lambda$3269/2053036798.apply (1148 samples, 1.07%)</title><rect x="113.1" y="883.0" width="12.6" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="116.1" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator.$anonfun$apply$2$adapted (1148 samples, 1.07%)</title><rect x="113.1" y="867.0" width="12.6" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="116.1" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator.$anonfun$apply$2 (1148 samples, 1.07%)</title><rect x="113.1" y="851.0" width="12.6" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="116.1" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Either.fold (1096 samples, 1.02%)</title><rect x="113.7" y="835.0" width="12.0" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="116.7" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator$$Lambda$3278/546177957.apply (1096 samples, 1.02%)</title><rect x="113.7" y="819.0" width="12.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="116.7" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/dsl/impl/EntityResponseGenerator.$anonfun$apply$4 (1096 samples, 1.02%)</title><rect x="113.7" y="803.0" width="12.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="116.7" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.put (863 samples, 0.81%)</title><rect x="113.7" y="787.0" width="9.5" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="116.7" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$plus$plus (541 samples, 0.51%)</title><rect x="114.4" y="771.0" width="6.0" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="117.4" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toList (294 samples, 0.27%)</title><rect x="114.4" y="755.0" width="3.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="117.4" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList$ (294 samples, 0.27%)</title><rect x="114.4" y="739.0" width="3.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="117.4" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList (294 samples, 0.27%)</title><rect x="114.4" y="723.0" width="3.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="117.4" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.to (294 samples, 0.27%)</title><rect x="114.4" y="707.0" width="3.2" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="117.4" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to$ (294 samples, 0.27%)</title><rect x="114.4" y="691.0" width="3.2" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="117.4" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to (294 samples, 0.27%)</title><rect x="114.4" y="675.0" width="3.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="117.4" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (231 samples, 0.22%)</title><rect x="114.7" y="659.0" width="2.5" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="117.7" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (223 samples, 0.21%)</title><rect x="114.7" y="643.0" width="2.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="117.7" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (223 samples, 0.21%)</title><rect x="114.7" y="627.0" width="2.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="117.7" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (223 samples, 0.21%)</title><rect x="114.7" y="611.0" width="2.5" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="117.7" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.foreach (176 samples, 0.16%)</title><rect x="115.3" y="595.0" width="1.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="118.3" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (173 samples, 0.16%)</title><rect x="115.3" y="579.0" width="1.9" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="118.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (173 samples, 0.16%)</title><rect x="115.3" y="563.0" width="1.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="118.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$36/1201484275.apply (139 samples, 0.13%)</title><rect x="115.7" y="547.0" width="1.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="118.7" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (130 samples, 0.12%)</title><rect x="115.8" y="531.0" width="1.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="118.8" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (106 samples, 0.10%)</title><rect x="115.8" y="515.0" width="1.2" height="15" fill="#f06c6c" rx="2" ry="2"/>
<text x="118.8" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (247 samples, 0.23%)</title><rect x="117.6" y="755.0" width="2.8" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="120.6" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers$$Lambda$3242/1406502539.apply (228 samples, 0.21%)</title><rect x="117.8" y="739.0" width="2.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="120.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$anonfun$$plus$plus$1 (228 samples, 0.21%)</title><rect x="117.8" y="723.0" width="2.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="120.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.exists (228 samples, 0.21%)</title><rect x="117.8" y="707.0" width="2.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="120.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.exists$ (228 samples, 0.21%)</title><rect x="117.8" y="691.0" width="2.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="120.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.exists (228 samples, 0.21%)</title><rect x="117.8" y="675.0" width="2.5" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="120.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers$$Lambda$3244/25793608.apply (217 samples, 0.20%)</title><rect x="117.9" y="659.0" width="2.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="120.9" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$anonfun$$plus$plus$2$adapted (175 samples, 0.16%)</title><rect x="118.1" y="643.0" width="1.9" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="121.1" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.$anonfun$$plus$plus$2 (175 samples, 0.16%)</title><rect x="118.1" y="627.0" width="1.9" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="121.1" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Content$minusType.name (134 samples, 0.13%)</title><rect x="118.4" y="611.0" width="1.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="121.4" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.isEmpty (233 samples, 0.22%)</title><rect x="120.6" y="771.0" width="2.6" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="123.6" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.isEmpty$ (233 samples, 0.22%)</title><rect x="120.6" y="755.0" width="2.6" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="123.6" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.isEmpty (207 samples, 0.19%)</title><rect x="120.9" y="739.0" width="2.3" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="123.9" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (158 samples, 0.15%)</title><rect x="120.9" y="723.0" width="1.8" height="15" fill="#ce3a3a" rx="2" ry="2"/>
<text x="123.9" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/LowPriorityImplicits.wrapRefArray (233 samples, 0.22%)</title><rect x="123.2" y="787.0" width="2.5" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="126.2" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray$ofRef.&lt;init&gt; (233 samples, 0.22%)</title><rect x="123.2" y="771.0" width="2.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="126.2" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.&lt;init&gt; (233 samples, 0.22%)</title><rect x="123.2" y="755.0" width="2.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="126.2" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$2792/2080096099.apply (201 samples, 0.19%)</title><rect x="126.3" y="931.0" width="2.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="129.3" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$andThen$1 (201 samples, 0.19%)</title><rect x="126.3" y="915.0" width="2.2" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="129.3" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (103 samples, 0.10%)</title><rect x="126.8" y="899.0" width="1.2" height="15" fill="#f27070" rx="2" ry="2"/>
<text x="129.8" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (9215 samples, 8.61%)</title><rect x="129.5" y="931.0" width="101.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="132.5" y="942.0">scala/runtim..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$2$$Lambda$3290/1788606063.apply$mcV$sp (9191 samples, 8.58%)</title><rect x="129.7" y="915.0" width="101.3" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="132.7" y="926.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$2.$anonfun$run$4 (9170 samples, 8.56%)</title><rect x="130.0" y="899.0" width="101.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="133.0" y="910.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$1.renderResponse (9160 samples, 8.55%)</title><rect x="130.0" y="883.0" width="100.9" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="133.0" y="894.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/WebSocketSupport.renderResponse$ (9160 samples, 8.55%)</title><rect x="130.0" y="867.0" width="100.9" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="133.0" y="878.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/WebSocketSupport.renderResponse (9157 samples, 8.55%)</title><rect x="130.0" y="851.0" width="100.9" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="133.0" y="862.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$anon$1.org$http4s$server$blaze$WebSocketSupport$$super$renderResponse (9140 samples, 8.54%)</title><rect x="130.1" y="835.0" width="100.7" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="133.1" y="846.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.renderResponse (9066 samples, 8.47%)</title><rect x="130.8" y="819.0" width="99.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="133.8" y="830.0">org/http4s/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/async/package$.unsafeRunAsync (1059 samples, 0.99%)</title><rect x="131.3" y="803.0" width="11.7" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="134.3" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunSync (976 samples, 0.91%)</title><rect x="131.3" y="787.0" width="10.8" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="134.3" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunTimed (976 samples, 0.91%)</title><rect x="131.3" y="771.0" width="10.8" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="134.3" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.step (934 samples, 0.87%)</title><rect x="131.8" y="755.0" width="10.3" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="134.8" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (928 samples, 0.87%)</title><rect x="131.9" y="739.0" width="10.2" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="134.9" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$Lambda$2787/1219056276.apply$mcV$sp (928 samples, 0.87%)</title><rect x="131.9" y="723.0" width="10.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="134.9" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.$anonfun$runAsync$1 (928 samples, 0.87%)</title><rect x="131.9" y="707.0" width="10.2" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="134.9" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunAsync (928 samples, 0.87%)</title><rect x="131.9" y="691.0" width="10.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="134.9" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.start (928 samples, 0.87%)</title><rect x="131.9" y="675.0" width="10.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="134.9" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.cats$effect$internals$IORunLoop$$loop (878 samples, 0.82%)</title><rect x="132.4" y="659.0" width="9.7" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="135.4" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$$Lambda$2778/17305586.apply (802 samples, 0.75%)</title><rect x="132.7" y="643.0" width="8.9" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="135.7" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1$adapted (802 samples, 0.75%)</title><rect x="132.7" y="627.0" width="8.9" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="135.7" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1 (782 samples, 0.73%)</title><rect x="133.0" y="611.0" width="8.6" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="136.0" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$$$Lambda$2865/1105386834.apply (777 samples, 0.73%)</title><rect x="133.0" y="595.0" width="8.5" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="136.0" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$.$anonfun$shift$1$adapted (777 samples, 0.73%)</title><rect x="133.0" y="579.0" width="8.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="136.0" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$.$anonfun$shift$1 (777 samples, 0.73%)</title><rect x="133.0" y="563.0" width="8.5" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="136.0" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (777 samples, 0.73%)</title><rect x="133.0" y="547.0" width="8.5" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="136.0" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (777 samples, 0.73%)</title><rect x="133.0" y="531.0" width="8.5" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="136.0" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (777 samples, 0.73%)</title><rect x="133.0" y="515.0" width="8.5" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="136.0" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (776 samples, 0.72%)</title><rect x="133.0" y="499.0" width="8.5" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="136.0" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (526 samples, 0.49%)</title><rect x="135.7" y="483.0" width="5.8" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="138.7" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (462 samples, 0.43%)</title><rect x="136.4" y="467.0" width="5.1" height="15" fill="#d03f3f" rx="2" ry="2"/>
<text x="139.4" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (418 samples, 0.39%)</title><rect x="136.9" y="451.0" width="4.6" height="15" fill="#d74747" rx="2" ry="2"/>
<text x="139.9" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (418 samples, 0.39%)</title><rect x="136.9" y="435.0" width="4.6" height="15" fill="#f77777" rx="2" ry="2"/>
<text x="139.9" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (367 samples, 0.34%)</title><rect x="137.5" y="419.0" width="4.0" height="15" fill="#e35959" rx="2" ry="2"/>
<text x="140.5" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (365 samples, 0.34%)</title><rect x="137.5" y="403.0" width="4.0" height="15" fill="#e15757" rx="2" ry="2"/>
<text x="140.5" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (358 samples, 0.33%)</title><rect x="137.6" y="387.0" width="3.9" height="15" fill="#f67575" rx="2" ry="2"/>
<text x="140.6" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (330 samples, 0.31%)</title><rect x="137.9" y="371.0" width="3.6" height="15" fill="#e35959" rx="2" ry="2"/>
<text x="140.9" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (317 samples, 0.30%)</title><rect x="138.0" y="355.0" width="3.5" height="15" fill="#d84949" rx="2" ry="2"/>
<text x="141.0" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (288 samples, 0.27%)</title><rect x="138.3" y="339.0" width="3.2" height="15" fill="#d14040" rx="2" ry="2"/>
<text x="141.3" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Response.trailerHeaders (93 samples, 0.09%)</title><rect x="143.5" y="803.0" width="1.0" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="146.5" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Message.trailerHeaders$ (93 samples, 0.09%)</title><rect x="143.5" y="787.0" width="1.0" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="146.5" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Message.trailerHeaders (93 samples, 0.09%)</title><rect x="143.5" y="771.0" width="1.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="146.5" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (93 samples, 0.09%)</title><rect x="143.5" y="755.0" width="1.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="146.5" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Message$$Lambda$3326/1394195690.apply (93 samples, 0.09%)</title><rect x="143.5" y="739.0" width="1.0" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="146.5" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Message.$anonfun$trailerHeaders$1 (93 samples, 0.09%)</title><rect x="143.5" y="723.0" width="1.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="146.5" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.pure (93 samples, 0.09%)</title><rect x="143.5" y="707.0" width="1.0" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="146.5" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.pure (93 samples, 0.09%)</title><rect x="143.5" y="691.0" width="1.0" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="146.5" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.pure (93 samples, 0.09%)</title><rect x="143.5" y="675.0" width="1.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="146.5" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$Pure.&lt;init&gt; (93 samples, 0.09%)</title><rect x="143.5" y="659.0" width="1.0" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="146.5" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/Http1Stage$.encodeHeaders (3822 samples, 3.57%)</title><rect x="144.5" y="803.0" width="42.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="147.5" y="814.0">org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.foreach (641 samples, 0.60%)</title><rect x="144.5" y="787.0" width="7.1" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="147.5" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (641 samples, 0.60%)</title><rect x="144.5" y="771.0" width="7.1" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="147.5" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/Http1Stage$$$Lambda$3291/1688768692.apply (629 samples, 0.59%)</title><rect x="144.7" y="755.0" width="6.9" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="147.7" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/Http1Stage$.$anonfun$encodeHeaders$1 (605 samples, 0.57%)</title><rect x="144.9" y="739.0" width="6.7" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="147.9" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/CaseInsensitiveString.equals (222 samples, 0.21%)</title><rect x="145.0" y="723.0" width="2.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="148.0" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.equalsIgnoreCase (222 samples, 0.21%)</title><rect x="145.0" y="707.0" width="2.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="148.0" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.regionMatches (222 samples, 0.21%)</title><rect x="145.0" y="691.0" width="2.4" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="148.0" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character.toUpperCase (222 samples, 0.21%)</title><rect x="145.0" y="675.0" width="2.4" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="148.0" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character.toUpperCase (222 samples, 0.21%)</title><rect x="145.0" y="659.0" width="2.4" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="148.0" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/CharacterDataLatin1.toUpperCase (222 samples, 0.21%)</title><rect x="145.0" y="643.0" width="2.4" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="148.0" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.$less$less (377 samples, 0.35%)</title><rect x="147.4" y="723.0" width="4.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="150.4" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less$ (377 samples, 0.35%)</title><rect x="147.4" y="707.0" width="4.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="150.4" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less (377 samples, 0.35%)</title><rect x="147.4" y="691.0" width="4.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="150.4" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (377 samples, 0.35%)</title><rect x="147.4" y="675.0" width="4.2" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="150.4" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append$ (336 samples, 0.31%)</title><rect x="147.9" y="659.0" width="3.7" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="150.9" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append (336 samples, 0.31%)</title><rect x="147.9" y="643.0" width="3.7" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="150.9" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderable$$anon$5.render (334 samples, 0.31%)</title><rect x="147.9" y="627.0" width="3.7" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="150.9" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderable$$anon$5.render (226 samples, 0.21%)</title><rect x="149.1" y="611.0" width="2.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="152.1" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Content$minusType.render (226 samples, 0.21%)</title><rect x="149.1" y="595.0" width="2.5" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="152.1" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header.render$ (226 samples, 0.21%)</title><rect x="149.1" y="579.0" width="2.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="152.1" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header.render (226 samples, 0.21%)</title><rect x="149.1" y="563.0" width="2.5" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="152.1" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Content$minusType.renderValue (160 samples, 0.15%)</title><rect x="149.1" y="547.0" width="1.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="152.1" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/MediaType.render (160 samples, 0.15%)</title><rect x="149.1" y="531.0" width="1.7" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="152.1" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.$less$less (156 samples, 0.15%)</title><rect x="149.1" y="515.0" width="1.7" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="152.1" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less$ (156 samples, 0.15%)</title><rect x="149.1" y="499.0" width="1.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="152.1" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less (156 samples, 0.15%)</title><rect x="149.1" y="483.0" width="1.7" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="152.1" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (156 samples, 0.15%)</title><rect x="149.1" y="467.0" width="1.7" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="152.1" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (156 samples, 0.15%)</title><rect x="149.1" y="451.0" width="1.7" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="152.1" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder.append (156 samples, 0.15%)</title><rect x="149.1" y="435.0" width="1.7" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="152.1" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder.append (98 samples, 0.09%)</title><rect x="149.6" y="419.0" width="1.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="152.6" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.$less$less (3181 samples, 2.97%)</title><rect x="151.6" y="787.0" width="35.0" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="154.6" y="798.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less$ (3181 samples, 2.97%)</title><rect x="151.6" y="771.0" width="35.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="154.6" y="782.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less (3181 samples, 2.97%)</title><rect x="151.6" y="755.0" width="35.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="154.6" y="766.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (3181 samples, 2.97%)</title><rect x="151.6" y="739.0" width="35.0" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="154.6" y="750.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append$ (3181 samples, 2.97%)</title><rect x="151.6" y="723.0" width="35.0" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="154.6" y="734.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append (3181 samples, 2.97%)</title><rect x="151.6" y="707.0" width="35.0" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="154.6" y="718.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderer$$anon$1.render (3028 samples, 2.83%)</title><rect x="151.9" y="691.0" width="33.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="154.9" y="702.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderer$$anon$1.render (3028 samples, 2.83%)</title><rect x="151.9" y="675.0" width="33.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="154.9" y="686.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.format (2979 samples, 2.78%)</title><rect x="151.9" y="659.0" width="32.8" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="154.9" y="670.0">ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder.&lt;init&gt; (292 samples, 0.27%)</title><rect x="151.9" y="643.0" width="3.2" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="154.9" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.formatTo (2641 samples, 2.47%)</title><rect x="155.6" y="643.0" width="29.1" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="158.6" y="654.0">ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.format (2291 samples, 2.14%)</title><rect x="155.8" y="627.0" width="25.3" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="158.8" y="638.0">j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (389 samples, 0.36%)</title><rect x="156.4" y="611.0" width="4.3" height="15" fill="#fe8080" rx="2" ry="2"/>
<text x="159.4" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser.format (95 samples, 0.09%)</title><rect x="160.7" y="611.0" width="1.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="163.7" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatterBuilder$NumberPrinterParser.format (794 samples, 0.74%)</title><rect x="161.8" y="611.0" width="8.7" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="164.8" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimePrintContext.getValue (251 samples, 0.23%)</title><rect x="167.7" y="595.0" width="2.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="170.7" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/ZonedDateTime.getLong (251 samples, 0.23%)</title><rect x="167.7" y="579.0" width="2.8" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="170.7" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDateTime.getLong (116 samples, 0.11%)</title><rect x="167.7" y="563.0" width="1.3" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="170.7" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.getLong (116 samples, 0.11%)</title><rect x="167.7" y="547.0" width="1.3" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="170.7" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.get0 (116 samples, 0.11%)</title><rect x="167.7" y="531.0" width="1.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="170.7" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/chrono/ChronoZonedDateTime.toEpochSecond (135 samples, 0.13%)</title><rect x="169.0" y="563.0" width="1.5" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="172.0" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.toEpochDay (135 samples, 0.13%)</title><rect x="169.0" y="547.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="172.0" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.isLeapYear (135 samples, 0.13%)</title><rect x="169.0" y="531.0" width="1.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="172.0" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/chrono/IsoChronology.isLeapYear (135 samples, 0.13%)</title><rect x="169.0" y="515.0" width="1.5" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="172.0" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatterBuilder$TextPrinterParser.format (740 samples, 0.69%)</title><rect x="170.5" y="611.0" width="8.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="173.5" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimePrintContext.getValue (188 samples, 0.18%)</title><rect x="172.2" y="595.0" width="2.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="175.2" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/ZonedDateTime.getLong (185 samples, 0.17%)</title><rect x="172.3" y="579.0" width="2.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="175.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDateTime.getLong (136 samples, 0.13%)</title><rect x="172.3" y="563.0" width="1.5" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="175.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.getLong (136 samples, 0.13%)</title><rect x="172.3" y="547.0" width="1.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="175.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.get0 (136 samples, 0.13%)</title><rect x="172.3" y="531.0" width="1.5" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="175.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeTextProvider.getText (395 samples, 0.37%)</title><rect x="174.3" y="595.0" width="4.4" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="177.3" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeTextProvider$LocaleStore.getText (178 samples, 0.17%)</title><rect x="174.3" y="579.0" width="2.0" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="177.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.get (178 samples, 0.17%)</title><rect x="174.3" y="563.0" width="2.0" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="177.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.getNode (159 samples, 0.15%)</title><rect x="174.3" y="547.0" width="1.8" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="177.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeTextProvider.findStore (217 samples, 0.20%)</title><rect x="176.3" y="579.0" width="2.4" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="179.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap.get (217 samples, 0.20%)</title><rect x="176.3" y="563.0" width="2.4" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="179.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatterBuilder$ZoneTextPrinterParser.format (217 samples, 0.20%)</title><rect x="178.7" y="611.0" width="2.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="181.7" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatterBuilder$ZoneTextPrinterParser.getDisplayName (128 samples, 0.12%)</title><rect x="179.6" y="595.0" width="1.5" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="182.6" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap.get (128 samples, 0.12%)</title><rect x="179.6" y="579.0" width="1.5" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="182.6" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimePrintContext.&lt;init&gt; (327 samples, 0.31%)</title><rect x="181.1" y="627.0" width="3.6" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="184.1" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimePrintContext.adjust (294 samples, 0.27%)</title><rect x="181.4" y="611.0" width="3.3" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="184.4" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/chrono/IsoChronology.zonedDateTime (249 samples, 0.23%)</title><rect x="181.9" y="595.0" width="2.8" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="184.9" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/chrono/IsoChronology.zonedDateTime (249 samples, 0.23%)</title><rect x="181.9" y="579.0" width="2.8" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="184.9" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/ZonedDateTime.ofInstant (249 samples, 0.23%)</title><rect x="181.9" y="563.0" width="2.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="184.9" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/ZonedDateTime.create (212 samples, 0.20%)</title><rect x="182.3" y="547.0" width="2.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="185.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDateTime.ofEpochSecond (212 samples, 0.20%)</title><rect x="182.3" y="531.0" width="2.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="185.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/LocalDate.ofEpochDay (212 samples, 0.20%)</title><rect x="182.3" y="515.0" width="2.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="185.3" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (124 samples, 0.12%)</title><rect x="185.3" y="691.0" width="1.3" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="188.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (124 samples, 0.12%)</title><rect x="185.3" y="675.0" width="1.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="188.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder.append (124 samples, 0.12%)</title><rect x="185.3" y="659.0" width="1.3" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="188.3" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder.append (124 samples, 0.12%)</title><rect x="185.3" y="643.0" width="1.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="188.3" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.write (99 samples, 0.09%)</title><rect x="186.6" y="803.0" width="1.1" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="189.6" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer.write$ (99 samples, 0.09%)</title><rect x="186.6" y="787.0" width="1.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="189.6" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer.write (99 samples, 0.09%)</title><rect x="186.6" y="771.0" width="1.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="189.6" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Connection$.from (257 samples, 0.24%)</title><rect x="187.7" y="803.0" width="2.9" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="190.7" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.from$ (257 samples, 0.24%)</title><rect x="187.7" y="787.0" width="2.9" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="190.7" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.from (257 samples, 0.24%)</title><rect x="187.7" y="771.0" width="2.9" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="190.7" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.start$1 (257 samples, 0.24%)</title><rect x="187.7" y="755.0" width="2.9" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="190.7" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.tail (183 samples, 0.17%)</title><rect x="188.5" y="739.0" width="2.0" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="191.5" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.tail$ (183 samples, 0.17%)</title><rect x="188.5" y="723.0" width="2.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="191.5" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.tail (183 samples, 0.17%)</title><rect x="188.5" y="707.0" width="2.0" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="191.5" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.drop (183 samples, 0.17%)</title><rect x="188.5" y="691.0" width="2.0" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="191.5" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.drop (183 samples, 0.17%)</title><rect x="188.5" y="675.0" width="2.0" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="191.5" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.&lt;init&gt; (142 samples, 0.13%)</title><rect x="188.5" y="659.0" width="1.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="191.5" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Content$minusLength$.from (160 samples, 0.15%)</title><rect x="190.6" y="803.0" width="1.7" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="193.6" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Singleton.from$ (160 samples, 0.15%)</title><rect x="190.6" y="787.0" width="1.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="193.6" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Singleton.from (160 samples, 0.15%)</title><rect x="190.6" y="771.0" width="1.7" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="193.6" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.collectFirst (160 samples, 0.15%)</title><rect x="190.6" y="755.0" width="1.7" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="193.6" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.collectFirst$ (160 samples, 0.15%)</title><rect x="190.6" y="739.0" width="1.7" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="193.6" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.collectFirst (160 samples, 0.15%)</title><rect x="190.6" y="723.0" width="1.7" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="193.6" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/PartialFunction$Unlifted.applyOrElse (102 samples, 0.10%)</title><rect x="191.2" y="707.0" width="1.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="194.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Singleton$$Lambda$3297/935312286.apply (102 samples, 0.10%)</title><rect x="191.2" y="691.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="194.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Transfer$minusEncoding$.from (716 samples, 0.67%)</title><rect x="192.3" y="803.0" width="7.9" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="195.3" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.from$ (716 samples, 0.67%)</title><rect x="192.3" y="787.0" width="7.9" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="195.3" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.from (716 samples, 0.67%)</title><rect x="192.3" y="771.0" width="7.9" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="195.3" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.start$1 (716 samples, 0.67%)</title><rect x="192.3" y="755.0" width="7.9" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="195.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.tail (532 samples, 0.50%)</title><rect x="194.2" y="739.0" width="5.9" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="197.2" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.tail$ (532 samples, 0.50%)</title><rect x="194.2" y="723.0" width="5.9" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="197.2" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.tail (532 samples, 0.50%)</title><rect x="194.2" y="707.0" width="5.9" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="197.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.drop (532 samples, 0.50%)</title><rect x="194.2" y="691.0" width="5.9" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="197.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.drop (532 samples, 0.50%)</title><rect x="194.2" y="675.0" width="5.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="197.2" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Headers.&lt;init&gt; (400 samples, 0.37%)</title><rect x="194.2" y="659.0" width="4.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="197.2" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.drop (132 samples, 0.12%)</title><rect x="198.6" y="659.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="201.6" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.getEncoder (455 samples, 0.42%)</title><rect x="200.2" y="803.0" width="5.0" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="203.2" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/Http1Stage.getEncoder$ (455 samples, 0.42%)</title><rect x="200.2" y="787.0" width="5.0" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="203.2" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/Http1Stage.getEncoder (437 samples, 0.41%)</title><rect x="200.3" y="771.0" width="4.8" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="203.3" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.&lt;init&gt; (261 samples, 0.24%)</title><rect x="200.3" y="755.0" width="2.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="203.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/slf4j/LoggerFactory.getLogger (261 samples, 0.24%)</title><rect x="200.3" y="739.0" width="2.9" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="203.3" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/classic/LoggerContext.getLogger (140 samples, 0.13%)</title><rect x="200.3" y="723.0" width="1.6" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="203.3" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/slf4j/LoggerFactory.getILoggerFactory (121 samples, 0.11%)</title><rect x="201.9" y="723.0" width="1.3" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="204.9" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.$less$less (173 samples, 0.16%)</title><rect x="203.2" y="755.0" width="1.9" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="206.2" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less$ (173 samples, 0.16%)</title><rect x="203.2" y="739.0" width="1.9" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="206.2" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less (173 samples, 0.16%)</title><rect x="203.2" y="723.0" width="1.9" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="206.2" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (173 samples, 0.16%)</title><rect x="203.2" y="707.0" width="1.9" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="206.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append$ (173 samples, 0.16%)</title><rect x="203.2" y="691.0" width="1.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="206.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append (173 samples, 0.16%)</title><rect x="203.2" y="675.0" width="1.9" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="206.2" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderable$$anon$5.render (119 samples, 0.11%)</title><rect x="203.2" y="659.0" width="1.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="206.2" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderable$$anon$5.render (119 samples, 0.11%)</title><rect x="203.2" y="643.0" width="1.3" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="206.2" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Content$minusLength.render (119 samples, 0.11%)</title><rect x="203.2" y="627.0" width="1.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="206.2" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header.render$ (119 samples, 0.11%)</title><rect x="203.2" y="611.0" width="1.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="206.2" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header.render (117 samples, 0.11%)</title><rect x="203.2" y="595.0" width="1.3" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="206.2" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.$less$less (311 samples, 0.29%)</title><rect x="205.2" y="803.0" width="3.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="208.2" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less$ (311 samples, 0.29%)</title><rect x="205.2" y="787.0" width="3.5" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="208.2" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less (311 samples, 0.29%)</title><rect x="205.2" y="771.0" width="3.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="208.2" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (311 samples, 0.29%)</title><rect x="205.2" y="755.0" width="3.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="208.2" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append$ (259 samples, 0.24%)</title><rect x="205.8" y="739.0" width="2.9" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="208.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.append (259 samples, 0.24%)</title><rect x="205.8" y="723.0" width="2.9" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="208.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderable$$anon$5.render (151 samples, 0.14%)</title><rect x="205.8" y="707.0" width="1.7" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="208.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderable$$anon$5.render (151 samples, 0.14%)</title><rect x="205.8" y="691.0" width="1.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="208.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HttpVersion.render (151 samples, 0.14%)</title><rect x="205.8" y="675.0" width="1.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="208.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.$less$less (151 samples, 0.14%)</title><rect x="205.8" y="659.0" width="1.7" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="208.8" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less$ (151 samples, 0.14%)</title><rect x="205.8" y="643.0" width="1.7" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="208.8" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Writer.$less$less (151 samples, 0.14%)</title><rect x="205.8" y="627.0" width="1.7" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="208.8" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (151 samples, 0.14%)</title><rect x="205.8" y="611.0" width="1.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="208.8" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter.append (151 samples, 0.14%)</title><rect x="205.8" y="595.0" width="1.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="208.8" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder.append (151 samples, 0.14%)</title><rect x="205.8" y="579.0" width="1.7" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="208.8" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderer$$anon$1.render (108 samples, 0.10%)</title><rect x="207.5" y="707.0" width="1.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="210.5" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/Renderer$$anon$1.render (108 samples, 0.10%)</title><rect x="207.5" y="691.0" width="1.2" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="210.5" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.format (108 samples, 0.10%)</title><rect x="207.5" y="675.0" width="1.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="210.5" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder.&lt;init&gt; (108 samples, 0.10%)</title><rect x="207.5" y="659.0" width="1.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="210.5" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.orElse (1998 samples, 1.87%)</title><rect x="208.7" y="803.0" width="22.0" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="211.7" y="814.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$Lambda$3304/423818079.apply (1998 samples, 1.87%)</title><rect x="208.7" y="787.0" width="22.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="211.7" y="798.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$renderResponse$2 (1998 samples, 1.87%)</title><rect x="208.7" y="771.0" width="22.0" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="211.7" y="782.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/headers/Connection$.from (1998 samples, 1.87%)</title><rect x="208.7" y="755.0" width="22.0" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="211.7" y="766.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.from$ (1998 samples, 1.87%)</title><rect x="208.7" y="739.0" width="22.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="211.7" y="750.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.from (1998 samples, 1.87%)</title><rect x="208.7" y="723.0" width="22.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="211.7" y="734.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Recurring.start$1 (1998 samples, 1.87%)</title><rect x="208.7" y="707.0" width="22.0" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="211.7" y="718.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/HeaderKey$Internal.matchHeader (1806 samples, 1.69%)</title><rect x="209.1" y="691.0" width="19.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="212.1" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header$Raw.parsed (1791 samples, 1.67%)</title><rect x="209.2" y="675.0" width="19.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="212.2" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/HttpHeaderParser$.parseHeader (1791 samples, 1.67%)</title><rect x="209.2" y="659.0" width="19.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="212.2" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap.get (188 samples, 0.18%)</title><rect x="209.2" y="643.0" width="2.1" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="212.2" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/HttpHeaderParser$$$Lambda$3308/1761483984.apply (1603 samples, 1.50%)</title><rect x="211.3" y="643.0" width="17.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="214.3" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/HttpHeaderParser$.$anonfun$gatherBuiltIn$4 (1603 samples, 1.50%)</title><rect x="211.3" y="627.0" width="17.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="214.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Method.invoke (1603 samples, 1.50%)</title><rect x="211.3" y="611.0" width="17.6" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="214.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (1592 samples, 1.49%)</title><rect x="211.4" y="595.0" width="17.5" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="214.4" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor3.invoke (1512 samples, 1.41%)</title><rect x="212.3" y="579.0" width="16.6" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="215.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/HttpHeaderParser$.HOST (1512 samples, 1.41%)</title><rect x="212.3" y="563.0" width="16.6" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="215.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/SimpleHeaders.HOST$ (1512 samples, 1.41%)</title><rect x="212.3" y="547.0" width="16.6" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="215.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/SimpleHeaders.HOST (1512 samples, 1.41%)</title><rect x="212.3" y="531.0" width="16.6" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="215.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.parse (1474 samples, 1.38%)</title><rect x="212.7" y="515.0" width="16.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="215.7" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__run (1366 samples, 1.28%)</title><rect x="213.9" y="499.0" width="15.0" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="216.9" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.phase0_initialRun$1 (1341 samples, 1.25%)</title><rect x="213.9" y="483.0" width="14.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="216.9" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.runRule$1 (1323 samples, 1.24%)</title><rect x="214.1" y="467.0" width="14.6" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="217.1" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser$$Lambda$3313/96628179.apply (1309 samples, 1.22%)</title><rect x="214.2" y="451.0" width="14.5" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="217.2" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.$anonfun$parse$1 (1309 samples, 1.22%)</title><rect x="214.2" y="435.0" width="14.5" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="217.2" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/SimpleHeaders$$anon$1.entry (1248 samples, 1.17%)</title><rect x="214.9" y="419.0" width="13.8" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="217.9" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.EOL (213 samples, 0.20%)</title><rect x="214.9" y="403.0" width="2.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="217.9" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/AdditionalRules.EOL$ (213 samples, 0.20%)</title><rect x="214.9" y="387.0" width="2.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="217.9" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/AdditionalRules.EOL (213 samples, 0.20%)</title><rect x="214.9" y="371.0" width="2.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="217.9" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.OptWS (213 samples, 0.20%)</title><rect x="214.9" y="355.0" width="2.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="217.9" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.OptWS$ (213 samples, 0.20%)</title><rect x="214.9" y="339.0" width="2.4" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="217.9" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.OptWS (213 samples, 0.20%)</title><rect x="214.9" y="323.0" width="2.4" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="217.9" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.rec$4 (213 samples, 0.20%)</title><rect x="214.9" y="307.0" width="2.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="217.9" y="318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.LWS (213 samples, 0.20%)</title><rect x="214.9" y="291.0" width="2.4" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="217.9" y="302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.LWS$ (213 samples, 0.20%)</title><rect x="214.9" y="275.0" width="2.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="217.9" y="286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.LWS (213 samples, 0.20%)</title><rect x="214.9" y="259.0" width="2.4" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="217.9" y="270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.OptWS (175 samples, 0.16%)</title><rect x="217.3" y="403.0" width="1.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="220.3" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.OptWS$ (175 samples, 0.16%)</title><rect x="217.3" y="387.0" width="1.9" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="220.3" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.OptWS (175 samples, 0.16%)</title><rect x="217.3" y="371.0" width="1.9" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="220.3" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.rec$4 (175 samples, 0.16%)</title><rect x="217.3" y="355.0" width="1.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="220.3" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.LWS (175 samples, 0.16%)</title><rect x="217.3" y="339.0" width="1.9" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="220.3" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.LWS$ (175 samples, 0.16%)</title><rect x="217.3" y="323.0" width="1.9" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="220.3" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.LWS (175 samples, 0.16%)</title><rect x="217.3" y="307.0" width="1.9" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="220.3" y="318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.CRLF (139 samples, 0.13%)</title><rect x="217.3" y="291.0" width="1.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="220.3" y="302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.CRLF$ (139 samples, 0.13%)</title><rect x="217.3" y="275.0" width="1.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="220.3" y="286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.CRLF (139 samples, 0.13%)</title><rect x="217.3" y="259.0" width="1.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="220.3" y="270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.Token (676 samples, 0.63%)</title><rect x="219.2" y="403.0" width="7.4" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="222.2" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.Token$ (676 samples, 0.63%)</title><rect x="219.2" y="387.0" width="7.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="222.2" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.Token (676 samples, 0.63%)</title><rect x="219.2" y="371.0" width="7.4" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="222.2" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.rec$8 (676 samples, 0.63%)</title><rect x="219.2" y="355.0" width="7.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="222.2" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__exitNotPredicate (291 samples, 0.27%)</title><rect x="221.7" y="339.0" width="3.3" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="224.7" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.Separator (152 samples, 0.14%)</title><rect x="225.0" y="339.0" width="1.6" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="228.0" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.Separator$ (152 samples, 0.14%)</title><rect x="225.0" y="323.0" width="1.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="228.0" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.Separator (152 samples, 0.14%)</title><rect x="225.0" y="307.0" width="1.6" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="228.0" y="318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__matchAnyOf (152 samples, 0.14%)</title><rect x="225.0" y="291.0" width="1.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="228.0" y="302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__advance (152 samples, 0.14%)</title><rect x="225.0" y="275.0" width="1.6" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="228.0" y="286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/RuleDSL.EOI (96 samples, 0.09%)</title><rect x="225.6" y="259.0" width="1.0" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="228.6" y="270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/SimpleHeaders$$anon$1.rec$8 (184 samples, 0.17%)</title><rect x="226.6" y="403.0" width="2.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="229.6" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Http4sHeaderParser.Digit (164 samples, 0.15%)</title><rect x="226.9" y="387.0" width="1.8" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="229.9" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.Digit$ (164 samples, 0.15%)</title><rect x="226.9" y="371.0" width="1.8" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="229.9" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc2616BasicRules.Digit (164 samples, 0.15%)</title><rect x="226.9" y="355.0" width="1.8" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="229.9" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__advance (164 samples, 0.15%)</title><rect x="226.9" y="339.0" width="1.8" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="229.9" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/ParserInput$StringBasedParserInput.charAt (164 samples, 0.15%)</title><rect x="226.9" y="323.0" width="1.8" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="229.9" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.charAt (164 samples, 0.15%)</title><rect x="226.9" y="307.0" width="1.8" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="229.9" y="318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (34516 samples, 32.23%)</title><rect x="231.4" y="1091.0" width="380.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="234.4" y="1102.0">scala/concurrent/impl/CallbackRunnable.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (106 samples, 0.10%)</title><rect x="231.7" y="1075.0" width="1.1" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="234.7" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$$$Lambda$3341/848379108.apply (33658 samples, 31.43%)</title><rect x="232.8" y="1075.0" width="371.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="235.8" y="1086.0">org/http4s/syntax/AsyncOps$$$Lambda$3341/848379108..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$2$adapted (33577 samples, 31.36%)</title><rect x="233.7" y="1059.0" width="370.1" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="236.7" y="1070.0">org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$2$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$2 (33577 samples, 31.36%)</title><rect x="233.7" y="1043.0" width="370.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="236.7" y="1054.0">org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/Callback$AsyncIdempotentCallback.apply (33473 samples, 31.26%)</title><rect x="234.4" y="1027.0" width="368.9" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="237.4" y="1038.0">cats/effect/internals/Callback$AsyncIdempotentCall..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/Callback$AsyncIdempotentCallback.apply (33473 samples, 31.26%)</title><rect x="234.4" y="1011.0" width="368.9" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="237.4" y="1022.0">cats/effect/internals/Callback$AsyncIdempotentCall..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC.execute (33473 samples, 31.26%)</title><rect x="234.4" y="995.0" width="368.9" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="237.4" y="1006.0">cats/effect/internals/TrampolineEC.execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/BlockContext$.withBlockContext (33313 samples, 31.11%)</title><rect x="236.2" y="979.0" width="367.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="239.2" y="990.0">scala/concurrent/BlockContext$.withBlockContext</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (33041 samples, 30.86%)</title><rect x="239.2" y="963.0" width="364.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="242.2" y="974.0">scala/runtime/java8/JFunction0$mcV$sp.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC$$Lambda$2871/1081405681.apply$mcV$sp (33041 samples, 30.86%)</title><rect x="239.2" y="947.0" width="364.1" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="242.2" y="958.0">cats/effect/internals/TrampolineEC$$Lambda$2871/10..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC.$anonfun$execute$1 (33041 samples, 30.86%)</title><rect x="239.2" y="931.0" width="364.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="242.2" y="942.0">cats/effect/internals/TrampolineEC.$anonfun$execut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/TrampolineEC.cats$effect$internals$TrampolineEC$$localRunLoop (33041 samples, 30.86%)</title><rect x="239.2" y="915.0" width="364.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="242.2" y="926.0">cats/effect/internals/TrampolineEC.cats$effect$int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/Callback$AsyncIdempotentCallback$$anon$3.run (33041 samples, 30.86%)</title><rect x="239.2" y="899.0" width="364.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="242.2" y="910.0">cats/effect/internals/Callback$AsyncIdempotentCall..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$RestartCallback.apply (33041 samples, 30.86%)</title><rect x="239.2" y="883.0" width="364.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="242.2" y="894.0">cats/effect/internals/IORunLoop$RestartCallback.ap..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$RestartCallback.apply (33041 samples, 30.86%)</title><rect x="239.2" y="867.0" width="364.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="242.2" y="878.0">cats/effect/internals/IORunLoop$RestartCallback.ap..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.cats$effect$internals$IORunLoop$$loop (32765 samples, 30.60%)</title><rect x="242.2" y="851.0" width="361.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="245.2" y="862.0">cats/effect/internals/IORunLoop$.cats$effect$inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$$Lambda$2778/17305586.apply (5914 samples, 5.52%)</title><rect x="249.8" y="835.0" width="65.1" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="252.8" y="846.0">cats/ef..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1$adapted (5914 samples, 5.52%)</title><rect x="249.8" y="819.0" width="65.1" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="252.8" y="830.0">cats/ef..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.$anonfun$async$1 (5763 samples, 5.38%)</title><rect x="251.4" y="803.0" width="63.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="254.4" y="814.0">cats/ef..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$$$Lambda$2865/1105386834.apply (121 samples, 0.11%)</title><rect x="251.4" y="787.0" width="1.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="254.4" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$.$anonfun$shift$1$adapted (121 samples, 0.11%)</title><rect x="251.4" y="771.0" width="1.4" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="254.4" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/Async$.$anonfun$shift$1 (121 samples, 0.11%)</title><rect x="251.4" y="755.0" width="1.4" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="254.4" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (121 samples, 0.11%)</title><rect x="251.4" y="739.0" width="1.4" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="254.4" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (121 samples, 0.11%)</title><rect x="251.4" y="723.0" width="1.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="254.4" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (121 samples, 0.11%)</title><rect x="251.4" y="707.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="254.4" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (121 samples, 0.11%)</title><rect x="251.4" y="691.0" width="1.4" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="254.4" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$$$Lambda$3334/869955982.apply (5635 samples, 5.26%)</title><rect x="252.8" y="787.0" width="62.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="255.8" y="798.0">org/ht..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$1$adapted (5635 samples, 5.26%)</title><rect x="252.8" y="771.0" width="62.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="255.8" y="782.0">org/ht..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.$anonfun$fromFuture$1 (5635 samples, 5.26%)</title><rect x="252.8" y="755.0" width="62.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="255.8" y="766.0">org/ht..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Always.value (5037 samples, 4.70%)</title><rect x="253.0" y="739.0" width="55.5" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="256.0" y="750.0">cats/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter$$Lambda$3365/588193547.apply (2592 samples, 2.42%)</title><rect x="253.0" y="723.0" width="28.6" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="256.0" y="734.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.$anonfun$writeEntityBody$1 (2592 samples, 2.42%)</title><rect x="253.0" y="707.0" width="28.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="256.0" y="718.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.writeEnd (2592 samples, 2.42%)</title><rect x="253.0" y="691.0" width="28.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="256.0" y="702.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.writeBodyChunk (2395 samples, 2.24%)</title><rect x="253.0" y="675.0" width="26.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="256.0" y="686.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.channelWrite (2361 samples, 2.20%)</title><rect x="253.4" y="659.0" width="26.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="256.4" y="670.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite$ (2361 samples, 2.20%)</title><rect x="253.4" y="643.0" width="26.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="256.4" y="654.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite (2361 samples, 2.20%)</title><rect x="253.4" y="627.0" width="26.0" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="256.4" y="638.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.writeRequest (2288 samples, 2.14%)</title><rect x="254.1" y="611.0" width="25.2" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="257.1" y="622.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/TimeoutStageBase.channelWrite (2094 samples, 1.96%)</title><rect x="254.4" y="595.0" width="23.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="257.4" y="606.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite$ (2094 samples, 1.96%)</title><rect x="254.4" y="579.0" width="23.0" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="257.4" y="590.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite (2094 samples, 1.96%)</title><rect x="254.4" y="563.0" width="23.0" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="257.4" y="574.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.writeRequest (2051 samples, 1.92%)</title><rect x="254.4" y="547.0" width="22.6" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="257.4" y="558.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.writeRequest (2051 samples, 1.92%)</title><rect x="254.4" y="531.0" width="22.6" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="257.4" y="542.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.writeRequest (2040 samples, 1.91%)</title><rect x="254.4" y="515.0" width="22.4" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="257.4" y="526.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.executeTask (1974 samples, 1.84%)</title><rect x="255.1" y="499.0" width="21.7" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="258.1" y="510.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.enqueueTask (1974 samples, 1.84%)</title><rect x="255.1" y="483.0" width="21.7" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="258.1" y="494.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl.wakeup (1911 samples, 1.78%)</title><rect x="255.8" y="467.0" width="21.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="258.8" y="478.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.interrupt (1911 samples, 1.78%)</title><rect x="255.8" y="451.0" width="21.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="258.8" y="462.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.interrupt (1828 samples, 1.71%)</title><rect x="256.7" y="435.0" width="20.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="259.7" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1780 samples, 1.66%)</title><rect x="257.1" y="419.0" width="19.6" height="15" fill="#fc7d7d" rx="2" ry="2"/>
<text x="260.1" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__write (1758 samples, 1.64%)</title><rect x="257.4" y="403.0" width="19.3" height="15" fill="#e15757" rx="2" ry="2"/>
<text x="260.4" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1658 samples, 1.55%)</title><rect x="258.5" y="387.0" width="18.2" height="15" fill="#f87878" rx="2" ry="2"/>
<text x="261.5" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1658 samples, 1.55%)</title><rect x="258.5" y="371.0" width="18.2" height="15" fill="#fd7f7f" rx="2" ry="2"/>
<text x="261.5" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1511 samples, 1.41%)</title><rect x="260.1" y="355.0" width="16.6" height="15" fill="#d24040" rx="2" ry="2"/>
<text x="263.1" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1498 samples, 1.40%)</title><rect x="260.2" y="339.0" width="16.5" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="263.2" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1442 samples, 1.35%)</title><rect x="260.8" y="323.0" width="15.9" height="15" fill="#f27070" rx="2" ry="2"/>
<text x="263.8" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1401 samples, 1.31%)</title><rect x="261.3" y="307.0" width="15.4" height="15" fill="#f26f6f" rx="2" ry="2"/>
<text x="264.3" y="318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1309 samples, 1.22%)</title><rect x="262.3" y="291.0" width="14.4" height="15" fill="#f97a7a" rx="2" ry="2"/>
<text x="265.3" y="302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1250 samples, 1.17%)</title><rect x="263.0" y="275.0" width="13.7" height="15" fill="#d64646" rx="2" ry="2"/>
<text x="266.0" y="286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1078 samples, 1.01%)</title><rect x="264.9" y="259.0" width="11.8" height="15" fill="#f16e6e" rx="2" ry="2"/>
<text x="267.9" y="270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1019 samples, 0.95%)</title><rect x="265.5" y="243.0" width="11.2" height="15" fill="#fc7f7f" rx="2" ry="2"/>
<text x="268.5" y="254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.onComplete (172 samples, 0.16%)</title><rect x="277.4" y="595.0" width="1.9" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="280.4" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.map (197 samples, 0.18%)</title><rect x="279.4" y="675.0" width="2.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="282.4" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/Future.map$ (197 samples, 0.18%)</title><rect x="279.4" y="659.0" width="2.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="282.4" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/Future.map (197 samples, 0.18%)</title><rect x="279.4" y="643.0" width="2.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="282.4" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.transform (197 samples, 0.18%)</title><rect x="279.4" y="627.0" width="2.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="282.4" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise.transform$ (197 samples, 0.18%)</title><rect x="279.4" y="611.0" width="2.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="282.4" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise.transform (197 samples, 0.18%)</title><rect x="279.4" y="595.0" width="2.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="282.4" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.onComplete (164 samples, 0.15%)</title><rect x="279.8" y="579.0" width="1.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="282.8" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.dispatchOrAddCallback (121 samples, 0.11%)</title><rect x="280.3" y="563.0" width="1.3" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="283.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter$$Lambda$3375/994357246.apply (2439 samples, 2.28%)</title><rect x="281.6" y="723.0" width="26.9" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="284.6" y="734.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.$anonfun$writeSink$3 (2439 samples, 2.28%)</title><rect x="281.6" y="707.0" width="26.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="284.6" y="718.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.writeBodyChunk (2436 samples, 2.27%)</title><rect x="281.6" y="691.0" width="26.9" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="284.6" y="702.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.channelWrite (2388 samples, 2.23%)</title><rect x="282.1" y="675.0" width="26.4" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="285.1" y="686.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite$ (2388 samples, 2.23%)</title><rect x="282.1" y="659.0" width="26.4" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="285.1" y="670.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite (2388 samples, 2.23%)</title><rect x="282.1" y="643.0" width="26.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="285.1" y="654.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.writeRequest (2312 samples, 2.16%)</title><rect x="282.8" y="627.0" width="25.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="285.8" y="638.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/TimeoutStageBase.channelWrite (2057 samples, 1.92%)</title><rect x="282.8" y="611.0" width="22.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="285.8" y="622.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite$ (2057 samples, 1.92%)</title><rect x="282.8" y="595.0" width="22.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="285.8" y="606.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelWrite (2057 samples, 1.92%)</title><rect x="282.8" y="579.0" width="22.7" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="285.8" y="590.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.writeRequest (1983 samples, 1.85%)</title><rect x="282.8" y="563.0" width="21.9" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="285.8" y="574.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.executeTask (1829 samples, 1.71%)</title><rect x="283.6" y="547.0" width="20.1" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="286.6" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.enqueueTask (1829 samples, 1.71%)</title><rect x="283.6" y="531.0" width="20.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="286.6" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl.wakeup (1627 samples, 1.52%)</title><rect x="285.8" y="515.0" width="17.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="288.8" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.interrupt (1611 samples, 1.50%)</title><rect x="286.0" y="499.0" width="17.7" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="289.0" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.interrupt (1548 samples, 1.45%)</title><rect x="286.7" y="483.0" width="17.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="289.7" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1525 samples, 1.42%)</title><rect x="286.8" y="467.0" width="16.8" height="15" fill="#da4d4d" rx="2" ry="2"/>
<text x="289.8" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__write (1504 samples, 1.40%)</title><rect x="287.0" y="451.0" width="16.6" height="15" fill="#c83232" rx="2" ry="2"/>
<text x="290.0" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1427 samples, 1.33%)</title><rect x="287.9" y="435.0" width="15.7" height="15" fill="#fa7b7b" rx="2" ry="2"/>
<text x="290.9" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1427 samples, 1.33%)</title><rect x="287.9" y="419.0" width="15.7" height="15" fill="#e96262" rx="2" ry="2"/>
<text x="290.9" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1274 samples, 1.19%)</title><rect x="289.6" y="403.0" width="14.0" height="15" fill="#f26f6f" rx="2" ry="2"/>
<text x="292.6" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1260 samples, 1.18%)</title><rect x="289.7" y="387.0" width="13.9" height="15" fill="#f87878" rx="2" ry="2"/>
<text x="292.7" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1214 samples, 1.13%)</title><rect x="290.2" y="371.0" width="13.4" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="293.2" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1179 samples, 1.10%)</title><rect x="290.6" y="355.0" width="13.0" height="15" fill="#d13f3f" rx="2" ry="2"/>
<text x="293.6" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1089 samples, 1.02%)</title><rect x="291.6" y="339.0" width="12.0" height="15" fill="#e05555" rx="2" ry="2"/>
<text x="294.6" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1028 samples, 0.96%)</title><rect x="292.3" y="323.0" width="11.3" height="15" fill="#e25959" rx="2" ry="2"/>
<text x="295.3" y="334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (867 samples, 0.81%)</title><rect x="294.1" y="307.0" width="9.5" height="15" fill="#f37171" rx="2" ry="2"/>
<text x="297.1" y="318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (807 samples, 0.75%)</title><rect x="294.7" y="291.0" width="8.9" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="297.7" y="302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.onComplete (255 samples, 0.24%)</title><rect x="305.5" y="611.0" width="2.8" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="308.5" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.dispatchOrAddCallback (191 samples, 0.18%)</title><rect x="306.1" y="595.0" width="2.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="309.1" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.$colon$colon (129 samples, 0.12%)</title><rect x="306.3" y="579.0" width="1.5" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="309.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/$colon$colon.&lt;init&gt; (129 samples, 0.12%)</title><rect x="306.3" y="563.0" width="1.5" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="309.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.&lt;init&gt; (129 samples, 0.12%)</title><rect x="306.3" y="547.0" width="1.5" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="309.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractSeq.&lt;init&gt; (129 samples, 0.12%)</title><rect x="306.3" y="531.0" width="1.5" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="309.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.onComplete (337 samples, 0.31%)</title><rect x="308.5" y="739.0" width="3.7" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="311.5" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.dispatchOrAddCallback (322 samples, 0.30%)</title><rect x="308.7" y="723.0" width="3.5" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="311.7" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.$colon$colon (214 samples, 0.20%)</title><rect x="309.1" y="707.0" width="2.3" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="312.1" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/$colon$colon.&lt;init&gt; (214 samples, 0.20%)</title><rect x="309.1" y="691.0" width="2.3" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="312.1" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.&lt;init&gt; (214 samples, 0.20%)</title><rect x="309.1" y="675.0" width="2.3" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="312.1" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractSeq.&lt;init&gt; (214 samples, 0.20%)</title><rect x="309.1" y="659.0" width="2.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="312.1" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.&lt;init&gt; (214 samples, 0.20%)</title><rect x="309.1" y="643.0" width="2.3" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="312.1" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.&lt;init&gt; (214 samples, 0.20%)</title><rect x="309.1" y="627.0" width="2.3" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="312.1" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Successful.onComplete (249 samples, 0.23%)</title><rect x="312.2" y="739.0" width="2.7" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="315.2" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Kept.onComplete$ (249 samples, 0.23%)</title><rect x="312.2" y="723.0" width="2.7" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="315.2" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Kept.onComplete (249 samples, 0.23%)</title><rect x="312.2" y="707.0" width="2.7" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="315.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (249 samples, 0.23%)</title><rect x="312.2" y="691.0" width="2.7" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="315.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (137 samples, 0.13%)</title><rect x="312.7" y="675.0" width="1.5" height="15" fill="#d34242" rx="2" ry="2"/>
<text x="315.7" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$AttemptIO$.apply (127 samples, 0.12%)</title><rect x="315.2" y="835.0" width="1.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="318.2" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$Map.apply (2669 samples, 2.49%)</title><rect x="316.6" y="835.0" width="29.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="319.6" y="846.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$Map.apply (2570 samples, 2.40%)</title><rect x="317.6" y="819.0" width="28.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="320.6" y="830.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.pure (546 samples, 0.51%)</title><rect x="318.0" y="803.0" width="6.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="321.0" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (266 samples, 0.25%)</title><rect x="319.9" y="787.0" width="2.9" height="15" fill="#fc7d7d" rx="2" ry="2"/>
<text x="322.9" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3458/304415243.apply (310 samples, 0.29%)</title><rect x="324.0" y="803.0" width="3.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="327.0" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$close$12 (310 samples, 0.29%)</title><rect x="324.0" y="787.0" width="3.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="327.0" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.$plus$plus (189 samples, 0.18%)</title><rect x="324.2" y="771.0" width="2.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="327.2" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$plus$plus$ (189 samples, 0.18%)</title><rect x="324.2" y="755.0" width="2.1" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="327.2" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$plus$plus (189 samples, 0.18%)</title><rect x="324.2" y="739.0" width="2.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="327.2" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (108 samples, 0.10%)</title><rect x="325.1" y="723.0" width="1.2" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="328.1" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (108 samples, 0.10%)</title><rect x="325.1" y="707.0" width="1.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="328.1" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (108 samples, 0.10%)</title><rect x="325.1" y="691.0" width="1.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="328.1" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (108 samples, 0.10%)</title><rect x="325.1" y="675.0" width="1.2" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="328.1" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Either$LeftProjection.toSeq (110 samples, 0.10%)</title><rect x="326.3" y="771.0" width="1.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="329.3" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenericCompanion.empty (110 samples, 0.10%)</title><rect x="326.3" y="755.0" width="1.2" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="329.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$2792/2080096099.apply (1674 samples, 1.56%)</title><rect x="327.5" y="803.0" width="18.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="330.5" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$andThen$1 (1674 samples, 1.56%)</title><rect x="327.5" y="787.0" width="18.4" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="330.5" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3432/2139311576.apply (749 samples, 0.70%)</title><rect x="327.9" y="771.0" width="8.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="330.9" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$traverseError$1 (720 samples, 0.67%)</title><rect x="328.3" y="755.0" width="7.9" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="331.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.collect (164 samples, 0.15%)</title><rect x="330.0" y="739.0" width="1.8" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="333.0" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.foldLeft (164 samples, 0.15%)</title><rect x="330.0" y="723.0" width="1.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="333.0" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.foreach (164 samples, 0.15%)</title><rect x="330.0" y="707.0" width="1.8" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="333.0" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.&lt;init&gt; (163 samples, 0.15%)</title><rect x="330.0" y="691.0" width="1.8" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="333.0" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.&lt;init&gt; (163 samples, 0.15%)</title><rect x="330.0" y="675.0" width="1.8" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="333.0" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (163 samples, 0.15%)</title><rect x="330.0" y="659.0" width="1.8" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="333.0" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractSeq.&lt;init&gt; (163 samples, 0.15%)</title><rect x="330.0" y="643.0" width="1.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="333.0" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractSeq.&lt;init&gt; (163 samples, 0.15%)</title><rect x="330.0" y="627.0" width="1.8" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="333.0" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.&lt;init&gt; (163 samples, 0.15%)</title><rect x="330.0" y="611.0" width="1.8" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="333.0" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.toList (397 samples, 0.37%)</title><rect x="331.8" y="739.0" width="4.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="334.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.foreach (397 samples, 0.37%)</title><rect x="331.8" y="723.0" width="4.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="334.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="707.0" width="4.4" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="334.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="691.0" width="4.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="334.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="675.0" width="4.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="334.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractSeq.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="659.0" width="4.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="334.8" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractSeq.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="643.0" width="4.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="334.8" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="627.0" width="4.4" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="334.8" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.&lt;init&gt; (397 samples, 0.37%)</title><rect x="331.8" y="611.0" width="4.4" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="334.8" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3458/304415243.apply (660 samples, 0.62%)</title><rect x="336.8" y="771.0" width="7.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="339.8" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$close$12 (639 samples, 0.60%)</title><rect x="337.0" y="755.0" width="7.0" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="340.0" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.$plus$plus (402 samples, 0.38%)</title><rect x="337.4" y="739.0" width="4.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="340.4" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$plus$plus$ (402 samples, 0.38%)</title><rect x="337.4" y="723.0" width="4.4" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="340.4" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$plus$plus (402 samples, 0.38%)</title><rect x="337.4" y="707.0" width="4.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="340.4" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (152 samples, 0.14%)</title><rect x="337.6" y="691.0" width="1.6" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="340.6" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom.apply (152 samples, 0.14%)</title><rect x="337.6" y="675.0" width="1.6" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="340.6" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.genericBuilder (152 samples, 0.14%)</title><rect x="337.6" y="659.0" width="1.6" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="340.6" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder$ (152 samples, 0.14%)</title><rect x="337.6" y="643.0" width="1.6" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="340.6" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenericTraversableTemplate.genericBuilder (152 samples, 0.14%)</title><rect x="337.6" y="627.0" width="1.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="340.6" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List$.newBuilder (152 samples, 0.14%)</title><rect x="337.6" y="611.0" width="1.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="340.6" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (152 samples, 0.14%)</title><rect x="337.6" y="595.0" width="1.6" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="340.6" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (152 samples, 0.14%)</title><rect x="337.6" y="579.0" width="1.6" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="340.6" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (203 samples, 0.19%)</title><rect x="339.6" y="691.0" width="2.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="342.6" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (203 samples, 0.19%)</title><rect x="339.6" y="675.0" width="2.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="342.6" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (203 samples, 0.19%)</title><rect x="339.6" y="659.0" width="2.2" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="342.6" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (203 samples, 0.19%)</title><rect x="339.6" y="643.0" width="2.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="342.6" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.loop$1 (175 samples, 0.16%)</title><rect x="339.9" y="627.0" width="1.9" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="342.9" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.nonEmpty (126 samples, 0.12%)</title><rect x="340.3" y="611.0" width="1.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="343.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.nonEmpty$ (126 samples, 0.12%)</title><rect x="340.3" y="595.0" width="1.4" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="343.3" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.nonEmpty (126 samples, 0.12%)</title><rect x="340.3" y="579.0" width="1.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="343.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (94 samples, 0.09%)</title><rect x="340.3" y="563.0" width="1.1" height="15" fill="#fa7c7c" rx="2" ry="2"/>
<text x="343.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Either$LeftProjection.toSeq (203 samples, 0.19%)</title><rect x="341.8" y="739.0" width="2.2" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="344.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenericCompanion.empty (203 samples, 0.19%)</title><rect x="341.8" y="723.0" width="2.2" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="344.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Seq$.newBuilder (137 samples, 0.13%)</title><rect x="342.2" y="707.0" width="1.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="345.2" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Seq$.newBuilder (137 samples, 0.13%)</title><rect x="342.2" y="691.0" width="1.5" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="345.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.&lt;init&gt; (128 samples, 0.12%)</title><rect x="342.3" y="675.0" width="1.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="345.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractBuffer.&lt;init&gt; (128 samples, 0.12%)</title><rect x="342.3" y="659.0" width="1.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="345.3" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/AbstractSeq.&lt;init&gt; (128 samples, 0.12%)</title><rect x="342.3" y="643.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="345.3" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractSeq.&lt;init&gt; (128 samples, 0.12%)</title><rect x="342.3" y="627.0" width="1.4" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="345.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.&lt;init&gt; (128 samples, 0.12%)</title><rect x="342.3" y="611.0" width="1.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="345.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (168 samples, 0.16%)</title><rect x="344.0" y="771.0" width="1.9" height="15" fill="#e86060" rx="2" ry="2"/>
<text x="347.0" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.popNextBind (1775 samples, 1.66%)</title><rect x="346.3" y="835.0" width="19.6" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="349.3" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2831/1823819793.apply (128 samples, 0.12%)</title><rect x="358.2" y="819.0" width="1.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="361.2" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (571 samples, 0.53%)</title><rect x="359.6" y="819.0" width="6.3" height="15" fill="#d64747" rx="2" ry="2"/>
<text x="362.6" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/async/Ref$$Lambda$2797/1939691063.apply (696 samples, 0.65%)</title><rect x="365.9" y="835.0" width="7.6" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="368.9" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/async/Ref.$anonfun$modify2$1 (696 samples, 0.65%)</title><rect x="365.9" y="819.0" width="7.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="368.9" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/async/Ref.spin$2 (696 samples, 0.65%)</title><rect x="365.9" y="803.0" width="7.6" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="368.9" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3456/1346270960.apply (588 samples, 0.55%)</title><rect x="367.1" y="787.0" width="6.4" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="370.1" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$releaseChildScope$1 (588 samples, 0.55%)</title><rect x="367.1" y="771.0" width="6.4" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="370.1" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$State.unregisterChild (588 samples, 0.55%)</title><rect x="367.1" y="755.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="370.1" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.deleteFirst (541 samples, 0.51%)</title><rect x="367.1" y="739.0" width="5.9" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="370.1" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.go$1 (541 samples, 0.51%)</title><rect x="367.1" y="723.0" width="5.9" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="370.1" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable.uncons (536 samples, 0.50%)</title><rect x="367.1" y="707.0" width="5.9" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="370.1" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.&lt;init&gt; (195 samples, 0.18%)</title><rect x="368.1" y="691.0" width="2.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="371.1" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.&lt;init&gt; (195 samples, 0.18%)</title><rect x="368.1" y="675.0" width="2.2" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="371.1" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.isEmpty (243 samples, 0.23%)</title><rect x="370.3" y="691.0" width="2.7" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="373.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.isEmpty$ (243 samples, 0.23%)</title><rect x="370.3" y="675.0" width="2.7" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="373.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.isEmpty (225 samples, 0.21%)</title><rect x="370.5" y="659.0" width="2.5" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="373.5" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (170 samples, 0.16%)</title><rect x="370.5" y="643.0" width="1.9" height="15" fill="#da4c4c" rx="2" ry="2"/>
<text x="373.5" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2828/238079025.apply (151 samples, 0.14%)</title><rect x="374.7" y="835.0" width="1.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="377.7" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compile$2 (101 samples, 0.09%)</title><rect x="375.3" y="819.0" width="1.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="378.3" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.compileScope (101 samples, 0.09%)</title><rect x="375.3" y="803.0" width="1.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="378.3" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2831/1823819793.apply (5211 samples, 4.87%)</title><rect x="376.4" y="835.0" width="57.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="379.4" y="846.0">fs2/in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$1 (5211 samples, 4.87%)</title><rect x="376.4" y="819.0" width="57.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="379.4" y="830.0">fs2/in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC.viewL (5211 samples, 4.87%)</title><rect x="376.4" y="803.0" width="57.4" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="379.4" y="814.0">fs2/in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.fs2$internal$FreeC$$mkViewL (5211 samples, 4.87%)</title><rect x="376.4" y="787.0" width="57.4" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="379.4" y="798.0">fs2/in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.go$1 (5211 samples, 4.87%)</title><rect x="376.4" y="771.0" width="57.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="379.4" y="782.0">fs2/in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$$Lambda$2837/43298801.apply (3843 samples, 3.59%)</title><rect x="380.4" y="755.0" width="42.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="383.4" y="766.0">fs2/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.$anonfun$mkViewL$1 (3843 samples, 3.59%)</title><rect x="380.4" y="739.0" width="42.4" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="383.4" y="750.0">fs2/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2812/1447326197.apply (3373 samples, 3.15%)</title><rect x="382.9" y="723.0" width="37.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="385.9" y="734.0">fs2..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC.$anonfun$flatMap$1 (3373 samples, 3.15%)</title><rect x="382.9" y="707.0" width="37.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="385.9" y="718.0">fs2..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$$$Lambda$2824/372722251.apply (925 samples, 0.86%)</title><rect x="384.0" y="691.0" width="10.2" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="387.0" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$flatMap$1 (882 samples, 0.82%)</title><rect x="384.4" y="675.0" width="9.8" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="387.4" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$$$Lambda$3024/42212634.apply (286 samples, 0.27%)</title><rect x="384.7" y="659.0" width="3.2" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="387.7" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$loop$2$adapted (249 samples, 0.23%)</title><rect x="385.1" y="643.0" width="2.8" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="388.1" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$loop$2 (240 samples, 0.22%)</title><rect x="385.2" y="627.0" width="2.6" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="388.2" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.map (210 samples, 0.20%)</title><rect x="385.5" y="611.0" width="2.3" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="388.5" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$$$Lambda$3021/1140018958.apply (210 samples, 0.20%)</title><rect x="385.5" y="595.0" width="2.3" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="388.5" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$loop$1$adapted (210 samples, 0.20%)</title><rect x="385.5" y="579.0" width="2.3" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="388.5" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$loop$1 (210 samples, 0.20%)</title><rect x="385.5" y="563.0" width="2.3" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="388.5" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$2792/2080096099.apply (135 samples, 0.13%)</title><rect x="386.3" y="547.0" width="1.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="389.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$andThen$1 (135 samples, 0.13%)</title><rect x="386.3" y="531.0" width="1.5" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="389.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$$$Lambda$3345/1999215732.apply (91 samples, 0.08%)</title><rect x="386.6" y="515.0" width="1.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="389.6" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$$$Lambda$3351/1670629908.apply (122 samples, 0.11%)</title><rect x="387.9" y="659.0" width="1.3" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="390.9" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$ToPull$$$Lambda$3348/420384684.apply (281 samples, 0.26%)</title><rect x="389.2" y="659.0" width="3.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="392.2" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$ToPull$.$anonfun$unconsChunk$1$adapted (186 samples, 0.17%)</title><rect x="390.2" y="643.0" width="2.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="393.2" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (169 samples, 0.16%)</title><rect x="392.3" y="659.0" width="1.9" height="15" fill="#e25858" rx="2" ry="2"/>
<text x="395.3" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$$$Lambda$2816/264575657.apply (2248 samples, 2.10%)</title><rect x="394.2" y="691.0" width="24.7" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="397.2" y="702.0">f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.$anonfun$flatMap$1 (2204 samples, 2.06%)</title><rect x="394.6" y="675.0" width="24.3" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="397.6" y="686.0">f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment.foldRightLazy (2162 samples, 2.02%)</title><rect x="394.6" y="659.0" width="23.9" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="397.6" y="670.0">f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Force$.unconsChunks$extension (1972 samples, 1.84%)</title><rect x="395.9" y="643.0" width="21.7" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="398.9" y="654.0">f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::handle_exception_C(JavaThread*) (518 samples, 0.48%)</title><rect x="397.1" y="627.0" width="5.7" height="15" fill="#c8c83b" rx="2" ry="2"/>
<text x="400.1" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::handle_exception_C_helper(JavaThread*, nmethod*&amp;) (233 samples, 0.22%)</title><rect x="398.6" y="611.0" width="2.6" height="15" fill="#b3b333" rx="2" ry="2"/>
<text x="401.6" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender(RegisterMap*) const (128 samples, 0.12%)</title><rect x="401.2" y="611.0" width="1.5" height="15" fill="#b9b935" rx="2" ry="2"/>
<text x="404.2" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::raw_exception_handler_for_return_address(JavaThread*, unsigned char*) (150 samples, 0.14%)</title><rect x="402.9" y="627.0" width="1.7" height="15" fill="#c9c93b" rx="2" ry="2"/>
<text x="405.9" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$Defer.value (455 samples, 0.42%)</title><rect x="405.3" y="627.0" width="5.0" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="408.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.cats$Eval$$evaluate (455 samples, 0.42%)</title><rect x="405.3" y="611.0" width="5.0" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="408.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.loop$1 (389 samples, 0.36%)</title><rect x="405.4" y="595.0" width="4.3" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="408.4" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$$anon$11$$Lambda$2959/233442650.apply (183 samples, 0.17%)</title><rect x="405.9" y="579.0" width="2.0" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="408.9" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$$anon$11.$anonfun$run$2 (183 samples, 0.17%)</title><rect x="405.9" y="563.0" width="2.0" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="408.9" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$$Lambda$2956/1962437149.apply (176 samples, 0.16%)</title><rect x="406.0" y="547.0" width="1.9" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="409.0" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval.$anonfun$map$1 (176 samples, 0.16%)</title><rect x="406.0" y="531.0" width="1.9" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="409.0" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$$anon$13$$Lambda$2955/348183998.apply (114 samples, 0.11%)</title><rect x="406.7" y="515.0" width="1.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="409.7" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$$anon$13.$anonfun$stage0$55 (114 samples, 0.11%)</title><rect x="406.7" y="499.0" width="1.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="409.7" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Step.mapRemainder (114 samples, 0.11%)</title><rect x="406.7" y="483.0" width="1.2" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="409.7" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval.map (114 samples, 0.11%)</title><rect x="406.7" y="467.0" width="1.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="409.7" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval.flatMap (114 samples, 0.11%)</title><rect x="406.7" y="451.0" width="1.2" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="409.7" y="462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$$anon$9.&lt;init&gt; (114 samples, 0.11%)</title><rect x="406.7" y="435.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="409.7" y="446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.advance (154 samples, 0.14%)</title><rect x="407.9" y="579.0" width="1.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="410.9" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$.fs2$Segment$$stepAll (475 samples, 0.44%)</title><rect x="410.7" y="627.0" width="5.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="413.7" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$SingleChunk$$Lambda$2954/43075678.apply$mcV$sp (417 samples, 0.39%)</title><rect x="411.3" y="611.0" width="4.6" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="414.3" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$SingleChunk.$anonfun$stage0$115 (417 samples, 0.39%)</title><rect x="411.3" y="595.0" width="4.6" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="414.3" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$$anon$13$$Lambda$2952/1324858100.apply (417 samples, 0.39%)</title><rect x="411.3" y="579.0" width="4.6" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="414.3" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$$anon$13.$anonfun$stage0$54$adapted (417 samples, 0.39%)</title><rect x="411.3" y="563.0" width="4.6" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="414.3" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$$anon$13.$anonfun$stage0$54 (417 samples, 0.39%)</title><rect x="411.3" y="547.0" width="4.6" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="414.3" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Force$$$Lambda$2947/1095276627.apply (103 samples, 0.10%)</title><rect x="411.3" y="531.0" width="1.2" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="414.3" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Force$.$anonfun$unconsChunks$2$adapted (103 samples, 0.10%)</title><rect x="411.3" y="515.0" width="1.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="414.3" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Force$.$anonfun$unconsChunks$2 (103 samples, 0.10%)</title><rect x="411.3" y="499.0" width="1.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="414.3" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$$$Lambda$2857/1582849190.apply (314 samples, 0.29%)</title><rect x="412.5" y="531.0" width="3.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="415.5" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.$anonfun$evalMap$1$adapted (314 samples, 0.29%)</title><rect x="412.5" y="515.0" width="3.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="415.5" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.$anonfun$evalMap$1 (314 samples, 0.29%)</title><rect x="412.5" y="499.0" width="3.4" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="415.5" y="510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$.eval (153 samples, 0.14%)</title><rect x="412.5" y="483.0" width="1.7" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="415.5" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter$$Lambda$3354/549853935.apply (161 samples, 0.15%)</title><rect x="414.2" y="483.0" width="1.7" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="417.2" y="494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.$anonfun$writeSink$2 (161 samples, 0.15%)</title><rect x="414.2" y="467.0" width="1.7" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="417.2" y="478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (108 samples, 0.10%)</title><rect x="418.9" y="691.0" width="1.2" height="15" fill="#fb7d7d" rx="2" ry="2"/>
<text x="421.9" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2815/690818457.apply (233 samples, 0.22%)</title><rect x="420.1" y="723.0" width="2.6" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="423.1" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC.$anonfun$map$1 (233 samples, 0.22%)</title><rect x="420.1" y="707.0" width="2.6" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="423.1" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2812/1447326197.apply (116 samples, 0.11%)</title><rect x="422.8" y="755.0" width="1.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="425.8" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2815/690818457.apply (131 samples, 0.12%)</title><rect x="424.0" y="755.0" width="1.5" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="427.0" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (445 samples, 0.42%)</title><rect x="426.0" y="755.0" width="4.9" height="15" fill="#da4d4d" rx="2" ry="2"/>
<text x="429.0" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$MH/1095293768.linkToTargetMethod (266 samples, 0.25%)</title><rect x="430.9" y="755.0" width="2.9" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="433.9" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$DMH/1399499405.invokeStatic_LL_L (266 samples, 0.25%)</title><rect x="430.9" y="739.0" width="2.9" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="433.9" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$$Lambda$2837/43298801.get$Lambda (266 samples, 0.25%)</title><rect x="430.9" y="723.0" width="2.9" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="433.9" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2832/1224377621.apply (1144 samples, 1.07%)</title><rect x="433.8" y="835.0" width="12.6" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="436.8" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$2 (953 samples, 0.89%)</title><rect x="435.9" y="819.0" width="10.5" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="438.9" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$Done$4$.apply (115 samples, 0.11%)</title><rect x="441.2" y="803.0" width="1.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="444.2" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.interruptibleEval (273 samples, 0.25%)</title><rect x="442.6" y="803.0" width="3.1" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="445.6" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2834/1623817411.apply (1084 samples, 1.01%)</title><rect x="447.3" y="835.0" width="12.0" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="450.3" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileScope$1 (1026 samples, 0.96%)</title><rect x="448.0" y="819.0" width="11.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="451.0" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Force$.run$extension (857 samples, 0.80%)</title><rect x="448.3" y="803.0" width="9.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="451.3" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::handle_exception_C(JavaThread*) (230 samples, 0.21%)</title><rect x="449.1" y="787.0" width="2.5" height="15" fill="#d3d33f" rx="2" ry="2"/>
<text x="452.1" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::handle_exception_C_helper(JavaThread*, nmethod*&amp;) (109 samples, 0.10%)</title><rect x="449.7" y="771.0" width="1.2" height="15" fill="#b5b534" rx="2" ry="2"/>
<text x="452.7" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::raw_exception_handler_for_return_address(JavaThread*, unsigned char*) (91 samples, 0.08%)</title><rect x="451.8" y="787.0" width="1.0" height="15" fill="#dfdf43" rx="2" ry="2"/>
<text x="454.8" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$FlatMap.value (321 samples, 0.30%)</title><rect x="453.2" y="787.0" width="3.5" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="456.2" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.cats$Eval$$evaluate (321 samples, 0.30%)</title><rect x="453.2" y="771.0" width="3.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="456.2" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.loop$1 (199 samples, 0.19%)</title><rect x="454.5" y="755.0" width="2.2" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="457.5" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$$Lambda$2956/1962437149.apply (109 samples, 0.10%)</title><rect x="454.8" y="739.0" width="1.2" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="457.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval.$anonfun$map$1 (109 samples, 0.10%)</title><rect x="454.8" y="723.0" width="1.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="457.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment.fold (138 samples, 0.13%)</title><rect x="457.8" y="803.0" width="1.5" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="460.8" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2840/472679915.apply (333 samples, 0.31%)</title><rect x="460.0" y="835.0" width="3.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="463.0" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$9 (251 samples, 0.23%)</title><rect x="460.9" y="819.0" width="2.7" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="463.9" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.go$1 (251 samples, 0.23%)</title><rect x="460.9" y="803.0" width="2.7" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="463.9" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$MH/2011986105.linkToTargetMethod (251 samples, 0.23%)</title><rect x="460.9" y="787.0" width="2.7" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="463.9" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$DMH/459857341.invokeStatic_L_L (251 samples, 0.23%)</title><rect x="460.9" y="771.0" width="2.7" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="463.9" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2831/1823819793.get$Lambda (251 samples, 0.23%)</title><rect x="460.9" y="755.0" width="2.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="463.9" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2841/1466442783.apply (340 samples, 0.32%)</title><rect x="463.6" y="835.0" width="3.8" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="466.6" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$10 (215 samples, 0.20%)</title><rect x="465.0" y="819.0" width="2.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="468.0" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2843/522736400.apply (212 samples, 0.20%)</title><rect x="467.4" y="835.0" width="2.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="470.4" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$16 (175 samples, 0.16%)</title><rect x="467.8" y="819.0" width="1.9" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="470.8" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$$Lambda$2837/43298801.apply (126 samples, 0.12%)</title><rect x="467.8" y="803.0" width="1.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="470.8" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.$anonfun$mkViewL$1 (126 samples, 0.12%)</title><rect x="467.8" y="787.0" width="1.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="470.8" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2812/1447326197.apply (106 samples, 0.10%)</title><rect x="468.0" y="771.0" width="1.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="471.0" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC.$anonfun$flatMap$1 (106 samples, 0.10%)</title><rect x="468.0" y="755.0" width="1.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="471.0" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2846/325067002.apply (3016 samples, 2.82%)</title><rect x="469.7" y="835.0" width="33.2" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="472.7" y="846.0">fs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$3 (2907 samples, 2.71%)</title><rect x="470.9" y="819.0" width="32.0" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="473.9" y="830.0">fs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2845/781643834.apply (1891 samples, 1.77%)</title><rect x="471.4" y="803.0" width="20.9" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="474.4" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$5 (1817 samples, 1.70%)</title><rect x="472.2" y="787.0" width="20.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="475.2" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$$Lambda$2837/43298801.apply (1387 samples, 1.30%)</title><rect x="473.7" y="771.0" width="15.3" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="476.7" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.$anonfun$mkViewL$1 (1387 samples, 1.30%)</title><rect x="473.7" y="755.0" width="15.3" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="476.7" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2812/1447326197.apply (1265 samples, 1.18%)</title><rect x="473.9" y="739.0" width="13.9" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="476.9" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC.$anonfun$flatMap$1 (1246 samples, 1.16%)</title><rect x="474.1" y="723.0" width="13.7" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="477.1" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$$$Lambda$2942/740911090.apply (1173 samples, 1.10%)</title><rect x="474.4" y="707.0" width="13.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="477.4" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.$anonfun$append$1 (1136 samples, 1.06%)</title><rect x="474.8" y="691.0" width="12.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="477.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$$Lambda$2961/2111329826.apply (1072 samples, 1.00%)</title><rect x="474.8" y="675.0" width="11.8" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="477.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment.$anonfun$foldRightLazy$1 (1072 samples, 1.00%)</title><rect x="474.8" y="659.0" width="11.8" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="477.8" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment.loopOnChunks$1 (1062 samples, 0.99%)</title><rect x="474.9" y="643.0" width="11.7" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="477.9" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment.foldRightLazy (1031 samples, 0.96%)</title><rect x="475.3" y="627.0" width="11.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="478.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment$Force$.unconsChunks$extension (995 samples, 0.93%)</title><rect x="475.5" y="611.0" width="10.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="478.5" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::handle_exception_C(JavaThread*) (418 samples, 0.39%)</title><rect x="476.6" y="595.0" width="4.6" height="15" fill="#d5d540" rx="2" ry="2"/>
<text x="479.6" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::handle_exception_C_helper(JavaThread*, nmethod*&amp;) (178 samples, 0.17%)</title><rect x="477.7" y="579.0" width="2.0" height="15" fill="#cccc3c" rx="2" ry="2"/>
<text x="480.7" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender(RegisterMap*) const (117 samples, 0.11%)</title><rect x="479.7" y="579.0" width="1.3" height="15" fill="#c5c53a" rx="2" ry="2"/>
<text x="482.7" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::raw_exception_handler_for_return_address(JavaThread*, unsigned char*) (143 samples, 0.13%)</title><rect x="481.4" y="595.0" width="1.5" height="15" fill="#dcdc42" rx="2" ry="2"/>
<text x="484.4" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Segment.stage (99 samples, 0.09%)</title><rect x="484.6" y="595.0" width="1.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="487.6" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Right$.apply (249 samples, 0.23%)</title><rect x="489.5" y="771.0" width="2.8" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="492.5" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (99 samples, 0.09%)</title><rect x="491.2" y="755.0" width="1.1" height="15" fill="#d44343" rx="2" ry="2"/>
<text x="494.2" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2849/719883619.apply (483 samples, 0.45%)</title><rect x="492.3" y="803.0" width="5.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="495.3" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$14 (418 samples, 0.39%)</title><rect x="493.0" y="787.0" width="4.6" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="496.0" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$$Lambda$2837/43298801.apply (334 samples, 0.31%)</title><rect x="493.6" y="771.0" width="3.7" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="496.6" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.$anonfun$mkViewL$1 (334 samples, 0.31%)</title><rect x="493.6" y="755.0" width="3.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="496.6" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$Lambda$2815/690818457.apply (244 samples, 0.23%)</title><rect x="494.6" y="739.0" width="2.7" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="497.6" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC.$anonfun$map$1 (244 samples, 0.23%)</title><rect x="494.6" y="723.0" width="2.7" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="497.6" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$2814/1416249488.apply (91 samples, 0.08%)</title><rect x="494.8" y="707.0" width="1.0" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="497.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (134 samples, 0.13%)</title><rect x="495.8" y="707.0" width="1.5" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="498.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$3384/275227602.apply (182 samples, 0.17%)</title><rect x="498.4" y="803.0" width="2.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="501.4" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$11 (129 samples, 0.12%)</title><rect x="499.0" y="787.0" width="1.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="502.0" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (233 samples, 0.22%)</title><rect x="500.4" y="803.0" width="2.5" height="15" fill="#ef6b6b" rx="2" ry="2"/>
<text x="503.4" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$$$Lambda$3370/1980270010.apply (178 samples, 0.17%)</title><rect x="503.0" y="835.0" width="2.0" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="506.0" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.$anonfun$compileLoop$22 (141 samples, 0.13%)</title><rect x="503.4" y="819.0" width="1.6" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="506.4" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$$$Lambda$2837/43298801.apply (99 samples, 0.09%)</title><rect x="503.8" y="803.0" width="1.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="506.8" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/FreeC$.$anonfun$mkViewL$1 (99 samples, 0.09%)</title><rect x="503.8" y="787.0" width="1.0" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="506.8" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3398/1919319056.apply (563 samples, 0.53%)</title><rect x="507.7" y="835.0" width="6.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="510.7" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$close$2 (524 samples, 0.49%)</title><rect x="508.1" y="819.0" width="5.8" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="511.1" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.fs2$internal$CompileScope$$traverseError (402 samples, 0.38%)</title><rect x="508.1" y="803.0" width="4.5" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="511.1" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable$$anon$1.traverse (402 samples, 0.38%)</title><rect x="508.1" y="787.0" width="4.5" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="511.1" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable$$anon$1.traverse (384 samples, 0.36%)</title><rect x="508.3" y="771.0" width="4.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="511.3" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/instances/ListInstances$$anon$1.traverse (324 samples, 0.30%)</title><rect x="508.3" y="755.0" width="3.6" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="511.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/instances/ListInstances$$anon$1.traverse (324 samples, 0.30%)</title><rect x="508.3" y="739.0" width="3.6" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="511.3" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$Defer.value (324 samples, 0.30%)</title><rect x="508.3" y="723.0" width="3.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="511.3" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.cats$Eval$$evaluate (324 samples, 0.30%)</title><rect x="508.3" y="707.0" width="3.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="511.3" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.loop$1 (215 samples, 0.20%)</title><rect x="509.5" y="691.0" width="2.4" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="512.5" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$MH/1095293768.linkToTargetMethod (122 samples, 0.11%)</title><rect x="512.6" y="803.0" width="1.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="515.6" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$DMH/1399499405.invokeStatic_LL_L (122 samples, 0.11%)</title><rect x="512.6" y="787.0" width="1.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="515.6" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3435/1712411583.get$Lambda (122 samples, 0.11%)</title><rect x="512.6" y="771.0" width="1.3" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="515.6" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3435/1712411583.apply (384 samples, 0.36%)</title><rect x="513.9" y="835.0" width="4.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="516.9" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$close$4 (278 samples, 0.26%)</title><rect x="515.1" y="819.0" width="3.0" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="518.1" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.fs2$internal$CompileScope$$traverseError (204 samples, 0.19%)</title><rect x="515.1" y="803.0" width="2.2" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="518.1" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable$$anon$1.traverse (204 samples, 0.19%)</title><rect x="515.1" y="787.0" width="2.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="518.1" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Catenable$$anon$1.traverse (174 samples, 0.16%)</title><rect x="515.4" y="771.0" width="1.9" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="518.4" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/instances/ListInstances$$anon$1.traverse (150 samples, 0.14%)</title><rect x="515.4" y="755.0" width="1.7" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="518.4" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/instances/ListInstances$$anon$1.traverse (150 samples, 0.14%)</title><rect x="515.4" y="739.0" width="1.7" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="518.4" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$Defer.value (149 samples, 0.14%)</title><rect x="515.4" y="723.0" width="1.6" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="518.4" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Eval$.cats$Eval$$evaluate (149 samples, 0.14%)</title><rect x="515.4" y="707.0" width="1.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="518.4" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3450/888535742.apply (157 samples, 0.15%)</title><rect x="518.1" y="835.0" width="1.8" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="521.1" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope$$Lambda$3453/926933558.apply (182 samples, 0.17%)</title><rect x="519.9" y="835.0" width="2.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="522.9" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/CompileScope.$anonfun$close$9 (129 samples, 0.12%)</title><rect x="520.4" y="819.0" width="1.5" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="523.4" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1873 samples, 1.75%)</title><rect x="522.3" y="835.0" width="20.6" height="15" fill="#f27070" rx="2" ry="2"/>
<text x="525.3" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer$$Lambda$3336/1842448395.apply (1640 samples, 1.53%)</title><rect x="543.4" y="835.0" width="18.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="546.4" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/Http1Writer.$anonfun$write$2 (1603 samples, 1.50%)</title><rect x="543.8" y="819.0" width="17.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="546.8" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/IdentityWriter.writeEntityBody (1603 samples, 1.50%)</title><rect x="543.8" y="803.0" width="17.7" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="546.8" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.writeEntityBody$ (1603 samples, 1.50%)</title><rect x="543.8" y="787.0" width="17.7" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="546.8" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.writeEntityBody (1603 samples, 1.50%)</title><rect x="543.8" y="771.0" width="17.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="546.8" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/syntax/ApplySyntax$$anon$1.$times$greater (100 samples, 0.09%)</title><rect x="543.8" y="755.0" width="1.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="546.8" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply$Ops.$times$greater$ (100 samples, 0.09%)</title><rect x="543.8" y="739.0" width="1.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="546.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply$Ops.$times$greater (100 samples, 0.09%)</title><rect x="543.8" y="723.0" width="1.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="546.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.$times$greater (100 samples, 0.09%)</title><rect x="543.8" y="707.0" width="1.1" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="546.8" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply.$times$greater$ (100 samples, 0.09%)</title><rect x="543.8" y="691.0" width="1.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="546.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply.$times$greater (100 samples, 0.09%)</title><rect x="543.8" y="675.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="546.8" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.productR (91 samples, 0.08%)</title><rect x="543.9" y="659.0" width="1.0" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="546.9" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply.productR$ (91 samples, 0.08%)</title><rect x="543.9" y="643.0" width="1.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="546.9" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply.productR (91 samples, 0.08%)</title><rect x="543.9" y="627.0" width="1.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="546.9" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.map2 (91 samples, 0.08%)</title><rect x="543.9" y="611.0" width="1.0" height="15" fill="#57e957" rx="2" ry="2"/>
<text x="546.9" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply.map2$ (91 samples, 0.08%)</title><rect x="543.9" y="595.0" width="1.0" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="546.9" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Apply.map2 (91 samples, 0.08%)</title><rect x="543.9" y="579.0" width="1.0" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="546.9" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.to$extension (1259 samples, 1.18%)</title><rect x="544.9" y="755.0" width="13.9" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="547.9" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter$$Lambda$3342/374984548.apply (1259 samples, 1.18%)</title><rect x="544.9" y="739.0" width="13.9" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="547.9" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.$anonfun$writeSink$1$adapted (1259 samples, 1.18%)</title><rect x="544.9" y="723.0" width="13.9" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="547.9" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blazecore/util/EntityBodyWriter.$anonfun$writeSink$1 (1259 samples, 1.18%)</title><rect x="544.9" y="707.0" width="13.9" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="547.9" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/syntax/ApplicativeErrorOps$.handleErrorWith$extension (91 samples, 0.08%)</title><rect x="545.3" y="691.0" width="1.0" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="548.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$$anon$1.handleErrorWith (91 samples, 0.08%)</title><rect x="545.3" y="675.0" width="1.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="548.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$.chunks$extension (473 samples, 0.44%)</title><rect x="546.3" y="691.0" width="5.3" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="549.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.repeatPull$extension (455 samples, 0.42%)</title><rect x="546.5" y="675.0" width="5.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="549.5" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$$$Lambda$3021/1140018958.apply (253 samples, 0.24%)</title><rect x="547.1" y="659.0" width="2.8" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="550.1" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$loop$1$adapted (233 samples, 0.22%)</title><rect x="547.4" y="643.0" width="2.5" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="550.4" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Pull$.$anonfun$loop$1 (154 samples, 0.14%)</title><rect x="547.9" y="627.0" width="1.7" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="550.9" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$2792/2080096099.apply (154 samples, 0.14%)</title><rect x="547.9" y="611.0" width="1.7" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="550.9" y="622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$andThen$1 (154 samples, 0.14%)</title><rect x="547.9" y="595.0" width="1.7" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="550.9" y="606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$$$Lambda$3345/1999215732.apply (122 samples, 0.11%)</title><rect x="548.1" y="579.0" width="1.4" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="551.1" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$.syncInstance (385 samples, 0.36%)</title><rect x="551.6" y="691.0" width="4.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="554.6" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$$anon$1.&lt;init&gt; (385 samples, 0.36%)</title><rect x="551.6" y="675.0" width="4.2" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="554.6" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.evalMap$extension (274 samples, 0.26%)</title><rect x="555.8" y="691.0" width="3.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="558.8" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$InvariantOps$.flatMap$extension (188 samples, 0.18%)</title><rect x="555.9" y="675.0" width="2.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="558.9" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$ToEffect$.drain$extension (131 samples, 0.12%)</title><rect x="558.8" y="755.0" width="1.5" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="561.8" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/Stream$ToEffect$.fold$extension (131 samples, 0.12%)</title><rect x="558.8" y="739.0" width="1.5" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="561.8" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fs2/internal/Algebra$.compile (131 samples, 0.12%)</title><rect x="558.8" y="723.0" width="1.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="561.8" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.fromFuture$extension1 (113 samples, 0.11%)</title><rect x="560.3" y="755.0" width="1.2" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="563.3" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/syntax/AsyncOps$.fromFuture$extension0 (113 samples, 0.11%)</title><rect x="560.3" y="739.0" width="1.2" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="563.3" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.async (113 samples, 0.11%)</title><rect x="560.3" y="723.0" width="1.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="563.3" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IOInstances$$anon$1.async (113 samples, 0.11%)</title><rect x="560.3" y="707.0" width="1.2" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="563.3" y="718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$.async (113 samples, 0.11%)</title><rect x="560.3" y="691.0" width="1.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="563.3" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$MH/2011986105.linkToTargetMethod (106 samples, 0.10%)</title><rect x="560.3" y="675.0" width="1.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="563.3" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm$DMH/459857341.invokeStatic_L_L (106 samples, 0.10%)</title><rect x="560.3" y="659.0" width="1.2" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="563.3" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$$Lambda$2778/17305586.get$Lambda (106 samples, 0.10%)</title><rect x="560.3" y="643.0" width="1.2" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="563.3" y="654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$$Lambda$2778/17305586.&lt;init&gt; (106 samples, 0.10%)</title><rect x="560.3" y="627.0" width="1.2" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="563.3" y="638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$2792/2080096099.apply (2893 samples, 2.70%)</title><rect x="561.5" y="835.0" width="31.9" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="564.5" y="846.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$andThen$1 (2893 samples, 2.70%)</title><rect x="561.5" y="819.0" width="31.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="564.5" y="830.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO$$Lambda$2791/1002161831.apply (2776 samples, 2.59%)</title><rect x="561.5" y="803.0" width="30.6" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="564.5" y="814.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.$anonfun$runAsync$2$adapted (2776 samples, 2.59%)</title><rect x="561.5" y="787.0" width="30.6" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="564.5" y="798.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.$anonfun$runAsync$2 (2776 samples, 2.59%)</title><rect x="561.5" y="771.0" width="30.6" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="564.5" y="782.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/IO.unsafeRunAsync (2776 samples, 2.59%)</title><rect x="561.5" y="755.0" width="30.6" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="564.5" y="766.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.start (2770 samples, 2.59%)</title><rect x="561.6" y="739.0" width="30.5" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="564.6" y="750.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/effect/internals/IORunLoop$.cats$effect$internals$IORunLoop$$loop (2757 samples, 2.57%)</title><rect x="561.7" y="723.0" width="30.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="564.7" y="734.0">ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (2650 samples, 2.47%)</title><rect x="562.9" y="707.0" width="29.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="565.9" y="718.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$Lambda$3506/1438284740.apply$mcV$sp (2628 samples, 2.45%)</title><rect x="563.2" y="691.0" width="28.9" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="566.2" y="702.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$renderResponse$7 (2612 samples, 2.44%)</title><rect x="563.3" y="675.0" width="28.8" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="566.3" y="686.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Successful.onComplete (2610 samples, 2.44%)</title><rect x="563.4" y="659.0" width="28.7" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="566.4" y="670.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Kept.onComplete$ (2610 samples, 2.44%)</title><rect x="563.4" y="643.0" width="28.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="566.4" y="654.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$KeptPromise$Kept.onComplete (2610 samples, 2.44%)</title><rect x="563.4" y="627.0" width="28.7" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="566.4" y="638.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (2610 samples, 2.44%)</title><rect x="563.4" y="611.0" width="28.7" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="566.4" y="622.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/Execution$$anon$1.execute (2598 samples, 2.43%)</title><rect x="563.5" y="595.0" width="28.6" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="566.5" y="606.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (2467 samples, 2.30%)</title><rect x="564.9" y="579.0" width="27.2" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="567.9" y="590.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$Lambda$3507/812932816.apply (2447 samples, 2.29%)</title><rect x="565.2" y="563.0" width="26.9" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="568.2" y="574.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$renderResponse$8$adapted (2447 samples, 2.29%)</title><rect x="565.2" y="547.0" width="26.9" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="568.2" y="558.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$renderResponse$8 (2447 samples, 2.29%)</title><rect x="565.2" y="531.0" width="26.9" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="568.2" y="542.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$Lambda$3056/2078581810.apply (2439 samples, 2.28%)</title><rect x="565.3" y="515.0" width="26.8" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="568.3" y="526.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$handleReqRead$1$adapted (2439 samples, 2.28%)</title><rect x="565.3" y="499.0" width="26.8" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="568.3" y="510.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$handleReqRead$1 (2382 samples, 2.22%)</title><rect x="565.9" y="483.0" width="26.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="568.9" y="494.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.reqLoopCallback (2381 samples, 2.22%)</title><rect x="565.9" y="467.0" width="26.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="568.9" y="478.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.liftedTree1$1 (2370 samples, 2.21%)</title><rect x="566.0" y="451.0" width="26.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="569.0" y="462.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.requestLoop (2260 samples, 2.11%)</title><rect x="566.9" y="435.0" width="24.9" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="569.9" y="446.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.channelRead (2127 samples, 1.99%)</title><rect x="567.1" y="419.0" width="23.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="570.1" y="430.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelRead$ (2127 samples, 1.99%)</title><rect x="567.1" y="403.0" width="23.4" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="570.1" y="414.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelRead (2127 samples, 1.99%)</title><rect x="567.1" y="387.0" width="23.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="570.1" y="398.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.readRequest (2099 samples, 1.96%)</title><rect x="567.3" y="371.0" width="23.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="570.3" y="382.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/TimeoutStageBase.channelRead (1970 samples, 1.84%)</title><rect x="567.3" y="355.0" width="21.7" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="570.3" y="366.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelRead$ (1970 samples, 1.84%)</title><rect x="567.3" y="339.0" width="21.7" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="570.3" y="350.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/Tail.channelRead (1970 samples, 1.84%)</title><rect x="567.3" y="323.0" width="21.7" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="570.3" y="334.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.readRequest (1925 samples, 1.80%)</title><rect x="567.3" y="307.0" width="21.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="570.3" y="318.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.executeTask (1836 samples, 1.71%)</title><rect x="567.9" y="291.0" width="20.3" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="570.9" y="302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.enqueueTask (1711 samples, 1.60%)</title><rect x="569.3" y="275.0" width="18.9" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="572.3" y="286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl.wakeup (1685 samples, 1.57%)</title><rect x="569.6" y="259.0" width="18.6" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="572.6" y="270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.interrupt (1685 samples, 1.57%)</title><rect x="569.6" y="243.0" width="18.6" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="572.6" y="254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.interrupt (1573 samples, 1.47%)</title><rect x="570.8" y="227.0" width="17.4" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="573.8" y="238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1494 samples, 1.40%)</title><rect x="571.0" y="211.0" width="16.5" height="15" fill="#e55c5c" rx="2" ry="2"/>
<text x="574.0" y="222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__write (1412 samples, 1.32%)</title><rect x="571.8" y="195.0" width="15.6" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="574.8" y="206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1331 samples, 1.24%)</title><rect x="572.7" y="179.0" width="14.7" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="575.7" y="190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1331 samples, 1.24%)</title><rect x="572.7" y="163.0" width="14.7" height="15" fill="#ef6b6b" rx="2" ry="2"/>
<text x="575.7" y="174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1200 samples, 1.12%)</title><rect x="574.1" y="147.0" width="13.3" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="577.1" y="158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1186 samples, 1.11%)</title><rect x="574.3" y="131.0" width="13.1" height="15" fill="#e55d5d" rx="2" ry="2"/>
<text x="577.3" y="142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1138 samples, 1.06%)</title><rect x="574.8" y="115.0" width="12.6" height="15" fill="#c83232" rx="2" ry="2"/>
<text x="577.8" y="126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1112 samples, 1.04%)</title><rect x="575.1" y="99.0" width="12.3" height="15" fill="#d64747" rx="2" ry="2"/>
<text x="578.1" y="110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1020 samples, 0.95%)</title><rect x="576.1" y="83.0" width="11.3" height="15" fill="#d24141" rx="2" ry="2"/>
<text x="579.1" y="94.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (976 samples, 0.91%)</title><rect x="576.6" y="67.0" width="10.8" height="15" fill="#ee6969" rx="2" ry="2"/>
<text x="579.6" y="78.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (855 samples, 0.80%)</title><rect x="577.9" y="51.0" width="9.5" height="15" fill="#e05555" rx="2" ry="2"/>
<text x="580.9" y="62.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (797 samples, 0.74%)</title><rect x="578.6" y="35.0" width="8.8" height="15" fill="#d44444" rx="2" ry="2"/>
<text x="581.6" y="46.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.onComplete (129 samples, 0.12%)</title><rect x="589.0" y="355.0" width="1.5" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="592.0" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.dispatchOrAddCallback (106 samples, 0.10%)</title><rect x="589.3" y="339.0" width="1.2" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="592.3" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.onComplete (121 samples, 0.11%)</title><rect x="590.5" y="419.0" width="1.3" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="593.5" y="430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.dispatchOrAddCallback (119 samples, 0.11%)</title><rect x="590.5" y="403.0" width="1.3" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="593.5" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (92 samples, 0.09%)</title><rect x="590.8" y="387.0" width="1.0" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="593.8" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayStack.push (898 samples, 0.84%)</title><rect x="593.4" y="835.0" width="9.9" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="596.4" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayStack$.growArray (898 samples, 0.84%)</title><rect x="593.4" y="819.0" width="9.9" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="596.4" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$$Lambda$3501/1174261207.apply (725 samples, 0.68%)</title><rect x="603.8" y="1075.0" width="7.9" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="606.8" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise.$anonfun$transform$1 (655 samples, 0.61%)</title><rect x="604.5" y="1059.0" width="7.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="607.5" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.complete (613 samples, 0.57%)</title><rect x="604.5" y="1043.0" width="6.8" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="607.5" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/Promise.complete$ (613 samples, 0.57%)</title><rect x="604.5" y="1027.0" width="6.8" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="607.5" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/Promise.complete (613 samples, 0.57%)</title><rect x="604.5" y="1011.0" width="6.8" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="607.5" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.tryComplete (613 samples, 0.57%)</title><rect x="604.5" y="995.0" width="6.8" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="607.5" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1$adapted (599 samples, 0.56%)</title><rect x="604.7" y="979.0" width="6.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="607.7" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1 (599 samples, 0.56%)</title><rect x="604.7" y="963.0" width="6.6" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="607.7" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (599 samples, 0.56%)</title><rect x="604.7" y="947.0" width="6.6" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="607.7" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (533 samples, 0.50%)</title><rect x="605.4" y="931.0" width="5.9" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="608.4" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (533 samples, 0.50%)</title><rect x="605.4" y="915.0" width="5.9" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="608.4" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (533 samples, 0.50%)</title><rect x="605.4" y="899.0" width="5.9" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="608.4" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (532 samples, 0.50%)</title><rect x="605.4" y="883.0" width="5.9" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="608.4" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (417 samples, 0.39%)</title><rect x="606.7" y="867.0" width="4.6" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="609.7" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (369 samples, 0.34%)</title><rect x="607.2" y="851.0" width="4.1" height="15" fill="#df5454" rx="2" ry="2"/>
<text x="610.2" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (325 samples, 0.30%)</title><rect x="607.7" y="835.0" width="3.6" height="15" fill="#cd3a3a" rx="2" ry="2"/>
<text x="610.7" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (325 samples, 0.30%)</title><rect x="607.7" y="819.0" width="3.6" height="15" fill="#e96262" rx="2" ry="2"/>
<text x="610.7" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (294 samples, 0.27%)</title><rect x="608.0" y="803.0" width="3.3" height="15" fill="#fd7f7f" rx="2" ry="2"/>
<text x="611.0" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (290 samples, 0.27%)</title><rect x="608.1" y="787.0" width="3.2" height="15" fill="#ce3a3a" rx="2" ry="2"/>
<text x="611.1" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (285 samples, 0.27%)</title><rect x="608.1" y="771.0" width="3.2" height="15" fill="#f77777" rx="2" ry="2"/>
<text x="611.1" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (264 samples, 0.25%)</title><rect x="608.4" y="755.0" width="2.9" height="15" fill="#d03e3e" rx="2" ry="2"/>
<text x="611.4" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (255 samples, 0.24%)</title><rect x="608.5" y="739.0" width="2.8" height="15" fill="#f47272" rx="2" ry="2"/>
<text x="611.5" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (242 samples, 0.23%)</title><rect x="608.6" y="723.0" width="2.7" height="15" fill="#d94b4b" rx="2" ry="2"/>
<text x="611.6" y="734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask.setCompletion (899 samples, 0.84%)</title><rect x="611.7" y="1107.0" width="10.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="614.7" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (353 samples, 0.33%)</title><rect x="615.5" y="1091.0" width="3.9" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="618.5" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (119 samples, 0.11%)</title><rect x="620.3" y="1091.0" width="1.4" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="623.3" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.awaitWork (4029 samples, 3.76%)</title><rect x="621.7" y="1139.0" width="44.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="624.7" y="1150.0">java..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.park (3875 samples, 3.62%)</title><rect x="623.4" y="1123.0" width="42.7" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="626.4" y="1134.0">sun/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (2586 samples, 2.42%)</title><rect x="624.9" y="1107.0" width="28.5" height="15" fill="#fc7e7e" rx="2" ry="2"/>
<text x="627.9" y="1118.0">Un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleMarkCleaner::~HandleMarkCleaner() (104 samples, 0.10%)</title><rect x="625.9" y="1091.0" width="1.2" height="15" fill="#b3b333" rx="2" ry="2"/>
<text x="628.9" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park(bool, long) (825 samples, 0.77%)</title><rect x="627.7" y="1091.0" width="9.1" height="15" fill="#b0b032" rx="2" ry="2"/>
<text x="630.7" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::handle_special_suspend_equivalent_condition() (397 samples, 0.37%)</title><rect x="630.0" y="1075.0" width="4.4" height="15" fill="#b1b133" rx="2" ry="2"/>
<text x="633.0" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check() (147 samples, 0.14%)</title><rect x="631.3" y="1059.0" width="1.6" height="15" fill="#e0e043" rx="2" ry="2"/>
<text x="634.3" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_getspecific (92 samples, 0.09%)</title><rect x="633.3" y="1059.0" width="1.1" height="15" fill="#f97979" rx="2" ry="2"/>
<text x="636.3" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ThreadStateTransition::trans_and_fence(JavaThreadState, JavaThreadState) (104 samples, 0.10%)</title><rect x="635.5" y="1075.0" width="1.2" height="15" fill="#b1b132" rx="2" ry="2"/>
<text x="638.5" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1246 samples, 1.16%)</title><rect x="637.3" y="1091.0" width="13.7" height="15" fill="#df5353" rx="2" ry="2"/>
<text x="640.3" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (716 samples, 0.67%)</title><rect x="643.1" y="1075.0" width="7.9" height="15" fill="#d24040" rx="2" ry="2"/>
<text x="646.1" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (716 samples, 0.67%)</title><rect x="643.1" y="1059.0" width="7.9" height="15" fill="#d44343" rx="2" ry="2"/>
<text x="646.1" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (480 samples, 0.45%)</title><rect x="645.7" y="1043.0" width="5.3" height="15" fill="#f27070" rx="2" ry="2"/>
<text x="648.7" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (444 samples, 0.41%)</title><rect x="646.1" y="1027.0" width="4.9" height="15" fill="#ea6363" rx="2" ry="2"/>
<text x="649.1" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (302 samples, 0.28%)</title><rect x="647.7" y="1011.0" width="3.3" height="15" fill="#cc3737" rx="2" ry="2"/>
<text x="650.7" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (92 samples, 0.09%)</title><rect x="650.0" y="995.0" width="1.0" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="653.0" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1027 samples, 0.96%)</title><rect x="653.4" y="1107.0" width="11.3" height="15" fill="#de5252" rx="2" ry="2"/>
<text x="656.4" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_cond_wait (871 samples, 0.81%)</title><rect x="654.0" y="1091.0" width="9.6" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="657.0" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (776 samples, 0.72%)</title><rect x="655.1" y="1075.0" width="8.5" height="15" fill="#e96262" rx="2" ry="2"/>
<text x="658.1" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (776 samples, 0.72%)</title><rect x="655.1" y="1059.0" width="8.5" height="15" fill="#f57474" rx="2" ry="2"/>
<text x="658.1" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (521 samples, 0.49%)</title><rect x="657.9" y="1043.0" width="5.7" height="15" fill="#e65f5f" rx="2" ry="2"/>
<text x="660.9" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (491 samples, 0.46%)</title><rect x="658.2" y="1027.0" width="5.4" height="15" fill="#d34242" rx="2" ry="2"/>
<text x="661.2" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (432 samples, 0.40%)</title><rect x="658.9" y="1011.0" width="4.7" height="15" fill="#f47272" rx="2" ry="2"/>
<text x="661.9" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (393 samples, 0.37%)</title><rect x="659.3" y="995.0" width="4.3" height="15" fill="#ec6767" rx="2" ry="2"/>
<text x="662.3" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (220 samples, 0.21%)</title><rect x="661.2" y="979.0" width="2.4" height="15" fill="#cb3737" rx="2" ry="2"/>
<text x="664.2" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 0.10%)</title><rect x="662.5" y="963.0" width="1.1" height="15" fill="#fc7f7f" rx="2" ry="2"/>
<text x="665.5" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.scan (2314 samples, 2.16%)</title><rect x="666.1" y="1139.0" width="25.5" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="669.1" y="1150.0">j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (175 samples, 0.16%)</title><rect x="689.5" y="1123.0" width="2.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="692.5" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (156 samples, 0.15%)</title><rect x="689.7" y="1107.0" width="1.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="692.7" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (142 samples, 0.13%)</title><rect x="689.9" y="1091.0" width="1.6" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="692.9" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (126 samples, 0.12%)</title><rect x="690.1" y="1075.0" width="1.4" height="15" fill="#fa7b7b" rx="2" ry="2"/>
<text x="693.1" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (126 samples, 0.12%)</title><rect x="690.1" y="1059.0" width="1.4" height="15" fill="#cd3a3a" rx="2" ry="2"/>
<text x="693.1" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (108 samples, 0.10%)</title><rect x="690.3" y="1043.0" width="1.2" height="15" fill="#f97a7a" rx="2" ry="2"/>
<text x="693.3" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (108 samples, 0.10%)</title><rect x="690.3" y="1027.0" width="1.2" height="15" fill="#f87878" rx="2" ry="2"/>
<text x="693.3" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (107 samples, 0.10%)</title><rect x="690.3" y="1011.0" width="1.2" height="15" fill="#d24141" rx="2" ry="2"/>
<text x="693.3" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (101 samples, 0.09%)</title><rect x="690.4" y="995.0" width="1.1" height="15" fill="#fa7b7b" rx="2" ry="2"/>
<text x="693.4" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (99 samples, 0.09%)</title><rect x="690.4" y="979.0" width="1.1" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="693.4" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.run (43473 samples, 40.60%)</title><rect x="691.6" y="1171.0" width="479.0" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="694.6" y="1182.0">org/http4s/blaze/channel/nio1/SelectorLoop.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.readReady (11979 samples, 11.19%)</title><rect x="695.2" y="1155.0" width="132.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="698.2" y="1166.0">org/http4s/blaze..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1SocketServerGroup$SocketChannelHead.performRead (3173 samples, 2.96%)</title><rect x="695.2" y="1139.0" width="35.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="698.2" y="1150.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl.read (3140 samples, 2.93%)</title><rect x="695.6" y="1123.0" width="34.6" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="698.6" y="1134.0">su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil.read (2593 samples, 2.42%)</title><rect x="700.5" y="1107.0" width="28.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="703.5" y="1118.0">su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil.readIntoNativeBuffer (2593 samples, 2.42%)</title><rect x="700.5" y="1091.0" width="28.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="703.5" y="1102.0">su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketDispatcher.read (2593 samples, 2.42%)</title><rect x="700.5" y="1075.0" width="28.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="703.5" y="1086.0">su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl.read0 (2480 samples, 2.32%)</title><rect x="701.5" y="1059.0" width="27.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="704.5" y="1070.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2330 samples, 2.18%)</title><rect x="702.7" y="1043.0" width="25.7" height="15" fill="#d64646" rx="2" ry="2"/>
<text x="705.7" y="1054.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (2278 samples, 2.13%)</title><rect x="702.7" y="1027.0" width="25.1" height="15" fill="#f16d6d" rx="2" ry="2"/>
<text x="705.7" y="1038.0">_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2078 samples, 1.94%)</title><rect x="704.9" y="1011.0" width="22.9" height="15" fill="#ca3434" rx="2" ry="2"/>
<text x="707.9" y="1022.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2078 samples, 1.94%)</title><rect x="704.9" y="995.0" width="22.9" height="15" fill="#ef6b6b" rx="2" ry="2"/>
<text x="707.9" y="1006.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1746 samples, 1.63%)</title><rect x="708.6" y="979.0" width="19.2" height="15" fill="#db4e4e" rx="2" ry="2"/>
<text x="711.6" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1723 samples, 1.61%)</title><rect x="708.8" y="963.0" width="19.0" height="15" fill="#f77777" rx="2" ry="2"/>
<text x="711.8" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1630 samples, 1.52%)</title><rect x="709.8" y="947.0" width="18.0" height="15" fill="#d74848" rx="2" ry="2"/>
<text x="712.8" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1572 samples, 1.47%)</title><rect x="710.5" y="931.0" width="17.3" height="15" fill="#e65e5e" rx="2" ry="2"/>
<text x="713.5" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1378 samples, 1.29%)</title><rect x="712.6" y="915.0" width="15.2" height="15" fill="#ed6868" rx="2" ry="2"/>
<text x="715.6" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1276 samples, 1.19%)</title><rect x="713.7" y="899.0" width="14.1" height="15" fill="#fc7e7e" rx="2" ry="2"/>
<text x="716.7" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1170 samples, 1.09%)</title><rect x="714.9" y="883.0" width="12.9" height="15" fill="#ea6363" rx="2" ry="2"/>
<text x="717.9" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1023 samples, 0.96%)</title><rect x="716.5" y="867.0" width="11.3" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="719.5" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (849 samples, 0.79%)</title><rect x="718.4" y="851.0" width="9.4" height="15" fill="#df5454" rx="2" ry="2"/>
<text x="721.4" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (688 samples, 0.64%)</title><rect x="720.2" y="835.0" width="7.6" height="15" fill="#c83232" rx="2" ry="2"/>
<text x="723.2" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (483 samples, 0.45%)</title><rect x="722.5" y="819.0" width="5.3" height="15" fill="#fe8181" rx="2" ry="2"/>
<text x="725.5" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/NativeThread.current (107 samples, 0.10%)</title><rect x="729.0" y="1107.0" width="1.2" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="732.0" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.tryComplete (8806 samples, 8.22%)</title><rect x="730.2" y="1139.0" width="97.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="733.2" y="1150.0">scala/concu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (145 samples, 0.14%)</title><rect x="730.3" y="1123.0" width="1.6" height="15" fill="#cd3939" rx="2" ry="2"/>
<text x="733.3" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$.scala$concurrent$impl$Promise$$resolveTry (321 samples, 0.30%)</title><rect x="732.8" y="1123.0" width="3.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="735.8" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1$adapted (8251 samples, 7.71%)</title><rect x="736.3" y="1123.0" width="91.0" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="739.3" y="1134.0">scala/conc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1 (8251 samples, 7.71%)</title><rect x="736.3" y="1107.0" width="91.0" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="739.3" y="1118.0">scala/conc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (8251 samples, 7.71%)</title><rect x="736.3" y="1091.0" width="91.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="739.3" y="1102.0">scala/conc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/Execution$$anon$1.execute (7719 samples, 7.21%)</title><rect x="737.1" y="1075.0" width="85.1" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="740.1" y="1086.0">org/http4s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (7497 samples, 7.00%)</title><rect x="739.6" y="1059.0" width="82.6" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="742.6" y="1070.0">scala/con..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage$$Lambda$3056/2078581810.apply (7465 samples, 6.97%)</title><rect x="739.9" y="1043.0" width="82.3" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="742.9" y="1054.0">org/http4..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$handleReqRead$1$adapted (7465 samples, 6.97%)</title><rect x="739.9" y="1027.0" width="82.3" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="742.9" y="1038.0">org/http4..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.$anonfun$handleReqRead$1 (7465 samples, 6.97%)</title><rect x="739.9" y="1011.0" width="82.3" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="742.9" y="1022.0">org/http4..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.reqLoopCallback (7452 samples, 6.96%)</title><rect x="740.1" y="995.0" width="82.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="743.1" y="1006.0">org/http4..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.liftedTree1$1 (7441 samples, 6.95%)</title><rect x="740.2" y="979.0" width="82.0" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="743.2" y="990.0">org/http4..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerParser.doParseHeaders (798 samples, 0.75%)</title><rect x="740.2" y="963.0" width="8.8" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="743.2" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/http/http_parser/BodyAndHeaderParser.parseHeaders (785 samples, 0.73%)</title><rect x="740.3" y="947.0" width="8.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="743.3" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.equalsIgnoreCase (159 samples, 0.15%)</title><rect x="746.5" y="931.0" width="1.7" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="749.5" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.regionMatches (159 samples, 0.15%)</title><rect x="746.5" y="915.0" width="1.7" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="749.5" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerParser.doParseRequestLine (915 samples, 0.85%)</title><rect x="749.0" y="963.0" width="10.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="752.0" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/http/http_parser/Http1ServerParser.parseRequestLine (829 samples, 0.77%)</title><rect x="749.9" y="947.0" width="9.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="752.9" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.runRequest (5727 samples, 5.35%)</title><rect x="759.1" y="963.0" width="63.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="762.1" y="974.0">org/htt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerParser.collectMessage (4026 samples, 3.76%)</title><rect x="759.1" y="947.0" width="44.3" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="762.1" y="958.0">org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Method$.fromString (431 samples, 0.40%)</title><rect x="759.6" y="931.0" width="4.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="762.6" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractMap.getOrElse (431 samples, 0.40%)</title><rect x="759.6" y="915.0" width="4.8" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="762.6" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike.getOrElse$ (431 samples, 0.40%)</title><rect x="759.6" y="899.0" width="4.8" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="762.6" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike.getOrElse (431 samples, 0.40%)</title><rect x="759.6" y="883.0" width="4.8" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="762.6" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap.get (398 samples, 0.37%)</title><rect x="760.0" y="867.0" width="4.4" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="763.0" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashTrieMap.get0 (188 samples, 0.18%)</title><rect x="760.1" y="851.0" width="2.0" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="763.1" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashTrieMap.get0 (154 samples, 0.14%)</title><rect x="760.4" y="835.0" width="1.7" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="763.4" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashMap1.get0 (124 samples, 0.12%)</title><rect x="760.8" y="819.0" width="1.3" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="763.8" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/BoxesRunTime.equals (124 samples, 0.12%)</title><rect x="760.8" y="803.0" width="1.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="763.8" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/BoxesRunTime.equals2 (124 samples, 0.12%)</title><rect x="760.8" y="787.0" width="1.3" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="763.8" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap.computeHash (195 samples, 0.18%)</title><rect x="762.1" y="851.0" width="2.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="765.1" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap.elemHashCode (195 samples, 0.18%)</title><rect x="762.1" y="835.0" width="2.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="765.1" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Either.flatMap (3547 samples, 3.31%)</title><rect x="764.4" y="931.0" width="39.0" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="767.4" y="942.0">sca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerParser$$Lambda$3104/1214448242.apply (3547 samples, 3.31%)</title><rect x="764.4" y="915.0" width="39.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="767.4" y="926.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerParser.$anonfun$collectMessage$2 (3547 samples, 3.31%)</title><rect x="764.4" y="899.0" width="39.0" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="767.4" y="910.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Uri$.requestTarget (3471 samples, 3.24%)</title><rect x="764.4" y="883.0" width="38.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="767.4" y="894.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Bifunctor$ToBifunctorOps$$anon$5.leftMap (112 samples, 0.10%)</title><rect x="764.4" y="867.0" width="1.2" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="767.4" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Bifunctor$Ops.leftMap$ (112 samples, 0.10%)</title><rect x="764.4" y="851.0" width="1.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="767.4" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cats/Bifunctor$Ops.leftMap (112 samples, 0.10%)</title><rect x="764.4" y="835.0" width="1.2" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="767.4" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__run (3048 samples, 2.85%)</title><rect x="766.1" y="867.0" width="33.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="769.1" y="878.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.phase0_initialRun$1 (2909 samples, 2.72%)</title><rect x="766.8" y="851.0" width="32.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="769.8" y="862.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.runRule$1 (2617 samples, 2.44%)</title><rect x="766.8" y="835.0" width="28.8" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="769.8" y="846.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Uri$$$Lambda$3120/1979249076.apply (2412 samples, 2.25%)</title><rect x="767.5" y="819.0" width="26.6" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="770.5" y="830.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Uri$.$anonfun$requestTarget$1 (2412 samples, 2.25%)</title><rect x="767.5" y="803.0" width="26.6" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="770.5" y="814.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.RequestUri (2412 samples, 2.25%)</title><rect x="767.5" y="787.0" width="26.6" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="770.5" y="798.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.OriginForm (2360 samples, 2.20%)</title><rect x="768.0" y="771.0" width="26.0" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="771.0" y="782.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.PathAbsolute (2360 samples, 2.20%)</title><rect x="768.0" y="755.0" width="26.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="771.0" y="766.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.PathAbsolute$ (2360 samples, 2.20%)</title><rect x="768.0" y="739.0" width="26.0" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="771.0" y="750.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.PathAbsolute (2360 samples, 2.20%)</title><rect x="768.0" y="723.0" width="26.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="771.0" y="734.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.rec$22 (2360 samples, 2.20%)</title><rect x="768.0" y="707.0" width="26.0" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="771.0" y="718.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__advance (208 samples, 0.19%)</title><rect x="768.2" y="691.0" width="2.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="771.2" y="702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/ParserInput$StringBasedParserInput.charAt (208 samples, 0.19%)</title><rect x="768.2" y="675.0" width="2.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="771.2" y="686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String.charAt (208 samples, 0.19%)</title><rect x="768.2" y="659.0" width="2.3" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="771.2" y="670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.Segment (2137 samples, 2.00%)</title><rect x="770.5" y="691.0" width="23.5" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="773.5" y="702.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.Segment$ (2098 samples, 1.96%)</title><rect x="770.9" y="675.0" width="23.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="773.9" y="686.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.Segment (2098 samples, 1.96%)</title><rect x="770.9" y="659.0" width="23.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="773.9" y="670.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.rec$18 (2098 samples, 1.96%)</title><rect x="770.9" y="643.0" width="23.1" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="773.9" y="654.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.Pchar (1998 samples, 1.87%)</title><rect x="771.5" y="627.0" width="22.0" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="774.5" y="638.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.Pchar$ (1998 samples, 1.87%)</title><rect x="771.5" y="611.0" width="22.0" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="774.5" y="622.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.Pchar (1998 samples, 1.87%)</title><rect x="771.5" y="595.0" width="22.0" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="774.5" y="606.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.SubDelims (213 samples, 0.20%)</title><rect x="771.5" y="579.0" width="2.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="774.5" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.SubDelims$ (213 samples, 0.20%)</title><rect x="771.5" y="563.0" width="2.3" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="774.5" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.Unreserved (1785 samples, 1.67%)</title><rect x="773.8" y="579.0" width="19.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="776.8" y="590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.Unreserved$ (1785 samples, 1.67%)</title><rect x="773.8" y="563.0" width="19.7" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="776.8" y="574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/Rfc3986Parser.Unreserved (1785 samples, 1.67%)</title><rect x="773.8" y="547.0" width="19.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="776.8" y="558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/CharPredicate$MaskBased.apply (509 samples, 0.48%)</title><rect x="773.8" y="531.0" width="5.6" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="776.8" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/BoxesRunTime.unboxToChar (264 samples, 0.25%)</title><rect x="776.5" y="515.0" width="2.9" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="779.5" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__advance (377 samples, 0.35%)</title><rect x="779.4" y="531.0" width="4.2" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="782.4" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__restoreState (553 samples, 0.52%)</title><rect x="783.6" y="531.0" width="6.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="786.6" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.__saveState (97 samples, 0.09%)</title><rect x="789.7" y="531.0" width="1.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="792.7" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/BoxesRunTime.boxToCharacter (249 samples, 0.23%)</title><rect x="790.7" y="531.0" width="2.8" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="793.7" y="542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character.valueOf (112 samples, 0.10%)</title><rect x="791.6" y="515.0" width="1.3" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="794.6" y="526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/ValueStack.&lt;init&gt; (292 samples, 0.27%)</title><rect x="795.6" y="835.0" width="3.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="798.6" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/ParserInput$.apply (117 samples, 0.11%)</title><rect x="799.6" y="867.0" width="1.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="802.6" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/ParserInput$StringBasedParserInput.&lt;init&gt; (117 samples, 0.11%)</title><rect x="799.6" y="851.0" width="1.3" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="802.6" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/ParserInput$DefaultParserInput.&lt;init&gt; (117 samples, 0.11%)</title><rect x="799.6" y="835.0" width="1.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="802.6" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/parser/RequestUriParser.&lt;init&gt; (151 samples, 0.14%)</title><rect x="800.9" y="867.0" width="1.7" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="803.9" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/Parser.&lt;init&gt; (105 samples, 0.10%)</title><rect x="800.9" y="851.0" width="1.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="803.9" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/internal/parboiled2/RuleDSL.&lt;init&gt; (105 samples, 0.10%)</title><rect x="800.9" y="835.0" width="1.2" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="803.9" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/server/blaze/Http1ServerStage.collectBodyFromParser (95 samples, 0.09%)</title><rect x="803.4" y="947.0" width="1.1" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="806.4" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (1606 samples, 1.50%)</title><rect x="804.5" y="947.0" width="17.7" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="807.5" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (1606 samples, 1.50%)</title><rect x="804.5" y="931.0" width="17.7" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="807.5" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (1606 samples, 1.50%)</title><rect x="804.5" y="915.0" width="17.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="807.5" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (1606 samples, 1.50%)</title><rect x="804.5" y="899.0" width="17.7" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="807.5" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (1292 samples, 1.21%)</title><rect x="807.9" y="883.0" width="14.3" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="810.9" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (103 samples, 0.10%)</title><rect x="808.2" y="867.0" width="1.1" height="15" fill="#f87878" rx="2" ry="2"/>
<text x="811.2" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1139 samples, 1.06%)</title><rect x="809.5" y="867.0" width="12.6" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="812.5" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1047 samples, 0.98%)</title><rect x="810.5" y="851.0" width="11.6" height="15" fill="#d64747" rx="2" ry="2"/>
<text x="813.5" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1047 samples, 0.98%)</title><rect x="810.5" y="835.0" width="11.6" height="15" fill="#d34343" rx="2" ry="2"/>
<text x="813.5" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (945 samples, 0.88%)</title><rect x="811.7" y="819.0" width="10.4" height="15" fill="#d74848" rx="2" ry="2"/>
<text x="814.7" y="830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (940 samples, 0.88%)</title><rect x="811.7" y="803.0" width="10.4" height="15" fill="#e05555" rx="2" ry="2"/>
<text x="814.7" y="814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (922 samples, 0.86%)</title><rect x="811.9" y="787.0" width="10.2" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="814.9" y="798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (849 samples, 0.79%)</title><rect x="812.7" y="771.0" width="9.4" height="15" fill="#d84a4a" rx="2" ry="2"/>
<text x="815.7" y="782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (822 samples, 0.77%)</title><rect x="813.0" y="755.0" width="9.1" height="15" fill="#e86060" rx="2" ry="2"/>
<text x="816.0" y="766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (783 samples, 0.73%)</title><rect x="813.4" y="739.0" width="8.7" height="15" fill="#f87878" rx="2" ry="2"/>
<text x="816.4" y="750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/Execution$$anon$2.execute (460 samples, 0.43%)</title><rect x="822.2" y="1075.0" width="5.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="825.2" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (460 samples, 0.43%)</title><rect x="822.2" y="1059.0" width="5.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="825.2" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage$$Lambda$3076/1139662062.apply (409 samples, 0.38%)</title><rect x="822.7" y="1043.0" width="4.6" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="825.7" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.$anonfun$readRequest$1$adapted (366 samples, 0.34%)</title><rect x="823.2" y="1027.0" width="4.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="826.2" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.$anonfun$readRequest$1 (366 samples, 0.34%)</title><rect x="823.2" y="1011.0" width="4.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="826.2" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/TimeoutStageBase.resetTimeout (366 samples, 0.34%)</title><rect x="823.2" y="995.0" width="4.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="826.2" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.schedule (362 samples, 0.34%)</title><rect x="823.3" y="979.0" width="4.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="826.3" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.schedule (362 samples, 0.34%)</title><rect x="823.3" y="963.0" width="4.0" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="826.3" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.go$1 (361 samples, 0.34%)</title><rect x="823.3" y="947.0" width="4.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="826.3" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.writeReady (12828 samples, 11.98%)</title><rect x="827.3" y="1155.0" width="141.3" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="830.3" y="1166.0">org/http4s/blaze/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1SocketServerGroup$SocketChannelHead.performWrite (11051 samples, 10.32%)</title><rect x="827.3" y="1139.0" width="121.7" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="830.3" y="1150.0">org/http4s/blaz..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1SocketServerGroup$SocketChannelHead.writeLoop$1 (11046 samples, 10.32%)</title><rect x="827.3" y="1123.0" width="121.7" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="830.3" y="1134.0">org/http4s/blaz..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/BufferTools$.copyBuffers (400 samples, 0.37%)</title><rect x="827.4" y="1107.0" width="4.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="830.4" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/BufferTools$.go$1 (317 samples, 0.30%)</title><rect x="828.3" y="1091.0" width="3.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="831.3" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jint_disjoint_arraycopy (106 samples, 0.10%)</title><rect x="830.5" y="1075.0" width="1.2" height="15" fill="#cd3939" rx="2" ry="2"/>
<text x="833.5" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl.write (10574 samples, 9.88%)</title><rect x="832.5" y="1107.0" width="116.5" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="835.5" y="1118.0">sun/nio/ch/Soc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/spi/AbstractInterruptibleChannel.begin (176 samples, 0.16%)</title><rect x="834.1" y="1091.0" width="1.9" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="837.1" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread.isInterrupted (176 samples, 0.16%)</title><rect x="834.1" y="1075.0" width="1.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="837.1" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil.write (10185 samples, 9.51%)</title><rect x="836.0" y="1091.0" width="112.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="839.0" y="1102.0">sun/nio/ch/IOU..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil.writeFromNativeBuffer (10185 samples, 9.51%)</title><rect x="836.0" y="1075.0" width="112.2" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="839.0" y="1086.0">sun/nio/ch/IOU..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketDispatcher.write (10185 samples, 9.51%)</title><rect x="836.0" y="1059.0" width="112.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="839.0" y="1070.0">sun/nio/ch/Soc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl.write0 (10121 samples, 9.45%)</title><rect x="836.5" y="1043.0" width="111.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="839.5" y="1054.0">sun/nio/ch/Fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9996 samples, 9.34%)</title><rect x="837.3" y="1027.0" width="110.1" height="15" fill="#df5454" rx="2" ry="2"/>
<text x="840.3" y="1038.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__write (9953 samples, 9.30%)</title><rect x="837.8" y="1011.0" width="109.6" height="15" fill="#f37070" rx="2" ry="2"/>
<text x="840.8" y="1022.0">__write</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9765 samples, 9.12%)</title><rect x="839.8" y="995.0" width="107.6" height="15" fill="#cf3d3d" rx="2" ry="2"/>
<text x="842.8" y="1006.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9765 samples, 9.12%)</title><rect x="839.8" y="979.0" width="107.6" height="15" fill="#ee6a6a" rx="2" ry="2"/>
<text x="842.8" y="990.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9530 samples, 8.90%)</title><rect x="842.4" y="963.0" width="105.0" height="15" fill="#d44444" rx="2" ry="2"/>
<text x="845.4" y="974.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9513 samples, 8.88%)</title><rect x="842.6" y="947.0" width="104.8" height="15" fill="#e86161" rx="2" ry="2"/>
<text x="845.6" y="958.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9418 samples, 8.80%)</title><rect x="843.7" y="931.0" width="103.7" height="15" fill="#c83232" rx="2" ry="2"/>
<text x="846.7" y="942.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9357 samples, 8.74%)</title><rect x="844.3" y="915.0" width="103.1" height="15" fill="#f57373" rx="2" ry="2"/>
<text x="847.3" y="926.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9224 samples, 8.61%)</title><rect x="845.8" y="899.0" width="101.6" height="15" fill="#e25757" rx="2" ry="2"/>
<text x="848.8" y="910.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9167 samples, 8.56%)</title><rect x="846.4" y="883.0" width="101.0" height="15" fill="#e45b5b" rx="2" ry="2"/>
<text x="849.4" y="894.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9054 samples, 8.46%)</title><rect x="847.7" y="867.0" width="99.7" height="15" fill="#f37171" rx="2" ry="2"/>
<text x="850.7" y="878.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8911 samples, 8.32%)</title><rect x="849.3" y="851.0" width="98.1" height="15" fill="#ce3c3c" rx="2" ry="2"/>
<text x="852.3" y="862.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8855 samples, 8.27%)</title><rect x="849.9" y="835.0" width="97.5" height="15" fill="#d13f3f" rx="2" ry="2"/>
<text x="852.9" y="846.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8485 samples, 7.92%)</title><rect x="853.9" y="819.0" width="93.5" height="15" fill="#f27070" rx="2" ry="2"/>
<text x="856.9" y="830.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8138 samples, 7.60%)</title><rect x="857.8" y="803.0" width="89.6" height="15" fill="#fa7c7c" rx="2" ry="2"/>
<text x="860.8" y="814.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (7629 samples, 7.12%)</title><rect x="863.4" y="787.0" width="84.0" height="15" fill="#e65e5e" rx="2" ry="2"/>
<text x="866.4" y="798.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (7292 samples, 6.81%)</title><rect x="867.1" y="771.0" width="80.3" height="15" fill="#d84949" rx="2" ry="2"/>
<text x="870.1" y="782.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6638 samples, 6.20%)</title><rect x="874.3" y="755.0" width="73.1" height="15" fill="#d54545" rx="2" ry="2"/>
<text x="877.3" y="766.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6378 samples, 5.96%)</title><rect x="877.2" y="739.0" width="70.2" height="15" fill="#d24141" rx="2" ry="2"/>
<text x="880.2" y="750.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5918 samples, 5.53%)</title><rect x="882.2" y="723.0" width="65.2" height="15" fill="#c93434" rx="2" ry="2"/>
<text x="885.2" y="734.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5756 samples, 5.38%)</title><rect x="884.0" y="707.0" width="63.4" height="15" fill="#ce3a3a" rx="2" ry="2"/>
<text x="887.0" y="718.0">[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5559 samples, 5.19%)</title><rect x="886.2" y="691.0" width="61.2" height="15" fill="#f06c6c" rx="2" ry="2"/>
<text x="889.2" y="702.0">[unkno..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5147 samples, 4.81%)</title><rect x="890.7" y="675.0" width="56.7" height="15" fill="#e96363" rx="2" ry="2"/>
<text x="893.7" y="686.0">[unkno..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5104 samples, 4.77%)</title><rect x="891.2" y="659.0" width="56.2" height="15" fill="#d34242" rx="2" ry="2"/>
<text x="894.2" y="670.0">[unkno..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4959 samples, 4.63%)</title><rect x="892.8" y="643.0" width="54.6" height="15" fill="#ed6868" rx="2" ry="2"/>
<text x="895.8" y="654.0">[unkn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4835 samples, 4.52%)</title><rect x="894.2" y="627.0" width="53.2" height="15" fill="#fb7d7d" rx="2" ry="2"/>
<text x="897.2" y="638.0">[unkn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4559 samples, 4.26%)</title><rect x="897.2" y="611.0" width="50.2" height="15" fill="#f37171" rx="2" ry="2"/>
<text x="900.2" y="622.0">[unkn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4385 samples, 4.10%)</title><rect x="899.1" y="595.0" width="48.3" height="15" fill="#ef6b6b" rx="2" ry="2"/>
<text x="902.1" y="606.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4286 samples, 4.00%)</title><rect x="900.2" y="579.0" width="47.2" height="15" fill="#ef6c6c" rx="2" ry="2"/>
<text x="903.2" y="590.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4209 samples, 3.93%)</title><rect x="901.1" y="563.0" width="46.3" height="15" fill="#d84a4a" rx="2" ry="2"/>
<text x="904.1" y="574.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4050 samples, 3.78%)</title><rect x="902.8" y="547.0" width="44.6" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="905.8" y="558.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3929 samples, 3.67%)</title><rect x="904.2" y="531.0" width="43.2" height="15" fill="#d03e3e" rx="2" ry="2"/>
<text x="907.2" y="542.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3880 samples, 3.62%)</title><rect x="904.7" y="515.0" width="42.7" height="15" fill="#cc3939" rx="2" ry="2"/>
<text x="907.7" y="526.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3840 samples, 3.59%)</title><rect x="905.1" y="499.0" width="42.3" height="15" fill="#f37070" rx="2" ry="2"/>
<text x="908.1" y="510.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3708 samples, 3.46%)</title><rect x="906.6" y="483.0" width="40.8" height="15" fill="#f77676" rx="2" ry="2"/>
<text x="909.6" y="494.0">[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3488 samples, 3.26%)</title><rect x="909.0" y="467.0" width="38.4" height="15" fill="#d94b4b" rx="2" ry="2"/>
<text x="912.0" y="478.0">[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3084 samples, 2.88%)</title><rect x="913.5" y="451.0" width="33.9" height="15" fill="#dc5050" rx="2" ry="2"/>
<text x="916.5" y="462.0">[u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2877 samples, 2.69%)</title><rect x="915.7" y="435.0" width="31.7" height="15" fill="#f77777" rx="2" ry="2"/>
<text x="918.7" y="446.0">[u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2250 samples, 2.10%)</title><rect x="922.7" y="419.0" width="24.7" height="15" fill="#cf3d3d" rx="2" ry="2"/>
<text x="925.7" y="430.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1736 samples, 1.62%)</title><rect x="928.3" y="403.0" width="19.1" height="15" fill="#f77676" rx="2" ry="2"/>
<text x="931.3" y="414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1549 samples, 1.45%)</title><rect x="930.4" y="387.0" width="17.0" height="15" fill="#dd5151" rx="2" ry="2"/>
<text x="933.4" y="398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1473 samples, 1.38%)</title><rect x="931.2" y="371.0" width="16.2" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="934.2" y="382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (188 samples, 0.18%)</title><rect x="945.4" y="355.0" width="2.0" height="15" fill="#fd8080" rx="2" ry="2"/>
<text x="948.4" y="366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (167 samples, 0.16%)</title><rect x="945.6" y="339.0" width="1.8" height="15" fill="#e65e5e" rx="2" ry="2"/>
<text x="948.6" y="350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.tryComplete (1777 samples, 1.66%)</title><rect x="949.0" y="1139.0" width="19.6" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="952.0" y="1150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (96 samples, 0.09%)</title><rect x="949.9" y="1123.0" width="1.0" height="15" fill="#f97a7a" rx="2" ry="2"/>
<text x="952.9" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1$adapted (1486 samples, 1.39%)</title><rect x="951.6" y="1123.0" width="16.4" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="954.6" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1 (1486 samples, 1.39%)</title><rect x="951.6" y="1107.0" width="16.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="954.6" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (1486 samples, 1.39%)</title><rect x="951.6" y="1091.0" width="16.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="954.6" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/Execution$$anon$2.execute (387 samples, 0.36%)</title><rect x="953.6" y="1075.0" width="4.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="956.6" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (387 samples, 0.36%)</title><rect x="953.6" y="1059.0" width="4.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="956.6" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage$$Lambda$3381/1899061388.apply (354 samples, 0.33%)</title><rect x="953.9" y="1043.0" width="3.9" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="956.9" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.$anonfun$writeRequest$1$adapted (310 samples, 0.29%)</title><rect x="954.4" y="1027.0" width="3.4" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="957.4" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.$anonfun$writeRequest$1 (310 samples, 0.29%)</title><rect x="954.4" y="1011.0" width="3.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="957.4" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/TimeoutStageBase.resetTimeout (310 samples, 0.29%)</title><rect x="954.4" y="995.0" width="3.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="957.4" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.schedule (302 samples, 0.28%)</title><rect x="954.5" y="979.0" width="3.3" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="957.5" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.schedule (302 samples, 0.28%)</title><rect x="954.5" y="963.0" width="3.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="957.5" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.go$1 (302 samples, 0.28%)</title><rect x="954.5" y="947.0" width="3.3" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="957.5" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (926 samples, 0.86%)</title><rect x="957.8" y="1075.0" width="10.2" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="960.8" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (926 samples, 0.86%)</title><rect x="957.8" y="1059.0" width="10.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="960.8" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (926 samples, 0.86%)</title><rect x="957.8" y="1043.0" width="10.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="960.8" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (921 samples, 0.86%)</title><rect x="957.9" y="1027.0" width="10.1" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="960.9" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (755 samples, 0.71%)</title><rect x="959.7" y="1011.0" width="8.3" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="962.7" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (639 samples, 0.60%)</title><rect x="960.9" y="995.0" width="7.1" height="15" fill="#ec6767" rx="2" ry="2"/>
<text x="963.9" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (581 samples, 0.54%)</title><rect x="961.6" y="979.0" width="6.4" height="15" fill="#f77777" rx="2" ry="2"/>
<text x="964.6" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (581 samples, 0.54%)</title><rect x="961.6" y="963.0" width="6.4" height="15" fill="#da4c4c" rx="2" ry="2"/>
<text x="964.6" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (530 samples, 0.49%)</title><rect x="962.1" y="947.0" width="5.9" height="15" fill="#fe8080" rx="2" ry="2"/>
<text x="965.1" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (527 samples, 0.49%)</title><rect x="962.2" y="931.0" width="5.8" height="15" fill="#d54545" rx="2" ry="2"/>
<text x="965.2" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (518 samples, 0.48%)</title><rect x="962.2" y="915.0" width="5.8" height="15" fill="#d24141" rx="2" ry="2"/>
<text x="965.2" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (480 samples, 0.45%)</title><rect x="962.7" y="899.0" width="5.3" height="15" fill="#cf3c3c" rx="2" ry="2"/>
<text x="965.7" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (457 samples, 0.43%)</title><rect x="962.9" y="883.0" width="5.1" height="15" fill="#cd3a3a" rx="2" ry="2"/>
<text x="965.9" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (432 samples, 0.40%)</title><rect x="963.2" y="867.0" width="4.8" height="15" fill="#e86060" rx="2" ry="2"/>
<text x="966.2" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.runTasks (3379 samples, 3.16%)</title><rect x="968.6" y="1155.0" width="37.3" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="971.6" y="1166.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/SelectorLoop.go$1 (3324 samples, 3.10%)</title><rect x="969.2" y="1139.0" width="36.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="972.2" y="1150.0">org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (164 samples, 0.15%)</title><rect x="971.4" y="1123.0" width="1.8" height="15" fill="#cf3d3d" rx="2" ry="2"/>
<text x="974.4" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage$$anon$1.run (213 samples, 0.20%)</title><rect x="973.2" y="1123.0" width="2.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="976.2" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage.org$http4s$blaze$channel$nio1$NIO1HeadStage$$setOp (139 samples, 0.13%)</title><rect x="974.0" y="1107.0" width="1.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="977.0" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectionKeyImpl.interestOps (139 samples, 0.13%)</title><rect x="974.0" y="1091.0" width="1.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="977.0" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectionKeyImpl.nioInterestOps (139 samples, 0.13%)</title><rect x="974.0" y="1075.0" width="1.5" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="977.0" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl.translateAndSetInterestOps (139 samples, 0.13%)</title><rect x="974.0" y="1059.0" width="1.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="977.0" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl.putEventOps (139 samples, 0.13%)</title><rect x="974.0" y="1043.0" width="1.5" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="977.0" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.setInterest (139 samples, 0.13%)</title><rect x="974.0" y="1027.0" width="1.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="977.0" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/channel/nio1/NIO1HeadStage$$anon$2.run (2739 samples, 2.56%)</title><rect x="975.5" y="1123.0" width="30.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="978.5" y="1134.0">or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toArray (1017 samples, 0.95%)</title><rect x="976.7" y="1107.0" width="11.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="979.7" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toArray$ (1017 samples, 0.95%)</title><rect x="976.7" y="1091.0" width="11.2" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="979.7" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toArray (989 samples, 0.92%)</title><rect x="976.8" y="1075.0" width="10.9" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="979.8" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (239 samples, 0.22%)</title><rect x="977.0" y="1059.0" width="2.6" height="15" fill="#d94a4a" rx="2" ry="2"/>
<text x="980.0" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractSeq.size (257 samples, 0.24%)</title><rect x="979.6" y="1059.0" width="2.8" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="982.6" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/SeqLike.size$ (225 samples, 0.21%)</title><rect x="979.9" y="1043.0" width="2.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="982.9" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/SeqLike.size (225 samples, 0.21%)</title><rect x="979.9" y="1027.0" width="2.5" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="982.9" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (159 samples, 0.15%)</title><rect x="980.0" y="1011.0" width="1.7" height="15" fill="#db4d4d" rx="2" ry="2"/>
<text x="983.0" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.copyToArray (427 samples, 0.40%)</title><rect x="982.4" y="1059.0" width="4.7" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="985.4" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.copyToArray$ (385 samples, 0.36%)</title><rect x="982.9" y="1043.0" width="4.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="985.9" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.copyToArray (385 samples, 0.36%)</title><rect x="982.9" y="1027.0" width="4.2" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="985.9" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.copyToArray (208 samples, 0.19%)</title><rect x="983.6" y="1011.0" width="2.3" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="986.6" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.copyToArray$ (161 samples, 0.15%)</title><rect x="984.1" y="995.0" width="1.8" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="987.1" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.copyToArray (161 samples, 0.15%)</title><rect x="984.1" y="979.0" width="1.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="987.1" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/ScalaRunTime$.array_update (161 samples, 0.15%)</title><rect x="984.1" y="963.0" width="1.8" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="987.1" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayBuffer.copyToArray (111 samples, 0.10%)</title><rect x="985.9" y="1011.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="988.9" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ResizableArray.copyToArray$ (111 samples, 0.10%)</title><rect x="985.9" y="995.0" width="1.2" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="988.9" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ResizableArray.copyToArray (111 samples, 0.10%)</title><rect x="985.9" y="979.0" width="1.2" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="988.9" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Array$.copy (111 samples, 0.10%)</title><rect x="985.9" y="963.0" width="1.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="988.9" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.tryComplete (1586 samples, 1.48%)</title><rect x="987.9" y="1107.0" width="17.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="990.9" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1$adapted (1463 samples, 1.37%)</title><rect x="989.2" y="1091.0" width="16.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="992.2" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/Promise$DefaultPromise.$anonfun$tryComplete$1 (1463 samples, 1.37%)</title><rect x="989.2" y="1075.0" width="16.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="992.2" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.executeWithValue (1463 samples, 1.37%)</title><rect x="989.2" y="1059.0" width="16.2" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="992.2" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/Execution$$anon$2.execute (308 samples, 0.29%)</title><rect x="990.9" y="1043.0" width="3.4" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="993.9" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/CallbackRunnable.run (308 samples, 0.29%)</title><rect x="990.9" y="1027.0" width="3.4" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="993.9" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage$$Lambda$3486/1900430042.apply (273 samples, 0.25%)</title><rect x="991.3" y="1011.0" width="3.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="994.3" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.$anonfun$writeRequest$2$adapted (242 samples, 0.23%)</title><rect x="991.7" y="995.0" width="2.6" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="994.7" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/QuietTimeoutStage.$anonfun$writeRequest$2 (242 samples, 0.23%)</title><rect x="991.7" y="979.0" width="2.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="994.7" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/pipeline/stages/TimeoutStageBase.resetTimeout (242 samples, 0.23%)</title><rect x="991.7" y="963.0" width="2.6" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="994.7" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.schedule (237 samples, 0.22%)</title><rect x="991.7" y="947.0" width="2.6" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="994.7" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.schedule (237 samples, 0.22%)</title><rect x="991.7" y="931.0" width="2.6" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="994.7" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.go$1 (237 samples, 0.22%)</title><rect x="991.7" y="915.0" width="2.6" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="994.7" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/concurrent/impl/ExecutionContextImpl.execute (981 samples, 0.92%)</title><rect x="994.6" y="1043.0" width="10.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="997.6" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.execute (981 samples, 0.92%)</title><rect x="994.6" y="1027.0" width="10.8" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="997.6" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.externalPush (981 samples, 0.92%)</title><rect x="994.6" y="1011.0" width="10.8" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="997.6" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.signalWork (980 samples, 0.92%)</title><rect x="994.6" y="995.0" width="10.8" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="997.6" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (858 samples, 0.80%)</title><rect x="995.9" y="979.0" width="9.5" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="998.9" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (752 samples, 0.70%)</title><rect x="996.9" y="963.0" width="8.3" height="15" fill="#e65d5d" rx="2" ry="2"/>
<text x="999.9" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (683 samples, 0.64%)</title><rect x="997.7" y="947.0" width="7.5" height="15" fill="#f06d6d" rx="2" ry="2"/>
<text x="1000.7" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (683 samples, 0.64%)</title><rect x="997.7" y="931.0" width="7.5" height="15" fill="#e05555" rx="2" ry="2"/>
<text x="1000.7" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (623 samples, 0.58%)</title><rect x="998.4" y="915.0" width="6.8" height="15" fill="#dc4f4f" rx="2" ry="2"/>
<text x="1001.4" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (617 samples, 0.58%)</title><rect x="998.4" y="899.0" width="6.8" height="15" fill="#e65e5e" rx="2" ry="2"/>
<text x="1001.4" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (607 samples, 0.57%)</title><rect x="998.5" y="883.0" width="6.7" height="15" fill="#f67575" rx="2" ry="2"/>
<text x="1001.5" y="894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (563 samples, 0.53%)</title><rect x="999.0" y="867.0" width="6.2" height="15" fill="#cb3737" rx="2" ry="2"/>
<text x="1002.0" y="878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (547 samples, 0.51%)</title><rect x="999.2" y="851.0" width="6.0" height="15" fill="#ee6a6a" rx="2" ry="2"/>
<text x="1002.2" y="862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (508 samples, 0.47%)</title><rect x="999.6" y="835.0" width="5.6" height="15" fill="#d44343" rx="2" ry="2"/>
<text x="1002.6" y="846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl.select (14902 samples, 13.92%)</title><rect x="1006.0" y="1155.0" width="164.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="1009.0" y="1166.0">sun/nio/ch/SelectorIm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl.select (14902 samples, 13.92%)</title><rect x="1006.0" y="1139.0" width="164.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="1009.0" y="1150.0">sun/nio/ch/SelectorIm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl.lockAndDoSelect (14869 samples, 13.89%)</title><rect x="1006.3" y="1123.0" width="163.9" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="1009.3" y="1134.0">sun/nio/ch/SelectorIm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl.doSelect (14815 samples, 13.84%)</title><rect x="1006.9" y="1107.0" width="163.3" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="1009.9" y="1118.0">sun/nio/ch/EPollSelec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/spi/AbstractSelector.begin (205 samples, 0.19%)</title><rect x="1017.1" y="1091.0" width="2.3" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="1020.1" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread.isInterrupted (205 samples, 0.19%)</title><rect x="1017.1" y="1075.0" width="2.3" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="1020.1" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.poll (9969 samples, 9.31%)</title><rect x="1019.6" y="1091.0" width="109.9" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="1022.6" y="1102.0">sun/nio/ch/EP..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.epollWait (3748 samples, 3.50%)</title><rect x="1021.0" y="1075.0" width="41.3" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="1024.0" y="1086.0">sun..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_nio_ch_EPollArrayWrapper_epollWait (99 samples, 0.09%)</title><rect x="1025.0" y="1059.0" width="1.1" height="15" fill="#ea6464" rx="2" ry="2"/>
<text x="1028.0" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3187 samples, 2.98%)</title><rect x="1026.1" y="1059.0" width="35.2" height="15" fill="#d74848" rx="2" ry="2"/>
<text x="1029.1" y="1070.0">[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (173 samples, 0.16%)</title><rect x="1026.1" y="1043.0" width="2.0" height="15" fill="#db4e4e" rx="2" ry="2"/>
<text x="1029.1" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2958 samples, 2.76%)</title><rect x="1028.7" y="1043.0" width="32.6" height="15" fill="#f06d6d" rx="2" ry="2"/>
<text x="1031.7" y="1054.0">ep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2327 samples, 2.17%)</title><rect x="1035.6" y="1027.0" width="25.7" height="15" fill="#e55d5d" rx="2" ry="2"/>
<text x="1038.6" y="1038.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2327 samples, 2.17%)</title><rect x="1035.6" y="1011.0" width="25.7" height="15" fill="#d54545" rx="2" ry="2"/>
<text x="1038.6" y="1022.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1804 samples, 1.68%)</title><rect x="1041.4" y="995.0" width="19.9" height="15" fill="#eb6565" rx="2" ry="2"/>
<text x="1044.4" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1755 samples, 1.64%)</title><rect x="1041.9" y="979.0" width="19.4" height="15" fill="#d34242" rx="2" ry="2"/>
<text x="1044.9" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1638 samples, 1.53%)</title><rect x="1043.2" y="963.0" width="18.1" height="15" fill="#f06c6c" rx="2" ry="2"/>
<text x="1046.2" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1359 samples, 1.27%)</title><rect x="1046.3" y="947.0" width="15.0" height="15" fill="#c83232" rx="2" ry="2"/>
<text x="1049.3" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (793 samples, 0.74%)</title><rect x="1052.5" y="931.0" width="8.8" height="15" fill="#f26f6f" rx="2" ry="2"/>
<text x="1055.5" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (568 samples, 0.53%)</title><rect x="1055.0" y="915.0" width="6.3" height="15" fill="#e55c5c" rx="2" ry="2"/>
<text x="1058.0" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (245 samples, 0.23%)</title><rect x="1058.6" y="899.0" width="2.7" height="15" fill="#dd5151" rx="2" ry="2"/>
<text x="1061.6" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.updateRegistrations (6085 samples, 5.68%)</title><rect x="1062.3" y="1075.0" width="67.0" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="1065.3" y="1086.0">sun/nio..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper.epollCtl (5846 samples, 5.46%)</title><rect x="1064.9" y="1059.0" width="64.4" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="1067.9" y="1070.0">sun/nio..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI_epoll_ctl (5623 samples, 5.25%)</title><rect x="1067.3" y="1043.0" width="62.0" height="15" fill="#cf3c3c" rx="2" ry="2"/>
<text x="1070.3" y="1054.0">__GI_e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4920 samples, 4.59%)</title><rect x="1075.0" y="1027.0" width="54.3" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="1078.0" y="1038.0">[unkn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4920 samples, 4.59%)</title><rect x="1075.0" y="1011.0" width="54.3" height="15" fill="#e15656" rx="2" ry="2"/>
<text x="1078.0" y="1022.0">[unkn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3893 samples, 3.64%)</title><rect x="1086.4" y="995.0" width="42.9" height="15" fill="#ee6969" rx="2" ry="2"/>
<text x="1089.4" y="1006.0">[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3328 samples, 3.11%)</title><rect x="1092.6" y="979.0" width="36.7" height="15" fill="#f26f6f" rx="2" ry="2"/>
<text x="1095.6" y="990.0">[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2476 samples, 2.31%)</title><rect x="1102.0" y="963.0" width="27.3" height="15" fill="#e45c5c" rx="2" ry="2"/>
<text x="1105.0" y="974.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1578 samples, 1.47%)</title><rect x="1111.9" y="947.0" width="17.4" height="15" fill="#dd5151" rx="2" ry="2"/>
<text x="1114.9" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (573 samples, 0.54%)</title><rect x="1122.9" y="931.0" width="6.4" height="15" fill="#fe8181" rx="2" ry="2"/>
<text x="1125.9" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (397 samples, 0.37%)</title><rect x="1124.9" y="915.0" width="4.4" height="15" fill="#e55c5c" rx="2" ry="2"/>
<text x="1127.9" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (260 samples, 0.24%)</title><rect x="1126.4" y="899.0" width="2.9" height="15" fill="#e05555" rx="2" ry="2"/>
<text x="1129.4" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl.updateSelectedKeys (640 samples, 0.60%)</title><rect x="1129.5" y="1091.0" width="7.0" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="1132.5" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.get (331 samples, 0.31%)</title><rect x="1131.0" y="1075.0" width="3.6" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="1134.0" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.getNode (331 samples, 0.31%)</title><rect x="1131.0" y="1059.0" width="3.6" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="1134.0" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet.add (132 samples, 0.12%)</title><rect x="1134.6" y="1075.0" width="1.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="1137.6" y="1086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.put (132 samples, 0.12%)</title><rect x="1134.6" y="1059.0" width="1.5" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="1137.6" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap.putVal (132 samples, 0.12%)</title><rect x="1134.6" y="1043.0" width="1.5" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="1137.6" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil.drain (2595 samples, 2.42%)</title><rect x="1136.5" y="1091.0" width="28.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="1139.5" y="1102.0">su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2453 samples, 2.29%)</title><rect x="1137.4" y="1075.0" width="27.1" height="15" fill="#c93434" rx="2" ry="2"/>
<text x="1140.4" y="1086.0">[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (494 samples, 0.46%)</title><rect x="1137.4" y="1059.0" width="5.5" height="15" fill="#f47272" rx="2" ry="2"/>
<text x="1140.4" y="1070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (152 samples, 0.14%)</title><rect x="1137.4" y="1043.0" width="1.7" height="15" fill="#dd5050" rx="2" ry="2"/>
<text x="1140.4" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (115 samples, 0.11%)</title><rect x="1137.9" y="1027.0" width="1.2" height="15" fill="#e75f5f" rx="2" ry="2"/>
<text x="1140.9" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (115 samples, 0.11%)</title><rect x="1137.9" y="1011.0" width="1.2" height="15" fill="#cb3636" rx="2" ry="2"/>
<text x="1140.9" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (114 samples, 0.11%)</title><rect x="1137.9" y="995.0" width="1.2" height="15" fill="#c93434" rx="2" ry="2"/>
<text x="1140.9" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (113 samples, 0.11%)</title><rect x="1137.9" y="979.0" width="1.2" height="15" fill="#f26f6f" rx="2" ry="2"/>
<text x="1140.9" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (98 samples, 0.09%)</title><rect x="1138.0" y="963.0" width="1.1" height="15" fill="#f37171" rx="2" ry="2"/>
<text x="1141.0" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (91 samples, 0.08%)</title><rect x="1138.1" y="947.0" width="1.0" height="15" fill="#ca3434" rx="2" ry="2"/>
<text x="1141.1" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::javaTimeMillis() (338 samples, 0.32%)</title><rect x="1139.2" y="1043.0" width="3.7" height="15" fill="#cccc3c" rx="2" ry="2"/>
<text x="1142.2" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (338 samples, 0.32%)</title><rect x="1139.2" y="1027.0" width="3.7" height="15" fill="#da4c4c" rx="2" ry="2"/>
<text x="1142.2" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (323 samples, 0.30%)</title><rect x="1139.2" y="1011.0" width="3.5" height="15" fill="#df5454" rx="2" ry="2"/>
<text x="1142.2" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (322 samples, 0.30%)</title><rect x="1139.2" y="995.0" width="3.5" height="15" fill="#c93333" rx="2" ry="2"/>
<text x="1142.2" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (322 samples, 0.30%)</title><rect x="1139.2" y="979.0" width="3.5" height="15" fill="#de5353" rx="2" ry="2"/>
<text x="1142.2" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (187 samples, 0.17%)</title><rect x="1140.7" y="963.0" width="2.0" height="15" fill="#e65f5f" rx="2" ry="2"/>
<text x="1143.7" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (181 samples, 0.17%)</title><rect x="1140.7" y="947.0" width="2.0" height="15" fill="#fc7d7d" rx="2" ry="2"/>
<text x="1143.7" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (175 samples, 0.16%)</title><rect x="1140.8" y="931.0" width="1.9" height="15" fill="#f87777" rx="2" ry="2"/>
<text x="1143.8" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (166 samples, 0.16%)</title><rect x="1140.9" y="915.0" width="1.8" height="15" fill="#d64646" rx="2" ry="2"/>
<text x="1143.9" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (110 samples, 0.10%)</title><rect x="1141.5" y="899.0" width="1.2" height="15" fill="#ef6b6b" rx="2" ry="2"/>
<text x="1144.5" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (1921 samples, 1.79%)</title><rect x="1142.9" y="1059.0" width="21.2" height="15" fill="#dd5151" rx="2" ry="2"/>
<text x="1145.9" y="1070.0">_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1710 samples, 1.60%)</title><rect x="1145.2" y="1043.0" width="18.9" height="15" fill="#eb6666" rx="2" ry="2"/>
<text x="1148.2" y="1054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1710 samples, 1.60%)</title><rect x="1145.2" y="1027.0" width="18.9" height="15" fill="#ee6a6a" rx="2" ry="2"/>
<text x="1148.2" y="1038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1256 samples, 1.17%)</title><rect x="1150.2" y="1011.0" width="13.9" height="15" fill="#fb7c7c" rx="2" ry="2"/>
<text x="1153.2" y="1022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1231 samples, 1.15%)</title><rect x="1150.5" y="995.0" width="13.6" height="15" fill="#cc3939" rx="2" ry="2"/>
<text x="1153.5" y="1006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1138 samples, 1.06%)</title><rect x="1151.5" y="979.0" width="12.6" height="15" fill="#df5353" rx="2" ry="2"/>
<text x="1154.5" y="990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1083 samples, 1.01%)</title><rect x="1152.1" y="963.0" width="12.0" height="15" fill="#e45b5b" rx="2" ry="2"/>
<text x="1155.1" y="974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (874 samples, 0.82%)</title><rect x="1154.4" y="947.0" width="9.7" height="15" fill="#e35959" rx="2" ry="2"/>
<text x="1157.4" y="958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (581 samples, 0.54%)</title><rect x="1157.7" y="931.0" width="6.4" height="15" fill="#e05555" rx="2" ry="2"/>
<text x="1160.7" y="942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (344 samples, 0.32%)</title><rect x="1160.3" y="915.0" width="3.8" height="15" fill="#d64646" rx="2" ry="2"/>
<text x="1163.3" y="926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (193 samples, 0.18%)</title><rect x="1161.9" y="899.0" width="2.2" height="15" fill="#fb7d7d" rx="2" ry="2"/>
<text x="1164.9" y="910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl.processDeregisterQueue (460 samples, 0.43%)</title><rect x="1165.1" y="1091.0" width="5.1" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="1168.1" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor$$anon$1.run (144 samples, 0.13%)</title><rect x="1170.6" y="1171.0" width="1.6" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="1173.6" y="1182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.org$http4s$blaze$util$TickWheelExecutor$$cycle (144 samples, 0.13%)</title><rect x="1170.6" y="1155.0" width="1.6" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="1173.6" y="1166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.handleTasks (138 samples, 0.13%)</title><rect x="1170.7" y="1139.0" width="1.5" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="1173.7" y="1150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/blaze/util/TickWheelExecutor.go$2 (138 samples, 0.13%)</title><rect x="1170.7" y="1123.0" width="1.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="1173.7" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1594 samples, 1.49%)</title><rect x="1172.4" y="1171.0" width="17.6" height="15" fill="#f47272" rx="2" ry="2"/>
<text x="1175.4" y="1182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start(Thread*) (1594 samples, 1.49%)</title><rect x="1172.4" y="1155.0" width="17.6" height="15" fill="#e35a5a" rx="2" ry="2"/>
<text x="1175.4" y="1166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GCTaskThread::run() (1550 samples, 1.45%)</title><rect x="1172.4" y="1139.0" width="17.1" height="15" fill="#d1d13e" rx="2" ry="2"/>
<text x="1175.4" y="1150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StealTask::do_it(GCTaskManager*, unsigned int) (1464 samples, 1.37%)</title><rect x="1173.2" y="1123.0" width="16.1" height="15" fill="#cfcf3d" rx="2" ry="2"/>
<text x="1176.2" y="1134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GenericTaskQueueSet&lt;OverflowTaskQueue&lt;StarTask, (MemoryType)1, 131072u&gt;, (MemoryType)1&gt;::steal_best_of_2(unsigned int, int*, StarTask&amp;) (262 samples, 0.24%)</title><rect x="1173.4" y="1107.0" width="2.9" height="15" fill="#cccc3c" rx="2" ry="2"/>
<text x="1176.4" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PSPromotionManager::drain_stacks_depth(bool) (186 samples, 0.17%)</title><rect x="1176.3" y="1107.0" width="2.1" height="15" fill="#b8b835" rx="2" ry="2"/>
<text x="1179.3" y="1118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>oopDesc* PSPromotionManager::copy_to_survivor_space&lt;false&gt;(oopDesc*) (115 samples, 0.11%)</title><rect x="1177.1" y="1091.0" width="1.3" height="15" fill="#e1e144" rx="2" ry="2"/>
<text x="1180.1" y="1102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SpinPause (862 samples, 0.81%)</title><rect x="1179.1" y="1107.0" width="9.5" height="15" fill="#fd7f7f" rx="2" ry="2"/>
<text x="1182.1" y="1118.0"></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment