Skip to content

Instantly share code, notes, and snippets.

@joliss
Created June 30, 2017 14:37
Show Gist options
  • Save joliss/eb772edd32eb8befae437ef6e643bd6d to your computer and use it in GitHub Desktop.
Save joliss/eb772edd32eb8befae437ef6e643bd6d 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="2114" onload="init(evt)" viewBox="0 0 1200 2114" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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.0" y="0" width="1200.0" height="2114.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..heap..HeapAlloc$u20$as$u20$alloc..allocator..Alloc$GT$::dealloc::h697345d96e54f71e (1 samples, 0.05%)</title><rect x="593.0" y="1825" width="0.6" height="15.0" fill="rgb(211,138,34)" rx="2" ry="2" />
<text text-anchor="" x="596.02" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.05%)</title><rect x="696.3" y="1793" width="0.6" height="15.0" fill="rgb(247,138,22)" rx="2" ry="2" />
<text text-anchor="" x="699.33" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (75 samples, 3.55%)</title><rect x="16.7" y="97" width="41.9" height="15.0" fill="rgb(252,89,23)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_tree_remove (67 samples, 3.17%)</title><rect x="427.2" y="2033" width="37.4" height="15.0" fill="rgb(229,50,10)" rx="2" ry="2" />
<text text-anchor="" x="430.16" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >are..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1873" width="0.6" height="15.0" fill="rgb(243,203,46)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="2001" width="1.1" height="15.0" fill="rgb(224,45,25)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1105" width="0.5" height="15.0" fill="rgb(223,220,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_bitmap_init (1 samples, 0.05%)</title><rect x="299.8" y="2017" width="0.6" height="15.0" fill="rgb(254,91,6)" rx="2" ry="2" />
<text text-anchor="" x="302.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1025" width="0.5" height="15.0" fill="rgb(217,115,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (3 samples, 0.14%)</title><rect x="60.3" y="177" width="1.6" height="15.0" fill="rgb(254,225,7)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_split_remove (4 samples, 0.19%)</title><rect x="380.8" y="2033" width="2.2" height="15.0" fill="rgb(231,28,44)" rx="2" ry="2" />
<text text-anchor="" x="383.81" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (4 samples, 0.19%)</title><rect x="10.6" y="2033" width="2.2" height="15.0" fill="rgb(228,207,10)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1665" width="0.5" height="15.0" fill="rgb(213,179,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="161" width="0.6" height="15.0" fill="rgb(214,5,47)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1841" width="0.5" height="15.0" fill="rgb(251,139,50)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1905" width="0.5" height="15.0" fill="rgb(241,157,34)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.66%)</title><rect x="74.2" y="1873" width="7.8" height="15.0" fill="rgb(218,161,20)" rx="2" ry="2" />
<text text-anchor="" x="77.22" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mempcpy (1 samples, 0.05%)</title><rect x="1185.5" y="2017" width="0.6" height="15.0" fill="rgb(220,189,4)" rx="2" ry="2" />
<text text-anchor="" x="1188.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (1 samples, 0.05%)</title><rect x="58.6" y="113" width="0.5" height="15.0" fill="rgb(238,112,19)" rx="2" ry="2" />
<text text-anchor="" x="61.58" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (126 samples, 5.96%)</title><rect x="137.3" y="1809" width="70.4" height="15.0" fill="rgb(249,92,50)" rx="2" ry="2" />
<text text-anchor="" x="140.33" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (218 samples, 10.32%)</title><rect x="786.8" y="1777" width="121.7" height="15.0" fill="rgb(247,72,37)" rx="2" ry="2" />
<text text-anchor="" x="789.80" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.kallsy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1201" width="46.9" height="15.0" fill="rgb(227,35,48)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (82 samples, 3.88%)</title><rect x="321.6" y="1953" width="45.8" height="15.0" fill="rgb(244,114,37)" rx="2" ry="2" />
<text text-anchor="" x="324.61" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ke..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.2" y="1841" width="0.6" height="15.0" fill="rgb(239,101,27)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (75 samples, 3.55%)</title><rect x="16.7" y="81" width="41.9" height="15.0" fill="rgb(216,23,45)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1889" width="0.6" height="15.0" fill="rgb(242,77,38)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1985" width="0.5" height="15.0" fill="rgb(218,25,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::hb65f77d64b510b7f (6 samples, 0.28%)</title><rect x="1179.9" y="1841" width="3.4" height="15.0" fill="rgb(242,160,20)" rx="2" ry="2" />
<text text-anchor="" x="1182.95" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.1" y="81" width="0.6" height="15.0" fill="rgb(214,153,34)" rx="2" ry="2" />
<text text-anchor="" x="62.14" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1889" width="46.9" height="15.0" fill="rgb(219,14,11)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (1 samples, 0.05%)</title><rect x="1172.7" y="1809" width="0.5" height="15.0" fill="rgb(248,195,23)" rx="2" ry="2" />
<text text-anchor="" x="1175.69" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::nat::h7b1732ad8f4e4cea (10 samples, 0.47%)</title><rect x="1155.4" y="1809" width="5.6" height="15.0" fill="rgb(237,87,2)" rx="2" ry="2" />
<text text-anchor="" x="1158.38" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (1 samples, 0.05%)</title><rect x="59.1" y="129" width="0.6" height="15.0" fill="rgb(234,107,38)" rx="2" ry="2" />
<text text-anchor="" x="62.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::base_version::h2f073dca733652c2 (1 samples, 0.05%)</title><rect x="1021.9" y="1793" width="0.6" height="15.0" fill="rgb(248,166,26)" rx="2" ry="2" />
<text text-anchor="" x="1024.91" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::h3a84affaa531b35d (1,233 samples, 58.35%)</title><rect x="495.8" y="2001" width="688.6" height="15.0" fill="rgb(252,149,22)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::h3a84affaa531b35d</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1825" width="1.1" height="15.0" fill="rgb(232,65,42)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1,233 samples, 58.35%)</title><rect x="495.8" y="2033" width="688.6" height="15.0" fill="rgb(243,9,30)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_nactive_add.isra.28 (1 samples, 0.05%)</title><rect x="373.0" y="2033" width="0.5" height="15.0" fill="rgb(225,137,42)" rx="2" ry="2" />
<text text-anchor="" x="375.99" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1921" width="0.6" height="15.0" fill="rgb(229,118,44)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (41 samples, 1.94%)</title><rect x="344.5" y="1921" width="22.9" height="15.0" fill="rgb(235,59,39)" rx="2" ry="2" />
<text text-anchor="" x="347.51" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (25 samples, 1.18%)</title><rect x="464.6" y="2001" width="13.9" height="15.0" fill="rgb(206,25,16)" rx="2" ry="2" />
<text text-anchor="" x="467.58" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="897" width="0.5" height="15.0" fill="rgb(219,24,28)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="737" width="0.5" height="15.0" fill="rgb(207,148,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="241" width="0.5" height="15.0" fill="rgb(246,206,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (29 samples, 1.37%)</title><rect x="993.4" y="1809" width="16.2" height="15.0" fill="rgb(208,160,0)" rx="2" ry="2" />
<text text-anchor="" x="996.43" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="337" width="46.9" height="15.0" fill="rgb(224,180,39)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="58.6" y="97" width="0.5" height="15.0" fill="rgb(239,38,8)" rx="2" ry="2" />
<text text-anchor="" x="61.58" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="145" width="1.1" height="15.0" fill="rgb(252,39,43)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align::h53022985b3075fb7 (1 samples, 0.05%)</title><rect x="658.9" y="1809" width="0.6" height="15.0" fill="rgb(232,172,12)" rx="2" ry="2" />
<text text-anchor="" x="661.92" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="289" width="46.9" height="15.0" fill="rgb(241,100,25)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1857" width="0.6" height="15.0" fill="rgb(242,128,22)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="865" width="46.9" height="15.0" fill="rgb(249,188,17)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1040.3" y="1681" width="1.7" height="15.0" fill="rgb(236,171,6)" rx="2" ry="2" />
<text text-anchor="" x="1043.34" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="2001" width="0.6" height="15.0" fill="rgb(222,158,12)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.2" y="1809" width="0.6" height="15.0" fill="rgb(216,148,2)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="705" width="0.5" height="15.0" fill="rgb(246,45,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="609" width="0.5" height="15.0" fill="rgb(252,43,42)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (5 samples, 0.24%)</title><rect x="1065.5" y="1745" width="2.8" height="15.0" fill="rgb(208,36,5)" rx="2" ry="2" />
<text text-anchor="" x="1068.47" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$F$u20$as$u20$test..FnBox$LT$T$GT$$GT$::call_box::haf05963153113461 (1,232 samples, 58.31%)</title><rect x="495.8" y="1921" width="688.1" height="15.0" fill="rgb(216,78,32)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$F$u20$as$u20$test..FnBox$LT$T$GT$$GT$::call_box::haf05963153113461</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1537" width="46.9" height="15.0" fill="rgb(215,48,33)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$package_manager..manifest..PackageName$u20$as$u20$core..hash..Hash$GT$::hash::he4e34b9795ef06e4 (25 samples, 1.18%)</title><rect x="733.7" y="1809" width="14.0" height="15.0" fill="rgb(241,71,20)" rx="2" ry="2" />
<text text-anchor="" x="736.75" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1425" width="46.9" height="15.0" fill="rgb(229,228,38)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.2" y="1873" width="0.6" height="15.0" fill="rgb(234,31,22)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.7" y="65" width="0.6" height="15.0" fill="rgb(252,93,43)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1953" width="0.6" height="15.0" fill="rgb(237,56,23)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="833" width="46.9" height="15.0" fill="rgb(238,111,53)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_choose.part.25.constprop.29 (1 samples, 0.05%)</title><rect x="16.7" y="33" width="0.6" height="15.0" fill="rgb(232,11,33)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_file_read_iter (4 samples, 0.19%)</title><rect x="10.6" y="1937" width="2.2" height="15.0" fill="rgb(248,29,48)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1187.2" y="1953" width="0.6" height="15.0" fill="rgb(224,201,6)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (1 samples, 0.05%)</title><rect x="1186.6" y="2017" width="0.6" height="15.0" fill="rgb(218,156,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.65" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="465" width="0.5" height="15.0" fill="rgb(221,186,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.05%)</title><rect x="1183.9" y="1937" width="0.5" height="15.0" fill="rgb(212,168,10)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1825" width="1.6" height="15.0" fill="rgb(248,89,32)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="881" width="46.9" height="15.0" fill="rgb(216,173,24)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align::h53022985b3075fb7 (2 samples, 0.09%)</title><rect x="1049.3" y="1729" width="1.1" height="15.0" fill="rgb(245,11,39)" rx="2" ry="2" />
<text text-anchor="" x="1052.27" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="721" width="0.5" height="15.0" fill="rgb(226,201,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1697" width="46.9" height="15.0" fill="rgb(240,175,8)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (60 samples, 2.84%)</title><rect x="174.2" y="1777" width="33.5" height="15.0" fill="rgb(246,37,12)" rx="2" ry="2" />
<text text-anchor="" x="177.18" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1617" width="0.5" height="15.0" fill="rgb(228,151,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_bmap_search_multi_extents (1 samples, 0.05%)</title><rect x="1187.2" y="1809" width="0.6" height="15.0" fill="rgb(247,2,4)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1345" width="0.5" height="15.0" fill="rgb(232,186,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned (1 samples, 0.05%)</title><rect x="125.0" y="2017" width="0.6" height="15.0" fill="rgb(242,178,47)" rx="2" ry="2" />
<text text-anchor="" x="128.04" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="425.5" y="1953" width="1.7" height="15.0" fill="rgb(238,139,48)" rx="2" ry="2" />
<text text-anchor="" x="428.49" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="1953" width="1.1" height="15.0" fill="rgb(229,59,19)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::dealloc_buffer::hd67a259737c1d678 (14 samples, 0.66%)</title><rect x="650.5" y="1809" width="7.9" height="15.0" fill="rgb(237,44,37)" rx="2" ry="2" />
<text text-anchor="" x="653.54" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_base_alloc (1 samples, 0.05%)</title><rect x="1189.4" y="2033" width="0.6" height="15.0" fill="rgb(217,19,52)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.85%)</title><rect x="498.6" y="1825" width="10.1" height="15.0" fill="rgb(213,1,37)" rx="2" ry="2" />
<text text-anchor="" x="501.64" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1825" width="0.5" height="15.0" fill="rgb(222,144,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1649" width="0.5" height="15.0" fill="rgb(253,9,40)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="1921" width="1.1" height="15.0" fill="rgb(254,196,32)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1187.2" y="1969" width="0.6" height="15.0" fill="rgb(209,88,2)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::version_id::h04fd59d167d57f3a (1 samples, 0.05%)</title><rect x="1161.0" y="1809" width="0.5" height="15.0" fill="rgb(247,202,43)" rx="2" ry="2" />
<text text-anchor="" x="1163.96" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1505" width="46.9" height="15.0" fill="rgb(254,21,54)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="424.9" y="1969" width="2.3" height="15.0" fill="rgb(244,49,12)" rx="2" ry="2" />
<text text-anchor="" x="427.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_bin_nonfull_run_tryget (1 samples, 0.05%)</title><rect x="1187.8" y="2017" width="0.5" height="15.0" fill="rgb(231,50,20)" rx="2" ry="2" />
<text text-anchor="" x="1190.77" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.52%)</title><rect x="361.3" y="1873" width="6.1" height="15.0" fill="rgb(229,163,49)" rx="2" ry="2" />
<text text-anchor="" x="364.26" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::_$LT$impl$u20$core..str..FromStr$u20$for$u20$u64$GT$::from_str::hc20011d79384a89b (3 samples, 0.14%)</title><rect x="1063.8" y="1745" width="1.7" height="15.0" fill="rgb(222,225,26)" rx="2" ry="2" />
<text text-anchor="" x="1066.79" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (28 samples, 1.33%)</title><rect x="17.3" y="33" width="15.6" height="15.0" fill="rgb(222,180,51)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_dirty_insert (1 samples, 0.05%)</title><rect x="376.9" y="2033" width="0.6" height="15.0" fill="rgb(220,189,1)" rx="2" ry="2" />
<text text-anchor="" x="379.90" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::hed866c8729cc914a (1,026 samples, 48.56%)</title><rect x="610.3" y="1873" width="573.0" height="15.0" fill="rgb(238,77,26)" rx="2" ry="2" />
<text text-anchor="" x="613.33" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::hed866c8729cc914a</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Alloc::alloc_array::hd322018fdc713223 (15 samples, 0.71%)</title><rect x="1042.0" y="1745" width="8.4" height="15.0" fill="rgb(233,179,49)" rx="2" ry="2" />
<text text-anchor="" x="1045.01" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="1953" width="0.6" height="15.0" fill="rgb(234,215,49)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="881" width="0.5" height="15.0" fill="rgb(243,224,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="913" width="0.5" height="15.0" fill="rgb(245,168,34)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::_$LT$impl$u20$core..str..FromStr$u20$for$u20$u64$GT$::from_str::hc20011d79384a89b (1 samples, 0.05%)</title><rect x="1053.7" y="1761" width="0.6" height="15.0" fill="rgb(211,11,47)" rx="2" ry="2" />
<text text-anchor="" x="1056.74" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="225" width="0.5" height="15.0" fill="rgb(238,24,25)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1937" width="1.1" height="15.0" fill="rgb(218,203,30)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="81" width="1.6" height="15.0" fill="rgb(224,101,8)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..heap..HeapAlloc$u20$as$u20$alloc..allocator..Alloc$GT$::alloc::hf2638bc7a060484e (3 samples, 0.14%)</title><rect x="1047.6" y="1729" width="1.7" height="15.0" fill="rgb(209,130,50)" rx="2" ry="2" />
<text text-anchor="" x="1050.60" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="257" width="0.5" height="15.0" fill="rgb(254,8,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (114 samples, 5.40%)</title><rect x="921.9" y="1793" width="63.7" height="15.0" fill="rgb(242,61,2)" rx="2" ry="2" />
<text text-anchor="" x="924.95" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="129" width="1.1" height="15.0" fill="rgb(210,102,46)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.1" y="65" width="0.6" height="15.0" fill="rgb(249,74,51)" rx="2" ry="2" />
<text text-anchor="" x="62.14" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="833" width="0.5" height="15.0" fill="rgb(207,145,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1665" width="46.9" height="15.0" fill="rgb(231,1,28)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="449" width="46.9" height="15.0" fill="rgb(247,204,52)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="817" width="46.9" height="15.0" fill="rgb(240,8,18)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="81.5" y="1825" width="0.5" height="15.0" fill="rgb(247,14,17)" rx="2" ry="2" />
<text text-anchor="" x="84.48" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (25 samples, 1.18%)</title><rect x="464.6" y="1985" width="13.9" height="15.0" fill="rgb(222,35,29)" rx="2" ry="2" />
<text text-anchor="" x="467.58" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="2017" width="1.1" height="15.0" fill="rgb(234,164,39)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (72 samples, 3.41%)</title><rect x="945.4" y="1729" width="40.2" height="15.0" fill="rgb(212,184,37)" rx="2" ry="2" />
<text text-anchor="" x="948.40" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="497" width="0.5" height="15.0" fill="rgb(252,122,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_split_large_helper (1 samples, 0.05%)</title><rect x="380.3" y="2033" width="0.5" height="15.0" fill="rgb(249,161,52)" rx="2" ry="2" />
<text text-anchor="" x="383.25" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1233" width="0.5" height="15.0" fill="rgb(248,184,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (3 samples, 0.14%)</title><rect x="588.6" y="1825" width="1.6" height="15.0" fill="rgb(254,202,42)" rx="2" ry="2" />
<text text-anchor="" x="591.55" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1841" width="0.6" height="15.0" fill="rgb(215,157,40)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1841" width="46.9" height="15.0" fill="rgb(219,0,48)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1905" width="0.6" height="15.0" fill="rgb(237,146,34)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1921" width="0.5" height="15.0" fill="rgb(248,132,7)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hc1c26862b11f60c5 (3 samples, 0.14%)</title><rect x="1178.3" y="1825" width="1.6" height="15.0" fill="rgb(221,24,32)" rx="2" ry="2" />
<text text-anchor="" x="1181.27" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1745" width="0.5" height="15.0" fill="rgb(233,97,23)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.28%)</title><rect x="1038.7" y="1745" width="3.3" height="15.0" fill="rgb(221,145,25)" rx="2" ry="2" />
<text text-anchor="" x="1041.66" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::dealloc_buffer::hd67a259737c1d678 (1 samples, 0.05%)</title><rect x="1169.3" y="1841" width="0.6" height="15.0" fill="rgb(234,88,13)" rx="2" ry="2" />
<text text-anchor="" x="1172.34" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (134 samples, 6.34%)</title><rect x="132.9" y="1825" width="74.8" height="15.0" fill="rgb(234,66,33)" rx="2" ry="2" />
<text text-anchor="" x="135.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="537.7" y="1681" width="0.6" height="15.0" fill="rgb(211,187,46)" rx="2" ry="2" />
<text text-anchor="" x="540.73" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="641" width="46.9" height="15.0" fill="rgb(224,123,48)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::nat::h7b1732ad8f4e4cea (1 samples, 0.05%)</title><rect x="1068.3" y="1777" width="0.5" height="15.0" fill="rgb(252,74,27)" rx="2" ry="2" />
<text text-anchor="" x="1071.26" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (141 samples, 6.67%)</title><rect x="128.9" y="1905" width="78.8" height="15.0" fill="rgb(240,205,16)" rx="2" ry="2" />
<text text-anchor="" x="131.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="769" width="46.9" height="15.0" fill="rgb(228,195,37)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hc1c26862b11f60c5 (10 samples, 0.47%)</title><rect x="1097.9" y="1809" width="5.5" height="15.0" fill="rgb(215,119,33)" rx="2" ry="2" />
<text text-anchor="" x="1100.86" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1297" width="0.5" height="15.0" fill="rgb(253,81,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$package_manager..manifest..PackageName$u20$as$u20$core..hash..Hash$GT$::hash::he4e34b9795ef06e4 (3 samples, 0.14%)</title><rect x="1178.3" y="1841" width="1.6" height="15.0" fill="rgb(238,108,14)" rx="2" ry="2" />
<text text-anchor="" x="1181.27" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="481" width="46.9" height="15.0" fill="rgb(247,190,4)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..arc..Arc$LT$T$GT$$GT$::drop_slow::h6165c7360b343823 (203 samples, 9.61%)</title><rect x="496.4" y="1889" width="113.4" height="15.0" fill="rgb(240,18,13)" rx="2" ry="2" />
<text text-anchor="" x="499.41" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$alloc..ar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="424.9" y="1985" width="2.3" height="15.0" fill="rgb(218,170,45)" rx="2" ry="2" />
<text text-anchor="" x="427.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1187.2" y="1985" width="0.6" height="15.0" fill="rgb(232,169,33)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.52%)</title><rect x="502.6" y="1745" width="6.1" height="15.0" fill="rgb(235,209,24)" rx="2" ry="2" />
<text text-anchor="" x="505.55" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_chunk_alloc (1 samples, 0.05%)</title><rect x="1188.3" y="2017" width="0.6" height="15.0" fill="rgb(226,216,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (1 samples, 0.05%)</title><rect x="657.8" y="1793" width="0.6" height="15.0" fill="rgb(207,148,45)" rx="2" ry="2" />
<text text-anchor="" x="660.80" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1713" width="0.5" height="15.0" fill="rgb(213,221,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (27 samples, 1.28%)</title><rect x="1130.8" y="1729" width="15.1" height="15.0" fill="rgb(220,75,38)" rx="2" ry="2" />
<text text-anchor="" x="1133.80" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="849" width="46.9" height="15.0" fill="rgb(211,122,17)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1857" width="1.1" height="15.0" fill="rgb(213,103,19)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (4 samples, 0.19%)</title><rect x="659.5" y="1809" width="2.2" height="15.0" fill="rgb(233,35,15)" rx="2" ry="2" />
<text text-anchor="" x="662.47" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="161" width="1.6" height="15.0" fill="rgb(225,84,37)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1329" width="0.5" height="15.0" fill="rgb(230,191,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="1921" width="0.5" height="15.0" fill="rgb(231,198,29)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h80a1ff9a85beb4cf (2 samples, 0.09%)</title><rect x="608.1" y="1825" width="1.1" height="15.0" fill="rgb(235,65,14)" rx="2" ry="2" />
<text text-anchor="" x="611.10" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (114 samples, 5.40%)</title><rect x="921.9" y="1777" width="63.7" height="15.0" fill="rgb(249,61,3)" rx="2" ry="2" />
<text text-anchor="" x="924.95" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_purge_to_limit (10 samples, 0.47%)</title><rect x="82.0" y="2001" width="5.6" height="15.0" fill="rgb(234,126,37)" rx="2" ry="2" />
<text text-anchor="" x="85.04" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mmap64 (2 samples, 0.09%)</title><rect x="985.6" y="1825" width="1.1" height="15.0" fill="rgb(234,144,30)" rx="2" ry="2" />
<text text-anchor="" x="988.61" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="536.6" y="1777" width="1.7" height="15.0" fill="rgb(220,122,10)" rx="2" ry="2" />
<text text-anchor="" x="539.62" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="225" width="46.9" height="15.0" fill="rgb(229,173,4)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1073" width="0.5" height="15.0" fill="rgb(241,177,46)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1057" width="0.5" height="15.0" fill="rgb(249,103,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (38 samples, 1.80%)</title><rect x="346.2" y="1905" width="21.2" height="15.0" fill="rgb(205,67,43)" rx="2" ry="2" />
<text text-anchor="" x="349.19" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (49 samples, 2.32%)</title><rect x="1118.5" y="1793" width="27.4" height="15.0" fill="rgb(226,201,11)" rx="2" ry="2" />
<text text-anchor="" x="1121.52" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="1905" width="1.1" height="15.0" fill="rgb(241,90,1)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="1969" width="0.5" height="15.0" fill="rgb(232,21,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1089" width="0.5" height="15.0" fill="rgb(245,143,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_maybe_purge.part.39 (2 samples, 0.09%)</title><rect x="276.9" y="2017" width="1.2" height="15.0" fill="rgb(228,5,26)" rx="2" ry="2" />
<text text-anchor="" x="279.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1169" width="0.5" height="15.0" fill="rgb(229,191,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="693.5" y="1761" width="1.2" height="15.0" fill="rgb(240,64,35)" rx="2" ry="2" />
<text text-anchor="" x="696.54" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1873" width="46.9" height="15.0" fill="rgb(216,206,52)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (35 samples, 1.66%)</title><rect x="1126.3" y="1761" width="19.6" height="15.0" fill="rgb(254,21,23)" rx="2" ry="2" />
<text text-anchor="" x="1129.34" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="1969" width="2.2" height="15.0" fill="rgb(245,109,30)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.05%)</title><rect x="317.1" y="2001" width="0.6" height="15.0" fill="rgb(226,96,19)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1873" width="0.6" height="15.0" fill="rgb(206,5,20)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::he437b23a6c193ad8 (836 samples, 39.56%)</title><rect x="620.9" y="1841" width="466.9" height="15.0" fill="rgb(237,31,34)" rx="2" ry="2" />
<text text-anchor="" x="623.94" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::he..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1121" width="0.5" height="15.0" fill="rgb(214,194,6)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.66%)</title><rect x="74.2" y="1889" width="7.8" height="15.0" fill="rgb(248,1,11)" rx="2" ry="2" />
<text text-anchor="" x="77.22" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="993" width="0.5" height="15.0" fill="rgb(230,65,14)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (82 samples, 3.88%)</title><rect x="16.7" y="209" width="45.8" height="15.0" fill="rgb(230,24,29)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.3" y="2001" width="0.6" height="15.0" fill="rgb(254,90,34)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (23 samples, 1.09%)</title><rect x="465.7" y="1953" width="12.8" height="15.0" fill="rgb(226,207,30)" rx="2" ry="2" />
<text text-anchor="" x="468.69" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_chunk_alloc (144 samples, 6.81%)</title><rect x="127.3" y="2017" width="80.4" height="15.0" fill="rgb(226,153,35)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >arena_chu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1777" width="1.1" height="15.0" fill="rgb(245,74,45)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1777" width="1.6" height="15.0" fill="rgb(219,105,36)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (2 samples, 0.09%)</title><rect x="62.5" y="209" width="1.1" height="15.0" fill="rgb(249,133,48)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="97" width="0.5" height="15.0" fill="rgb(231,18,42)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::dealloc_buffer::hd67a259737c1d678 (5 samples, 0.24%)</title><rect x="617.6" y="1841" width="2.8" height="15.0" fill="rgb(247,221,8)" rx="2" ry="2" />
<text text-anchor="" x="620.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1921" width="1.1" height="15.0" fill="rgb(247,43,7)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="536.6" y="1761" width="1.7" height="15.0" fill="rgb(248,66,54)" rx="2" ry="2" />
<text text-anchor="" x="539.62" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (144 samples, 6.81%)</title><rect x="127.3" y="1937" width="80.4" height="15.0" fill="rgb(247,142,35)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h638dfd3ea2d50f40 (1 samples, 0.05%)</title><rect x="588.0" y="1809" width="0.6" height="15.0" fill="rgb(226,121,19)" rx="2" ry="2" />
<text text-anchor="" x="590.99" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1969" width="46.9" height="15.0" fill="rgb(236,60,28)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="785" width="46.9" height="15.0" fill="rgb(246,34,31)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="753" width="0.5" height="15.0" fill="rgb(241,87,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h5a650a00813ccceb (1 samples, 0.05%)</title><rect x="588.0" y="1825" width="0.6" height="15.0" fill="rgb(224,126,1)" rx="2" ry="2" />
<text text-anchor="" x="590.99" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1189.4" y="2001" width="0.6" height="15.0" fill="rgb(205,150,19)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1681" width="46.9" height="15.0" fill="rgb(213,203,14)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1825" width="46.9" height="15.0" fill="rgb(229,5,54)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (115 samples, 5.44%)</title><rect x="921.4" y="1809" width="64.2" height="15.0" fill="rgb(211,3,54)" rx="2" ry="2" />
<text text-anchor="" x="924.39" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::ha4686f13b119820e (25 samples, 1.18%)</title><rect x="464.6" y="2033" width="13.9" height="15.0" fill="rgb(210,132,28)" rx="2" ry="2" />
<text text-anchor="" x="467.58" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="1953" width="2.2" height="15.0" fill="rgb(233,3,41)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="693.5" y="1777" width="1.2" height="15.0" fill="rgb(224,177,15)" rx="2" ry="2" />
<text text-anchor="" x="696.54" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_avail_remove.isra.24 (6 samples, 0.28%)</title><rect x="369.6" y="2033" width="3.4" height="15.0" fill="rgb(230,200,0)" rx="2" ry="2" />
<text text-anchor="" x="372.64" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1249" width="46.9" height="15.0" fill="rgb(228,151,42)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="49" width="0.5" height="15.0" fill="rgb(230,56,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="1905" width="2.2" height="15.0" fill="rgb(241,120,7)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (545 samples, 25.79%)</title><rect x="13.4" y="2033" width="304.3" height="15.0" fill="rgb(226,193,3)" rx="2" ry="2" />
<text text-anchor="" x="16.35" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1985" width="46.9" height="15.0" fill="rgb(222,217,31)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (48 samples, 2.27%)</title><rect x="97.1" y="1921" width="26.8" height="15.0" fill="rgb(254,124,26)" rx="2" ry="2" />
<text text-anchor="" x="100.12" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1105" width="46.9" height="15.0" fill="rgb(219,4,27)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1921" width="0.5" height="15.0" fill="rgb(225,183,35)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align::h53022985b3075fb7 (2 samples, 0.09%)</title><rect x="607.0" y="1809" width="1.1" height="15.0" fill="rgb(242,76,18)" rx="2" ry="2" />
<text text-anchor="" x="609.98" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::double::h0cf60d8630a76be1 (21 samples, 0.99%)</title><rect x="1042.0" y="1761" width="11.7" height="15.0" fill="rgb(207,178,11)" rx="2" ry="2" />
<text text-anchor="" x="1045.01" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1697" width="0.5" height="15.0" fill="rgb(209,41,44)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (23 samples, 1.09%)</title><rect x="465.7" y="1937" width="12.8" height="15.0" fill="rgb(228,73,31)" rx="2" ry="2" />
<text text-anchor="" x="468.69" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hc1c26862b11f60c5 (2 samples, 0.09%)</title><rect x="752.2" y="1809" width="1.1" height="15.0" fill="rgb(231,152,19)" rx="2" ry="2" />
<text text-anchor="" x="755.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="536.6" y="1809" width="1.7" height="15.0" fill="rgb(243,213,41)" rx="2" ry="2" />
<text text-anchor="" x="539.62" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1569" width="46.9" height="15.0" fill="rgb(214,162,52)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1857" width="0.6" height="15.0" fill="rgb(211,22,14)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1585" width="46.9" height="15.0" fill="rgb(222,161,28)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (144 samples, 6.81%)</title><rect x="127.3" y="1921" width="80.4" height="15.0" fill="rgb(254,128,3)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (1 samples, 0.05%)</title><rect x="1145.9" y="1841" width="0.5" height="15.0" fill="rgb(232,153,24)" rx="2" ry="2" />
<text text-anchor="" x="1148.88" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_str_data::h7bed7033b67078cb (23 samples, 1.09%)</title><rect x="1072.2" y="1809" width="12.8" height="15.0" fill="rgb(235,41,49)" rx="2" ry="2" />
<text text-anchor="" x="1075.17" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1189.4" y="2017" width="0.6" height="15.0" fill="rgb(223,110,44)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (23 samples, 1.09%)</title><rect x="69.2" y="1905" width="12.8" height="15.0" fill="rgb(231,71,53)" rx="2" ry="2" />
<text text-anchor="" x="72.20" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (2 samples, 0.09%)</title><rect x="275.3" y="2001" width="1.1" height="15.0" fill="rgb(250,160,50)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="1937" width="0.6" height="15.0" fill="rgb(219,159,16)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (144 samples, 6.81%)</title><rect x="127.3" y="1985" width="80.4" height="15.0" fill="rgb(253,220,5)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="353" width="46.9" height="15.0" fill="rgb(218,58,35)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="209" width="0.5" height="15.0" fill="rgb(220,65,6)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1361" width="0.5" height="15.0" fill="rgb(250,131,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1505" width="0.5" height="15.0" fill="rgb(221,191,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (1 samples, 0.05%)</title><rect x="992.9" y="1809" width="0.5" height="15.0" fill="rgb(214,24,30)" rx="2" ry="2" />
<text text-anchor="" x="995.87" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="657" width="0.5" height="15.0" fill="rgb(240,26,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="529" width="46.9" height="15.0" fill="rgb(218,133,4)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.05%)</title><rect x="609.2" y="1825" width="0.6" height="15.0" fill="rgb(220,9,44)" rx="2" ry="2" />
<text text-anchor="" x="612.21" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1187.2" y="1905" width="0.6" height="15.0" fill="rgb(232,125,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1473" width="0.5" height="15.0" fill="rgb(235,87,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[package_manager-984bf9f4860fb7ea] (1 samples, 0.05%)</title><rect x="12.8" y="2033" width="0.6" height="15.0" fill="rgb(221,127,10)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.3" y="1985" width="0.6" height="15.0" fill="rgb(238,79,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (14 samples, 0.66%)</title><rect x="500.9" y="1761" width="7.8" height="15.0" fill="rgb(240,146,47)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1889" width="0.5" height="15.0" fill="rgb(206,78,49)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="2033" width="1.1" height="15.0" fill="rgb(244,33,7)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..heap..HeapAlloc$u20$as$u20$alloc..allocator..Alloc$GT$::dealloc::h697345d96e54f71e (1 samples, 0.05%)</title><rect x="650.0" y="1809" width="0.5" height="15.0" fill="rgb(208,84,15)" rx="2" ry="2" />
<text text-anchor="" x="652.98" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.05%)</title><rect x="1068.8" y="1825" width="0.6" height="15.0" fill="rgb(251,59,53)" rx="2" ry="2" />
<text text-anchor="" x="1071.82" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_avail_insert.isra.23 (1 samples, 0.05%)</title><rect x="369.1" y="2033" width="0.5" height="15.0" fill="rgb(220,139,48)" rx="2" ry="2" />
<text text-anchor="" x="372.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::version::h27dd1584744c96f3 (83 samples, 3.93%)</title><rect x="1022.5" y="1793" width="46.3" height="15.0" fill="rgb(240,14,45)" rx="2" ry="2" />
<text text-anchor="" x="1025.47" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pack..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (5 samples, 0.24%)</title><rect x="691.9" y="1793" width="2.8" height="15.0" fill="rgb(221,60,21)" rx="2" ry="2" />
<text text-anchor="" x="694.86" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="625" width="0.5" height="15.0" fill="rgb(210,179,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.85%)</title><rect x="468.5" y="1921" width="10.0" height="15.0" fill="rgb(253,114,14)" rx="2" ry="2" />
<text text-anchor="" x="471.49" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1921" width="0.6" height="15.0" fill="rgb(214,185,1)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="65" width="0.5" height="15.0" fill="rgb(212,187,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="673" width="0.5" height="15.0" fill="rgb(250,139,48)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="273" width="46.9" height="15.0" fill="rgb(236,195,28)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1697" width="0.5" height="15.0" fill="rgb(223,200,33)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="536.6" y="1825" width="1.7" height="15.0" fill="rgb(244,133,26)" rx="2" ry="2" />
<text text-anchor="" x="539.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (5 samples, 0.24%)</title><rect x="505.9" y="1697" width="2.8" height="15.0" fill="rgb(222,9,38)" rx="2" ry="2" />
<text text-anchor="" x="508.90" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (27 samples, 1.28%)</title><rect x="108.8" y="1889" width="15.1" height="15.0" fill="rgb(217,225,27)" rx="2" ry="2" />
<text text-anchor="" x="111.85" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (62 samples, 2.93%)</title><rect x="89.3" y="2001" width="34.6" height="15.0" fill="rgb(238,56,49)" rx="2" ry="2" />
<text text-anchor="" x="92.30" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (144 samples, 6.81%)</title><rect x="127.3" y="2001" width="80.4" height="15.0" fill="rgb(214,214,27)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="593" width="0.5" height="15.0" fill="rgb(215,4,14)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="689" width="46.9" height="15.0" fill="rgb(223,116,2)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="417" width="46.9" height="15.0" fill="rgb(218,38,28)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (139 samples, 6.58%)</title><rect x="130.1" y="1873" width="77.6" height="15.0" fill="rgb(215,48,3)" rx="2" ry="2" />
<text text-anchor="" x="133.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="424.9" y="2001" width="2.3" height="15.0" fill="rgb(238,151,41)" rx="2" ry="2" />
<text text-anchor="" x="427.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (218 samples, 10.32%)</title><rect x="786.8" y="1809" width="121.7" height="15.0" fill="rgb(228,128,19)" rx="2" ry="2" />
<text text-anchor="" x="789.80" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.kallsy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="424.9" y="2017" width="2.3" height="15.0" fill="rgb(215,157,44)" rx="2" ry="2" />
<text text-anchor="" x="427.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1185" width="0.5" height="15.0" fill="rgb(242,55,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h7cd80528ec58752d (1 samples, 0.05%)</title><rect x="1183.3" y="1873" width="0.6" height="15.0" fill="rgb(227,157,17)" rx="2" ry="2" />
<text text-anchor="" x="1186.30" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="537.2" y="1729" width="1.1" height="15.0" fill="rgb(230,111,40)" rx="2" ry="2" />
<text text-anchor="" x="540.17" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1137" width="46.9" height="15.0" fill="rgb(208,9,50)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h7cd80528ec58752d (18 samples, 0.85%)</title><rect x="1173.2" y="1857" width="10.1" height="15.0" fill="rgb(216,72,29)" rx="2" ry="2" />
<text text-anchor="" x="1176.25" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_chunk_hooks_get (1 samples, 0.05%)</title><rect x="300.4" y="2017" width="0.6" height="15.0" fill="rgb(254,68,15)" rx="2" ry="2" />
<text text-anchor="" x="303.39" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1189.4" y="1985" width="0.6" height="15.0" fill="rgb(253,17,15)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="693.5" y="1745" width="1.2" height="15.0" fill="rgb(244,180,0)" rx="2" ry="2" />
<text text-anchor="" x="696.54" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (6 samples, 0.28%)</title><rect x="1050.4" y="1745" width="3.3" height="15.0" fill="rgb(213,5,9)" rx="2" ry="2" />
<text text-anchor="" x="1053.39" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1777" width="0.5" height="15.0" fill="rgb(210,130,22)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="929" width="46.9" height="15.0" fill="rgb(223,78,4)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="177" width="0.6" height="15.0" fill="rgb(231,26,14)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="207.1" y="1729" width="0.6" height="15.0" fill="rgb(244,49,16)" rx="2" ry="2" />
<text text-anchor="" x="210.13" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (137 samples, 6.48%)</title><rect x="131.2" y="1857" width="76.5" height="15.0" fill="rgb(215,138,35)" rx="2" ry="2" />
<text text-anchor="" x="134.18" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (12 samples, 0.57%)</title><rect x="471.8" y="1905" width="6.7" height="15.0" fill="rgb(252,180,53)" rx="2" ry="2" />
<text text-anchor="" x="474.84" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (1 samples, 0.05%)</title><rect x="1188.9" y="2033" width="0.5" height="15.0" fill="rgb(239,6,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="58.6" y="65" width="0.5" height="15.0" fill="rgb(228,159,22)" rx="2" ry="2" />
<text text-anchor="" x="61.58" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::constraint::version_constraint::h44f6bae33cca51d8 (141 samples, 6.67%)</title><rect x="990.1" y="1825" width="78.7" height="15.0" fill="rgb(226,135,13)" rx="2" ry="2" />
<text text-anchor="" x="993.08" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >package_m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1393" width="46.9" height="15.0" fill="rgb(210,175,4)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_dalloc_bin_junked_locked (1 samples, 0.05%)</title><rect x="276.4" y="2017" width="0.5" height="15.0" fill="rgb(229,19,6)" rx="2" ry="2" />
<text text-anchor="" x="279.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1144.8" y="1713" width="1.1" height="15.0" fill="rgb(233,182,27)" rx="2" ry="2" />
<text text-anchor="" x="1147.77" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="129" width="1.6" height="15.0" fill="rgb(241,75,42)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1441" width="46.9" height="15.0" fill="rgb(232,3,20)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="801" width="0.5" height="15.0" fill="rgb(237,94,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (32 samples, 1.51%)</title><rect x="1128.0" y="1745" width="17.9" height="15.0" fill="rgb(216,216,40)" rx="2" ry="2" />
<text text-anchor="" x="1131.01" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="476.9" y="1857" width="1.6" height="15.0" fill="rgb(217,190,1)" rx="2" ry="2" />
<text text-anchor="" x="479.86" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align::h53022985b3075fb7 (2 samples, 0.09%)</title><rect x="583.0" y="1825" width="1.1" height="15.0" fill="rgb(210,215,1)" rx="2" ry="2" />
<text text-anchor="" x="585.97" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (1 samples, 0.05%)</title><rect x="61.9" y="193" width="0.6" height="15.0" fill="rgb(247,3,38)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1873" width="0.5" height="15.0" fill="rgb(250,41,54)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="2017" width="2.2" height="15.0" fill="rgb(234,186,30)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="536.6" y="1793" width="1.7" height="15.0" fill="rgb(226,65,46)" rx="2" ry="2" />
<text text-anchor="" x="539.62" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1745" width="0.5" height="15.0" fill="rgb(216,120,38)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::dealloc_buffer::hd67a259737c1d678 (7 samples, 0.33%)</title><rect x="637.7" y="1825" width="3.9" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text text-anchor="" x="640.70" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1889" width="0.6" height="15.0" fill="rgb(254,212,50)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_file_read_iter (1 samples, 0.05%)</title><rect x="495.8" y="1793" width="0.6" height="15.0" fill="rgb(251,59,31)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="753" width="46.9" height="15.0" fill="rgb(234,113,46)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::dealloc_buffer::hd67a259737c1d678 (28 samples, 1.33%)</title><rect x="567.3" y="1825" width="15.7" height="15.0" fill="rgb(234,184,45)" rx="2" ry="2" />
<text text-anchor="" x="570.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="368.0" y="2017" width="1.1" height="15.0" fill="rgb(237,112,23)" rx="2" ry="2" />
<text text-anchor="" x="370.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::reserve::hdd97662444cde2ed (2 samples, 0.09%)</title><rect x="707.5" y="1761" width="1.1" height="15.0" fill="rgb(209,120,44)" rx="2" ry="2" />
<text text-anchor="" x="710.50" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="426.0" y="1921" width="1.2" height="15.0" fill="rgb(225,224,32)" rx="2" ry="2" />
<text text-anchor="" x="429.04" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1585" width="0.5" height="15.0" fill="rgb(246,156,29)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_pages_purge (3 samples, 0.14%)</title><rect x="87.6" y="2001" width="1.7" height="15.0" fill="rgb(209,124,46)" rx="2" ry="2" />
<text text-anchor="" x="90.62" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys_common::backtrace::__rust_begin_short_backtrace::h1c6cbf4755621c02 (1,233 samples, 58.35%)</title><rect x="495.8" y="1953" width="688.6" height="15.0" fill="rgb(230,91,19)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::backtrace::__rust_begin_short_backtrace::h1c6cbf4755621c02</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcmp@plt (1 samples, 0.05%)</title><rect x="1009.6" y="1809" width="0.6" height="15.0" fill="rgb(222,210,54)" rx="2" ry="2" />
<text text-anchor="" x="1012.62" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="1985" width="2.2" height="15.0" fill="rgb(247,89,40)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1441" width="0.5" height="15.0" fill="rgb(240,152,54)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1521" width="0.5" height="15.0" fill="rgb(219,198,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::index::read_index::ha623161976bfa63e (1,028 samples, 48.65%)</title><rect x="609.8" y="1889" width="574.1" height="15.0" fill="rgb(226,86,37)" rx="2" ry="2" />
<text text-anchor="" x="612.77" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >package_manager::index::read_index::ha623161976bfa63e</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..MapAccess$LT$$u27$a$C$$u20$R$GT$$u20$as$u20$serde..de..MapAccess$LT$$u27$de$GT$$GT$::next_key_seed::h47c788b5be39fb94 (136 samples, 6.44%)</title><rect x="641.6" y="1825" width="76.0" height="15.0" fill="rgb(243,217,50)" rx="2" ry="2" />
<text text-anchor="" x="644.60" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$rmp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1217" width="46.9" height="15.0" fill="rgb(249,96,40)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_maybe_catch_panic (1,232 samples, 58.31%)</title><rect x="495.8" y="1937" width="688.1" height="15.0" fill="rgb(229,184,38)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__rust_maybe_catch_panic</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h2139a5b5ccc52d87 (2 samples, 0.09%)</title><rect x="275.3" y="2017" width="1.1" height="15.0" fill="rgb(210,67,11)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (77 samples, 3.64%)</title><rect x="16.7" y="145" width="43.0" height="15.0" fill="rgb(227,127,26)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1633" width="0.5" height="15.0" fill="rgb(234,6,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="625" width="46.9" height="15.0" fill="rgb(223,38,11)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="321" width="0.5" height="15.0" fill="rgb(225,189,25)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_bin_malloc_hard (1 samples, 0.05%)</title><rect x="126.2" y="2017" width="0.5" height="15.0" fill="rgb(242,83,8)" rx="2" ry="2" />
<text text-anchor="" x="129.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_purge_to_limit (12 samples, 0.57%)</title><rect x="242.9" y="2017" width="6.7" height="15.0" fill="rgb(207,147,37)" rx="2" ry="2" />
<text text-anchor="" x="245.87" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="113" width="1.1" height="15.0" fill="rgb(235,104,2)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1185" width="46.9" height="15.0" fill="rgb(223,13,36)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1041" width="0.5" height="15.0" fill="rgb(223,154,11)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1281" width="0.5" height="15.0" fill="rgb(245,121,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object_from_fd (1 samples, 0.05%)</title><rect x="1188.9" y="2017" width="0.5" height="15.0" fill="rgb(249,98,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="983.4" y="1697" width="2.2" height="15.0" fill="rgb(252,8,33)" rx="2" ry="2" />
<text text-anchor="" x="986.37" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.05%)</title><rect x="715.3" y="1777" width="0.6" height="15.0" fill="rgb(229,216,31)" rx="2" ry="2" />
<text text-anchor="" x="718.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (14 samples, 0.66%)</title><rect x="1106.8" y="1841" width="7.8" height="15.0" fill="rgb(220,4,51)" rx="2" ry="2" />
<text text-anchor="" x="1109.79" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (2 samples, 0.09%)</title><rect x="123.9" y="2017" width="1.1" height="15.0" fill="rgb(245,13,1)" rx="2" ry="2" />
<text text-anchor="" x="126.92" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1969" width="1.1" height="15.0" fill="rgb(253,124,18)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="961" width="0.5" height="15.0" fill="rgb(243,129,20)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1825" width="0.6" height="15.0" fill="rgb(207,159,6)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (3 samples, 0.14%)</title><rect x="1153.7" y="1793" width="1.7" height="15.0" fill="rgb(242,12,14)" rx="2" ry="2" />
<text text-anchor="" x="1156.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="865" width="0.5" height="15.0" fill="rgb(239,20,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1489" width="46.9" height="15.0" fill="rgb(217,33,7)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1409" width="46.9" height="15.0" fill="rgb(234,194,41)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1793" width="46.9" height="15.0" fill="rgb(240,141,32)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.05%)</title><rect x="495.8" y="1889" width="0.6" height="15.0" fill="rgb(240,138,18)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="129" width="0.6" height="15.0" fill="rgb(214,72,41)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="81" width="0.5" height="15.0" fill="rgb(251,59,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="145" width="0.5" height="15.0" fill="rgb(226,47,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_sysdep_start (1 samples, 0.05%)</title><rect x="1187.2" y="2017" width="0.6" height="15.0" fill="rgb(250,139,33)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1345" width="46.9" height="15.0" fill="rgb(243,63,53)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="1985" width="0.5" height="15.0" fill="rgb(220,8,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.05%)</title><rect x="1048.7" y="1713" width="0.6" height="15.0" fill="rgb(211,219,14)" rx="2" ry="2" />
<text text-anchor="" x="1051.71" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (27 samples, 1.28%)</title><rect x="67.0" y="1953" width="15.0" height="15.0" fill="rgb(249,46,38)" rx="2" ry="2" />
<text text-anchor="" x="69.96" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (2 samples, 0.09%)</title><rect x="1146.4" y="1841" width="1.2" height="15.0" fill="rgb(217,224,34)" rx="2" ry="2" />
<text text-anchor="" x="1149.44" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::dealloc_buffer::hd67a259737c1d678 (1 samples, 0.05%)</title><rect x="498.1" y="1857" width="0.5" height="15.0" fill="rgb(211,181,5)" rx="2" ry="2" />
<text text-anchor="" x="501.08" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::_$LT$impl$u20$usize$GT$::checked_next_power_of_two::h9959606d3f0c96ec (1 samples, 0.05%)</title><rect x="989.0" y="1825" width="0.5" height="15.0" fill="rgb(206,106,39)" rx="2" ry="2" />
<text text-anchor="" x="991.96" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="561" width="46.9" height="15.0" fill="rgb(252,52,38)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.38%)</title><rect x="504.2" y="1713" width="4.5" height="15.0" fill="rgb(225,209,21)" rx="2" ry="2" />
<text text-anchor="" x="507.23" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (3 samples, 0.14%)</title><rect x="694.7" y="1793" width="1.6" height="15.0" fill="rgb(225,126,51)" rx="2" ry="2" />
<text text-anchor="" x="697.66" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="113" width="0.5" height="15.0" fill="rgb(218,184,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2 (1 samples, 0.05%)</title><rect x="1182.7" y="1825" width="0.6" height="15.0" fill="rgb(220,99,36)" rx="2" ry="2" />
<text text-anchor="" x="1185.74" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="305" width="46.9" height="15.0" fill="rgb(253,83,7)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1233" width="46.9" height="15.0" fill="rgb(211,35,22)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="913" width="46.9" height="15.0" fill="rgb(235,95,3)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1040.3" y="1713" width="1.7" height="15.0" fill="rgb(252,206,42)" rx="2" ry="2" />
<text text-anchor="" x="1043.34" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="368.0" y="1969" width="1.1" height="15.0" fill="rgb(240,211,38)" rx="2" ry="2" />
<text text-anchor="" x="370.96" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h3783dc93a7d3c784 (93 samples, 4.40%)</title><rect x="538.3" y="1841" width="51.9" height="15.0" fill="rgb(230,15,11)" rx="2" ry="2" />
<text text-anchor="" x="541.29" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$package_manager..version..Version$u20$as$u20$core..hash..Hash$GT$::hash::h54bb804383034c37 (1 samples, 0.05%)</title><rect x="620.4" y="1841" width="0.5" height="15.0" fill="rgb(250,162,4)" rx="2" ry="2" />
<text text-anchor="" x="623.38" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1729" width="46.9" height="15.0" fill="rgb(227,143,30)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_str_data::h7bed7033b67078cb (32 samples, 1.51%)</title><rect x="698.0" y="1793" width="17.9" height="15.0" fill="rgb(218,88,6)" rx="2" ry="2" />
<text text-anchor="" x="701.01" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1713" width="0.5" height="15.0" fill="rgb(234,20,10)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="80.9" y="1841" width="1.1" height="15.0" fill="rgb(230,11,43)" rx="2" ry="2" />
<text text-anchor="" x="83.92" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1217" width="0.5" height="15.0" fill="rgb(212,86,38)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1521" width="46.9" height="15.0" fill="rgb(221,21,34)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1187.2" y="1937" width="0.6" height="15.0" fill="rgb(205,67,38)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="849" width="0.5" height="15.0" fill="rgb(224,68,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="321" width="46.9" height="15.0" fill="rgb(252,220,3)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::nat::h7b1732ad8f4e4cea (25 samples, 1.18%)</title><rect x="1054.3" y="1761" width="14.0" height="15.0" fill="rgb(247,97,41)" rx="2" ry="2" />
<text text-anchor="" x="1057.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1601" width="46.9" height="15.0" fill="rgb(248,123,53)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_fixup (1 samples, 0.05%)</title><rect x="125.6" y="2017" width="0.6" height="15.0" fill="rgb(205,71,5)" rx="2" ry="2" />
<text text-anchor="" x="128.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::ext_version::hc05866cb77cf1b7f (1 samples, 0.05%)</title><rect x="1161.0" y="1825" width="0.5" height="15.0" fill="rgb(211,57,32)" rx="2" ry="2" />
<text text-anchor="" x="1163.96" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1265" width="0.5" height="15.0" fill="rgb(235,74,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (89 samples, 4.21%)</title><rect x="317.7" y="2017" width="49.7" height="15.0" fill="rgb(219,160,52)" rx="2" ry="2" />
<text text-anchor="" x="320.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (75 samples, 3.55%)</title><rect x="16.7" y="49" width="41.9" height="15.0" fill="rgb(246,102,1)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="1985" width="1.1" height="15.0" fill="rgb(236,21,13)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (140 samples, 6.63%)</title><rect x="129.5" y="1889" width="78.2" height="15.0" fill="rgb(229,42,26)" rx="2" ry="2" />
<text text-anchor="" x="132.51" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (4 samples, 0.19%)</title><rect x="986.7" y="1825" width="2.3" height="15.0" fill="rgb(210,98,35)" rx="2" ry="2" />
<text text-anchor="" x="989.73" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1713" width="46.9" height="15.0" fill="rgb(240,172,18)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="785" width="0.5" height="15.0" fill="rgb(216,51,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="641" width="0.5" height="15.0" fill="rgb(209,108,38)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h5a650a00813ccceb (35 samples, 1.66%)</title><rect x="590.2" y="1841" width="19.6" height="15.0" fill="rgb(232,101,21)" rx="2" ry="2" />
<text text-anchor="" x="593.23" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_dalloc_bin_locked_impl.isra.42 (63 samples, 2.98%)</title><rect x="207.7" y="2017" width="35.2" height="15.0" fill="rgb(250,16,49)" rx="2" ry="2" />
<text text-anchor="" x="210.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (17 samples, 0.80%)</title><rect x="486.4" y="2033" width="9.4" height="15.0" fill="rgb(213,193,43)" rx="2" ry="2" />
<text text-anchor="" x="489.36" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1329" width="46.9" height="15.0" fill="rgb(221,45,44)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="945" width="46.9" height="15.0" fill="rgb(243,77,18)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::new::h5f5ddd055efac3e1 (3 samples, 0.14%)</title><rect x="753.3" y="1825" width="1.7" height="15.0" fill="rgb(211,174,22)" rx="2" ry="2" />
<text text-anchor="" x="756.29" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="368.0" y="1953" width="1.1" height="15.0" fill="rgb(254,119,15)" rx="2" ry="2" />
<text text-anchor="" x="370.96" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_bin_nonfull_run_tryget (1 samples, 0.05%)</title><rect x="126.7" y="2017" width="0.6" height="15.0" fill="rgb(248,157,51)" rx="2" ry="2" />
<text text-anchor="" x="129.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1297" width="46.9" height="15.0" fill="rgb(235,11,15)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (86 samples, 4.07%)</title><rect x="937.6" y="1761" width="48.0" height="15.0" fill="rgb(208,147,4)" rx="2" ry="2" />
<text text-anchor="" x="940.58" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ke..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (4 samples, 0.19%)</title><rect x="594.1" y="1825" width="2.3" height="15.0" fill="rgb(241,37,17)" rx="2" ry="2" />
<text text-anchor="" x="597.14" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.2" y="1825" width="0.6" height="15.0" fill="rgb(211,201,24)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="961" width="46.9" height="15.0" fill="rgb(245,214,32)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (3 samples, 0.14%)</title><rect x="536.6" y="1841" width="1.7" height="15.0" fill="rgb(242,152,39)" rx="2" ry="2" />
<text text-anchor="" x="539.62" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="161" width="1.1" height="15.0" fill="rgb(216,121,43)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (66 samples, 3.12%)</title><rect x="948.8" y="1713" width="36.8" height="15.0" fill="rgb(252,163,29)" rx="2" ry="2" />
<text text-anchor="" x="951.75" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1889" width="1.1" height="15.0" fill="rgb(230,174,4)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1857" width="46.9" height="15.0" fill="rgb(229,210,25)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="673" width="46.9" height="15.0" fill="rgb(206,33,44)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys::imp::thread::Thread::new::thread_start::h53a8ebd05527f9af (1,233 samples, 58.35%)</title><rect x="495.8" y="2017" width="688.6" height="15.0" fill="rgb(247,51,18)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::imp::thread::Thread::new::thread_start::h53a8ebd05527f9af</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (130 samples, 6.15%)</title><rect x="16.7" y="2017" width="72.6" height="15.0" fill="rgb(247,69,20)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_tcache_fill_small (39 samples, 1.85%)</title><rect x="278.1" y="2017" width="21.7" height="15.0" fill="rgb(250,180,40)" rx="2" ry="2" />
<text text-anchor="" x="281.05" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="1921" width="2.2" height="15.0" fill="rgb(254,206,11)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="129" width="0.5" height="15.0" fill="rgb(217,31,26)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="65" width="1.6" height="15.0" fill="rgb(206,163,32)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.52%)</title><rect x="472.4" y="1889" width="6.1" height="15.0" fill="rgb(221,183,45)" rx="2" ry="2" />
<text text-anchor="" x="475.39" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::str::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$str$GT$::to_owned::hc49f357cff40dbb6 (7 samples, 0.33%)</title><rect x="1077.2" y="1793" width="3.9" height="15.0" fill="rgb(209,168,29)" rx="2" ry="2" />
<text text-anchor="" x="1080.19" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (6 samples, 0.28%)</title><rect x="1081.1" y="1793" width="3.4" height="15.0" fill="rgb(252,224,11)" rx="2" ry="2" />
<text text-anchor="" x="1084.10" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_maybe_catch_panic (1,233 samples, 58.35%)</title><rect x="495.8" y="1985" width="688.6" height="15.0" fill="rgb(227,39,37)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__rust_maybe_catch_panic</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1857" width="0.5" height="15.0" fill="rgb(253,96,48)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (29 samples, 1.37%)</title><rect x="351.2" y="1889" width="16.2" height="15.0" fill="rgb(232,109,46)" rx="2" ry="2" />
<text text-anchor="" x="354.21" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$package_manager..version..Version$u20$as$u20$core..hash..Hash$GT$::hash::h54bb804383034c37 (14 samples, 0.66%)</title><rect x="1095.6" y="1825" width="7.8" height="15.0" fill="rgb(233,1,15)" rx="2" ry="2" />
<text text-anchor="" x="1098.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="593" width="46.9" height="15.0" fill="rgb(240,15,24)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="49" width="0.6" height="15.0" fill="rgb(215,215,53)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1761" width="0.6" height="15.0" fill="rgb(247,96,20)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..heap..HeapAlloc$u20$as$u20$alloc..allocator..Alloc$GT$::dealloc::h697345d96e54f71e (2 samples, 0.09%)</title><rect x="656.7" y="1793" width="1.1" height="15.0" fill="rgb(220,148,52)" rx="2" ry="2" />
<text text-anchor="" x="659.68" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="10.6" y="2001" width="2.2" height="15.0" fill="rgb(243,153,33)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (8 samples, 0.38%)</title><rect x="474.1" y="1873" width="4.4" height="15.0" fill="rgb(246,173,45)" rx="2" ry="2" />
<text text-anchor="" x="477.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1937" width="0.5" height="15.0" fill="rgb(231,107,35)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_str_data::h7bed7033b67078cb (7 samples, 0.33%)</title><rect x="1164.3" y="1825" width="3.9" height="15.0" fill="rgb(246,39,44)" rx="2" ry="2" />
<text text-anchor="" x="1167.31" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1761" width="0.5" height="15.0" fill="rgb(239,152,42)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_tcache_bin_flush_small (17 samples, 0.80%)</title><rect x="301.5" y="2017" width="9.5" height="15.0" fill="rgb(216,50,20)" rx="2" ry="2" />
<text text-anchor="" x="304.51" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1873" width="0.5" height="15.0" fill="rgb(210,20,9)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1937" width="0.6" height="15.0" fill="rgb(250,87,14)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="1905" width="0.5" height="15.0" fill="rgb(229,144,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (2 samples, 0.09%)</title><rect x="1165.4" y="1809" width="1.1" height="15.0" fill="rgb(231,202,38)" rx="2" ry="2" />
<text text-anchor="" x="1168.43" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1121" width="46.9" height="15.0" fill="rgb(248,103,31)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (26 samples, 1.23%)</title><rect x="67.5" y="1921" width="14.5" height="15.0" fill="rgb(241,39,37)" rx="2" ry="2" />
<text text-anchor="" x="70.52" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::base_version::h2f073dca733652c2 (15 samples, 0.71%)</title><rect x="1152.6" y="1825" width="8.4" height="15.0" fill="rgb(245,50,8)" rx="2" ry="2" />
<text text-anchor="" x="1155.58" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (62 samples, 2.93%)</title><rect x="89.3" y="1985" width="34.6" height="15.0" fill="rgb(230,63,14)" rx="2" ry="2" />
<text text-anchor="" x="92.30" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (58 samples, 2.74%)</title><rect x="91.5" y="1937" width="32.4" height="15.0" fill="rgb(254,129,0)" rx="2" ry="2" />
<text text-anchor="" x="94.53" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.7" y="113" width="0.6" height="15.0" fill="rgb(237,225,40)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="945" width="0.5" height="15.0" fill="rgb(240,102,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="58.6" y="49" width="0.5" height="15.0" fill="rgb(249,19,5)" rx="2" ry="2" />
<text text-anchor="" x="61.58" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1921" width="46.9" height="15.0" fill="rgb(251,141,35)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="368.0" y="2001" width="1.1" height="15.0" fill="rgb(228,192,10)" rx="2" ry="2" />
<text text-anchor="" x="370.96" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1040.3" y="1665" width="1.7" height="15.0" fill="rgb(221,41,12)" rx="2" ry="2" />
<text text-anchor="" x="1043.34" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1729" width="1.6" height="15.0" fill="rgb(207,167,8)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="769" width="0.5" height="15.0" fill="rgb(224,86,28)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::double::h0cf60d8630a76be1 (5 samples, 0.24%)</title><rect x="1152.6" y="1809" width="2.8" height="15.0" fill="rgb(247,82,31)" rx="2" ry="2" />
<text text-anchor="" x="1155.58" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (82 samples, 3.88%)</title><rect x="939.8" y="1745" width="45.8" height="15.0" fill="rgb(234,90,11)" rx="2" ry="2" />
<text text-anchor="" x="942.82" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ke..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (7 samples, 0.33%)</title><rect x="78.1" y="1857" width="3.9" height="15.0" fill="rgb(214,40,20)" rx="2" ry="2" />
<text text-anchor="" x="81.13" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1681" width="0.5" height="15.0" fill="rgb(219,223,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.19%)</title><rect x="314.9" y="2017" width="2.2" height="15.0" fill="rgb(233,218,45)" rx="2" ry="2" />
<text text-anchor="" x="317.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1041" width="46.9" height="15.0" fill="rgb(212,217,51)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.3" y="1921" width="0.6" height="15.0" fill="rgb(238,38,12)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::manifest::PackageName::from_str::hc6785e0f621e2586 (63 samples, 2.98%)</title><rect x="661.7" y="1809" width="35.2" height="15.0" fill="rgb(214,130,44)" rx="2" ry="2" />
<text text-anchor="" x="664.71" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>serde::de::impls::_$LT$impl$u20$serde..de..Deserialize$LT$$u27$de$GT$$u20$for$u20$alloc..string..String$GT$::deserialize::ha4ad4e09742feca5 (33 samples, 1.56%)</title><rect x="1069.4" y="1825" width="18.4" height="15.0" fill="rgb(209,35,33)" rx="2" ry="2" />
<text text-anchor="" x="1072.38" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.28%)</title><rect x="1038.7" y="1761" width="3.3" height="15.0" fill="rgb(253,159,14)" rx="2" ry="2" />
<text text-anchor="" x="1041.66" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="433" width="0.5" height="15.0" fill="rgb(227,155,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (75 samples, 3.55%)</title><rect x="16.7" y="65" width="41.9" height="15.0" fill="rgb(219,177,41)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.3" y="1969" width="0.6" height="15.0" fill="rgb(238,138,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1313" width="0.5" height="15.0" fill="rgb(229,198,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::marker::Marker::from_u8::hc5e7af7534188e9b (1 samples, 0.05%)</title><rect x="1168.8" y="1825" width="0.5" height="15.0" fill="rgb(215,146,36)" rx="2" ry="2" />
<text text-anchor="" x="1171.78" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1041.5" y="1649" width="0.5" height="15.0" fill="rgb(207,45,2)" rx="2" ry="2" />
<text text-anchor="" x="1044.45" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::h7a8ce04135e48b64 (1 samples, 0.05%)</title><rect x="609.8" y="1873" width="0.5" height="15.0" fill="rgb(244,117,27)" rx="2" ry="2" />
<text text-anchor="" x="612.77" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="1921" width="0.6" height="15.0" fill="rgb(250,214,29)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (49 samples, 2.32%)</title><rect x="1118.5" y="1825" width="27.4" height="15.0" fill="rgb(208,91,2)" rx="2" ry="2" />
<text text-anchor="" x="1121.52" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::reserve::hdd97662444cde2ed (3 samples, 0.14%)</title><rect x="1079.4" y="1777" width="1.7" height="15.0" fill="rgb(246,196,46)" rx="2" ry="2" />
<text text-anchor="" x="1082.43" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try::do_call::hed4fac0ac64e38c9 (1,233 samples, 58.35%)</title><rect x="495.8" y="1969" width="688.6" height="15.0" fill="rgb(233,93,42)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try::do_call::hed4fac0ac64e38c9</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1009" width="46.9" height="15.0" fill="rgb(233,98,54)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1777" width="46.9" height="15.0" fill="rgb(250,162,33)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1985" width="0.6" height="15.0" fill="rgb(248,111,46)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h0cc8249f8baa3eef (64 samples, 3.03%)</title><rect x="717.6" y="1825" width="35.7" height="15.0" fill="rgb(230,79,14)" rx="2" ry="2" />
<text text-anchor="" x="720.55" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="368.0" y="1937" width="1.1" height="15.0" fill="rgb(225,84,41)" rx="2" ry="2" />
<text text-anchor="" x="370.96" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1377" width="0.5" height="15.0" fill="rgb(217,108,48)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$$u20$A$GT$$GT$::reserve::hdd97662444cde2ed (1 samples, 0.05%)</title><rect x="691.3" y="1777" width="0.6" height="15.0" fill="rgb(214,4,31)" rx="2" ry="2" />
<text text-anchor="" x="694.31" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="207.1" y="1761" width="0.6" height="15.0" fill="rgb(231,206,9)" rx="2" ry="2" />
<text text-anchor="" x="210.13" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="426.0" y="1937" width="1.2" height="15.0" fill="rgb(239,54,21)" rx="2" ry="2" />
<text text-anchor="" x="429.04" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (218 samples, 10.32%)</title><rect x="786.8" y="1793" width="121.7" height="15.0" fill="rgb(231,101,26)" rx="2" ry="2" />
<text text-anchor="" x="789.80" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.kallsy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (4 samples, 0.19%)</title><rect x="121.7" y="1857" width="2.2" height="15.0" fill="rgb(232,77,0)" rx="2" ry="2" />
<text text-anchor="" x="124.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::str::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$str$GT$::to_owned::hc49f357cff40dbb6 (4 samples, 0.19%)</title><rect x="706.4" y="1777" width="2.2" height="15.0" fill="rgb(246,93,31)" rx="2" ry="2" />
<text text-anchor="" x="709.38" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1057" width="46.9" height="15.0" fill="rgb(254,54,41)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::constraint::version_constraint_unchecked::h67a334a670b6c52f (104 samples, 4.92%)</title><rect x="1010.7" y="1809" width="58.1" height="15.0" fill="rgb(234,99,25)" rx="2" ry="2" />
<text text-anchor="" x="1013.74" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >packag..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1793" width="1.6" height="15.0" fill="rgb(248,186,6)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (1 samples, 0.05%)</title><rect x="59.7" y="145" width="0.6" height="15.0" fill="rgb(225,159,47)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_dirty_remove.isra.25 (5 samples, 0.24%)</title><rect x="377.5" y="2033" width="2.8" height="15.0" fill="rgb(234,144,36)" rx="2" ry="2" />
<text text-anchor="" x="380.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2 (56 samples, 2.65%)</title><rect x="1114.6" y="1841" width="31.3" height="15.0" fill="rgb(251,200,49)" rx="2" ry="2" />
<text text-anchor="" x="1117.61" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1169" width="46.9" height="15.0" fill="rgb(248,45,9)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="694.1" y="1697" width="0.6" height="15.0" fill="rgb(221,79,16)" rx="2" ry="2" />
<text text-anchor="" x="697.10" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.05%)</title><rect x="989.5" y="1825" width="0.6" height="15.0" fill="rgb(213,156,8)" rx="2" ry="2" />
<text text-anchor="" x="992.52" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1809" width="0.5" height="15.0" fill="rgb(224,194,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::base_version::h2f073dca733652c2 (65 samples, 3.08%)</title><rect x="1032.0" y="1777" width="36.3" height="15.0" fill="rgb(214,141,50)" rx="2" ry="2" />
<text text-anchor="" x="1034.96" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pac..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.2" y="1857" width="0.6" height="15.0" fill="rgb(245,157,16)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="401" width="0.5" height="15.0" fill="rgb(253,147,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="545" width="0.5" height="15.0" fill="rgb(222,219,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="58.6" y="81" width="0.5" height="15.0" fill="rgb(233,186,11)" rx="2" ry="2" />
<text text-anchor="" x="61.58" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="65" width="1.1" height="15.0" fill="rgb(235,164,54)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="1937" width="1.1" height="15.0" fill="rgb(231,203,41)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1937" width="46.9" height="15.0" fill="rgb(233,191,22)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1793" width="1.1" height="15.0" fill="rgb(231,24,22)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="145" width="1.6" height="15.0" fill="rgb(245,137,26)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::h7a8ce04135e48b64 (1,001 samples, 47.37%)</title><rect x="610.3" y="1857" width="559.0" height="15.0" fill="rgb(224,153,37)" rx="2" ry="2" />
<text text-anchor="" x="613.33" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_map::h7a8ce04135e48b64</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.05%)</title><rect x="1010.2" y="1809" width="0.5" height="15.0" fill="rgb(229,172,23)" rx="2" ry="2" />
<text text-anchor="" x="1013.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1361" width="46.9" height="15.0" fill="rgb(212,194,47)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (275 samples, 13.01%)</title><rect x="755.0" y="1825" width="153.5" height="15.0" fill="rgb(236,113,12)" rx="2" ry="2" />
<text text-anchor="" x="757.97" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__memcpy_avx_unalig..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_bmbt_get_startoff (1 samples, 0.05%)</title><rect x="1187.2" y="1793" width="0.6" height="15.0" fill="rgb(232,227,50)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="433" width="46.9" height="15.0" fill="rgb(210,150,27)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (89 samples, 4.21%)</title><rect x="317.7" y="2001" width="49.7" height="15.0" fill="rgb(218,105,36)" rx="2" ry="2" />
<text text-anchor="" x="320.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1137" width="0.5" height="15.0" fill="rgb(225,145,10)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.28%)</title><rect x="13.4" y="2017" width="3.3" height="15.0" fill="rgb(219,59,30)" rx="2" ry="2" />
<text text-anchor="" x="16.35" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1857" width="0.5" height="15.0" fill="rgb(219,190,23)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1189.4" y="1937" width="0.6" height="15.0" fill="rgb(238,153,14)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="694.1" y="1713" width="0.6" height="15.0" fill="rgb(240,227,33)" rx="2" ry="2" />
<text text-anchor="" x="697.10" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1809" width="1.6" height="15.0" fill="rgb(218,153,20)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="929" width="0.5" height="15.0" fill="rgb(215,156,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="366.3" y="1857" width="1.1" height="15.0" fill="rgb(208,223,49)" rx="2" ry="2" />
<text text-anchor="" x="369.29" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.85%)</title><rect x="498.6" y="1793" width="10.1" height="15.0" fill="rgb(249,125,33)" rx="2" ry="2" />
<text text-anchor="" x="501.64" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="11.1" y="1889" width="1.7" height="15.0" fill="rgb(253,195,46)" rx="2" ry="2" />
<text text-anchor="" x="14.12" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.05%)</title><rect x="1186.1" y="33" width="0.5" height="15.0" fill="rgb(227,226,1)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1040.3" y="1697" width="1.7" height="15.0" fill="rgb(230,224,1)" rx="2" ry="2" />
<text text-anchor="" x="1043.34" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (62 samples, 2.93%)</title><rect x="89.3" y="2017" width="34.6" height="15.0" fill="rgb(234,99,30)" rx="2" ry="2" />
<text text-anchor="" x="92.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="537.2" y="1745" width="1.1" height="15.0" fill="rgb(244,164,27)" rx="2" ry="2" />
<text text-anchor="" x="540.17" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::manifest::PackageName::from_str::hc6785e0f621e2586 (3 samples, 0.14%)</title><rect x="1169.9" y="1841" width="1.7" height="15.0" fill="rgb(223,50,32)" rx="2" ry="2" />
<text text-anchor="" x="1172.90" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h0cc8249f8baa3eef (1 samples, 0.05%)</title><rect x="1087.8" y="1841" width="0.6" height="15.0" fill="rgb(212,217,25)" rx="2" ry="2" />
<text text-anchor="" x="1090.80" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="977" width="46.9" height="15.0" fill="rgb(246,165,27)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..string..String$u20$as$u20$core..convert..From$LT$$RF$$u27$a$u20$str$GT$$GT$::from::hee26654d024c6b77 (1 samples, 0.05%)</title><rect x="658.4" y="1809" width="0.5" height="15.0" fill="rgb(230,130,1)" rx="2" ry="2" />
<text text-anchor="" x="661.36" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..MapAccess$LT$$u27$a$C$$u20$R$GT$$u20$as$u20$serde..de..MapAccess$LT$$u27$de$GT$$GT$::next_key_seed::h47c788b5be39fb94 (7 samples, 0.33%)</title><rect x="1169.3" y="1857" width="3.9" height="15.0" fill="rgb(248,184,51)" rx="2" ry="2" />
<text text-anchor="" x="1172.34" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (76 samples, 3.60%)</title><rect x="16.7" y="129" width="42.4" height="15.0" fill="rgb(253,75,44)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>serde::de::impls::_$LT$impl$u20$serde..de..Deserialize$LT$$u27$de$GT$$u20$for$u20$alloc..string..String$GT$::deserialize::ha4ad4e09742feca5 (12 samples, 0.57%)</title><rect x="1162.6" y="1841" width="6.7" height="15.0" fill="rgb(244,118,36)" rx="2" ry="2" />
<text text-anchor="" x="1165.64" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="81" width="0.6" height="15.0" fill="rgb(236,201,51)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="113" width="0.6" height="15.0" fill="rgb(238,170,25)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_bmap_search_extents (1 samples, 0.05%)</title><rect x="1187.2" y="1825" width="0.6" height="15.0" fill="rgb(231,192,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1905" width="46.9" height="15.0" fill="rgb(219,10,38)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="977" width="0.5" height="15.0" fill="rgb(234,28,29)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h638dfd3ea2d50f40 (21 samples, 0.99%)</title><rect x="596.4" y="1825" width="11.7" height="15.0" fill="rgb(208,196,15)" rx="2" ry="2" />
<text text-anchor="" x="599.37" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1457" width="0.5" height="15.0" fill="rgb(230,180,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (113 samples, 5.35%)</title><rect x="845.4" y="1713" width="63.1" height="15.0" fill="rgb(222,43,51)" rx="2" ry="2" />
<text text-anchor="" x="848.44" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="49" width="1.1" height="15.0" fill="rgb(212,181,52)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="465" width="46.9" height="15.0" fill="rgb(249,138,1)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="481" width="0.5" height="15.0" fill="rgb(212,208,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (14 samples, 0.66%)</title><rect x="478.5" y="2033" width="7.9" height="15.0" fill="rgb(225,72,36)" rx="2" ry="2" />
<text text-anchor="" x="481.54" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="513" width="0.5" height="15.0" fill="rgb(211,132,11)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1969" width="0.5" height="15.0" fill="rgb(225,229,10)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="537.2" y="1713" width="1.1" height="15.0" fill="rgb(207,86,0)" rx="2" ry="2" />
<text text-anchor="" x="540.17" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (75 samples, 3.55%)</title><rect x="16.7" y="113" width="41.9" height="15.0" fill="rgb(250,188,28)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="2001" width="0.5" height="15.0" fill="rgb(242,101,27)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (12 samples, 0.57%)</title><rect x="708.6" y="1777" width="6.7" height="15.0" fill="rgb(215,120,7)" rx="2" ry="2" />
<text text-anchor="" x="711.62" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="529" width="0.5" height="15.0" fill="rgb(238,150,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1745" width="0.6" height="15.0" fill="rgb(247,179,23)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (28 samples, 1.33%)</title><rect x="66.4" y="1969" width="15.6" height="15.0" fill="rgb(237,4,11)" rx="2" ry="2" />
<text text-anchor="" x="69.40" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (81 samples, 3.83%)</title><rect x="16.7" y="193" width="45.2" height="15.0" fill="rgb(239,127,7)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.05%)</title><rect x="705.8" y="1777" width="0.6" height="15.0" fill="rgb(251,2,16)" rx="2" ry="2" />
<text text-anchor="" x="708.83" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (64 samples, 3.03%)</title><rect x="331.7" y="1937" width="35.7" height="15.0" fill="rgb(242,81,14)" rx="2" ry="2" />
<text text-anchor="" x="334.67" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="705" width="46.9" height="15.0" fill="rgb(238,134,45)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1729" width="0.5" height="15.0" fill="rgb(252,193,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="1985" width="0.6" height="15.0" fill="rgb(227,103,5)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (24 samples, 1.14%)</title><rect x="465.1" y="1969" width="13.4" height="15.0" fill="rgb(219,28,24)" rx="2" ry="2" />
<text text-anchor="" x="468.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (16 samples, 0.76%)</title><rect x="115.0" y="1873" width="8.9" height="15.0" fill="rgb(253,124,51)" rx="2" ry="2" />
<text text-anchor="" x="117.99" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1073" width="46.9" height="15.0" fill="rgb(254,37,49)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="113" width="1.6" height="15.0" fill="rgb(230,7,42)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.1" y="113" width="0.6" height="15.0" fill="rgb(236,178,16)" rx="2" ry="2" />
<text text-anchor="" x="62.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::_$LT$impl$u20$core..str..FromStr$u20$for$u20$u64$GT$::from_str::hc20011d79384a89b (3 samples, 0.14%)</title><rect x="1158.2" y="1793" width="1.6" height="15.0" fill="rgb(221,94,42)" rx="2" ry="2" />
<text text-anchor="" x="1161.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (134 samples, 6.34%)</title><rect x="132.9" y="1841" width="74.8" height="15.0" fill="rgb(212,215,9)" rx="2" ry="2" />
<text text-anchor="" x="135.86" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_dalloc (5 samples, 0.24%)</title><rect x="374.1" y="2033" width="2.8" height="15.0" fill="rgb(221,191,35)" rx="2" ry="2" />
<text text-anchor="" x="377.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="81" width="1.1" height="15.0" fill="rgb(240,171,20)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (1 samples, 0.05%)</title><rect x="593.6" y="1825" width="0.5" height="15.0" fill="rgb(225,92,29)" rx="2" ry="2" />
<text text-anchor="" x="596.58" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1025" width="46.9" height="15.0" fill="rgb(215,131,16)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1009" width="0.5" height="15.0" fill="rgb(228,82,37)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::marker::Marker::from_u8::hc5e7af7534188e9b (1 samples, 0.05%)</title><rect x="1087.2" y="1809" width="0.6" height="15.0" fill="rgb(253,81,8)" rx="2" ry="2" />
<text text-anchor="" x="1090.25" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_tree_insert (78 samples, 3.69%)</title><rect x="383.6" y="2033" width="43.6" height="15.0" fill="rgb(218,94,18)" rx="2" ry="2" />
<text text-anchor="" x="386.60" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >aren..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.7" y="129" width="0.6" height="15.0" fill="rgb(217,20,23)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.7" y="97" width="0.6" height="15.0" fill="rgb(229,215,52)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::ha4686f13b119820e (181 samples, 8.57%)</title><rect x="508.7" y="1857" width="101.1" height="15.0" fill="rgb(235,107,6)" rx="2" ry="2" />
<text text-anchor="" x="511.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ptr::d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="353" width="0.5" height="15.0" fill="rgb(211,36,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (2,113 samples, 100%)</title><rect x="10.0" y="2065" width="1180.0" height="15.0" fill="rgb(223,162,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1905" width="0.6" height="15.0" fill="rgb(216,177,18)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="275.8" y="1841" width="0.6" height="15.0" fill="rgb(244,87,54)" rx="2" ry="2" />
<text text-anchor="" x="278.82" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="65" width="0.6" height="15.0" fill="rgb(226,125,15)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="817" width="0.5" height="15.0" fill="rgb(219,160,42)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="609" width="46.9" height="15.0" fill="rgb(218,134,32)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::decode::read_marker::h8efcadd4b7e3b994 (3 samples, 0.14%)</title><rect x="1085.6" y="1809" width="1.6" height="15.0" fill="rgb(249,43,44)" rx="2" ry="2" />
<text text-anchor="" x="1088.57" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h75db38871c808253 (6 samples, 0.28%)</title><rect x="1103.4" y="1825" width="3.4" height="15.0" fill="rgb(206,134,12)" rx="2" ry="2" />
<text text-anchor="" x="1106.44" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::str::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$str$GT$::to_owned::hc49f357cff40dbb6 (1 samples, 0.05%)</title><rect x="715.9" y="1793" width="0.5" height="15.0" fill="rgb(238,51,36)" rx="2" ry="2" />
<text text-anchor="" x="718.88" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="801" width="46.9" height="15.0" fill="rgb(246,113,11)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1409" width="0.5" height="15.0" fill="rgb(235,28,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_split_small (1 samples, 0.05%)</title><rect x="383.0" y="2033" width="0.6" height="15.0" fill="rgb(224,219,26)" rx="2" ry="2" />
<text text-anchor="" x="386.04" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1969" width="0.6" height="15.0" fill="rgb(225,183,46)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (1 samples, 0.05%)</title><rect x="1076.1" y="1793" width="0.5" height="15.0" fill="rgb(252,101,7)" rx="2" ry="2" />
<text text-anchor="" x="1079.08" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1553" width="46.9" height="15.0" fill="rgb(213,196,1)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="497" width="46.9" height="15.0" fill="rgb(229,66,53)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1553" width="0.5" height="15.0" fill="rgb(254,190,11)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (11 samples, 0.52%)</title><rect x="502.6" y="1729" width="6.1" height="15.0" fill="rgb(219,183,8)" rx="2" ry="2" />
<text text-anchor="" x="505.55" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_pages_purge (1 samples, 0.05%)</title><rect x="301.0" y="2017" width="0.5" height="15.0" fill="rgb(208,145,28)" rx="2" ry="2" />
<text text-anchor="" x="303.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.7" y="81" width="0.6" height="15.0" fill="rgb(243,7,0)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1889" width="0.5" height="15.0" fill="rgb(222,150,49)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="193" width="1.1" height="15.0" fill="rgb(253,154,41)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1281" width="46.9" height="15.0" fill="rgb(211,64,13)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="401" width="46.9" height="15.0" fill="rgb(209,140,30)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1905" width="1.1" height="15.0" fill="rgb(215,173,45)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h2139a5b5ccc52d87 (203 samples, 9.61%)</title><rect x="496.4" y="1873" width="113.4" height="15.0" fill="rgb(254,226,17)" rx="2" ry="2" />
<text text-anchor="" x="499.41" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ptr::dro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..heap..HeapAlloc$u20$as$u20$alloc..allocator..Alloc$GT$::dealloc::h697345d96e54f71e (2 samples, 0.09%)</title><rect x="640.5" y="1809" width="1.1" height="15.0" fill="rgb(245,138,37)" rx="2" ry="2" />
<text text-anchor="" x="643.49" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (1 samples, 0.05%)</title><rect x="1085.0" y="1809" width="0.6" height="15.0" fill="rgb(253,69,34)" rx="2" ry="2" />
<text text-anchor="" x="1088.01" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="385" width="46.9" height="15.0" fill="rgb(215,90,33)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1569" width="0.5" height="15.0" fill="rgb(241,84,29)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1841" width="0.5" height="15.0" fill="rgb(238,183,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1729" width="0.5" height="15.0" fill="rgb(215,186,34)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_release (1 samples, 0.05%)</title><rect x="1187.2" y="1873" width="0.6" height="15.0" fill="rgb(240,44,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="1953" width="0.5" height="15.0" fill="rgb(245,84,7)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1537" width="0.5" height="15.0" fill="rgb(232,39,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.05%)</title><rect x="1185.5" y="2033" width="0.6" height="15.0" fill="rgb(230,116,39)" rx="2" ry="2" />
<text text-anchor="" x="1188.53" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_first_best_fit (3 samples, 0.14%)</title><rect x="250.7" y="2017" width="1.7" height="15.0" fill="rgb(235,163,21)" rx="2" ry="2" />
<text text-anchor="" x="253.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1201" width="0.5" height="15.0" fill="rgb(237,202,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (150 samples, 7.10%)</title><rect x="824.8" y="1745" width="83.7" height="15.0" fill="rgb(248,155,3)" rx="2" ry="2" />
<text text-anchor="" x="827.78" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_nactive_sub.isra.29 (1 samples, 0.05%)</title><rect x="373.5" y="2033" width="0.6" height="15.0" fill="rgb(230,174,49)" rx="2" ry="2" />
<text text-anchor="" x="376.55" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1601" width="0.5" height="15.0" fill="rgb(248,120,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1761" width="0.5" height="15.0" fill="rgb(227,180,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="337" width="0.5" height="15.0" fill="rgb(236,212,16)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (60 samples, 2.84%)</title><rect x="90.4" y="1953" width="33.5" height="15.0" fill="rgb(241,85,34)" rx="2" ry="2" />
<text text-anchor="" x="93.42" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1473" width="46.9" height="15.0" fill="rgb(225,17,2)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::marker::Marker::from_u8::hc5e7af7534188e9b (2 samples, 0.09%)</title><rect x="716.4" y="1793" width="1.2" height="15.0" fill="rgb(239,31,20)" rx="2" ry="2" />
<text text-anchor="" x="719.44" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_free_eofblocks (1 samples, 0.05%)</title><rect x="1187.2" y="1857" width="0.6" height="15.0" fill="rgb(220,59,12)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (46 samples, 2.18%)</title><rect x="32.9" y="33" width="25.7" height="15.0" fill="rgb(207,26,53)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="368.0" y="1985" width="1.1" height="15.0" fill="rgb(242,213,15)" rx="2" ry="2" />
<text text-anchor="" x="370.96" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1761" width="46.9" height="15.0" fill="rgb(216,23,48)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (72 samples, 3.41%)</title><rect x="167.5" y="1793" width="40.2" height="15.0" fill="rgb(206,107,13)" rx="2" ry="2" />
<text text-anchor="" x="170.48" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1953" width="1.1" height="15.0" fill="rgb(227,218,37)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="12.8" y="1873" width="0.6" height="15.0" fill="rgb(250,2,7)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_file_release (1 samples, 0.05%)</title><rect x="1187.2" y="1889" width="0.6" height="15.0" fill="rgb(206,155,24)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="305" width="0.5" height="15.0" fill="rgb(243,115,29)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1953" width="46.9" height="15.0" fill="rgb(228,137,6)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="577" width="46.9" height="15.0" fill="rgb(213,60,43)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1265" width="46.9" height="15.0" fill="rgb(205,14,48)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="161" width="0.5" height="15.0" fill="rgb(241,52,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (89 samples, 4.21%)</title><rect x="317.7" y="1985" width="49.7" height="15.0" fill="rgb(208,213,34)" rx="2" ry="2" />
<text text-anchor="" x="320.70" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.24%)</title><rect x="1186.1" y="2033" width="2.8" height="15.0" fill="rgb(245,161,52)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1745" width="1.6" height="15.0" fill="rgb(212,13,21)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (144 samples, 6.81%)</title><rect x="127.3" y="1969" width="80.4" height="15.0" fill="rgb(219,72,11)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1189.4" y="1969" width="0.6" height="15.0" fill="rgb(226,77,50)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>serde::de::impls::_$LT$impl$u20$serde..de..Deserialize$LT$$u27$de$GT$$u20$for$u20$alloc..string..String$GT$::deserialize::ha4ad4e09742feca5 (37 samples, 1.75%)</title><rect x="696.9" y="1809" width="20.7" height="15.0" fill="rgb(253,193,12)" rx="2" ry="2" />
<text text-anchor="" x="699.89" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="122.8" y="1841" width="1.1" height="15.0" fill="rgb(212,200,22)" rx="2" ry="2" />
<text text-anchor="" x="125.81" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1153" width="46.9" height="15.0" fill="rgb(206,191,46)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.3" y="1953" width="0.6" height="15.0" fill="rgb(217,36,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (30 samples, 1.42%)</title><rect x="107.2" y="1905" width="16.7" height="15.0" fill="rgb(233,120,6)" rx="2" ry="2" />
<text text-anchor="" x="110.17" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1249" width="0.5" height="15.0" fill="rgb(209,212,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1182.2" y="1713" width="0.5" height="15.0" fill="rgb(231,89,21)" rx="2" ry="2" />
<text text-anchor="" x="1185.18" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="177" width="0.5" height="15.0" fill="rgb(247,27,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>index::unit_tes (2,103 samples, 99.53%)</title><rect x="10.0" y="2049" width="1174.4" height="15.0" fill="rgb(237,83,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >index::unit_tes</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$alloc..string..String$u20$as$u20$core..convert..From$LT$$RF$$u27$a$u20$str$GT$$GT$::from::hee26654d024c6b77 (7 samples, 0.33%)</title><rect x="688.0" y="1793" width="3.9" height="15.0" fill="rgb(243,114,53)" rx="2" ry="2" />
<text text-anchor="" x="690.96" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="177" width="1.1" height="15.0" fill="rgb(247,91,24)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="207.1" y="1745" width="0.6" height="15.0" fill="rgb(239,122,51)" rx="2" ry="2" />
<text text-anchor="" x="210.13" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1953" width="0.5" height="15.0" fill="rgb(208,201,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="694.1" y="1729" width="0.6" height="15.0" fill="rgb(226,192,40)" rx="2" ry="2" />
<text text-anchor="" x="697.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (28 samples, 1.33%)</title><rect x="66.4" y="1985" width="15.6" height="15.0" fill="rgb(227,185,8)" rx="2" ry="2" />
<text text-anchor="" x="69.40" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1313" width="46.9" height="15.0" fill="rgb(243,85,32)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (83 samples, 3.93%)</title><rect x="321.1" y="1969" width="46.3" height="15.0" fill="rgb(230,37,2)" rx="2" ry="2" />
<text text-anchor="" x="324.06" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ke..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1153" width="0.5" height="15.0" fill="rgb(215,194,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (3 samples, 0.14%)</title><rect x="1166.5" y="1809" width="1.7" height="15.0" fill="rgb(215,116,30)" rx="2" ry="2" />
<text text-anchor="" x="1169.55" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1809" width="1.1" height="15.0" fill="rgb(247,184,29)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.33%)</title><rect x="311.0" y="2017" width="3.9" height="15.0" fill="rgb(206,65,7)" rx="2" ry="2" />
<text text-anchor="" x="314.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.1" y="97" width="0.6" height="15.0" fill="rgb(217,133,30)" rx="2" ry="2" />
<text text-anchor="" x="62.14" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.85%)</title><rect x="498.6" y="1841" width="10.1" height="15.0" fill="rgb(245,117,13)" rx="2" ry="2" />
<text text-anchor="" x="501.64" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1953" width="0.6" height="15.0" fill="rgb(212,181,47)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (61 samples, 2.89%)</title><rect x="89.9" y="1969" width="34.0" height="15.0" fill="rgb(220,155,34)" rx="2" ry="2" />
<text text-anchor="" x="92.86" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (167 samples, 7.90%)</title><rect x="815.3" y="1761" width="93.2" height="15.0" fill="rgb(213,81,53)" rx="2" ry="2" />
<text text-anchor="" x="818.28" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel.ka..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.9" y="1937" width="0.5" height="15.0" fill="rgb(250,47,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.88" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="97" width="1.6" height="15.0" fill="rgb(219,2,51)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfs_bmapi_read (1 samples, 0.05%)</title><rect x="1187.2" y="1841" width="0.6" height="15.0" fill="rgb(205,163,36)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1425" width="0.5" height="15.0" fill="rgb(245,77,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h75db38871c808253 (8 samples, 0.38%)</title><rect x="747.7" y="1809" width="4.5" height="15.0" fill="rgb(215,22,27)" rx="2" ry="2" />
<text text-anchor="" x="750.71" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1633" width="46.9" height="15.0" fill="rgb(216,45,23)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="537.7" y="1697" width="0.6" height="15.0" fill="rgb(227,61,45)" rx="2" ry="2" />
<text text-anchor="" x="540.73" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (128 samples, 6.06%)</title><rect x="837.1" y="1729" width="71.4" height="15.0" fill="rgb(207,172,2)" rx="2" ry="2" />
<text text-anchor="" x="840.06" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1617" width="46.9" height="15.0" fill="rgb(213,133,4)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.7" y="49" width="0.6" height="15.0" fill="rgb(222,73,40)" rx="2" ry="2" />
<text text-anchor="" x="62.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (10 samples, 0.47%)</title><rect x="903.0" y="1697" width="5.5" height="15.0" fill="rgb(208,184,28)" rx="2" ry="2" />
<text text-anchor="" x="905.96" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1089" width="46.9" height="15.0" fill="rgb(222,171,18)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="273" width="0.5" height="15.0" fill="rgb(243,205,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="193" width="0.5" height="15.0" fill="rgb(253,127,34)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::version::version::h27dd1584744c96f3 (25 samples, 1.18%)</title><rect x="1147.6" y="1841" width="13.9" height="15.0" fill="rgb(205,76,46)" rx="2" ry="2" />
<text text-anchor="" x="1150.56" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1189.4" y="1953" width="0.6" height="15.0" fill="rgb(236,227,41)" rx="2" ry="2" />
<text text-anchor="" x="1192.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="561" width="0.5" height="15.0" fill="rgb(240,157,34)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (144 samples, 6.81%)</title><rect x="127.3" y="1953" width="80.4" height="15.0" fill="rgb(232,89,28)" rx="2" ry="2" />
<text text-anchor="" x="130.27" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kernel...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8::haeca8c22f635e371 (2 samples, 0.09%)</title><rect x="1159.8" y="1793" width="1.2" height="15.0" fill="rgb(251,201,43)" rx="2" ry="2" />
<text text-anchor="" x="1162.84" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1841" width="1.1" height="15.0" fill="rgb(243,112,42)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="2001" width="0.5" height="15.0" fill="rgb(225,59,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (49 samples, 2.32%)</title><rect x="1118.5" y="1809" width="27.4" height="15.0" fill="rgb(210,39,16)" rx="2" ry="2" />
<text text-anchor="" x="1121.52" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place::h4c534f7e0612e701 (1 samples, 0.05%)</title><rect x="1186.6" y="2001" width="0.6" height="15.0" fill="rgb(252,21,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.65" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="241" width="46.9" height="15.0" fill="rgb(212,124,53)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="2001" width="0.6" height="15.0" fill="rgb(225,119,50)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (1 samples, 0.05%)</title><rect x="12.8" y="2017" width="0.6" height="15.0" fill="rgb(213,29,0)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1188.3" y="1937" width="0.6" height="15.0" fill="rgb(212,118,5)" rx="2" ry="2" />
<text text-anchor="" x="1191.32" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="993" width="46.9" height="15.0" fill="rgb(236,116,13)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::marker::Marker::from_u8::hc5e7af7534188e9b (1 samples, 0.05%)</title><rect x="1162.1" y="1841" width="0.5" height="15.0" fill="rgb(240,82,27)" rx="2" ry="2" />
<text text-anchor="" x="1165.08" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="897" width="46.9" height="15.0" fill="rgb(234,27,20)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1489" width="0.5" height="15.0" fill="rgb(218,116,3)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>munmap (1 samples, 0.05%)</title><rect x="1187.2" y="2001" width="0.6" height="15.0" fill="rgb(221,117,42)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="1181.1" y="1761" width="1.6" height="15.0" fill="rgb(216,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1184.06" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1905" width="0.5" height="15.0" fill="rgb(217,77,41)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="97" width="0.6" height="15.0" fill="rgb(252,208,19)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="737" width="46.9" height="15.0" fill="rgb(231,132,23)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (33 samples, 1.56%)</title><rect x="63.6" y="2001" width="18.4" height="15.0" fill="rgb(247,49,19)" rx="2" ry="2" />
<text text-anchor="" x="66.61" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (89 samples, 4.21%)</title><rect x="317.7" y="2033" width="49.7" height="15.0" fill="rgb(227,38,13)" rx="2" ry="2" />
<text text-anchor="" x="320.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__mad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="369" width="46.9" height="15.0" fill="rgb(210,60,2)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="985.6" y="1809" width="1.1" height="15.0" fill="rgb(206,206,31)" rx="2" ry="2" />
<text text-anchor="" x="988.61" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="257" width="46.9" height="15.0" fill="rgb(222,121,13)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$rmp_serde..decode..Deserializer$LT$R$GT$$GT$::read_str_data::h7bed7033b67078cb (3 samples, 0.14%)</title><rect x="1171.6" y="1825" width="1.6" height="15.0" fill="rgb(248,210,20)" rx="2" ry="2" />
<text text-anchor="" x="1174.57" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2 (138 samples, 6.53%)</title><rect x="908.5" y="1825" width="77.1" height="15.0" fill="rgb(250,53,18)" rx="2" ry="2" />
<text text-anchor="" x="911.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__memset..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="657" width="46.9" height="15.0" fill="rgb(236,100,20)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="721" width="46.9" height="15.0" fill="rgb(215,197,16)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1777" width="0.6" height="15.0" fill="rgb(212,15,44)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="61.9" y="145" width="0.6" height="15.0" fill="rgb(245,45,41)" rx="2" ry="2" />
<text text-anchor="" x="64.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="62.5" y="97" width="1.1" height="15.0" fill="rgb(224,193,18)" rx="2" ry="2" />
<text text-anchor="" x="65.49" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hc1c26862b11f60c5 (24 samples, 1.14%)</title><rect x="734.3" y="1793" width="13.4" height="15.0" fill="rgb(223,152,39)" rx="2" ry="2" />
<text text-anchor="" x="737.31" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1761" width="1.1" height="15.0" fill="rgb(234,122,41)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1985" width="0.6" height="15.0" fill="rgb(211,209,51)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1187.2" y="1921" width="0.6" height="15.0" fill="rgb(252,34,39)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::decode::read_marker::h8efcadd4b7e3b994 (1 samples, 0.05%)</title><rect x="1161.5" y="1841" width="0.6" height="15.0" fill="rgb(237,170,10)" rx="2" ry="2" />
<text text-anchor="" x="1164.52" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (18 samples, 0.85%)</title><rect x="498.6" y="1809" width="10.1" height="15.0" fill="rgb(235,196,1)" rx="2" ry="2" />
<text text-anchor="" x="501.64" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="289" width="0.5" height="15.0" fill="rgb(226,24,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_dalloc (2 samples, 0.09%)</title><rect x="249.6" y="2017" width="1.1" height="15.0" fill="rgb(224,78,15)" rx="2" ry="2" />
<text text-anchor="" x="252.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (26 samples, 1.23%)</title><rect x="67.5" y="1937" width="14.5" height="15.0" fill="rgb(222,21,44)" rx="2" ry="2" />
<text text-anchor="" x="70.52" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="689" width="0.5" height="15.0" fill="rgb(225,1,26)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="385" width="0.5" height="15.0" fill="rgb(217,214,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmp::decode::read_marker::h8efcadd4b7e3b994 (1 samples, 0.05%)</title><rect x="1168.2" y="1825" width="0.6" height="15.0" fill="rgb(217,159,49)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1649" width="46.9" height="15.0" fill="rgb(217,28,31)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="495.8" y="1809" width="0.6" height="15.0" fill="rgb(227,137,52)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys_common::backtrace::__rust_begin_short_backtrace::h1c6cbf4755621c02 (1 samples, 0.05%)</title><rect x="317.1" y="2017" width="0.6" height="15.0" fill="rgb(247,91,19)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="2017" width="0.5" height="15.0" fill="rgb(213,80,37)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1457" width="46.9" height="15.0" fill="rgb(238,32,19)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (18 samples, 0.85%)</title><rect x="498.6" y="1857" width="10.1" height="15.0" fill="rgb(238,137,54)" rx="2" ry="2" />
<text text-anchor="" x="501.64" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>serde::de::impls::_$LT$impl$u20$serde..de..Deserialize$LT$$u27$de$GT$$u20$for$u20$alloc..string..String$GT$::deserialize::ha4ad4e09742feca5 (3 samples, 0.14%)</title><rect x="1171.6" y="1841" width="1.6" height="15.0" fill="rgb(227,13,41)" rx="2" ry="2" />
<text text-anchor="" x="1174.57" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (2 samples, 0.09%)</title><rect x="704.7" y="1777" width="1.1" height="15.0" fill="rgb(232,95,34)" rx="2" ry="2" />
<text text-anchor="" x="707.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="513" width="46.9" height="15.0" fill="rgb(224,72,23)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="1905" width="0.6" height="15.0" fill="rgb(241,103,29)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat::h0127ac761e050d41 (7 samples, 0.33%)</title><rect x="584.1" y="1825" width="3.9" height="15.0" fill="rgb(231,25,52)" rx="2" ry="2" />
<text text-anchor="" x="587.08" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager::index::unit_test::read_index_bench::he0b20db5ce8d6a27 (1,232 samples, 58.31%)</title><rect x="495.8" y="1905" width="688.1" height="15.0" fill="rgb(244,197,14)" rx="2" ry="2" />
<text text-anchor="" x="498.85" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >package_manager::index::unit_test::read_index_bench::he0b20db5ce8d6a27</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1377" width="46.9" height="15.0" fill="rgb(218,75,17)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_avx_unaligned (3 samples, 0.14%)</title><rect x="367.4" y="2033" width="1.7" height="15.0" fill="rgb(223,4,30)" rx="2" ry="2" />
<text text-anchor="" x="370.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1777" width="0.5" height="15.0" fill="rgb(223,95,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1873" width="1.1" height="15.0" fill="rgb(211,18,48)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_tree_remove (14 samples, 0.66%)</title><rect x="267.4" y="2017" width="7.9" height="15.0" fill="rgb(225,188,2)" rx="2" ry="2" />
<text text-anchor="" x="270.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.05%)</title><rect x="1076.6" y="1793" width="0.6" height="15.0" fill="rgb(228,225,34)" rx="2" ry="2" />
<text text-anchor="" x="1079.64" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1793" width="0.5" height="15.0" fill="rgb(217,49,44)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="275.3" y="1985" width="1.1" height="15.0" fill="rgb(233,182,18)" rx="2" ry="2" />
<text text-anchor="" x="278.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (6 samples, 0.28%)</title><rect x="1038.7" y="1729" width="3.3" height="15.0" fill="rgb(245,212,45)" rx="2" ry="2" />
<text text-anchor="" x="1041.66" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1184.4" y="1969" width="1.1" height="15.0" fill="rgb(246,87,16)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="16.1" y="1969" width="0.6" height="15.0" fill="rgb(229,143,27)" rx="2" ry="2" />
<text text-anchor="" x="19.14" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="449" width="0.5" height="15.0" fill="rgb(214,190,30)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (2 samples, 0.09%)</title><rect x="1177.2" y="1745" width="1.1" height="15.0" fill="rgb(211,50,21)" rx="2" ry="2" />
<text text-anchor="" x="1180.16" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>package_manager (10 samples, 0.47%)</title><rect x="1184.4" y="2049" width="5.6" height="15.0" fill="rgb(238,154,42)" rx="2" ry="2" />
<text text-anchor="" x="1187.42" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (3 samples, 0.14%)</title><rect x="60.3" y="49" width="1.6" height="15.0" fill="rgb(244,111,40)" rx="2" ry="2" />
<text text-anchor="" x="63.26" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="59.1" y="49" width="0.6" height="15.0" fill="rgb(212,75,32)" rx="2" ry="2" />
<text text-anchor="" x="62.14" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_tree_insert (27 samples, 1.28%)</title><rect x="252.4" y="2017" width="15.0" height="15.0" fill="rgb(254,9,42)" rx="2" ry="2" />
<text text-anchor="" x="255.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="986.2" y="1793" width="0.5" height="15.0" fill="rgb(229,84,7)" rx="2" ry="2" />
<text text-anchor="" x="989.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1745" width="46.9" height="15.0" fill="rgb(225,151,34)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="1183.9" y="1825" width="0.5" height="15.0" fill="rgb(222,115,36)" rx="2" ry="2" />
<text text-anchor="" x="1186.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (78 samples, 3.69%)</title><rect x="16.7" y="161" width="43.6" height="15.0" fill="rgb(216,161,45)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="577" width="0.5" height="15.0" fill="rgb(254,229,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="417" width="0.5" height="15.0" fill="rgb(235,201,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (17 samples, 0.80%)</title><rect x="499.2" y="1777" width="9.5" height="15.0" fill="rgb(239,71,16)" rx="2" ry="2" />
<text text-anchor="" x="502.20" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.05%)</title><rect x="1084.5" y="1793" width="0.5" height="15.0" fill="rgb(233,184,2)" rx="2" ry="2" />
<text text-anchor="" x="1087.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (39 samples, 1.85%)</title><rect x="1124.1" y="1777" width="21.8" height="15.0" fill="rgb(231,187,33)" rx="2" ry="2" />
<text text-anchor="" x="1127.10" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h99392eaa32f62685 (33 samples, 1.56%)</title><rect x="1088.4" y="1841" width="18.4" height="15.0" fill="rgb(217,85,26)" rx="2" ry="2" />
<text text-anchor="" x="1091.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1969" width="0.6" height="15.0" fill="rgb(228,32,34)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="1393" width="0.5" height="15.0" fill="rgb(230,88,3)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="545" width="46.9" height="15.0" fill="rgb(231,190,3)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kernel.kallsyms]] (1 samples, 0.05%)</title><rect x="317.1" y="1937" width="0.6" height="15.0" fill="rgb(246,188,46)" rx="2" ry="2" />
<text text-anchor="" x="320.15" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Alloc::alloc_array::hd322018fdc713223 (2 samples, 0.09%)</title><rect x="1152.6" y="1793" width="1.1" height="15.0" fill="rgb(218,32,12)" rx="2" ry="2" />
<text text-anchor="" x="1155.58" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (78 samples, 3.69%)</title><rect x="16.7" y="177" width="43.6" height="15.0" fill="rgb(248,151,51)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.05%)</title><rect x="1186.1" y="369" width="0.5" height="15.0" fill="rgb(244,67,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="2001" width="46.9" height="15.0" fill="rgb(208,188,40)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (84 samples, 3.98%)</title><rect x="16.7" y="1809" width="46.9" height="15.0" fill="rgb(235,160,30)" rx="2" ry="2" />
<text text-anchor="" x="19.70" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__madvise (25 samples, 1.18%)</title><rect x="464.6" y="2017" width="13.9" height="15.0" fill="rgb(215,95,32)" rx="2" ry="2" />
<text text-anchor="" x="467.58" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment