brainfuck/bfi-rust/flamegraph.svg
2021-06-27 08:59:58 -07:00

412 lines
No EOL
437 KiB
XML

<?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="1846" onload="init(evt)" viewBox="0 0 1200 1846" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><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">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
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, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
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 = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
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.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// 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;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="1846" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="1829.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="1829.00"> </text><svg id="frames" x="10" width="1180" total_samples="4667"><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="0.0000%" y="1701" width="0.0214%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1711.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (1 samples, 0.02%)</title><rect x="0.0000%" y="1685" width="0.0214%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1695.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (1 samples, 0.02%)</title><rect x="0.0000%" y="1669" width="0.0214%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1679.50"></text></g><g><title>amd_pmu_wait_on_overflow (6 samples, 0.13%)</title><rect x="0.4071%" y="1317" width="0.1286%" height="15" fill="rgb(248,212,6)" fg:x="19" fg:w="6"/><text x="0.6571%" y="1327.50"></text></g><g><title>native_read_msr (6 samples, 0.13%)</title><rect x="0.4071%" y="1301" width="0.1286%" height="15" fill="rgb(208,68,35)" fg:x="19" fg:w="6"/><text x="0.6571%" y="1311.50"></text></g><g><title>native_write_msr (2 samples, 0.04%)</title><rect x="0.5357%" y="1317" width="0.0429%" height="15" fill="rgb(232,128,0)" fg:x="25" fg:w="2"/><text x="0.7857%" y="1327.50"></text></g><g><title>perf_pmu_disable.part.0 (9 samples, 0.19%)</title><rect x="0.4071%" y="1365" width="0.1928%" height="15" fill="rgb(207,160,47)" fg:x="19" fg:w="9"/><text x="0.6571%" y="1375.50"></text></g><g><title>x86_pmu_disable (9 samples, 0.19%)</title><rect x="0.4071%" y="1349" width="0.1928%" height="15" fill="rgb(228,23,34)" fg:x="19" fg:w="9"/><text x="0.6571%" y="1359.50"></text></g><g><title>amd_pmu_disable_all (9 samples, 0.19%)</title><rect x="0.4071%" y="1333" width="0.1928%" height="15" fill="rgb(218,30,26)" fg:x="19" fg:w="9"/><text x="0.6571%" y="1343.50"></text></g><g><title>x86_pmu_disable_all (1 samples, 0.02%)</title><rect x="0.5785%" y="1317" width="0.0214%" height="15" fill="rgb(220,122,19)" fg:x="27" fg:w="1"/><text x="0.8285%" y="1327.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="0.5785%" y="1301" width="0.0214%" height="15" fill="rgb(250,228,42)" fg:x="27" fg:w="1"/><text x="0.8285%" y="1311.50"></text></g><g><title>__perf_event_task_sched_out (10 samples, 0.21%)</title><rect x="0.4071%" y="1413" width="0.2143%" height="15" fill="rgb(240,193,28)" fg:x="19" fg:w="10"/><text x="0.6571%" y="1423.50"></text></g><g><title>task_ctx_sched_out (10 samples, 0.21%)</title><rect x="0.4071%" y="1397" width="0.2143%" height="15" fill="rgb(216,20,37)" fg:x="19" fg:w="10"/><text x="0.6571%" y="1407.50"></text></g><g><title>ctx_sched_out (10 samples, 0.21%)</title><rect x="0.4071%" y="1381" width="0.2143%" height="15" fill="rgb(206,188,39)" fg:x="19" fg:w="10"/><text x="0.6571%" y="1391.50"></text></g><g><title>sched_clock_cpu (1 samples, 0.02%)</title><rect x="0.6000%" y="1365" width="0.0214%" height="15" fill="rgb(217,207,13)" fg:x="28" fg:w="1"/><text x="0.8500%" y="1375.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::flush (21 samples, 0.45%)</title><rect x="0.4071%" y="1669" width="0.4500%" height="15" fill="rgb(231,73,38)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1679.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::flush (21 samples, 0.45%)</title><rect x="0.4071%" y="1653" width="0.4500%" height="15" fill="rgb(225,20,46)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1663.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::flush (21 samples, 0.45%)</title><rect x="0.4071%" y="1637" width="0.4500%" height="15" fill="rgb(210,31,41)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1647.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::flush (21 samples, 0.45%)</title><rect x="0.4071%" y="1621" width="0.4500%" height="15" fill="rgb(221,200,47)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1631.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::flush (21 samples, 0.45%)</title><rect x="0.4071%" y="1605" width="0.4500%" height="15" fill="rgb(226,26,5)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1615.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (21 samples, 0.45%)</title><rect x="0.4071%" y="1589" width="0.4500%" height="15" fill="rgb(249,33,26)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1599.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (21 samples, 0.45%)</title><rect x="0.4071%" y="1573" width="0.4500%" height="15" fill="rgb(235,183,28)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1583.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (21 samples, 0.45%)</title><rect x="0.4071%" y="1557" width="0.4500%" height="15" fill="rgb(221,5,38)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1567.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (21 samples, 0.45%)</title><rect x="0.4071%" y="1541" width="0.4500%" height="15" fill="rgb(247,18,42)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1551.50"></text></g><g><title>__libc_write (21 samples, 0.45%)</title><rect x="0.4071%" y="1525" width="0.4500%" height="15" fill="rgb(241,131,45)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1535.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.45%)</title><rect x="0.4071%" y="1509" width="0.4500%" height="15" fill="rgb(249,31,29)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1519.50"></text></g><g><title>do_syscall_64 (21 samples, 0.45%)</title><rect x="0.4071%" y="1493" width="0.4500%" height="15" fill="rgb(225,111,53)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1503.50"></text></g><g><title>__syscall_return_slowpath (21 samples, 0.45%)</title><rect x="0.4071%" y="1477" width="0.4500%" height="15" fill="rgb(238,160,17)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1487.50"></text></g><g><title>__prepare_exit_to_usermode (21 samples, 0.45%)</title><rect x="0.4071%" y="1461" width="0.4500%" height="15" fill="rgb(214,148,48)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1471.50"></text></g><g><title>schedule (21 samples, 0.45%)</title><rect x="0.4071%" y="1445" width="0.4500%" height="15" fill="rgb(232,36,49)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1455.50"></text></g><g><title>__schedule (21 samples, 0.45%)</title><rect x="0.4071%" y="1429" width="0.4500%" height="15" fill="rgb(209,103,24)" fg:x="19" fg:w="21"/><text x="0.6571%" y="1439.50"></text></g><g><title>finish_task_switch (11 samples, 0.24%)</title><rect x="0.6214%" y="1413" width="0.2357%" height="15" fill="rgb(229,88,8)" fg:x="29" fg:w="11"/><text x="0.8714%" y="1423.50"></text></g><g><title>__perf_event_task_sched_in (11 samples, 0.24%)</title><rect x="0.6214%" y="1397" width="0.2357%" height="15" fill="rgb(213,181,19)" fg:x="29" fg:w="11"/><text x="0.8714%" y="1407.50"></text></g><g><title>perf_pmu_enable.part.0 (11 samples, 0.24%)</title><rect x="0.6214%" y="1381" width="0.2357%" height="15" fill="rgb(254,191,54)" fg:x="29" fg:w="11"/><text x="0.8714%" y="1391.50"></text></g><g><title>x86_pmu_enable (11 samples, 0.24%)</title><rect x="0.6214%" y="1365" width="0.2357%" height="15" fill="rgb(241,83,37)" fg:x="29" fg:w="11"/><text x="0.8714%" y="1375.50"></text></g><g><title>native_write_msr (11 samples, 0.24%)</title><rect x="0.6214%" y="1349" width="0.2357%" height="15" fill="rgb(233,36,39)" fg:x="29" fg:w="11"/><text x="0.8714%" y="1359.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&lt;&amp;usize&gt;&gt;::add_assign (3 samples, 0.06%)</title><rect x="0.8571%" y="1669" width="0.0643%" height="15" fill="rgb(226,3,54)" fg:x="40" fg:w="3"/><text x="1.1071%" y="1679.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&gt;::add_assign (3 samples, 0.06%)</title><rect x="0.8571%" y="1653" width="0.0643%" height="15" fill="rgb(245,192,40)" fg:x="40" fg:w="3"/><text x="1.1071%" y="1663.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="0.9214%" y="1669" width="0.0643%" height="15" fill="rgb(238,167,29)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1679.50"></text></g><g><title>sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="0.9214%" y="1653" width="0.0643%" height="15" fill="rgb(232,182,51)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1663.50"></text></g><g><title>__sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="0.9214%" y="1637" width="0.0643%" height="15" fill="rgb(231,60,39)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1647.50"></text></g><g><title>hrtimer_interrupt (3 samples, 0.06%)</title><rect x="0.9214%" y="1621" width="0.0643%" height="15" fill="rgb(208,69,12)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1631.50"></text></g><g><title>__hrtimer_run_queues (3 samples, 0.06%)</title><rect x="0.9214%" y="1605" width="0.0643%" height="15" fill="rgb(235,93,37)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1615.50"></text></g><g><title>tick_sched_timer (3 samples, 0.06%)</title><rect x="0.9214%" y="1589" width="0.0643%" height="15" fill="rgb(213,116,39)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1599.50"></text></g><g><title>tick_sched_handle.isra.0 (3 samples, 0.06%)</title><rect x="0.9214%" y="1573" width="0.0643%" height="15" fill="rgb(222,207,29)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1583.50"></text></g><g><title>update_process_times (3 samples, 0.06%)</title><rect x="0.9214%" y="1557" width="0.0643%" height="15" fill="rgb(206,96,30)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1567.50"></text></g><g><title>scheduler_tick (3 samples, 0.06%)</title><rect x="0.9214%" y="1541" width="0.0643%" height="15" fill="rgb(218,138,4)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1551.50"></text></g><g><title>perf_event_task_tick (3 samples, 0.06%)</title><rect x="0.9214%" y="1525" width="0.0643%" height="15" fill="rgb(250,191,14)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1535.50"></text></g><g><title>perf_pmu_disable.part.0 (3 samples, 0.06%)</title><rect x="0.9214%" y="1509" width="0.0643%" height="15" fill="rgb(239,60,40)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1519.50"></text></g><g><title>x86_pmu_disable (3 samples, 0.06%)</title><rect x="0.9214%" y="1493" width="0.0643%" height="15" fill="rgb(206,27,48)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1503.50"></text></g><g><title>amd_pmu_disable_all (3 samples, 0.06%)</title><rect x="0.9214%" y="1477" width="0.0643%" height="15" fill="rgb(225,35,8)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1487.50"></text></g><g><title>amd_pmu_wait_on_overflow (3 samples, 0.06%)</title><rect x="0.9214%" y="1461" width="0.0643%" height="15" fill="rgb(250,213,24)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1471.50"></text></g><g><title>native_read_msr (3 samples, 0.06%)</title><rect x="0.9214%" y="1445" width="0.0643%" height="15" fill="rgb(247,123,22)" fg:x="43" fg:w="3"/><text x="1.1714%" y="1455.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.09%)</title><rect x="2.5284%" y="1653" width="0.0857%" height="15" fill="rgb(231,138,38)" fg:x="118" fg:w="4"/><text x="2.7784%" y="1663.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (4 samples, 0.09%)</title><rect x="2.5284%" y="1637" width="0.0857%" height="15" fill="rgb(231,145,46)" fg:x="118" fg:w="4"/><text x="2.7784%" y="1647.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (4 samples, 0.09%)</title><rect x="2.5284%" y="1621" width="0.0857%" height="15" fill="rgb(251,118,11)" fg:x="118" fg:w="4"/><text x="2.7784%" y="1631.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="2.5927%" y="1605" width="0.0214%" height="15" fill="rgb(217,147,25)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1615.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="2.5927%" y="1589" width="0.0214%" height="15" fill="rgb(247,81,37)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1599.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="2.5927%" y="1573" width="0.0214%" height="15" fill="rgb(209,12,38)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1583.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="2.5927%" y="1557" width="0.0214%" height="15" fill="rgb(227,1,9)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1567.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="2.5927%" y="1541" width="0.0214%" height="15" fill="rgb(248,47,43)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1551.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="2.5927%" y="1525" width="0.0214%" height="15" fill="rgb(221,10,30)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1535.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="2.5927%" y="1509" width="0.0214%" height="15" fill="rgb(210,229,1)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1519.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="2.5927%" y="1493" width="0.0214%" height="15" fill="rgb(222,148,37)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1503.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="2.5927%" y="1477" width="0.0214%" height="15" fill="rgb(234,67,33)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1487.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="2.5927%" y="1461" width="0.0214%" height="15" fill="rgb(247,98,35)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1471.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="2.5927%" y="1445" width="0.0214%" height="15" fill="rgb(247,138,52)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1455.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="2.5927%" y="1429" width="0.0214%" height="15" fill="rgb(213,79,30)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1439.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="2.5927%" y="1413" width="0.0214%" height="15" fill="rgb(246,177,23)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1423.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="2.5927%" y="1397" width="0.0214%" height="15" fill="rgb(230,62,27)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1407.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="2.5927%" y="1381" width="0.0214%" height="15" fill="rgb(216,154,8)" fg:x="121" fg:w="1"/><text x="2.8427%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (4 samples, 0.09%)</title><rect x="2.6141%" y="1301" width="0.0857%" height="15" fill="rgb(244,35,45)" fg:x="122" fg:w="4"/><text x="2.8641%" y="1311.50"></text></g><g><title>native_read_msr (4 samples, 0.09%)</title><rect x="2.6141%" y="1285" width="0.0857%" height="15" fill="rgb(251,115,12)" fg:x="122" fg:w="4"/><text x="2.8641%" y="1295.50"></text></g><g><title>__syscall_return_slowpath (6 samples, 0.13%)</title><rect x="2.6141%" y="1461" width="0.1286%" height="15" fill="rgb(240,54,50)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1471.50"></text></g><g><title>__prepare_exit_to_usermode (6 samples, 0.13%)</title><rect x="2.6141%" y="1445" width="0.1286%" height="15" fill="rgb(233,84,52)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1455.50"></text></g><g><title>schedule (6 samples, 0.13%)</title><rect x="2.6141%" y="1429" width="0.1286%" height="15" fill="rgb(207,117,47)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1439.50"></text></g><g><title>__schedule (6 samples, 0.13%)</title><rect x="2.6141%" y="1413" width="0.1286%" height="15" fill="rgb(249,43,39)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1423.50"></text></g><g><title>__perf_event_task_sched_out (6 samples, 0.13%)</title><rect x="2.6141%" y="1397" width="0.1286%" height="15" fill="rgb(209,38,44)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1407.50"></text></g><g><title>task_ctx_sched_out (6 samples, 0.13%)</title><rect x="2.6141%" y="1381" width="0.1286%" height="15" fill="rgb(236,212,23)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1391.50"></text></g><g><title>ctx_sched_out (6 samples, 0.13%)</title><rect x="2.6141%" y="1365" width="0.1286%" height="15" fill="rgb(242,79,21)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1375.50"></text></g><g><title>perf_pmu_disable.part.0 (6 samples, 0.13%)</title><rect x="2.6141%" y="1349" width="0.1286%" height="15" fill="rgb(211,96,35)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1359.50"></text></g><g><title>x86_pmu_disable (6 samples, 0.13%)</title><rect x="2.6141%" y="1333" width="0.1286%" height="15" fill="rgb(253,215,40)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1343.50"></text></g><g><title>amd_pmu_disable_all (6 samples, 0.13%)</title><rect x="2.6141%" y="1317" width="0.1286%" height="15" fill="rgb(211,81,21)" fg:x="122" fg:w="6"/><text x="2.8641%" y="1327.50"></text></g><g><title>x86_pmu_disable_all (2 samples, 0.04%)</title><rect x="2.6998%" y="1301" width="0.0429%" height="15" fill="rgb(208,190,38)" fg:x="126" fg:w="2"/><text x="2.9498%" y="1311.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="2.6998%" y="1285" width="0.0429%" height="15" fill="rgb(235,213,38)" fg:x="126" fg:w="2"/><text x="2.9498%" y="1295.50"></text></g><g><title>file_tty_write.isra.0 (1 samples, 0.02%)</title><rect x="2.7427%" y="1397" width="0.0214%" height="15" fill="rgb(237,122,38)" fg:x="128" fg:w="1"/><text x="2.9927%" y="1407.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="2.7855%" y="1285" width="0.0214%" height="15" fill="rgb(244,218,35)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1295.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="2.7855%" y="1269" width="0.0214%" height="15" fill="rgb(240,68,47)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1279.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="2.7855%" y="1253" width="0.0214%" height="15" fill="rgb(210,16,53)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1263.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="2.7855%" y="1237" width="0.0214%" height="15" fill="rgb(235,124,12)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1247.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="2.7855%" y="1221" width="0.0214%" height="15" fill="rgb(224,169,11)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1231.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="2.7855%" y="1205" width="0.0214%" height="15" fill="rgb(250,166,2)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1215.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="2.7855%" y="1189" width="0.0214%" height="15" fill="rgb(242,216,29)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1199.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="2.7855%" y="1173" width="0.0214%" height="15" fill="rgb(230,116,27)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1183.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="2.7855%" y="1157" width="0.0214%" height="15" fill="rgb(228,99,48)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1167.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="2.7855%" y="1141" width="0.0214%" height="15" fill="rgb(253,11,6)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1151.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="2.7855%" y="1125" width="0.0214%" height="15" fill="rgb(247,143,39)" fg:x="130" fg:w="1"/><text x="3.0355%" y="1135.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::flush (10 samples, 0.21%)</title><rect x="2.6141%" y="1653" width="0.2143%" height="15" fill="rgb(236,97,10)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1663.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::flush (10 samples, 0.21%)</title><rect x="2.6141%" y="1637" width="0.2143%" height="15" fill="rgb(233,208,19)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1647.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::flush (10 samples, 0.21%)</title><rect x="2.6141%" y="1621" width="0.2143%" height="15" fill="rgb(216,164,2)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1631.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::flush (10 samples, 0.21%)</title><rect x="2.6141%" y="1605" width="0.2143%" height="15" fill="rgb(220,129,5)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1615.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::flush (10 samples, 0.21%)</title><rect x="2.6141%" y="1589" width="0.2143%" height="15" fill="rgb(242,17,10)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1599.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (10 samples, 0.21%)</title><rect x="2.6141%" y="1573" width="0.2143%" height="15" fill="rgb(242,107,0)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1583.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (10 samples, 0.21%)</title><rect x="2.6141%" y="1557" width="0.2143%" height="15" fill="rgb(251,28,31)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1567.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (10 samples, 0.21%)</title><rect x="2.6141%" y="1541" width="0.2143%" height="15" fill="rgb(233,223,10)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1551.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (10 samples, 0.21%)</title><rect x="2.6141%" y="1525" width="0.2143%" height="15" fill="rgb(215,21,27)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1535.50"></text></g><g><title>__libc_write (10 samples, 0.21%)</title><rect x="2.6141%" y="1509" width="0.2143%" height="15" fill="rgb(232,23,21)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1519.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10 samples, 0.21%)</title><rect x="2.6141%" y="1493" width="0.2143%" height="15" fill="rgb(244,5,23)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1503.50"></text></g><g><title>do_syscall_64 (10 samples, 0.21%)</title><rect x="2.6141%" y="1477" width="0.2143%" height="15" fill="rgb(226,81,46)" fg:x="122" fg:w="10"/><text x="2.8641%" y="1487.50"></text></g><g><title>__x64_sys_write (4 samples, 0.09%)</title><rect x="2.7427%" y="1461" width="0.0857%" height="15" fill="rgb(247,70,30)" fg:x="128" fg:w="4"/><text x="2.9927%" y="1471.50"></text></g><g><title>ksys_write (4 samples, 0.09%)</title><rect x="2.7427%" y="1445" width="0.0857%" height="15" fill="rgb(212,68,19)" fg:x="128" fg:w="4"/><text x="2.9927%" y="1455.50"></text></g><g><title>vfs_write (4 samples, 0.09%)</title><rect x="2.7427%" y="1429" width="0.0857%" height="15" fill="rgb(240,187,13)" fg:x="128" fg:w="4"/><text x="2.9927%" y="1439.50"></text></g><g><title>new_sync_write (4 samples, 0.09%)</title><rect x="2.7427%" y="1413" width="0.0857%" height="15" fill="rgb(223,113,26)" fg:x="128" fg:w="4"/><text x="2.9927%" y="1423.50"></text></g><g><title>tty_write (3 samples, 0.06%)</title><rect x="2.7641%" y="1397" width="0.0643%" height="15" fill="rgb(206,192,2)" fg:x="129" fg:w="3"/><text x="3.0141%" y="1407.50"></text></g><g><title>tty_ldisc_deref (3 samples, 0.06%)</title><rect x="2.7641%" y="1381" width="0.0643%" height="15" fill="rgb(241,108,4)" fg:x="129" fg:w="3"/><text x="3.0141%" y="1391.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="2.7855%" y="1365" width="0.0429%" height="15" fill="rgb(247,173,49)" fg:x="130" fg:w="2"/><text x="3.0355%" y="1375.50"></text></g><g><title>sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="2.7855%" y="1349" width="0.0429%" height="15" fill="rgb(224,114,35)" fg:x="130" fg:w="2"/><text x="3.0355%" y="1359.50"></text></g><g><title>asm_call_sysvec_on_stack (2 samples, 0.04%)</title><rect x="2.7855%" y="1333" width="0.0429%" height="15" fill="rgb(245,159,27)" fg:x="130" fg:w="2"/><text x="3.0355%" y="1343.50"></text></g><g><title>__sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="2.7855%" y="1317" width="0.0429%" height="15" fill="rgb(245,172,44)" fg:x="130" fg:w="2"/><text x="3.0355%" y="1327.50"></text></g><g><title>hrtimer_interrupt (2 samples, 0.04%)</title><rect x="2.7855%" y="1301" width="0.0429%" height="15" fill="rgb(236,23,11)" fg:x="130" fg:w="2"/><text x="3.0355%" y="1311.50"></text></g><g><title>tick_program_event (1 samples, 0.02%)</title><rect x="2.8069%" y="1285" width="0.0214%" height="15" fill="rgb(205,117,38)" fg:x="131" fg:w="1"/><text x="3.0569%" y="1295.50"></text></g><g><title>clockevents_program_event (1 samples, 0.02%)</title><rect x="2.8069%" y="1269" width="0.0214%" height="15" fill="rgb(237,72,25)" fg:x="131" fg:w="1"/><text x="3.0569%" y="1279.50"></text></g><g><title>lapic_next_event (1 samples, 0.02%)</title><rect x="2.8069%" y="1253" width="0.0214%" height="15" fill="rgb(244,70,9)" fg:x="131" fg:w="1"/><text x="3.0569%" y="1263.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="2.8069%" y="1237" width="0.0214%" height="15" fill="rgb(217,125,39)" fg:x="131" fg:w="1"/><text x="3.0569%" y="1247.50"></text></g><g><title>__hrtimer_run_queues (7 samples, 0.15%)</title><rect x="2.8284%" y="1589" width="0.1500%" height="15" fill="rgb(235,36,10)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1599.50"></text></g><g><title>tick_sched_timer (7 samples, 0.15%)</title><rect x="2.8284%" y="1573" width="0.1500%" height="15" fill="rgb(251,123,47)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1583.50"></text></g><g><title>tick_sched_handle.isra.0 (7 samples, 0.15%)</title><rect x="2.8284%" y="1557" width="0.1500%" height="15" fill="rgb(221,13,13)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1567.50"></text></g><g><title>update_process_times (7 samples, 0.15%)</title><rect x="2.8284%" y="1541" width="0.1500%" height="15" fill="rgb(238,131,9)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1551.50"></text></g><g><title>scheduler_tick (7 samples, 0.15%)</title><rect x="2.8284%" y="1525" width="0.1500%" height="15" fill="rgb(211,50,8)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1535.50"></text></g><g><title>perf_event_task_tick (7 samples, 0.15%)</title><rect x="2.8284%" y="1509" width="0.1500%" height="15" fill="rgb(245,182,24)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1519.50"></text></g><g><title>perf_pmu_disable.part.0 (7 samples, 0.15%)</title><rect x="2.8284%" y="1493" width="0.1500%" height="15" fill="rgb(242,14,37)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1503.50"></text></g><g><title>x86_pmu_disable (7 samples, 0.15%)</title><rect x="2.8284%" y="1477" width="0.1500%" height="15" fill="rgb(246,228,12)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1487.50"></text></g><g><title>amd_pmu_disable_all (7 samples, 0.15%)</title><rect x="2.8284%" y="1461" width="0.1500%" height="15" fill="rgb(213,55,15)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1471.50"></text></g><g><title>amd_pmu_wait_on_overflow (7 samples, 0.15%)</title><rect x="2.8284%" y="1445" width="0.1500%" height="15" fill="rgb(209,9,3)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1455.50"></text></g><g><title>native_read_msr (7 samples, 0.15%)</title><rect x="2.8284%" y="1429" width="0.1500%" height="15" fill="rgb(230,59,30)" fg:x="132" fg:w="7"/><text x="3.0784%" y="1439.50"></text></g><g><title>__sysvec_apic_timer_interrupt (9 samples, 0.19%)</title><rect x="2.8284%" y="1621" width="0.1928%" height="15" fill="rgb(209,121,21)" fg:x="132" fg:w="9"/><text x="3.0784%" y="1631.50"></text></g><g><title>hrtimer_interrupt (9 samples, 0.19%)</title><rect x="2.8284%" y="1605" width="0.1928%" height="15" fill="rgb(220,109,13)" fg:x="132" fg:w="9"/><text x="3.0784%" y="1615.50"></text></g><g><title>tick_program_event (2 samples, 0.04%)</title><rect x="2.9784%" y="1589" width="0.0429%" height="15" fill="rgb(232,18,1)" fg:x="139" fg:w="2"/><text x="3.2284%" y="1599.50"></text></g><g><title>clockevents_program_event (2 samples, 0.04%)</title><rect x="2.9784%" y="1573" width="0.0429%" height="15" fill="rgb(215,41,42)" fg:x="139" fg:w="2"/><text x="3.2284%" y="1583.50"></text></g><g><title>lapic_next_event (2 samples, 0.04%)</title><rect x="2.9784%" y="1557" width="0.0429%" height="15" fill="rgb(224,123,36)" fg:x="139" fg:w="2"/><text x="3.2284%" y="1567.50"></text></g><g><title>native_write_msr (2 samples, 0.04%)</title><rect x="2.9784%" y="1541" width="0.0429%" height="15" fill="rgb(240,125,3)" fg:x="139" fg:w="2"/><text x="3.2284%" y="1551.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (10 samples, 0.21%)</title><rect x="2.8284%" y="1653" width="0.2143%" height="15" fill="rgb(205,98,50)" fg:x="132" fg:w="10"/><text x="3.0784%" y="1663.50"></text></g><g><title>sysvec_apic_timer_interrupt (10 samples, 0.21%)</title><rect x="2.8284%" y="1637" width="0.2143%" height="15" fill="rgb(205,185,37)" fg:x="132" fg:w="10"/><text x="3.0784%" y="1647.50"></text></g><g><title>idtentry_exit_cond_rcu (1 samples, 0.02%)</title><rect x="3.0212%" y="1621" width="0.0214%" height="15" fill="rgb(238,207,15)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1631.50"></text></g><g><title>prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="3.0212%" y="1605" width="0.0214%" height="15" fill="rgb(213,199,42)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1615.50"></text></g><g><title>__prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="3.0212%" y="1589" width="0.0214%" height="15" fill="rgb(235,201,11)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1599.50"></text></g><g><title>schedule (1 samples, 0.02%)</title><rect x="3.0212%" y="1573" width="0.0214%" height="15" fill="rgb(207,46,11)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1583.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="3.0212%" y="1557" width="0.0214%" height="15" fill="rgb(241,35,35)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1567.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="3.0212%" y="1541" width="0.0214%" height="15" fill="rgb(243,32,47)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1551.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="3.0212%" y="1525" width="0.0214%" height="15" fill="rgb(247,202,23)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1535.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="3.0212%" y="1509" width="0.0214%" height="15" fill="rgb(219,102,11)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1519.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="3.0212%" y="1493" width="0.0214%" height="15" fill="rgb(243,110,44)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1503.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="3.0212%" y="1477" width="0.0214%" height="15" fill="rgb(222,74,54)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1487.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="3.0212%" y="1461" width="0.0214%" height="15" fill="rgb(216,99,12)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1471.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="3.0212%" y="1445" width="0.0214%" height="15" fill="rgb(226,22,26)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1455.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="3.0212%" y="1429" width="0.0214%" height="15" fill="rgb(217,163,10)" fg:x="141" fg:w="1"/><text x="3.2712%" y="1439.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="9.6636%" y="1621" width="0.0214%" height="15" fill="rgb(213,25,53)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1631.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="9.6636%" y="1605" width="0.0214%" height="15" fill="rgb(252,105,26)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1615.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="9.6636%" y="1589" width="0.0214%" height="15" fill="rgb(220,39,43)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1599.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="9.6636%" y="1573" width="0.0214%" height="15" fill="rgb(229,68,48)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1583.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="9.6636%" y="1557" width="0.0214%" height="15" fill="rgb(252,8,32)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1567.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="9.6636%" y="1541" width="0.0214%" height="15" fill="rgb(223,20,43)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1551.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="9.6636%" y="1525" width="0.0214%" height="15" fill="rgb(229,81,49)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1535.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="9.6636%" y="1509" width="0.0214%" height="15" fill="rgb(236,28,36)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1519.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="9.6636%" y="1493" width="0.0214%" height="15" fill="rgb(249,185,26)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1503.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="9.6636%" y="1477" width="0.0214%" height="15" fill="rgb(249,174,33)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1487.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="9.6636%" y="1461" width="0.0214%" height="15" fill="rgb(233,201,37)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1471.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="9.6636%" y="1445" width="0.0214%" height="15" fill="rgb(221,78,26)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1455.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="9.6636%" y="1429" width="0.0214%" height="15" fill="rgb(250,127,30)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1439.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="9.6636%" y="1413" width="0.0214%" height="15" fill="rgb(230,49,44)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1423.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="9.6636%" y="1397" width="0.0214%" height="15" fill="rgb(229,67,23)" fg:x="451" fg:w="1"/><text x="9.9136%" y="1407.50"></text></g><g><title>__const_udelay (1 samples, 0.02%)</title><rect x="11.5063%" y="1365" width="0.0214%" height="15" fill="rgb(249,83,47)" fg:x="537" fg:w="1"/><text x="11.7563%" y="1375.50"></text></g><g><title>delay_tsc (1 samples, 0.02%)</title><rect x="11.5063%" y="1349" width="0.0214%" height="15" fill="rgb(215,43,3)" fg:x="537" fg:w="1"/><text x="11.7563%" y="1359.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (109 samples, 2.34%)</title><rect x="9.3850%" y="1637" width="2.3355%" height="15" fill="rgb(238,154,13)" fg:x="438" fg:w="109"/><text x="9.6350%" y="1647.50">&lt;..</text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (95 samples, 2.04%)</title><rect x="9.6850%" y="1621" width="2.0356%" height="15" fill="rgb(219,56,2)" fg:x="452" fg:w="95"/><text x="9.9350%" y="1631.50">c..</text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (95 samples, 2.04%)</title><rect x="9.6850%" y="1605" width="2.0356%" height="15" fill="rgb(233,0,4)" fg:x="452" fg:w="95"/><text x="9.9350%" y="1615.50">c..</text></g><g><title>asm_sysvec_apic_timer_interrupt (10 samples, 0.21%)</title><rect x="11.5063%" y="1589" width="0.2143%" height="15" fill="rgb(235,30,7)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1599.50"></text></g><g><title>sysvec_apic_timer_interrupt (10 samples, 0.21%)</title><rect x="11.5063%" y="1573" width="0.2143%" height="15" fill="rgb(250,79,13)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1583.50"></text></g><g><title>__sysvec_apic_timer_interrupt (10 samples, 0.21%)</title><rect x="11.5063%" y="1557" width="0.2143%" height="15" fill="rgb(211,146,34)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1567.50"></text></g><g><title>hrtimer_interrupt (10 samples, 0.21%)</title><rect x="11.5063%" y="1541" width="0.2143%" height="15" fill="rgb(228,22,38)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1551.50"></text></g><g><title>__hrtimer_run_queues (10 samples, 0.21%)</title><rect x="11.5063%" y="1525" width="0.2143%" height="15" fill="rgb(235,168,5)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1535.50"></text></g><g><title>tick_sched_timer (10 samples, 0.21%)</title><rect x="11.5063%" y="1509" width="0.2143%" height="15" fill="rgb(221,155,16)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1519.50"></text></g><g><title>tick_sched_handle.isra.0 (10 samples, 0.21%)</title><rect x="11.5063%" y="1493" width="0.2143%" height="15" fill="rgb(215,215,53)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1503.50"></text></g><g><title>update_process_times (10 samples, 0.21%)</title><rect x="11.5063%" y="1477" width="0.2143%" height="15" fill="rgb(223,4,10)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1487.50"></text></g><g><title>scheduler_tick (10 samples, 0.21%)</title><rect x="11.5063%" y="1461" width="0.2143%" height="15" fill="rgb(234,103,6)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1471.50"></text></g><g><title>perf_event_task_tick (10 samples, 0.21%)</title><rect x="11.5063%" y="1445" width="0.2143%" height="15" fill="rgb(227,97,0)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1455.50"></text></g><g><title>perf_pmu_disable.part.0 (10 samples, 0.21%)</title><rect x="11.5063%" y="1429" width="0.2143%" height="15" fill="rgb(234,150,53)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1439.50"></text></g><g><title>x86_pmu_disable (10 samples, 0.21%)</title><rect x="11.5063%" y="1413" width="0.2143%" height="15" fill="rgb(228,201,54)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1423.50"></text></g><g><title>amd_pmu_disable_all (10 samples, 0.21%)</title><rect x="11.5063%" y="1397" width="0.2143%" height="15" fill="rgb(222,22,37)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1407.50"></text></g><g><title>amd_pmu_wait_on_overflow (10 samples, 0.21%)</title><rect x="11.5063%" y="1381" width="0.2143%" height="15" fill="rgb(237,53,32)" fg:x="537" fg:w="10"/><text x="11.7563%" y="1391.50"></text></g><g><title>native_read_msr (9 samples, 0.19%)</title><rect x="11.5277%" y="1365" width="0.1928%" height="15" fill="rgb(233,25,53)" fg:x="538" fg:w="9"/><text x="11.7777%" y="1375.50"></text></g><g><title>amd_pmu_wait_on_overflow (23 samples, 0.49%)</title><rect x="11.7206%" y="1285" width="0.4928%" height="15" fill="rgb(210,40,34)" fg:x="547" fg:w="23"/><text x="11.9706%" y="1295.50"></text></g><g><title>native_read_msr (23 samples, 0.49%)</title><rect x="11.7206%" y="1269" width="0.4928%" height="15" fill="rgb(241,220,44)" fg:x="547" fg:w="23"/><text x="11.9706%" y="1279.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="12.2134%" y="1285" width="0.0214%" height="15" fill="rgb(235,28,35)" fg:x="570" fg:w="1"/><text x="12.4634%" y="1295.50"></text></g><g><title>__perf_event_task_sched_out (29 samples, 0.62%)</title><rect x="11.7206%" y="1381" width="0.6214%" height="15" fill="rgb(210,56,17)" fg:x="547" fg:w="29"/><text x="11.9706%" y="1391.50"></text></g><g><title>task_ctx_sched_out (29 samples, 0.62%)</title><rect x="11.7206%" y="1365" width="0.6214%" height="15" fill="rgb(224,130,29)" fg:x="547" fg:w="29"/><text x="11.9706%" y="1375.50"></text></g><g><title>ctx_sched_out (29 samples, 0.62%)</title><rect x="11.7206%" y="1349" width="0.6214%" height="15" fill="rgb(235,212,8)" fg:x="547" fg:w="29"/><text x="11.9706%" y="1359.50"></text></g><g><title>perf_pmu_disable.part.0 (29 samples, 0.62%)</title><rect x="11.7206%" y="1333" width="0.6214%" height="15" fill="rgb(223,33,50)" fg:x="547" fg:w="29"/><text x="11.9706%" y="1343.50"></text></g><g><title>x86_pmu_disable (29 samples, 0.62%)</title><rect x="11.7206%" y="1317" width="0.6214%" height="15" fill="rgb(219,149,13)" fg:x="547" fg:w="29"/><text x="11.9706%" y="1327.50"></text></g><g><title>amd_pmu_disable_all (29 samples, 0.62%)</title><rect x="11.7206%" y="1301" width="0.6214%" height="15" fill="rgb(250,156,29)" fg:x="547" fg:w="29"/><text x="11.9706%" y="1311.50"></text></g><g><title>x86_pmu_disable_all (5 samples, 0.11%)</title><rect x="12.2348%" y="1285" width="0.1071%" height="15" fill="rgb(216,193,19)" fg:x="571" fg:w="5"/><text x="12.4848%" y="1295.50"></text></g><g><title>native_read_msr (5 samples, 0.11%)</title><rect x="12.2348%" y="1269" width="0.1071%" height="15" fill="rgb(216,135,14)" fg:x="571" fg:w="5"/><text x="12.4848%" y="1279.50"></text></g><g><title>__syscall_return_slowpath (30 samples, 0.64%)</title><rect x="11.7206%" y="1445" width="0.6428%" height="15" fill="rgb(241,47,5)" fg:x="547" fg:w="30"/><text x="11.9706%" y="1455.50"></text></g><g><title>__prepare_exit_to_usermode (30 samples, 0.64%)</title><rect x="11.7206%" y="1429" width="0.6428%" height="15" fill="rgb(233,42,35)" fg:x="547" fg:w="30"/><text x="11.9706%" y="1439.50"></text></g><g><title>schedule (30 samples, 0.64%)</title><rect x="11.7206%" y="1413" width="0.6428%" height="15" fill="rgb(231,13,6)" fg:x="547" fg:w="30"/><text x="11.9706%" y="1423.50"></text></g><g><title>__schedule (30 samples, 0.64%)</title><rect x="11.7206%" y="1397" width="0.6428%" height="15" fill="rgb(207,181,40)" fg:x="547" fg:w="30"/><text x="11.9706%" y="1407.50"></text></g><g><title>finish_task_switch (1 samples, 0.02%)</title><rect x="12.3420%" y="1381" width="0.0214%" height="15" fill="rgb(254,173,49)" fg:x="576" fg:w="1"/><text x="12.5920%" y="1391.50"></text></g><g><title>__perf_event_task_sched_in (1 samples, 0.02%)</title><rect x="12.3420%" y="1365" width="0.0214%" height="15" fill="rgb(221,1,38)" fg:x="576" fg:w="1"/><text x="12.5920%" y="1375.50"></text></g><g><title>perf_pmu_enable.part.0 (1 samples, 0.02%)</title><rect x="12.3420%" y="1349" width="0.0214%" height="15" fill="rgb(206,124,46)" fg:x="576" fg:w="1"/><text x="12.5920%" y="1359.50"></text></g><g><title>x86_pmu_enable (1 samples, 0.02%)</title><rect x="12.3420%" y="1333" width="0.0214%" height="15" fill="rgb(249,21,11)" fg:x="576" fg:w="1"/><text x="12.5920%" y="1343.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="12.3420%" y="1317" width="0.0214%" height="15" fill="rgb(222,201,40)" fg:x="576" fg:w="1"/><text x="12.5920%" y="1327.50"></text></g><g><title>__fget_light (1 samples, 0.02%)</title><rect x="12.3634%" y="1413" width="0.0214%" height="15" fill="rgb(235,61,29)" fg:x="577" fg:w="1"/><text x="12.6134%" y="1423.50"></text></g><g><title>new_sync_write (1 samples, 0.02%)</title><rect x="12.3848%" y="1413" width="0.0214%" height="15" fill="rgb(219,207,3)" fg:x="578" fg:w="1"/><text x="12.6348%" y="1423.50"></text></g><g><title>fsnotify_parent (1 samples, 0.02%)</title><rect x="12.4063%" y="1397" width="0.0214%" height="15" fill="rgb(222,56,46)" fg:x="579" fg:w="1"/><text x="12.6563%" y="1407.50"></text></g><g><title>__check_object_size (2 samples, 0.04%)</title><rect x="12.4705%" y="1349" width="0.0429%" height="15" fill="rgb(239,76,54)" fg:x="582" fg:w="2"/><text x="12.7205%" y="1359.50"></text></g><g><title>__virt_addr_valid (1 samples, 0.02%)</title><rect x="12.4920%" y="1333" width="0.0214%" height="15" fill="rgb(231,124,27)" fg:x="583" fg:w="1"/><text x="12.7420%" y="1343.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="12.5134%" y="1349" width="0.0214%" height="15" fill="rgb(249,195,6)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1359.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="12.5134%" y="1333" width="0.0214%" height="15" fill="rgb(237,174,47)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1343.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="12.5134%" y="1317" width="0.0214%" height="15" fill="rgb(206,201,31)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1327.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="12.5134%" y="1301" width="0.0214%" height="15" fill="rgb(231,57,52)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1311.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="12.5134%" y="1285" width="0.0214%" height="15" fill="rgb(248,177,22)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1295.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="12.5134%" y="1269" width="0.0214%" height="15" fill="rgb(215,211,37)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1279.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="12.5134%" y="1253" width="0.0214%" height="15" fill="rgb(241,128,51)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1263.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="12.5134%" y="1237" width="0.0214%" height="15" fill="rgb(227,165,31)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1247.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="12.5134%" y="1221" width="0.0214%" height="15" fill="rgb(228,167,24)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1231.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="12.5134%" y="1205" width="0.0214%" height="15" fill="rgb(228,143,12)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1215.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="12.5134%" y="1189" width="0.0214%" height="15" fill="rgb(249,149,8)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1199.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="12.5134%" y="1173" width="0.0214%" height="15" fill="rgb(243,35,44)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1183.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="12.5134%" y="1157" width="0.0214%" height="15" fill="rgb(246,89,9)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1167.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="12.5134%" y="1141" width="0.0214%" height="15" fill="rgb(233,213,13)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1151.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="12.5134%" y="1125" width="0.0214%" height="15" fill="rgb(233,141,41)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1135.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="12.5134%" y="1109" width="0.0214%" height="15" fill="rgb(239,167,4)" fg:x="584" fg:w="1"/><text x="12.7634%" y="1119.50"></text></g><g><title>copyin (1 samples, 0.02%)</title><rect x="12.5348%" y="1349" width="0.0214%" height="15" fill="rgb(209,217,16)" fg:x="585" fg:w="1"/><text x="12.7848%" y="1359.50"></text></g><g><title>down_read (1 samples, 0.02%)</title><rect x="12.5562%" y="1333" width="0.0214%" height="15" fill="rgb(219,88,35)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1343.50"></text></g><g><title>_cond_resched (1 samples, 0.02%)</title><rect x="12.5562%" y="1317" width="0.0214%" height="15" fill="rgb(220,193,23)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1327.50"></text></g><g><title>preempt_schedule_common (1 samples, 0.02%)</title><rect x="12.5562%" y="1301" width="0.0214%" height="15" fill="rgb(230,90,52)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1311.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="12.5562%" y="1285" width="0.0214%" height="15" fill="rgb(252,106,19)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1295.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="12.5562%" y="1269" width="0.0214%" height="15" fill="rgb(206,74,20)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1279.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="12.5562%" y="1253" width="0.0214%" height="15" fill="rgb(230,138,44)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1263.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="12.5562%" y="1237" width="0.0214%" height="15" fill="rgb(235,182,43)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1247.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="12.5562%" y="1221" width="0.0214%" height="15" fill="rgb(242,16,51)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1231.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="12.5562%" y="1205" width="0.0214%" height="15" fill="rgb(248,9,4)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1215.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="12.5562%" y="1189" width="0.0214%" height="15" fill="rgb(210,31,22)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1199.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="12.5562%" y="1173" width="0.0214%" height="15" fill="rgb(239,54,39)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1183.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="12.5562%" y="1157" width="0.0214%" height="15" fill="rgb(230,99,41)" fg:x="586" fg:w="1"/><text x="12.8062%" y="1167.50"></text></g><g><title>__lock_text_start (1 samples, 0.02%)</title><rect x="12.5991%" y="1317" width="0.0214%" height="15" fill="rgb(253,106,12)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1327.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="12.5991%" y="1301" width="0.0214%" height="15" fill="rgb(213,46,41)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1311.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="12.5991%" y="1285" width="0.0214%" height="15" fill="rgb(215,133,35)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1295.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="12.5991%" y="1269" width="0.0214%" height="15" fill="rgb(213,28,5)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1279.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="12.5991%" y="1253" width="0.0214%" height="15" fill="rgb(215,77,49)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1263.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="12.5991%" y="1237" width="0.0214%" height="15" fill="rgb(248,100,22)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1247.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="12.5991%" y="1221" width="0.0214%" height="15" fill="rgb(208,67,9)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1231.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="12.5991%" y="1205" width="0.0214%" height="15" fill="rgb(219,133,21)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1215.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="12.5991%" y="1189" width="0.0214%" height="15" fill="rgb(246,46,29)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1199.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="12.5991%" y="1173" width="0.0214%" height="15" fill="rgb(246,185,52)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1183.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="12.5991%" y="1157" width="0.0214%" height="15" fill="rgb(252,136,11)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1167.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="12.5991%" y="1141" width="0.0214%" height="15" fill="rgb(219,138,53)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1151.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="12.5991%" y="1125" width="0.0214%" height="15" fill="rgb(211,51,23)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1135.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="12.5991%" y="1109" width="0.0214%" height="15" fill="rgb(247,221,28)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1119.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="12.5991%" y="1093" width="0.0214%" height="15" fill="rgb(251,222,45)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1103.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="12.5991%" y="1077" width="0.0214%" height="15" fill="rgb(217,162,53)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1087.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="12.5991%" y="1061" width="0.0214%" height="15" fill="rgb(229,93,14)" fg:x="588" fg:w="1"/><text x="12.8491%" y="1071.50"></text></g><g><title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="12.6205%" y="1317" width="0.0214%" height="15" fill="rgb(209,67,49)" fg:x="589" fg:w="1"/><text x="12.8705%" y="1327.50"></text></g><g><title>memcpy (1 samples, 0.02%)</title><rect x="12.6420%" y="1317" width="0.0214%" height="15" fill="rgb(213,87,29)" fg:x="590" fg:w="1"/><text x="12.8920%" y="1327.50"></text></g><g><title>__smp_call_single_queue (26 samples, 0.56%)</title><rect x="12.7062%" y="1205" width="0.5571%" height="15" fill="rgb(205,151,52)" fg:x="593" fg:w="26"/><text x="12.9562%" y="1215.50"></text></g><g><title>send_call_function_single_ipi (26 samples, 0.56%)</title><rect x="12.7062%" y="1189" width="0.5571%" height="15" fill="rgb(253,215,39)" fg:x="593" fg:w="26"/><text x="12.9562%" y="1199.50"></text></g><g><title>native_send_call_func_single_ipi (26 samples, 0.56%)</title><rect x="12.7062%" y="1173" width="0.5571%" height="15" fill="rgb(221,220,41)" fg:x="593" fg:w="26"/><text x="12.9562%" y="1183.50"></text></g><g><title>native_write_msr (26 samples, 0.56%)</title><rect x="12.7062%" y="1157" width="0.5571%" height="15" fill="rgb(218,133,21)" fg:x="593" fg:w="26"/><text x="12.9562%" y="1167.50"></text></g><g><title>__queue_work (28 samples, 0.60%)</title><rect x="12.6848%" y="1285" width="0.6000%" height="15" fill="rgb(221,193,43)" fg:x="592" fg:w="28"/><text x="12.9348%" y="1295.50"></text></g><g><title>insert_work (27 samples, 0.58%)</title><rect x="12.7062%" y="1269" width="0.5785%" height="15" fill="rgb(240,128,52)" fg:x="593" fg:w="27"/><text x="12.9562%" y="1279.50"></text></g><g><title>wake_up_process (27 samples, 0.58%)</title><rect x="12.7062%" y="1253" width="0.5785%" height="15" fill="rgb(253,114,12)" fg:x="593" fg:w="27"/><text x="12.9562%" y="1263.50"></text></g><g><title>try_to_wake_up (27 samples, 0.58%)</title><rect x="12.7062%" y="1237" width="0.5785%" height="15" fill="rgb(215,223,47)" fg:x="593" fg:w="27"/><text x="12.9562%" y="1247.50"></text></g><g><title>ttwu_queue_wakelist (27 samples, 0.58%)</title><rect x="12.7062%" y="1221" width="0.5785%" height="15" fill="rgb(248,225,23)" fg:x="593" fg:w="27"/><text x="12.9562%" y="1231.50"></text></g><g><title>sched_clock (1 samples, 0.02%)</title><rect x="13.2633%" y="1205" width="0.0214%" height="15" fill="rgb(250,108,0)" fg:x="619" fg:w="1"/><text x="13.5133%" y="1215.50"></text></g><g><title>tty_flip_buffer_push (31 samples, 0.66%)</title><rect x="12.6634%" y="1317" width="0.6642%" height="15" fill="rgb(228,208,7)" fg:x="591" fg:w="31"/><text x="12.9134%" y="1327.50"></text></g><g><title>queue_work_on (31 samples, 0.66%)</title><rect x="12.6634%" y="1301" width="0.6642%" height="15" fill="rgb(244,45,10)" fg:x="591" fg:w="31"/><text x="12.9134%" y="1311.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="13.2848%" y="1285" width="0.0429%" height="15" fill="rgb(207,125,25)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1295.50"></text></g><g><title>sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="13.2848%" y="1269" width="0.0429%" height="15" fill="rgb(210,195,18)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1279.50"></text></g><g><title>asm_call_sysvec_on_stack (2 samples, 0.04%)</title><rect x="13.2848%" y="1253" width="0.0429%" height="15" fill="rgb(249,80,12)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1263.50"></text></g><g><title>__sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="13.2848%" y="1237" width="0.0429%" height="15" fill="rgb(221,65,9)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1247.50"></text></g><g><title>hrtimer_interrupt (2 samples, 0.04%)</title><rect x="13.2848%" y="1221" width="0.0429%" height="15" fill="rgb(235,49,36)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1231.50"></text></g><g><title>__hrtimer_run_queues (2 samples, 0.04%)</title><rect x="13.2848%" y="1205" width="0.0429%" height="15" fill="rgb(225,32,20)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1215.50"></text></g><g><title>tick_sched_timer (2 samples, 0.04%)</title><rect x="13.2848%" y="1189" width="0.0429%" height="15" fill="rgb(215,141,46)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1199.50"></text></g><g><title>tick_sched_handle.isra.0 (2 samples, 0.04%)</title><rect x="13.2848%" y="1173" width="0.0429%" height="15" fill="rgb(250,160,47)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1183.50"></text></g><g><title>update_process_times (2 samples, 0.04%)</title><rect x="13.2848%" y="1157" width="0.0429%" height="15" fill="rgb(216,222,40)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1167.50"></text></g><g><title>scheduler_tick (2 samples, 0.04%)</title><rect x="13.2848%" y="1141" width="0.0429%" height="15" fill="rgb(234,217,39)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1151.50"></text></g><g><title>perf_event_task_tick (2 samples, 0.04%)</title><rect x="13.2848%" y="1125" width="0.0429%" height="15" fill="rgb(207,178,40)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1135.50"></text></g><g><title>perf_pmu_disable.part.0 (2 samples, 0.04%)</title><rect x="13.2848%" y="1109" width="0.0429%" height="15" fill="rgb(221,136,13)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1119.50"></text></g><g><title>x86_pmu_disable (2 samples, 0.04%)</title><rect x="13.2848%" y="1093" width="0.0429%" height="15" fill="rgb(249,199,10)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1103.50"></text></g><g><title>amd_pmu_disable_all (2 samples, 0.04%)</title><rect x="13.2848%" y="1077" width="0.0429%" height="15" fill="rgb(249,222,13)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1087.50"></text></g><g><title>amd_pmu_wait_on_overflow (2 samples, 0.04%)</title><rect x="13.2848%" y="1061" width="0.0429%" height="15" fill="rgb(244,185,38)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1071.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="13.2848%" y="1045" width="0.0429%" height="15" fill="rgb(236,202,9)" fg:x="620" fg:w="2"/><text x="13.5348%" y="1055.50"></text></g><g><title>pty_write (36 samples, 0.77%)</title><rect x="12.5777%" y="1333" width="0.7714%" height="15" fill="rgb(250,229,37)" fg:x="587" fg:w="36"/><text x="12.8277%" y="1343.50"></text></g><g><title>tty_insert_flip_string_fixed_flag (1 samples, 0.02%)</title><rect x="13.3276%" y="1317" width="0.0214%" height="15" fill="rgb(206,174,23)" fg:x="622" fg:w="1"/><text x="13.5776%" y="1327.50"></text></g><g><title>n_tty_write (38 samples, 0.81%)</title><rect x="12.5562%" y="1349" width="0.8142%" height="15" fill="rgb(211,33,43)" fg:x="586" fg:w="38"/><text x="12.8062%" y="1359.50"></text></g><g><title>tty_flip_buffer_push (1 samples, 0.02%)</title><rect x="13.3490%" y="1333" width="0.0214%" height="15" fill="rgb(245,58,50)" fg:x="623" fg:w="1"/><text x="13.5990%" y="1343.50"></text></g><g><title>tty_ldisc_ref_wait (1 samples, 0.02%)</title><rect x="13.3705%" y="1349" width="0.0214%" height="15" fill="rgb(244,68,36)" fg:x="624" fg:w="1"/><text x="13.6205%" y="1359.50"></text></g><g><title>ldsem_down_read (1 samples, 0.02%)</title><rect x="13.3705%" y="1333" width="0.0214%" height="15" fill="rgb(232,229,15)" fg:x="624" fg:w="1"/><text x="13.6205%" y="1343.50"></text></g><g><title>new_sync_write (46 samples, 0.99%)</title><rect x="12.4277%" y="1397" width="0.9856%" height="15" fill="rgb(254,30,23)" fg:x="580" fg:w="46"/><text x="12.6777%" y="1407.50"></text></g><g><title>tty_write (45 samples, 0.96%)</title><rect x="12.4491%" y="1381" width="0.9642%" height="15" fill="rgb(235,160,14)" fg:x="581" fg:w="45"/><text x="12.6991%" y="1391.50"></text></g><g><title>file_tty_write.isra.0 (45 samples, 0.96%)</title><rect x="12.4491%" y="1365" width="0.9642%" height="15" fill="rgb(212,155,44)" fg:x="581" fg:w="45"/><text x="12.6991%" y="1375.50"></text></g><g><title>tty_write_unlock (1 samples, 0.02%)</title><rect x="13.3919%" y="1349" width="0.0214%" height="15" fill="rgb(226,2,50)" fg:x="625" fg:w="1"/><text x="13.6419%" y="1359.50"></text></g><g><title>__wake_up (1 samples, 0.02%)</title><rect x="13.3919%" y="1333" width="0.0214%" height="15" fill="rgb(234,177,6)" fg:x="625" fg:w="1"/><text x="13.6419%" y="1343.50"></text></g><g><title>__wake_up_common_lock (1 samples, 0.02%)</title><rect x="13.3919%" y="1317" width="0.0214%" height="15" fill="rgb(217,24,9)" fg:x="625" fg:w="1"/><text x="13.6419%" y="1327.50"></text></g><g><title>__x64_sys_write (51 samples, 1.09%)</title><rect x="12.3634%" y="1445" width="1.0928%" height="15" fill="rgb(220,13,46)" fg:x="577" fg:w="51"/><text x="12.6134%" y="1455.50"></text></g><g><title>ksys_write (51 samples, 1.09%)</title><rect x="12.3634%" y="1429" width="1.0928%" height="15" fill="rgb(239,221,27)" fg:x="577" fg:w="51"/><text x="12.6134%" y="1439.50"></text></g><g><title>vfs_write (49 samples, 1.05%)</title><rect x="12.4063%" y="1413" width="1.0499%" height="15" fill="rgb(222,198,25)" fg:x="579" fg:w="49"/><text x="12.6563%" y="1423.50"></text></g><g><title>rw_verify_area (2 samples, 0.04%)</title><rect x="13.4133%" y="1397" width="0.0429%" height="15" fill="rgb(211,99,13)" fg:x="626" fg:w="2"/><text x="13.6633%" y="1407.50"></text></g><g><title>security_file_permission (1 samples, 0.02%)</title><rect x="13.4348%" y="1381" width="0.0214%" height="15" fill="rgb(232,111,31)" fg:x="627" fg:w="1"/><text x="13.6848%" y="1391.50"></text></g><g><title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="13.4348%" y="1365" width="0.0214%" height="15" fill="rgb(245,82,37)" fg:x="627" fg:w="1"/><text x="13.6848%" y="1375.50"></text></g><g><title>common_file_perm (1 samples, 0.02%)</title><rect x="13.4348%" y="1349" width="0.0214%" height="15" fill="rgb(227,149,46)" fg:x="627" fg:w="1"/><text x="13.6848%" y="1359.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::flush (82 samples, 1.76%)</title><rect x="11.7206%" y="1637" width="1.7570%" height="15" fill="rgb(218,36,50)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1647.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::flush (82 samples, 1.76%)</title><rect x="11.7206%" y="1621" width="1.7570%" height="15" fill="rgb(226,80,48)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1631.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::flush (82 samples, 1.76%)</title><rect x="11.7206%" y="1605" width="1.7570%" height="15" fill="rgb(238,224,15)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1615.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::flush (82 samples, 1.76%)</title><rect x="11.7206%" y="1589" width="1.7570%" height="15" fill="rgb(241,136,10)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1599.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::flush (82 samples, 1.76%)</title><rect x="11.7206%" y="1573" width="1.7570%" height="15" fill="rgb(208,32,45)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1583.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (82 samples, 1.76%)</title><rect x="11.7206%" y="1557" width="1.7570%" height="15" fill="rgb(207,135,9)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1567.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (82 samples, 1.76%)</title><rect x="11.7206%" y="1541" width="1.7570%" height="15" fill="rgb(206,86,44)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1551.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (82 samples, 1.76%)</title><rect x="11.7206%" y="1525" width="1.7570%" height="15" fill="rgb(245,177,15)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1535.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (82 samples, 1.76%)</title><rect x="11.7206%" y="1509" width="1.7570%" height="15" fill="rgb(206,64,50)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1519.50"></text></g><g><title>__libc_write (82 samples, 1.76%)</title><rect x="11.7206%" y="1493" width="1.7570%" height="15" fill="rgb(234,36,40)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1503.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 1.76%)</title><rect x="11.7206%" y="1477" width="1.7570%" height="15" fill="rgb(213,64,8)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1487.50"></text></g><g><title>do_syscall_64 (82 samples, 1.76%)</title><rect x="11.7206%" y="1461" width="1.7570%" height="15" fill="rgb(210,75,36)" fg:x="547" fg:w="82"/><text x="11.9706%" y="1471.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="13.4562%" y="1445" width="0.0214%" height="15" fill="rgb(229,88,21)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1455.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="13.4562%" y="1429" width="0.0214%" height="15" fill="rgb(252,204,47)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1439.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="13.4562%" y="1413" width="0.0214%" height="15" fill="rgb(208,77,27)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1423.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="13.4562%" y="1397" width="0.0214%" height="15" fill="rgb(221,76,26)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1407.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="13.4562%" y="1381" width="0.0214%" height="15" fill="rgb(225,139,18)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1391.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="13.4562%" y="1365" width="0.0214%" height="15" fill="rgb(230,137,11)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1375.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="13.4562%" y="1349" width="0.0214%" height="15" fill="rgb(212,28,1)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1359.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="13.4562%" y="1333" width="0.0214%" height="15" fill="rgb(248,164,17)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1343.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="13.4562%" y="1317" width="0.0214%" height="15" fill="rgb(222,171,42)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1327.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="13.4562%" y="1301" width="0.0214%" height="15" fill="rgb(243,84,45)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1311.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="13.4562%" y="1285" width="0.0214%" height="15" fill="rgb(252,49,23)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1295.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="13.4562%" y="1269" width="0.0214%" height="15" fill="rgb(215,19,7)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1279.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="13.4562%" y="1253" width="0.0214%" height="15" fill="rgb(238,81,41)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1263.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="13.4562%" y="1237" width="0.0214%" height="15" fill="rgb(210,199,37)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1247.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="13.4562%" y="1221" width="0.0214%" height="15" fill="rgb(244,192,49)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1231.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="13.4562%" y="1205" width="0.0214%" height="15" fill="rgb(226,211,11)" fg:x="628" fg:w="1"/><text x="13.7062%" y="1215.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&lt;&amp;usize&gt;&gt;::add_assign (3 samples, 0.06%)</title><rect x="13.4776%" y="1637" width="0.0643%" height="15" fill="rgb(236,162,54)" fg:x="629" fg:w="3"/><text x="13.7276%" y="1647.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&gt;::add_assign (3 samples, 0.06%)</title><rect x="13.4776%" y="1621" width="0.0643%" height="15" fill="rgb(220,229,9)" fg:x="629" fg:w="3"/><text x="13.7276%" y="1631.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="13.5205%" y="1605" width="0.0214%" height="15" fill="rgb(250,87,22)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1615.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="13.5205%" y="1589" width="0.0214%" height="15" fill="rgb(239,43,17)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1599.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="13.5205%" y="1573" width="0.0214%" height="15" fill="rgb(231,177,25)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1583.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="13.5205%" y="1557" width="0.0214%" height="15" fill="rgb(219,179,1)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1567.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="13.5205%" y="1541" width="0.0214%" height="15" fill="rgb(238,219,53)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1551.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="13.5205%" y="1525" width="0.0214%" height="15" fill="rgb(232,167,36)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1535.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="13.5205%" y="1509" width="0.0214%" height="15" fill="rgb(244,19,51)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1519.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="13.5205%" y="1493" width="0.0214%" height="15" fill="rgb(224,6,22)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1503.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="13.5205%" y="1477" width="0.0214%" height="15" fill="rgb(224,145,5)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1487.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="13.5205%" y="1461" width="0.0214%" height="15" fill="rgb(234,130,49)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1471.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="13.5205%" y="1445" width="0.0214%" height="15" fill="rgb(254,6,2)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1455.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="13.5205%" y="1429" width="0.0214%" height="15" fill="rgb(208,96,46)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1439.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="13.5205%" y="1413" width="0.0214%" height="15" fill="rgb(239,3,39)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1423.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="13.5205%" y="1397" width="0.0214%" height="15" fill="rgb(233,210,1)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1407.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="13.5205%" y="1381" width="0.0214%" height="15" fill="rgb(244,137,37)" fg:x="631" fg:w="1"/><text x="13.7705%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (42 samples, 0.90%)</title><rect x="13.5419%" y="1429" width="0.8999%" height="15" fill="rgb(240,136,2)" fg:x="632" fg:w="42"/><text x="13.7919%" y="1439.50"></text></g><g><title>native_read_msr (42 samples, 0.90%)</title><rect x="13.5419%" y="1413" width="0.8999%" height="15" fill="rgb(239,18,37)" fg:x="632" fg:w="42"/><text x="13.7919%" y="1423.50"></text></g><g><title>__hrtimer_run_queues (43 samples, 0.92%)</title><rect x="13.5419%" y="1573" width="0.9214%" height="15" fill="rgb(218,185,22)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1583.50"></text></g><g><title>tick_sched_timer (43 samples, 0.92%)</title><rect x="13.5419%" y="1557" width="0.9214%" height="15" fill="rgb(225,218,4)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1567.50"></text></g><g><title>tick_sched_handle.isra.0 (43 samples, 0.92%)</title><rect x="13.5419%" y="1541" width="0.9214%" height="15" fill="rgb(230,182,32)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1551.50"></text></g><g><title>update_process_times (43 samples, 0.92%)</title><rect x="13.5419%" y="1525" width="0.9214%" height="15" fill="rgb(242,56,43)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1535.50"></text></g><g><title>scheduler_tick (43 samples, 0.92%)</title><rect x="13.5419%" y="1509" width="0.9214%" height="15" fill="rgb(233,99,24)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1519.50"></text></g><g><title>perf_event_task_tick (43 samples, 0.92%)</title><rect x="13.5419%" y="1493" width="0.9214%" height="15" fill="rgb(234,209,42)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1503.50"></text></g><g><title>perf_pmu_disable.part.0 (43 samples, 0.92%)</title><rect x="13.5419%" y="1477" width="0.9214%" height="15" fill="rgb(227,7,12)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1487.50"></text></g><g><title>x86_pmu_disable (43 samples, 0.92%)</title><rect x="13.5419%" y="1461" width="0.9214%" height="15" fill="rgb(245,203,43)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1471.50"></text></g><g><title>amd_pmu_disable_all (43 samples, 0.92%)</title><rect x="13.5419%" y="1445" width="0.9214%" height="15" fill="rgb(238,205,33)" fg:x="632" fg:w="43"/><text x="13.7919%" y="1455.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="14.4418%" y="1429" width="0.0214%" height="15" fill="rgb(231,56,7)" fg:x="674" fg:w="1"/><text x="14.6918%" y="1439.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (44 samples, 0.94%)</title><rect x="13.5419%" y="1637" width="0.9428%" height="15" fill="rgb(244,186,29)" fg:x="632" fg:w="44"/><text x="13.7919%" y="1647.50"></text></g><g><title>sysvec_apic_timer_interrupt (44 samples, 0.94%)</title><rect x="13.5419%" y="1621" width="0.9428%" height="15" fill="rgb(234,111,31)" fg:x="632" fg:w="44"/><text x="13.7919%" y="1631.50"></text></g><g><title>__sysvec_apic_timer_interrupt (44 samples, 0.94%)</title><rect x="13.5419%" y="1605" width="0.9428%" height="15" fill="rgb(241,149,10)" fg:x="632" fg:w="44"/><text x="13.7919%" y="1615.50"></text></g><g><title>hrtimer_interrupt (44 samples, 0.94%)</title><rect x="13.5419%" y="1589" width="0.9428%" height="15" fill="rgb(249,206,44)" fg:x="632" fg:w="44"/><text x="13.7919%" y="1599.50"></text></g><g><title>tick_program_event (1 samples, 0.02%)</title><rect x="14.4633%" y="1573" width="0.0214%" height="15" fill="rgb(251,153,30)" fg:x="675" fg:w="1"/><text x="14.7133%" y="1583.50"></text></g><g><title>clockevents_program_event (1 samples, 0.02%)</title><rect x="14.4633%" y="1557" width="0.0214%" height="15" fill="rgb(239,152,38)" fg:x="675" fg:w="1"/><text x="14.7133%" y="1567.50"></text></g><g><title>lapic_next_event (1 samples, 0.02%)</title><rect x="14.4633%" y="1541" width="0.0214%" height="15" fill="rgb(249,139,47)" fg:x="675" fg:w="1"/><text x="14.7133%" y="1551.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="14.4633%" y="1525" width="0.0214%" height="15" fill="rgb(244,64,35)" fg:x="675" fg:w="1"/><text x="14.7133%" y="1535.50"></text></g><g><title>__const_udelay (1 samples, 0.02%)</title><rect x="44.4611%" y="1381" width="0.0214%" height="15" fill="rgb(216,46,15)" fg:x="2075" fg:w="1"/><text x="44.7111%" y="1391.50"></text></g><g><title>delay_tsc (1 samples, 0.02%)</title><rect x="44.4611%" y="1365" width="0.0214%" height="15" fill="rgb(250,74,19)" fg:x="2075" fg:w="1"/><text x="44.7111%" y="1375.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (41 samples, 0.88%)</title><rect x="43.7112%" y="1621" width="0.8785%" height="15" fill="rgb(249,42,33)" fg:x="2040" fg:w="41"/><text x="43.9612%" y="1631.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (6 samples, 0.13%)</title><rect x="44.4611%" y="1605" width="0.1286%" height="15" fill="rgb(242,149,17)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1615.50"></text></g><g><title>sysvec_apic_timer_interrupt (6 samples, 0.13%)</title><rect x="44.4611%" y="1589" width="0.1286%" height="15" fill="rgb(244,29,21)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1599.50"></text></g><g><title>__sysvec_apic_timer_interrupt (6 samples, 0.13%)</title><rect x="44.4611%" y="1573" width="0.1286%" height="15" fill="rgb(220,130,37)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1583.50"></text></g><g><title>hrtimer_interrupt (6 samples, 0.13%)</title><rect x="44.4611%" y="1557" width="0.1286%" height="15" fill="rgb(211,67,2)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1567.50"></text></g><g><title>__hrtimer_run_queues (6 samples, 0.13%)</title><rect x="44.4611%" y="1541" width="0.1286%" height="15" fill="rgb(235,68,52)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1551.50"></text></g><g><title>tick_sched_timer (6 samples, 0.13%)</title><rect x="44.4611%" y="1525" width="0.1286%" height="15" fill="rgb(246,142,3)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1535.50"></text></g><g><title>tick_sched_handle.isra.0 (6 samples, 0.13%)</title><rect x="44.4611%" y="1509" width="0.1286%" height="15" fill="rgb(241,25,7)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1519.50"></text></g><g><title>update_process_times (6 samples, 0.13%)</title><rect x="44.4611%" y="1493" width="0.1286%" height="15" fill="rgb(242,119,39)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1503.50"></text></g><g><title>scheduler_tick (6 samples, 0.13%)</title><rect x="44.4611%" y="1477" width="0.1286%" height="15" fill="rgb(241,98,45)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1487.50"></text></g><g><title>perf_event_task_tick (6 samples, 0.13%)</title><rect x="44.4611%" y="1461" width="0.1286%" height="15" fill="rgb(254,28,30)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1471.50"></text></g><g><title>perf_pmu_disable.part.0 (6 samples, 0.13%)</title><rect x="44.4611%" y="1445" width="0.1286%" height="15" fill="rgb(241,142,54)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1455.50"></text></g><g><title>x86_pmu_disable (6 samples, 0.13%)</title><rect x="44.4611%" y="1429" width="0.1286%" height="15" fill="rgb(222,85,15)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1439.50"></text></g><g><title>amd_pmu_disable_all (6 samples, 0.13%)</title><rect x="44.4611%" y="1413" width="0.1286%" height="15" fill="rgb(210,85,47)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1423.50"></text></g><g><title>amd_pmu_wait_on_overflow (6 samples, 0.13%)</title><rect x="44.4611%" y="1397" width="0.1286%" height="15" fill="rgb(224,206,25)" fg:x="2075" fg:w="6"/><text x="44.7111%" y="1407.50"></text></g><g><title>native_read_msr (5 samples, 0.11%)</title><rect x="44.4825%" y="1381" width="0.1071%" height="15" fill="rgb(243,201,19)" fg:x="2076" fg:w="5"/><text x="44.7325%" y="1391.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (17 samples, 0.36%)</title><rect x="44.5897%" y="1621" width="0.3643%" height="15" fill="rgb(236,59,4)" fg:x="2081" fg:w="17"/><text x="44.8397%" y="1631.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (15 samples, 0.32%)</title><rect x="44.6325%" y="1605" width="0.3214%" height="15" fill="rgb(254,179,45)" fg:x="2083" fg:w="15"/><text x="44.8825%" y="1615.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (15 samples, 0.32%)</title><rect x="44.6325%" y="1589" width="0.3214%" height="15" fill="rgb(226,14,10)" fg:x="2083" fg:w="15"/><text x="44.8825%" y="1599.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="44.8897%" y="1573" width="0.0643%" height="15" fill="rgb(244,27,41)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1583.50"></text></g><g><title>sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="44.8897%" y="1557" width="0.0643%" height="15" fill="rgb(235,35,32)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1567.50"></text></g><g><title>__sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="44.8897%" y="1541" width="0.0643%" height="15" fill="rgb(218,68,31)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1551.50"></text></g><g><title>hrtimer_interrupt (3 samples, 0.06%)</title><rect x="44.8897%" y="1525" width="0.0643%" height="15" fill="rgb(207,120,37)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1535.50"></text></g><g><title>__hrtimer_run_queues (3 samples, 0.06%)</title><rect x="44.8897%" y="1509" width="0.0643%" height="15" fill="rgb(227,98,0)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1519.50"></text></g><g><title>tick_sched_timer (3 samples, 0.06%)</title><rect x="44.8897%" y="1493" width="0.0643%" height="15" fill="rgb(207,7,3)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1503.50"></text></g><g><title>tick_sched_handle.isra.0 (3 samples, 0.06%)</title><rect x="44.8897%" y="1477" width="0.0643%" height="15" fill="rgb(206,98,19)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1487.50"></text></g><g><title>update_process_times (3 samples, 0.06%)</title><rect x="44.8897%" y="1461" width="0.0643%" height="15" fill="rgb(217,5,26)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1471.50"></text></g><g><title>scheduler_tick (3 samples, 0.06%)</title><rect x="44.8897%" y="1445" width="0.0643%" height="15" fill="rgb(235,190,38)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1455.50"></text></g><g><title>perf_event_task_tick (3 samples, 0.06%)</title><rect x="44.8897%" y="1429" width="0.0643%" height="15" fill="rgb(247,86,24)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1439.50"></text></g><g><title>perf_pmu_disable.part.0 (3 samples, 0.06%)</title><rect x="44.8897%" y="1413" width="0.0643%" height="15" fill="rgb(205,101,16)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1423.50"></text></g><g><title>x86_pmu_disable (3 samples, 0.06%)</title><rect x="44.8897%" y="1397" width="0.0643%" height="15" fill="rgb(246,168,33)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1407.50"></text></g><g><title>amd_pmu_disable_all (3 samples, 0.06%)</title><rect x="44.8897%" y="1381" width="0.0643%" height="15" fill="rgb(231,114,1)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (3 samples, 0.06%)</title><rect x="44.8897%" y="1365" width="0.0643%" height="15" fill="rgb(207,184,53)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1375.50"></text></g><g><title>native_read_msr (3 samples, 0.06%)</title><rect x="44.8897%" y="1349" width="0.0643%" height="15" fill="rgb(224,95,51)" fg:x="2095" fg:w="3"/><text x="45.1397%" y="1359.50"></text></g><g><title>__syscall_return_slowpath (2 samples, 0.04%)</title><rect x="44.9754%" y="1445" width="0.0429%" height="15" fill="rgb(212,188,45)" fg:x="2099" fg:w="2"/><text x="45.2254%" y="1455.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="44.9968%" y="1429" width="0.0214%" height="15" fill="rgb(223,154,38)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1439.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="44.9968%" y="1413" width="0.0214%" height="15" fill="rgb(251,22,52)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1423.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="44.9968%" y="1397" width="0.0214%" height="15" fill="rgb(229,209,22)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1407.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="44.9968%" y="1381" width="0.0214%" height="15" fill="rgb(234,138,34)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1391.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="44.9968%" y="1365" width="0.0214%" height="15" fill="rgb(212,95,11)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1375.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="44.9968%" y="1349" width="0.0214%" height="15" fill="rgb(240,179,47)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1359.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="44.9968%" y="1333" width="0.0214%" height="15" fill="rgb(240,163,11)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1343.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="44.9968%" y="1317" width="0.0214%" height="15" fill="rgb(236,37,12)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1327.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="44.9968%" y="1301" width="0.0214%" height="15" fill="rgb(232,164,16)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1311.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="44.9968%" y="1285" width="0.0214%" height="15" fill="rgb(244,205,15)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1295.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="44.9968%" y="1269" width="0.0214%" height="15" fill="rgb(223,117,47)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1279.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="44.9968%" y="1253" width="0.0214%" height="15" fill="rgb(244,107,35)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1263.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="44.9968%" y="1237" width="0.0214%" height="15" fill="rgb(205,140,8)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1247.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="44.9968%" y="1221" width="0.0214%" height="15" fill="rgb(228,84,46)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1231.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="44.9968%" y="1205" width="0.0214%" height="15" fill="rgb(254,188,9)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1215.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="44.9968%" y="1189" width="0.0214%" height="15" fill="rgb(206,112,54)" fg:x="2100" fg:w="1"/><text x="45.2468%" y="1199.50"></text></g><g><title>__syscall_return_slowpath (1 samples, 0.02%)</title><rect x="45.0396%" y="1429" width="0.0214%" height="15" fill="rgb(216,84,49)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1439.50"></text></g><g><title>__prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="45.0396%" y="1413" width="0.0214%" height="15" fill="rgb(214,194,35)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1423.50"></text></g><g><title>schedule (1 samples, 0.02%)</title><rect x="45.0396%" y="1397" width="0.0214%" height="15" fill="rgb(249,28,3)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1407.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="45.0396%" y="1381" width="0.0214%" height="15" fill="rgb(222,56,52)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1391.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="45.0396%" y="1365" width="0.0214%" height="15" fill="rgb(245,217,50)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1375.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="45.0396%" y="1349" width="0.0214%" height="15" fill="rgb(213,201,24)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1359.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="45.0396%" y="1333" width="0.0214%" height="15" fill="rgb(248,116,28)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1343.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="45.0396%" y="1317" width="0.0214%" height="15" fill="rgb(219,72,43)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1327.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="45.0396%" y="1301" width="0.0214%" height="15" fill="rgb(209,138,14)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1311.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="45.0396%" y="1285" width="0.0214%" height="15" fill="rgb(222,18,33)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1295.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="45.0396%" y="1269" width="0.0214%" height="15" fill="rgb(213,199,7)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1279.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="45.0396%" y="1253" width="0.0214%" height="15" fill="rgb(250,110,10)" fg:x="2102" fg:w="1"/><text x="45.2896%" y="1263.50"></text></g><g><title>__fdget_pos (2 samples, 0.04%)</title><rect x="45.0611%" y="1413" width="0.0429%" height="15" fill="rgb(248,123,6)" fg:x="2103" fg:w="2"/><text x="45.3111%" y="1423.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.0825%" y="1397" width="0.0214%" height="15" fill="rgb(206,91,31)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1407.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.0825%" y="1381" width="0.0214%" height="15" fill="rgb(211,154,13)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1391.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="45.0825%" y="1365" width="0.0214%" height="15" fill="rgb(225,148,7)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1375.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.0825%" y="1349" width="0.0214%" height="15" fill="rgb(220,160,43)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1359.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="45.0825%" y="1333" width="0.0214%" height="15" fill="rgb(213,52,39)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1343.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="45.0825%" y="1317" width="0.0214%" height="15" fill="rgb(243,137,7)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1327.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="45.0825%" y="1301" width="0.0214%" height="15" fill="rgb(230,79,13)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1311.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="45.0825%" y="1285" width="0.0214%" height="15" fill="rgb(247,105,23)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1295.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="45.0825%" y="1269" width="0.0214%" height="15" fill="rgb(223,179,41)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1279.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="45.0825%" y="1253" width="0.0214%" height="15" fill="rgb(218,9,34)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1263.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="45.0825%" y="1237" width="0.0214%" height="15" fill="rgb(222,106,8)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1247.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="45.0825%" y="1221" width="0.0214%" height="15" fill="rgb(211,220,0)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1231.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="45.0825%" y="1205" width="0.0214%" height="15" fill="rgb(229,52,16)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1215.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="45.0825%" y="1189" width="0.0214%" height="15" fill="rgb(212,155,18)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1199.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="45.0825%" y="1173" width="0.0214%" height="15" fill="rgb(242,21,14)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1183.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="45.0825%" y="1157" width="0.0214%" height="15" fill="rgb(222,19,48)" fg:x="2104" fg:w="1"/><text x="45.3325%" y="1167.50"></text></g><g><title>new_sync_write (1 samples, 0.02%)</title><rect x="45.1039%" y="1397" width="0.0214%" height="15" fill="rgb(232,45,27)" fg:x="2105" fg:w="1"/><text x="45.3539%" y="1407.50"></text></g><g><title>__check_object_size (2 samples, 0.04%)</title><rect x="45.1468%" y="1349" width="0.0429%" height="15" fill="rgb(249,103,42)" fg:x="2107" fg:w="2"/><text x="45.3968%" y="1359.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.1682%" y="1333" width="0.0214%" height="15" fill="rgb(246,81,33)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1343.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.1682%" y="1317" width="0.0214%" height="15" fill="rgb(252,33,42)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1327.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="45.1682%" y="1301" width="0.0214%" height="15" fill="rgb(209,212,41)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1311.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.1682%" y="1285" width="0.0214%" height="15" fill="rgb(207,154,6)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1295.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="45.1682%" y="1269" width="0.0214%" height="15" fill="rgb(223,64,47)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1279.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="45.1682%" y="1253" width="0.0214%" height="15" fill="rgb(211,161,38)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1263.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="45.1682%" y="1237" width="0.0214%" height="15" fill="rgb(219,138,40)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1247.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="45.1682%" y="1221" width="0.0214%" height="15" fill="rgb(241,228,46)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1231.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="45.1682%" y="1205" width="0.0214%" height="15" fill="rgb(223,209,38)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1215.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="45.1682%" y="1189" width="0.0214%" height="15" fill="rgb(236,164,45)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1199.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="45.1682%" y="1173" width="0.0214%" height="15" fill="rgb(231,15,5)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1183.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="45.1682%" y="1157" width="0.0214%" height="15" fill="rgb(252,35,15)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1167.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="45.1682%" y="1141" width="0.0214%" height="15" fill="rgb(248,181,18)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1151.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="45.1682%" y="1125" width="0.0214%" height="15" fill="rgb(233,39,42)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1135.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="45.1682%" y="1109" width="0.0214%" height="15" fill="rgb(238,110,33)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1119.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="45.1682%" y="1093" width="0.0214%" height="15" fill="rgb(233,195,10)" fg:x="2108" fg:w="1"/><text x="45.4182%" y="1103.50"></text></g><g><title>__check_heap_object (1 samples, 0.02%)</title><rect x="45.2325%" y="1333" width="0.0214%" height="15" fill="rgb(254,105,3)" fg:x="2111" fg:w="1"/><text x="45.4825%" y="1343.50"></text></g><g><title>_copy_from_iter (2 samples, 0.04%)</title><rect x="45.2539%" y="1333" width="0.0429%" height="15" fill="rgb(221,225,9)" fg:x="2112" fg:w="2"/><text x="45.5039%" y="1343.50"></text></g><g><title>copy_user_generic_string (1 samples, 0.02%)</title><rect x="45.2753%" y="1317" width="0.0214%" height="15" fill="rgb(224,227,45)" fg:x="2113" fg:w="1"/><text x="45.5253%" y="1327.50"></text></g><g><title>mutex_unlock (1 samples, 0.02%)</title><rect x="45.2968%" y="1333" width="0.0214%" height="15" fill="rgb(229,198,43)" fg:x="2114" fg:w="1"/><text x="45.5468%" y="1343.50"></text></g><g><title>add_wait_queue (1 samples, 0.02%)</title><rect x="45.3825%" y="1317" width="0.0214%" height="15" fill="rgb(206,209,35)" fg:x="2118" fg:w="1"/><text x="45.6325%" y="1327.50"></text></g><g><title>process_echoes (1 samples, 0.02%)</title><rect x="45.4039%" y="1317" width="0.0214%" height="15" fill="rgb(245,195,53)" fg:x="2119" fg:w="1"/><text x="45.6539%" y="1327.50"></text></g><g><title>__lock_text_start (1 samples, 0.02%)</title><rect x="45.4253%" y="1301" width="0.0214%" height="15" fill="rgb(240,92,26)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1311.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.4253%" y="1285" width="0.0214%" height="15" fill="rgb(207,40,23)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1295.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.4253%" y="1269" width="0.0214%" height="15" fill="rgb(223,111,35)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1279.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="45.4253%" y="1253" width="0.0214%" height="15" fill="rgb(229,147,28)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1263.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="45.4253%" y="1237" width="0.0214%" height="15" fill="rgb(211,29,28)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1247.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="45.4253%" y="1221" width="0.0214%" height="15" fill="rgb(228,72,33)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1231.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="45.4253%" y="1205" width="0.0214%" height="15" fill="rgb(205,214,31)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1215.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="45.4253%" y="1189" width="0.0214%" height="15" fill="rgb(224,111,15)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1199.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="45.4253%" y="1173" width="0.0214%" height="15" fill="rgb(253,21,26)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1183.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="45.4253%" y="1157" width="0.0214%" height="15" fill="rgb(245,139,43)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1167.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="45.4253%" y="1141" width="0.0214%" height="15" fill="rgb(252,170,7)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1151.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="45.4253%" y="1125" width="0.0214%" height="15" fill="rgb(231,118,14)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1135.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="45.4253%" y="1109" width="0.0214%" height="15" fill="rgb(238,83,0)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1119.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="45.4253%" y="1093" width="0.0214%" height="15" fill="rgb(221,39,39)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1103.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="45.4253%" y="1077" width="0.0214%" height="15" fill="rgb(222,119,46)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1087.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="45.4253%" y="1061" width="0.0214%" height="15" fill="rgb(222,165,49)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1071.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="45.4253%" y="1045" width="0.0214%" height="15" fill="rgb(219,113,52)" fg:x="2120" fg:w="1"/><text x="45.6753%" y="1055.50"></text></g><g><title>_raw_spin_lock_irqsave (2 samples, 0.04%)</title><rect x="45.4468%" y="1301" width="0.0429%" height="15" fill="rgb(214,7,15)" fg:x="2121" fg:w="2"/><text x="45.6968%" y="1311.50"></text></g><g><title>queue_work_on (1 samples, 0.02%)</title><rect x="45.4896%" y="1301" width="0.0214%" height="15" fill="rgb(235,32,4)" fg:x="2123" fg:w="1"/><text x="45.7396%" y="1311.50"></text></g><g><title>get_work_pool (1 samples, 0.02%)</title><rect x="45.5325%" y="1253" width="0.0214%" height="15" fill="rgb(238,90,54)" fg:x="2125" fg:w="1"/><text x="45.7825%" y="1263.50"></text></g><g><title>idr_find (1 samples, 0.02%)</title><rect x="45.5325%" y="1237" width="0.0214%" height="15" fill="rgb(213,208,19)" fg:x="2125" fg:w="1"/><text x="45.7825%" y="1247.50"></text></g><g><title>radix_tree_lookup (1 samples, 0.02%)</title><rect x="45.5325%" y="1221" width="0.0214%" height="15" fill="rgb(233,156,4)" fg:x="2125" fg:w="1"/><text x="45.7825%" y="1231.50"></text></g><g><title>__radix_tree_lookup (1 samples, 0.02%)</title><rect x="45.5325%" y="1205" width="0.0214%" height="15" fill="rgb(207,194,5)" fg:x="2125" fg:w="1"/><text x="45.7825%" y="1215.50"></text></g><g><title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="45.5539%" y="1205" width="0.0214%" height="15" fill="rgb(206,111,30)" fg:x="2126" fg:w="1"/><text x="45.8039%" y="1215.50"></text></g><g><title>select_task_rq_fair (2 samples, 0.04%)</title><rect x="45.5753%" y="1205" width="0.0429%" height="15" fill="rgb(243,70,54)" fg:x="2127" fg:w="2"/><text x="45.8253%" y="1215.50"></text></g><g><title>available_idle_cpu (2 samples, 0.04%)</title><rect x="45.5753%" y="1189" width="0.0429%" height="15" fill="rgb(242,28,8)" fg:x="2127" fg:w="2"/><text x="45.8253%" y="1199.50"></text></g><g><title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="45.6182%" y="1173" width="0.0214%" height="15" fill="rgb(219,106,18)" fg:x="2129" fg:w="1"/><text x="45.8682%" y="1183.50"></text></g><g><title>native_write_msr (129 samples, 2.76%)</title><rect x="45.6825%" y="1141" width="2.7641%" height="15" fill="rgb(244,222,10)" fg:x="2132" fg:w="129"/><text x="45.9325%" y="1151.50">na..</text></g><g><title>__smp_call_single_queue (134 samples, 2.87%)</title><rect x="45.6182%" y="1189" width="2.8712%" height="15" fill="rgb(236,179,52)" fg:x="2129" fg:w="134"/><text x="45.8682%" y="1199.50">__..</text></g><g><title>send_call_function_single_ipi (133 samples, 2.85%)</title><rect x="45.6396%" y="1173" width="2.8498%" height="15" fill="rgb(213,23,39)" fg:x="2130" fg:w="133"/><text x="45.8896%" y="1183.50">se..</text></g><g><title>native_send_call_func_single_ipi (131 samples, 2.81%)</title><rect x="45.6825%" y="1157" width="2.8069%" height="15" fill="rgb(238,48,10)" fg:x="2132" fg:w="131"/><text x="45.9325%" y="1167.50">na..</text></g><g><title>x2apic_send_IPI (2 samples, 0.04%)</title><rect x="48.4465%" y="1141" width="0.0429%" height="15" fill="rgb(251,196,23)" fg:x="2261" fg:w="2"/><text x="48.6965%" y="1151.50"></text></g><g><title>try_to_wake_up (138 samples, 2.96%)</title><rect x="45.5539%" y="1221" width="2.9569%" height="15" fill="rgb(250,152,24)" fg:x="2126" fg:w="138"/><text x="45.8039%" y="1231.50">try..</text></g><g><title>ttwu_queue_wakelist (135 samples, 2.89%)</title><rect x="45.6182%" y="1205" width="2.8927%" height="15" fill="rgb(209,150,17)" fg:x="2129" fg:w="135"/><text x="45.8682%" y="1215.50">tt..</text></g><g><title>llist_add_batch (1 samples, 0.02%)</title><rect x="48.4894%" y="1189" width="0.0214%" height="15" fill="rgb(234,202,34)" fg:x="2263" fg:w="1"/><text x="48.7394%" y="1199.50"></text></g><g><title>__queue_work (140 samples, 3.00%)</title><rect x="45.5325%" y="1269" width="2.9998%" height="15" fill="rgb(253,148,53)" fg:x="2125" fg:w="140"/><text x="45.7825%" y="1279.50">__q..</text></g><g><title>insert_work (139 samples, 2.98%)</title><rect x="45.5539%" y="1253" width="2.9784%" height="15" fill="rgb(218,129,16)" fg:x="2126" fg:w="139"/><text x="45.8039%" y="1263.50">ins..</text></g><g><title>wake_up_process (139 samples, 2.98%)</title><rect x="45.5539%" y="1237" width="2.9784%" height="15" fill="rgb(216,85,19)" fg:x="2126" fg:w="139"/><text x="45.8039%" y="1247.50">wak..</text></g><g><title>ttwu_queue_wakelist (1 samples, 0.02%)</title><rect x="48.5108%" y="1221" width="0.0214%" height="15" fill="rgb(235,228,7)" fg:x="2264" fg:w="1"/><text x="48.7608%" y="1231.50"></text></g><g><title>hrtimer_wakeup (2 samples, 0.04%)</title><rect x="48.5322%" y="1173" width="0.0429%" height="15" fill="rgb(245,175,0)" fg:x="2265" fg:w="2"/><text x="48.7822%" y="1183.50"></text></g><g><title>wake_up_process (2 samples, 0.04%)</title><rect x="48.5322%" y="1157" width="0.0429%" height="15" fill="rgb(208,168,36)" fg:x="2265" fg:w="2"/><text x="48.7822%" y="1167.50"></text></g><g><title>try_to_wake_up (2 samples, 0.04%)</title><rect x="48.5322%" y="1141" width="0.0429%" height="15" fill="rgb(246,171,24)" fg:x="2265" fg:w="2"/><text x="48.7822%" y="1151.50"></text></g><g><title>ttwu_do_activate (2 samples, 0.04%)</title><rect x="48.5322%" y="1125" width="0.0429%" height="15" fill="rgb(215,142,24)" fg:x="2265" fg:w="2"/><text x="48.7822%" y="1135.50"></text></g><g><title>psi_task_change (2 samples, 0.04%)</title><rect x="48.5322%" y="1109" width="0.0429%" height="15" fill="rgb(250,187,7)" fg:x="2265" fg:w="2"/><text x="48.7822%" y="1119.50"></text></g><g><title>__const_udelay (1 samples, 0.02%)</title><rect x="48.5751%" y="1029" width="0.0214%" height="15" fill="rgb(228,66,33)" fg:x="2267" fg:w="1"/><text x="48.8251%" y="1039.50"></text></g><g><title>delay_tsc (1 samples, 0.02%)</title><rect x="48.5751%" y="1013" width="0.0214%" height="15" fill="rgb(234,215,21)" fg:x="2267" fg:w="1"/><text x="48.8251%" y="1023.50"></text></g><g><title>__hrtimer_run_queues (26 samples, 0.56%)</title><rect x="48.5322%" y="1189" width="0.5571%" height="15" fill="rgb(222,191,20)" fg:x="2265" fg:w="26"/><text x="48.7822%" y="1199.50"></text></g><g><title>tick_sched_timer (24 samples, 0.51%)</title><rect x="48.5751%" y="1173" width="0.5142%" height="15" fill="rgb(245,79,54)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1183.50"></text></g><g><title>tick_sched_handle.isra.0 (24 samples, 0.51%)</title><rect x="48.5751%" y="1157" width="0.5142%" height="15" fill="rgb(240,10,37)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1167.50"></text></g><g><title>update_process_times (24 samples, 0.51%)</title><rect x="48.5751%" y="1141" width="0.5142%" height="15" fill="rgb(214,192,32)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1151.50"></text></g><g><title>scheduler_tick (24 samples, 0.51%)</title><rect x="48.5751%" y="1125" width="0.5142%" height="15" fill="rgb(209,36,54)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1135.50"></text></g><g><title>perf_event_task_tick (24 samples, 0.51%)</title><rect x="48.5751%" y="1109" width="0.5142%" height="15" fill="rgb(220,10,11)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1119.50"></text></g><g><title>perf_pmu_disable.part.0 (24 samples, 0.51%)</title><rect x="48.5751%" y="1093" width="0.5142%" height="15" fill="rgb(221,106,17)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1103.50"></text></g><g><title>x86_pmu_disable (24 samples, 0.51%)</title><rect x="48.5751%" y="1077" width="0.5142%" height="15" fill="rgb(251,142,44)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1087.50"></text></g><g><title>amd_pmu_disable_all (24 samples, 0.51%)</title><rect x="48.5751%" y="1061" width="0.5142%" height="15" fill="rgb(238,13,15)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1071.50"></text></g><g><title>amd_pmu_wait_on_overflow (24 samples, 0.51%)</title><rect x="48.5751%" y="1045" width="0.5142%" height="15" fill="rgb(208,107,27)" fg:x="2267" fg:w="24"/><text x="48.8251%" y="1055.50"></text></g><g><title>native_read_msr (23 samples, 0.49%)</title><rect x="48.5965%" y="1029" width="0.4928%" height="15" fill="rgb(205,136,37)" fg:x="2268" fg:w="23"/><text x="48.8465%" y="1039.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (29 samples, 0.62%)</title><rect x="48.5322%" y="1269" width="0.6214%" height="15" fill="rgb(250,205,27)" fg:x="2265" fg:w="29"/><text x="48.7822%" y="1279.50"></text></g><g><title>sysvec_apic_timer_interrupt (29 samples, 0.62%)</title><rect x="48.5322%" y="1253" width="0.6214%" height="15" fill="rgb(210,80,43)" fg:x="2265" fg:w="29"/><text x="48.7822%" y="1263.50"></text></g><g><title>asm_call_sysvec_on_stack (29 samples, 0.62%)</title><rect x="48.5322%" y="1237" width="0.6214%" height="15" fill="rgb(247,160,36)" fg:x="2265" fg:w="29"/><text x="48.7822%" y="1247.50"></text></g><g><title>__sysvec_apic_timer_interrupt (29 samples, 0.62%)</title><rect x="48.5322%" y="1221" width="0.6214%" height="15" fill="rgb(234,13,49)" fg:x="2265" fg:w="29"/><text x="48.7822%" y="1231.50"></text></g><g><title>hrtimer_interrupt (29 samples, 0.62%)</title><rect x="48.5322%" y="1205" width="0.6214%" height="15" fill="rgb(234,122,0)" fg:x="2265" fg:w="29"/><text x="48.7822%" y="1215.50"></text></g><g><title>tick_program_event (3 samples, 0.06%)</title><rect x="49.0894%" y="1189" width="0.0643%" height="15" fill="rgb(207,146,38)" fg:x="2291" fg:w="3"/><text x="49.3394%" y="1199.50"></text></g><g><title>clockevents_program_event (3 samples, 0.06%)</title><rect x="49.0894%" y="1173" width="0.0643%" height="15" fill="rgb(207,177,25)" fg:x="2291" fg:w="3"/><text x="49.3394%" y="1183.50"></text></g><g><title>lapic_next_event (3 samples, 0.06%)</title><rect x="49.0894%" y="1157" width="0.0643%" height="15" fill="rgb(211,178,42)" fg:x="2291" fg:w="3"/><text x="49.3394%" y="1167.50"></text></g><g><title>native_write_msr (3 samples, 0.06%)</title><rect x="49.0894%" y="1141" width="0.0643%" height="15" fill="rgb(230,69,54)" fg:x="2291" fg:w="3"/><text x="49.3394%" y="1151.50"></text></g><g><title>tty_flip_buffer_push (172 samples, 3.69%)</title><rect x="45.5110%" y="1301" width="3.6855%" height="15" fill="rgb(214,135,41)" fg:x="2124" fg:w="172"/><text x="45.7610%" y="1311.50">tty_..</text></g><g><title>queue_work_on (172 samples, 3.69%)</title><rect x="45.5110%" y="1285" width="3.6855%" height="15" fill="rgb(237,67,25)" fg:x="2124" fg:w="172"/><text x="45.7610%" y="1295.50">queu..</text></g><g><title>insert_work (2 samples, 0.04%)</title><rect x="49.1536%" y="1269" width="0.0429%" height="15" fill="rgb(222,189,50)" fg:x="2294" fg:w="2"/><text x="49.4036%" y="1279.50"></text></g><g><title>pty_write (177 samples, 3.79%)</title><rect x="45.4253%" y="1317" width="3.7926%" height="15" fill="rgb(245,148,34)" fg:x="2120" fg:w="177"/><text x="45.6753%" y="1327.50">pty_..</text></g><g><title>tty_insert_flip_string_fixed_flag (1 samples, 0.02%)</title><rect x="49.1965%" y="1301" width="0.0214%" height="15" fill="rgb(222,29,6)" fg:x="2296" fg:w="1"/><text x="49.4465%" y="1311.50"></text></g><g><title>__tty_buffer_request_room (1 samples, 0.02%)</title><rect x="49.1965%" y="1285" width="0.0214%" height="15" fill="rgb(221,189,43)" fg:x="2296" fg:w="1"/><text x="49.4465%" y="1295.50"></text></g><g><title>n_tty_write (185 samples, 3.96%)</title><rect x="45.3182%" y="1333" width="3.9640%" height="15" fill="rgb(207,36,27)" fg:x="2115" fg:w="185"/><text x="45.5682%" y="1343.50">n_tt..</text></g><g><title>pty_write_room (3 samples, 0.06%)</title><rect x="49.2179%" y="1317" width="0.0643%" height="15" fill="rgb(217,90,24)" fg:x="2297" fg:w="3"/><text x="49.4679%" y="1327.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="49.2608%" y="1301" width="0.0214%" height="15" fill="rgb(224,66,35)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1311.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="49.2608%" y="1285" width="0.0214%" height="15" fill="rgb(221,13,50)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1295.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="49.2608%" y="1269" width="0.0214%" height="15" fill="rgb(236,68,49)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1279.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="49.2608%" y="1253" width="0.0214%" height="15" fill="rgb(229,146,28)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1263.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="49.2608%" y="1237" width="0.0214%" height="15" fill="rgb(225,31,38)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1247.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="49.2608%" y="1221" width="0.0214%" height="15" fill="rgb(250,208,3)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1231.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="49.2608%" y="1205" width="0.0214%" height="15" fill="rgb(246,54,23)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1215.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="49.2608%" y="1189" width="0.0214%" height="15" fill="rgb(243,76,11)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1199.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="49.2608%" y="1173" width="0.0214%" height="15" fill="rgb(245,21,50)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1183.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="49.2608%" y="1157" width="0.0214%" height="15" fill="rgb(228,9,43)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1167.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="49.2608%" y="1141" width="0.0214%" height="15" fill="rgb(208,100,47)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1151.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="49.2608%" y="1125" width="0.0214%" height="15" fill="rgb(232,26,8)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1135.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="49.2608%" y="1109" width="0.0214%" height="15" fill="rgb(216,166,38)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1119.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="49.2608%" y="1093" width="0.0214%" height="15" fill="rgb(251,202,51)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1103.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="49.2608%" y="1077" width="0.0214%" height="15" fill="rgb(254,216,34)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1087.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="49.2608%" y="1061" width="0.0214%" height="15" fill="rgb(251,32,27)" fg:x="2299" fg:w="1"/><text x="49.5108%" y="1071.50"></text></g><g><title>process_echoes (1 samples, 0.02%)</title><rect x="49.2822%" y="1333" width="0.0214%" height="15" fill="rgb(208,127,28)" fg:x="2300" fg:w="1"/><text x="49.5322%" y="1343.50"></text></g><g><title>new_sync_write (195 samples, 4.18%)</title><rect x="45.1468%" y="1381" width="4.1783%" height="15" fill="rgb(224,137,22)" fg:x="2107" fg:w="195"/><text x="45.3968%" y="1391.50">new_s..</text></g><g><title>tty_write (195 samples, 4.18%)</title><rect x="45.1468%" y="1365" width="4.1783%" height="15" fill="rgb(254,70,32)" fg:x="2107" fg:w="195"/><text x="45.3968%" y="1375.50">tty_w..</text></g><g><title>file_tty_write.isra.0 (193 samples, 4.14%)</title><rect x="45.1896%" y="1349" width="4.1354%" height="15" fill="rgb(229,75,37)" fg:x="2109" fg:w="193"/><text x="45.4396%" y="1359.50">file_..</text></g><g><title>tty_ldisc_ref_wait (1 samples, 0.02%)</title><rect x="49.3036%" y="1333" width="0.0214%" height="15" fill="rgb(252,64,23)" fg:x="2301" fg:w="1"/><text x="49.5536%" y="1343.50"></text></g><g><title>_cond_resched (1 samples, 0.02%)</title><rect x="49.3036%" y="1317" width="0.0214%" height="15" fill="rgb(232,162,48)" fg:x="2301" fg:w="1"/><text x="49.5536%" y="1327.50"></text></g><g><title>apparmor_file_permission (2 samples, 0.04%)</title><rect x="49.3250%" y="1365" width="0.0429%" height="15" fill="rgb(246,160,12)" fg:x="2302" fg:w="2"/><text x="49.5750%" y="1375.50"></text></g><g><title>rw_verify_area (3 samples, 0.06%)</title><rect x="49.3250%" y="1381" width="0.0643%" height="15" fill="rgb(247,166,0)" fg:x="2302" fg:w="3"/><text x="49.5750%" y="1391.50"></text></g><g><title>security_file_permission (1 samples, 0.02%)</title><rect x="49.3679%" y="1365" width="0.0214%" height="15" fill="rgb(249,219,21)" fg:x="2304" fg:w="1"/><text x="49.6179%" y="1375.50"></text></g><g><title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="49.3679%" y="1349" width="0.0214%" height="15" fill="rgb(205,209,3)" fg:x="2304" fg:w="1"/><text x="49.6179%" y="1359.50"></text></g><g><title>common_file_perm (1 samples, 0.02%)</title><rect x="49.3679%" y="1333" width="0.0214%" height="15" fill="rgb(243,44,1)" fg:x="2304" fg:w="1"/><text x="49.6179%" y="1343.50"></text></g><g><title>__libc_write (209 samples, 4.48%)</title><rect x="44.9754%" y="1477" width="4.4783%" height="15" fill="rgb(206,159,16)" fg:x="2099" fg:w="209"/><text x="45.2254%" y="1487.50">__lib..</text></g><g><title>entry_SYSCALL_64_after_hwframe (209 samples, 4.48%)</title><rect x="44.9754%" y="1461" width="4.4783%" height="15" fill="rgb(244,77,30)" fg:x="2099" fg:w="209"/><text x="45.2254%" y="1471.50">entry..</text></g><g><title>do_syscall_64 (207 samples, 4.44%)</title><rect x="45.0182%" y="1445" width="4.4354%" height="15" fill="rgb(218,69,12)" fg:x="2101" fg:w="207"/><text x="45.2682%" y="1455.50">do_sy..</text></g><g><title>__x64_sys_write (205 samples, 4.39%)</title><rect x="45.0611%" y="1429" width="4.3925%" height="15" fill="rgb(212,87,7)" fg:x="2103" fg:w="205"/><text x="45.3111%" y="1439.50">__x64..</text></g><g><title>ksys_write (203 samples, 4.35%)</title><rect x="45.1039%" y="1413" width="4.3497%" height="15" fill="rgb(245,114,25)" fg:x="2105" fg:w="203"/><text x="45.3539%" y="1423.50">ksys_..</text></g><g><title>vfs_write (202 samples, 4.33%)</title><rect x="45.1253%" y="1397" width="4.3283%" height="15" fill="rgb(210,61,42)" fg:x="2106" fg:w="202"/><text x="45.3753%" y="1407.50">vfs_w..</text></g><g><title>tty_write (3 samples, 0.06%)</title><rect x="49.3893%" y="1381" width="0.0643%" height="15" fill="rgb(211,52,33)" fg:x="2305" fg:w="3"/><text x="49.6393%" y="1391.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="49.4322%" y="1365" width="0.0214%" height="15" fill="rgb(234,58,33)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1375.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="49.4322%" y="1349" width="0.0214%" height="15" fill="rgb(220,115,36)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1359.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="49.4322%" y="1333" width="0.0214%" height="15" fill="rgb(243,153,54)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1343.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="49.4322%" y="1317" width="0.0214%" height="15" fill="rgb(251,47,18)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1327.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="49.4322%" y="1301" width="0.0214%" height="15" fill="rgb(242,102,42)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1311.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="49.4322%" y="1285" width="0.0214%" height="15" fill="rgb(234,31,38)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1295.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="49.4322%" y="1269" width="0.0214%" height="15" fill="rgb(221,117,51)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1279.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="49.4322%" y="1253" width="0.0214%" height="15" fill="rgb(212,20,18)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1263.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="49.4322%" y="1237" width="0.0214%" height="15" fill="rgb(245,133,36)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1247.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="49.4322%" y="1221" width="0.0214%" height="15" fill="rgb(212,6,19)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1231.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="49.4322%" y="1205" width="0.0214%" height="15" fill="rgb(218,1,36)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1215.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="49.4322%" y="1189" width="0.0214%" height="15" fill="rgb(246,84,54)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1199.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="49.4322%" y="1173" width="0.0214%" height="15" fill="rgb(242,110,6)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1183.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="49.4322%" y="1157" width="0.0214%" height="15" fill="rgb(214,47,5)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1167.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="49.4322%" y="1141" width="0.0214%" height="15" fill="rgb(218,159,25)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1151.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="49.4322%" y="1125" width="0.0214%" height="15" fill="rgb(215,211,28)" fg:x="2307" fg:w="1"/><text x="49.6822%" y="1135.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (210 samples, 4.50%)</title><rect x="44.9754%" y="1509" width="4.4997%" height="15" fill="rgb(238,59,32)" fg:x="2099" fg:w="210"/><text x="45.2254%" y="1519.50">&lt;std:..</text></g><g><title>std::sys::unix::fd::FileDesc::write (210 samples, 4.50%)</title><rect x="44.9754%" y="1493" width="4.4997%" height="15" fill="rgb(226,82,3)" fg:x="2099" fg:w="210"/><text x="45.2254%" y="1503.50">std::..</text></g><g><title>bfinterpreter::interpreter::optimized::execute (1 samples, 0.02%)</title><rect x="49.4536%" y="1477" width="0.0214%" height="15" fill="rgb(240,164,32)" fg:x="2308" fg:w="1"/><text x="49.7036%" y="1487.50"></text></g><g><title>entry_SYSCALL_64 (1 samples, 0.02%)</title><rect x="49.4536%" y="1461" width="0.0214%" height="15" fill="rgb(232,46,7)" fg:x="2308" fg:w="1"/><text x="49.7036%" y="1471.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::flush (211 samples, 4.52%)</title><rect x="44.9754%" y="1589" width="4.5211%" height="15" fill="rgb(229,129,53)" fg:x="2099" fg:w="211"/><text x="45.2254%" y="1599.50">&lt;std:..</text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::flush (211 samples, 4.52%)</title><rect x="44.9754%" y="1573" width="4.5211%" height="15" fill="rgb(234,188,29)" fg:x="2099" fg:w="211"/><text x="45.2254%" y="1583.50">&lt;std:..</text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::flush (211 samples, 4.52%)</title><rect x="44.9754%" y="1557" width="4.5211%" height="15" fill="rgb(246,141,4)" fg:x="2099" fg:w="211"/><text x="45.2254%" y="1567.50">&lt;std:..</text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (211 samples, 4.52%)</title><rect x="44.9754%" y="1541" width="4.5211%" height="15" fill="rgb(229,23,39)" fg:x="2099" fg:w="211"/><text x="45.2254%" y="1551.50">std::..</text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (211 samples, 4.52%)</title><rect x="44.9754%" y="1525" width="4.5211%" height="15" fill="rgb(206,12,3)" fg:x="2099" fg:w="211"/><text x="45.2254%" y="1535.50">&lt;std:..</text></g><g><title>std::io::stdio::handle_ebadf (1 samples, 0.02%)</title><rect x="49.4750%" y="1509" width="0.0214%" height="15" fill="rgb(252,226,20)" fg:x="2309" fg:w="1"/><text x="49.7250%" y="1519.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::flush (213 samples, 4.56%)</title><rect x="44.9539%" y="1621" width="4.5640%" height="15" fill="rgb(216,123,35)" fg:x="2098" fg:w="213"/><text x="45.2039%" y="1631.50">&lt;std:..</text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::flush (213 samples, 4.56%)</title><rect x="44.9539%" y="1605" width="4.5640%" height="15" fill="rgb(212,68,40)" fg:x="2098" fg:w="213"/><text x="45.2039%" y="1615.50">&lt;&amp;std..</text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (1 samples, 0.02%)</title><rect x="49.4965%" y="1589" width="0.0214%" height="15" fill="rgb(254,125,32)" fg:x="2310" fg:w="1"/><text x="49.7465%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (1 samples, 0.02%)</title><rect x="49.4965%" y="1573" width="0.0214%" height="15" fill="rgb(253,97,22)" fg:x="2310" fg:w="1"/><text x="49.7465%" y="1583.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="49.4965%" y="1557" width="0.0214%" height="15" fill="rgb(241,101,14)" fg:x="2310" fg:w="1"/><text x="49.7465%" y="1567.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (1 samples, 0.02%)</title><rect x="49.4965%" y="1541" width="0.0214%" height="15" fill="rgb(238,103,29)" fg:x="2310" fg:w="1"/><text x="49.7465%" y="1551.50"></text></g><g><title>__GI___pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="49.4965%" y="1525" width="0.0214%" height="15" fill="rgb(233,195,47)" fg:x="2310" fg:w="1"/><text x="49.7465%" y="1535.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (1 samples, 0.02%)</title><rect x="49.4965%" y="1509" width="0.0214%" height="15" fill="rgb(246,218,30)" fg:x="2310" fg:w="1"/><text x="49.7465%" y="1519.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&lt;&amp;usize&gt;&gt;::add_assign (3 samples, 0.06%)</title><rect x="49.5179%" y="1621" width="0.0643%" height="15" fill="rgb(219,145,47)" fg:x="2311" fg:w="3"/><text x="49.7679%" y="1631.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&gt;::add_assign (3 samples, 0.06%)</title><rect x="49.5179%" y="1605" width="0.0643%" height="15" fill="rgb(243,12,26)" fg:x="2311" fg:w="3"/><text x="49.7679%" y="1615.50"></text></g><g><title>asm_common_interrupt (1 samples, 0.02%)</title><rect x="49.5822%" y="1621" width="0.0214%" height="15" fill="rgb(214,87,16)" fg:x="2314" fg:w="1"/><text x="49.8322%" y="1631.50"></text></g><g><title>common_interrupt (1 samples, 0.02%)</title><rect x="49.5822%" y="1605" width="0.0214%" height="15" fill="rgb(208,99,42)" fg:x="2314" fg:w="1"/><text x="49.8322%" y="1615.50"></text></g><g><title>handle_edge_irq (1 samples, 0.02%)</title><rect x="49.5822%" y="1589" width="0.0214%" height="15" fill="rgb(253,99,2)" fg:x="2314" fg:w="1"/><text x="49.8322%" y="1599.50"></text></g><g><title>irq_chip_ack_parent (1 samples, 0.02%)</title><rect x="49.5822%" y="1573" width="0.0214%" height="15" fill="rgb(220,168,23)" fg:x="2314" fg:w="1"/><text x="49.8322%" y="1583.50"></text></g><g><title>apic_ack_edge (1 samples, 0.02%)</title><rect x="49.5822%" y="1557" width="0.0214%" height="15" fill="rgb(242,38,24)" fg:x="2314" fg:w="1"/><text x="49.8322%" y="1567.50"></text></g><g><title>native_apic_msr_eoi_write (1 samples, 0.02%)</title><rect x="49.5822%" y="1541" width="0.0214%" height="15" fill="rgb(225,182,9)" fg:x="2314" fg:w="1"/><text x="49.8322%" y="1551.50"></text></g><g><title>__const_udelay (5 samples, 0.11%)</title><rect x="49.6250%" y="1397" width="0.1071%" height="15" fill="rgb(243,178,37)" fg:x="2316" fg:w="5"/><text x="49.8750%" y="1407.50"></text></g><g><title>delay_tsc (3 samples, 0.06%)</title><rect x="49.6679%" y="1381" width="0.0643%" height="15" fill="rgb(232,139,19)" fg:x="2318" fg:w="3"/><text x="49.9179%" y="1391.50"></text></g><g><title>perf_pmu_disable.part.0 (167 samples, 3.58%)</title><rect x="49.6036%" y="1461" width="3.5783%" height="15" fill="rgb(225,201,24)" fg:x="2315" fg:w="167"/><text x="49.8536%" y="1471.50">perf..</text></g><g><title>x86_pmu_disable (167 samples, 3.58%)</title><rect x="49.6036%" y="1445" width="3.5783%" height="15" fill="rgb(221,47,46)" fg:x="2315" fg:w="167"/><text x="49.8536%" y="1455.50">x86_..</text></g><g><title>amd_pmu_disable_all (167 samples, 3.58%)</title><rect x="49.6036%" y="1429" width="3.5783%" height="15" fill="rgb(249,23,13)" fg:x="2315" fg:w="167"/><text x="49.8536%" y="1439.50">amd_..</text></g><g><title>amd_pmu_wait_on_overflow (167 samples, 3.58%)</title><rect x="49.6036%" y="1413" width="3.5783%" height="15" fill="rgb(219,9,5)" fg:x="2315" fg:w="167"/><text x="49.8536%" y="1423.50">amd_..</text></g><g><title>native_read_msr (161 samples, 3.45%)</title><rect x="49.7322%" y="1397" width="3.4498%" height="15" fill="rgb(254,171,16)" fg:x="2321" fg:w="161"/><text x="49.9822%" y="1407.50">nat..</text></g><g><title>__hrtimer_run_queues (168 samples, 3.60%)</title><rect x="49.6036%" y="1557" width="3.5997%" height="15" fill="rgb(230,171,20)" fg:x="2315" fg:w="168"/><text x="49.8536%" y="1567.50">__hr..</text></g><g><title>tick_sched_timer (168 samples, 3.60%)</title><rect x="49.6036%" y="1541" width="3.5997%" height="15" fill="rgb(210,71,41)" fg:x="2315" fg:w="168"/><text x="49.8536%" y="1551.50">tick..</text></g><g><title>tick_sched_handle.isra.0 (168 samples, 3.60%)</title><rect x="49.6036%" y="1525" width="3.5997%" height="15" fill="rgb(206,173,20)" fg:x="2315" fg:w="168"/><text x="49.8536%" y="1535.50">tick..</text></g><g><title>update_process_times (168 samples, 3.60%)</title><rect x="49.6036%" y="1509" width="3.5997%" height="15" fill="rgb(233,88,34)" fg:x="2315" fg:w="168"/><text x="49.8536%" y="1519.50">upda..</text></g><g><title>scheduler_tick (168 samples, 3.60%)</title><rect x="49.6036%" y="1493" width="3.5997%" height="15" fill="rgb(223,209,46)" fg:x="2315" fg:w="168"/><text x="49.8536%" y="1503.50">sche..</text></g><g><title>perf_event_task_tick (168 samples, 3.60%)</title><rect x="49.6036%" y="1477" width="3.5997%" height="15" fill="rgb(250,43,18)" fg:x="2315" fg:w="168"/><text x="49.8536%" y="1487.50">perf..</text></g><g><title>x86_pmu_stop (1 samples, 0.02%)</title><rect x="53.1819%" y="1461" width="0.0214%" height="15" fill="rgb(208,13,10)" fg:x="2482" fg:w="1"/><text x="53.4319%" y="1471.50"></text></g><g><title>amd_pmu_disable_event (1 samples, 0.02%)</title><rect x="53.1819%" y="1445" width="0.0214%" height="15" fill="rgb(212,200,36)" fg:x="2482" fg:w="1"/><text x="53.4319%" y="1455.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="53.1819%" y="1429" width="0.0214%" height="15" fill="rgb(225,90,30)" fg:x="2482" fg:w="1"/><text x="53.4319%" y="1439.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="53.1819%" y="1413" width="0.0214%" height="15" fill="rgb(236,182,39)" fg:x="2482" fg:w="1"/><text x="53.4319%" y="1423.50"></text></g><g><title>__sysvec_apic_timer_interrupt (173 samples, 3.71%)</title><rect x="49.6036%" y="1589" width="3.7069%" height="15" fill="rgb(212,144,35)" fg:x="2315" fg:w="173"/><text x="49.8536%" y="1599.50">__sy..</text></g><g><title>hrtimer_interrupt (173 samples, 3.71%)</title><rect x="49.6036%" y="1573" width="3.7069%" height="15" fill="rgb(228,63,44)" fg:x="2315" fg:w="173"/><text x="49.8536%" y="1583.50">hrti..</text></g><g><title>tick_program_event (5 samples, 0.11%)</title><rect x="53.2033%" y="1557" width="0.1071%" height="15" fill="rgb(228,109,6)" fg:x="2483" fg:w="5"/><text x="53.4533%" y="1567.50"></text></g><g><title>clockevents_program_event (5 samples, 0.11%)</title><rect x="53.2033%" y="1541" width="0.1071%" height="15" fill="rgb(238,117,24)" fg:x="2483" fg:w="5"/><text x="53.4533%" y="1551.50"></text></g><g><title>lapic_next_event (5 samples, 0.11%)</title><rect x="53.2033%" y="1525" width="0.1071%" height="15" fill="rgb(242,26,26)" fg:x="2483" fg:w="5"/><text x="53.4533%" y="1535.50"></text></g><g><title>native_write_msr (5 samples, 0.11%)</title><rect x="53.2033%" y="1509" width="0.1071%" height="15" fill="rgb(221,92,48)" fg:x="2483" fg:w="5"/><text x="53.4533%" y="1519.50"></text></g><g><title>__prepare_exit_to_usermode (2 samples, 0.04%)</title><rect x="53.3105%" y="1557" width="0.0429%" height="15" fill="rgb(209,209,32)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1567.50"></text></g><g><title>schedule (2 samples, 0.04%)</title><rect x="53.3105%" y="1541" width="0.0429%" height="15" fill="rgb(221,70,22)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1551.50"></text></g><g><title>__schedule (2 samples, 0.04%)</title><rect x="53.3105%" y="1525" width="0.0429%" height="15" fill="rgb(248,145,5)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1535.50"></text></g><g><title>__perf_event_task_sched_out (2 samples, 0.04%)</title><rect x="53.3105%" y="1509" width="0.0429%" height="15" fill="rgb(226,116,26)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1519.50"></text></g><g><title>task_ctx_sched_out (2 samples, 0.04%)</title><rect x="53.3105%" y="1493" width="0.0429%" height="15" fill="rgb(244,5,17)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1503.50"></text></g><g><title>ctx_sched_out (2 samples, 0.04%)</title><rect x="53.3105%" y="1477" width="0.0429%" height="15" fill="rgb(252,159,33)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1487.50"></text></g><g><title>perf_pmu_disable.part.0 (2 samples, 0.04%)</title><rect x="53.3105%" y="1461" width="0.0429%" height="15" fill="rgb(206,71,0)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1471.50"></text></g><g><title>x86_pmu_disable (2 samples, 0.04%)</title><rect x="53.3105%" y="1445" width="0.0429%" height="15" fill="rgb(233,118,54)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1455.50"></text></g><g><title>amd_pmu_disable_all (2 samples, 0.04%)</title><rect x="53.3105%" y="1429" width="0.0429%" height="15" fill="rgb(234,83,48)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1439.50"></text></g><g><title>amd_pmu_wait_on_overflow (2 samples, 0.04%)</title><rect x="53.3105%" y="1413" width="0.0429%" height="15" fill="rgb(228,3,54)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1423.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="53.3105%" y="1397" width="0.0429%" height="15" fill="rgb(226,155,13)" fg:x="2488" fg:w="2"/><text x="53.5605%" y="1407.50"></text></g><g><title>idtentry_exit_cond_rcu (3 samples, 0.06%)</title><rect x="53.3105%" y="1589" width="0.0643%" height="15" fill="rgb(241,28,37)" fg:x="2488" fg:w="3"/><text x="53.5605%" y="1599.50"></text></g><g><title>prepare_exit_to_usermode (3 samples, 0.06%)</title><rect x="53.3105%" y="1573" width="0.0643%" height="15" fill="rgb(233,93,10)" fg:x="2488" fg:w="3"/><text x="53.5605%" y="1583.50"></text></g><g><title>fpregs_assert_state_consistent (1 samples, 0.02%)</title><rect x="53.3533%" y="1557" width="0.0214%" height="15" fill="rgb(225,113,19)" fg:x="2490" fg:w="1"/><text x="53.6033%" y="1567.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (178 samples, 3.81%)</title><rect x="49.6036%" y="1621" width="3.8140%" height="15" fill="rgb(241,2,18)" fg:x="2315" fg:w="178"/><text x="49.8536%" y="1631.50">asm_..</text></g><g><title>sysvec_apic_timer_interrupt (178 samples, 3.81%)</title><rect x="49.6036%" y="1605" width="3.8140%" height="15" fill="rgb(228,207,21)" fg:x="2315" fg:w="178"/><text x="49.8536%" y="1615.50">sysv..</text></g><g><title>irq_exit_rcu (2 samples, 0.04%)</title><rect x="53.3748%" y="1589" width="0.0429%" height="15" fill="rgb(213,211,35)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1599.50"></text></g><g><title>do_softirq_own_stack (2 samples, 0.04%)</title><rect x="53.3748%" y="1573" width="0.0429%" height="15" fill="rgb(209,83,10)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1583.50"></text></g><g><title>asm_call_sysvec_on_stack (2 samples, 0.04%)</title><rect x="53.3748%" y="1557" width="0.0429%" height="15" fill="rgb(209,164,1)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1567.50"></text></g><g><title>__softirqentry_text_start (2 samples, 0.04%)</title><rect x="53.3748%" y="1541" width="0.0429%" height="15" fill="rgb(213,184,43)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1551.50"></text></g><g><title>rcu_core_si (2 samples, 0.04%)</title><rect x="53.3748%" y="1525" width="0.0429%" height="15" fill="rgb(231,61,34)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1535.50"></text></g><g><title>rcu_core (2 samples, 0.04%)</title><rect x="53.3748%" y="1509" width="0.0429%" height="15" fill="rgb(235,75,3)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1519.50"></text></g><g><title>rcu_report_qs_rnp (2 samples, 0.04%)</title><rect x="53.3748%" y="1493" width="0.0429%" height="15" fill="rgb(220,106,47)" fg:x="2491" fg:w="2"/><text x="53.6248%" y="1503.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="53.4176%" y="1317" width="0.0214%" height="15" fill="rgb(210,196,33)" fg:x="2493" fg:w="1"/><text x="53.6676%" y="1327.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="53.4176%" y="1301" width="0.0214%" height="15" fill="rgb(229,154,42)" fg:x="2493" fg:w="1"/><text x="53.6676%" y="1311.50"></text></g><g><title>asm_sysvec_call_function_single (3 samples, 0.06%)</title><rect x="53.4176%" y="1621" width="0.0643%" height="15" fill="rgb(228,114,26)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1631.50"></text></g><g><title>sysvec_call_function_single (3 samples, 0.06%)</title><rect x="53.4176%" y="1605" width="0.0643%" height="15" fill="rgb(208,144,1)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1615.50"></text></g><g><title>idtentry_exit_cond_rcu (3 samples, 0.06%)</title><rect x="53.4176%" y="1589" width="0.0643%" height="15" fill="rgb(239,112,37)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1599.50"></text></g><g><title>prepare_exit_to_usermode (3 samples, 0.06%)</title><rect x="53.4176%" y="1573" width="0.0643%" height="15" fill="rgb(210,96,50)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1583.50"></text></g><g><title>__prepare_exit_to_usermode (3 samples, 0.06%)</title><rect x="53.4176%" y="1557" width="0.0643%" height="15" fill="rgb(222,178,2)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1567.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="53.4176%" y="1541" width="0.0643%" height="15" fill="rgb(226,74,18)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1551.50"></text></g><g><title>sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="53.4176%" y="1525" width="0.0643%" height="15" fill="rgb(225,67,54)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1535.50"></text></g><g><title>asm_call_sysvec_on_stack (3 samples, 0.06%)</title><rect x="53.4176%" y="1509" width="0.0643%" height="15" fill="rgb(251,92,32)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1519.50"></text></g><g><title>__sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="53.4176%" y="1493" width="0.0643%" height="15" fill="rgb(228,149,22)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1503.50"></text></g><g><title>hrtimer_interrupt (3 samples, 0.06%)</title><rect x="53.4176%" y="1477" width="0.0643%" height="15" fill="rgb(243,54,13)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1487.50"></text></g><g><title>__hrtimer_run_queues (3 samples, 0.06%)</title><rect x="53.4176%" y="1461" width="0.0643%" height="15" fill="rgb(243,180,28)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1471.50"></text></g><g><title>tick_sched_timer (3 samples, 0.06%)</title><rect x="53.4176%" y="1445" width="0.0643%" height="15" fill="rgb(208,167,24)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1455.50"></text></g><g><title>tick_sched_handle.isra.0 (3 samples, 0.06%)</title><rect x="53.4176%" y="1429" width="0.0643%" height="15" fill="rgb(245,73,45)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1439.50"></text></g><g><title>update_process_times (3 samples, 0.06%)</title><rect x="53.4176%" y="1413" width="0.0643%" height="15" fill="rgb(237,203,48)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1423.50"></text></g><g><title>scheduler_tick (3 samples, 0.06%)</title><rect x="53.4176%" y="1397" width="0.0643%" height="15" fill="rgb(211,197,16)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1407.50"></text></g><g><title>perf_event_task_tick (3 samples, 0.06%)</title><rect x="53.4176%" y="1381" width="0.0643%" height="15" fill="rgb(243,99,51)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1391.50"></text></g><g><title>perf_pmu_disable.part.0 (3 samples, 0.06%)</title><rect x="53.4176%" y="1365" width="0.0643%" height="15" fill="rgb(215,123,29)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1375.50"></text></g><g><title>x86_pmu_disable (3 samples, 0.06%)</title><rect x="53.4176%" y="1349" width="0.0643%" height="15" fill="rgb(239,186,37)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1359.50"></text></g><g><title>amd_pmu_disable_all (3 samples, 0.06%)</title><rect x="53.4176%" y="1333" width="0.0643%" height="15" fill="rgb(252,136,39)" fg:x="2493" fg:w="3"/><text x="53.6676%" y="1343.50"></text></g><g><title>x86_pmu_disable_all (2 samples, 0.04%)</title><rect x="53.4390%" y="1317" width="0.0429%" height="15" fill="rgb(223,213,32)" fg:x="2494" fg:w="2"/><text x="53.6890%" y="1327.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="53.4390%" y="1301" width="0.0429%" height="15" fill="rgb(233,115,5)" fg:x="2494" fg:w="2"/><text x="53.6890%" y="1311.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (18 samples, 0.39%)</title><rect x="61.8599%" y="1605" width="0.3857%" height="15" fill="rgb(207,226,44)" fg:x="2887" fg:w="18"/><text x="62.1099%" y="1615.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="62.2241%" y="1589" width="0.0214%" height="15" fill="rgb(208,126,0)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1599.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="62.2241%" y="1573" width="0.0214%" height="15" fill="rgb(244,66,21)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1583.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="62.2241%" y="1557" width="0.0214%" height="15" fill="rgb(222,97,12)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1567.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="62.2241%" y="1541" width="0.0214%" height="15" fill="rgb(219,213,19)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1551.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="62.2241%" y="1525" width="0.0214%" height="15" fill="rgb(252,169,30)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1535.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="62.2241%" y="1509" width="0.0214%" height="15" fill="rgb(206,32,51)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1519.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="62.2241%" y="1493" width="0.0214%" height="15" fill="rgb(250,172,42)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1503.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="62.2241%" y="1477" width="0.0214%" height="15" fill="rgb(209,34,43)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1487.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="62.2241%" y="1461" width="0.0214%" height="15" fill="rgb(223,11,35)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1471.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="62.2241%" y="1445" width="0.0214%" height="15" fill="rgb(251,219,26)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1455.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="62.2241%" y="1429" width="0.0214%" height="15" fill="rgb(231,119,3)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1439.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="62.2241%" y="1413" width="0.0214%" height="15" fill="rgb(216,97,11)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1423.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="62.2241%" y="1397" width="0.0214%" height="15" fill="rgb(223,59,9)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1407.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="62.2241%" y="1381" width="0.0214%" height="15" fill="rgb(233,93,31)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1391.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="62.2241%" y="1365" width="0.0214%" height="15" fill="rgb(239,81,33)" fg:x="2904" fg:w="1"/><text x="62.4741%" y="1375.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (45 samples, 0.96%)</title><rect x="62.2456%" y="1605" width="0.9642%" height="15" fill="rgb(213,120,34)" fg:x="2905" fg:w="45"/><text x="62.4956%" y="1615.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (43 samples, 0.92%)</title><rect x="62.2884%" y="1589" width="0.9214%" height="15" fill="rgb(243,49,53)" fg:x="2907" fg:w="43"/><text x="62.5384%" y="1599.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (43 samples, 0.92%)</title><rect x="62.2884%" y="1573" width="0.9214%" height="15" fill="rgb(247,216,33)" fg:x="2907" fg:w="43"/><text x="62.5384%" y="1583.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (5 samples, 0.11%)</title><rect x="63.1026%" y="1557" width="0.1071%" height="15" fill="rgb(226,26,14)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1567.50"></text></g><g><title>sysvec_apic_timer_interrupt (5 samples, 0.11%)</title><rect x="63.1026%" y="1541" width="0.1071%" height="15" fill="rgb(215,49,53)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1551.50"></text></g><g><title>__sysvec_apic_timer_interrupt (5 samples, 0.11%)</title><rect x="63.1026%" y="1525" width="0.1071%" height="15" fill="rgb(245,162,40)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1535.50"></text></g><g><title>hrtimer_interrupt (5 samples, 0.11%)</title><rect x="63.1026%" y="1509" width="0.1071%" height="15" fill="rgb(229,68,17)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1519.50"></text></g><g><title>__hrtimer_run_queues (5 samples, 0.11%)</title><rect x="63.1026%" y="1493" width="0.1071%" height="15" fill="rgb(213,182,10)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1503.50"></text></g><g><title>tick_sched_timer (5 samples, 0.11%)</title><rect x="63.1026%" y="1477" width="0.1071%" height="15" fill="rgb(245,125,30)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1487.50"></text></g><g><title>tick_sched_handle.isra.0 (5 samples, 0.11%)</title><rect x="63.1026%" y="1461" width="0.1071%" height="15" fill="rgb(232,202,2)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1471.50"></text></g><g><title>update_process_times (5 samples, 0.11%)</title><rect x="63.1026%" y="1445" width="0.1071%" height="15" fill="rgb(237,140,51)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1455.50"></text></g><g><title>scheduler_tick (5 samples, 0.11%)</title><rect x="63.1026%" y="1429" width="0.1071%" height="15" fill="rgb(236,157,25)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1439.50"></text></g><g><title>perf_event_task_tick (5 samples, 0.11%)</title><rect x="63.1026%" y="1413" width="0.1071%" height="15" fill="rgb(219,209,0)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1423.50"></text></g><g><title>perf_pmu_disable.part.0 (5 samples, 0.11%)</title><rect x="63.1026%" y="1397" width="0.1071%" height="15" fill="rgb(240,116,54)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1407.50"></text></g><g><title>x86_pmu_disable (5 samples, 0.11%)</title><rect x="63.1026%" y="1381" width="0.1071%" height="15" fill="rgb(216,10,36)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1391.50"></text></g><g><title>amd_pmu_disable_all (5 samples, 0.11%)</title><rect x="63.1026%" y="1365" width="0.1071%" height="15" fill="rgb(222,72,44)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1375.50"></text></g><g><title>amd_pmu_wait_on_overflow (5 samples, 0.11%)</title><rect x="63.1026%" y="1349" width="0.1071%" height="15" fill="rgb(232,159,9)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1359.50"></text></g><g><title>native_read_msr (5 samples, 0.11%)</title><rect x="63.1026%" y="1333" width="0.1071%" height="15" fill="rgb(210,39,32)" fg:x="2945" fg:w="5"/><text x="63.3526%" y="1343.50"></text></g><g><title>__fget_light (1 samples, 0.02%)</title><rect x="63.2741%" y="1381" width="0.0214%" height="15" fill="rgb(216,194,45)" fg:x="2953" fg:w="1"/><text x="63.5241%" y="1391.50"></text></g><g><title>new_sync_write (1 samples, 0.02%)</title><rect x="63.2955%" y="1381" width="0.0214%" height="15" fill="rgb(218,18,35)" fg:x="2954" fg:w="1"/><text x="63.5455%" y="1391.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.3383%" y="1365" width="0.0214%" height="15" fill="rgb(207,83,51)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1375.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.3383%" y="1349" width="0.0214%" height="15" fill="rgb(225,63,43)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1359.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="63.3383%" y="1333" width="0.0214%" height="15" fill="rgb(207,57,36)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1343.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.3383%" y="1317" width="0.0214%" height="15" fill="rgb(216,99,33)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1327.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="63.3383%" y="1301" width="0.0214%" height="15" fill="rgb(225,42,16)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1311.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="63.3383%" y="1285" width="0.0214%" height="15" fill="rgb(220,201,45)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1295.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="63.3383%" y="1269" width="0.0214%" height="15" fill="rgb(225,33,4)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1279.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="63.3383%" y="1253" width="0.0214%" height="15" fill="rgb(224,33,50)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1263.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="63.3383%" y="1237" width="0.0214%" height="15" fill="rgb(246,198,51)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1247.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="63.3383%" y="1221" width="0.0214%" height="15" fill="rgb(205,22,4)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1231.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="63.3383%" y="1205" width="0.0214%" height="15" fill="rgb(206,3,8)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1215.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="63.3383%" y="1189" width="0.0214%" height="15" fill="rgb(251,23,15)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1199.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="63.3383%" y="1173" width="0.0214%" height="15" fill="rgb(252,88,28)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1183.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="63.3383%" y="1157" width="0.0214%" height="15" fill="rgb(212,127,14)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1167.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="63.3383%" y="1141" width="0.0214%" height="15" fill="rgb(247,145,37)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1151.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="63.3383%" y="1125" width="0.0214%" height="15" fill="rgb(209,117,53)" fg:x="2956" fg:w="1"/><text x="63.5883%" y="1135.50"></text></g><g><title>fsnotify (1 samples, 0.02%)</title><rect x="63.3598%" y="1365" width="0.0214%" height="15" fill="rgb(212,90,42)" fg:x="2957" fg:w="1"/><text x="63.6098%" y="1375.50"></text></g><g><title>__check_object_size (1 samples, 0.02%)</title><rect x="63.3812%" y="1333" width="0.0214%" height="15" fill="rgb(218,164,37)" fg:x="2958" fg:w="1"/><text x="63.6312%" y="1343.50"></text></g><g><title>__check_heap_object (1 samples, 0.02%)</title><rect x="63.4240%" y="1317" width="0.0214%" height="15" fill="rgb(246,65,34)" fg:x="2960" fg:w="1"/><text x="63.6740%" y="1327.50"></text></g><g><title>__virt_addr_valid (2 samples, 0.04%)</title><rect x="63.5097%" y="1301" width="0.0429%" height="15" fill="rgb(231,100,33)" fg:x="2964" fg:w="2"/><text x="63.7597%" y="1311.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5312%" y="1285" width="0.0214%" height="15" fill="rgb(228,126,14)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1295.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5312%" y="1269" width="0.0214%" height="15" fill="rgb(215,173,21)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1279.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="63.5312%" y="1253" width="0.0214%" height="15" fill="rgb(210,6,40)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1263.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5312%" y="1237" width="0.0214%" height="15" fill="rgb(212,48,18)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1247.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="63.5312%" y="1221" width="0.0214%" height="15" fill="rgb(230,214,11)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1231.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="63.5312%" y="1205" width="0.0214%" height="15" fill="rgb(254,105,39)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1215.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="63.5312%" y="1189" width="0.0214%" height="15" fill="rgb(245,158,5)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1199.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="63.5312%" y="1173" width="0.0214%" height="15" fill="rgb(249,208,11)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1183.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="63.5312%" y="1157" width="0.0214%" height="15" fill="rgb(210,39,28)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1167.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="63.5312%" y="1141" width="0.0214%" height="15" fill="rgb(211,56,53)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1151.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="63.5312%" y="1125" width="0.0214%" height="15" fill="rgb(226,201,30)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1135.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="63.5312%" y="1109" width="0.0214%" height="15" fill="rgb(239,101,34)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1119.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="63.5312%" y="1093" width="0.0214%" height="15" fill="rgb(226,209,5)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1103.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="63.5312%" y="1077" width="0.0214%" height="15" fill="rgb(250,105,47)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1087.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="63.5312%" y="1061" width="0.0214%" height="15" fill="rgb(230,72,3)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1071.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="63.5312%" y="1045" width="0.0214%" height="15" fill="rgb(232,218,39)" fg:x="2965" fg:w="1"/><text x="63.7812%" y="1055.50"></text></g><g><title>__check_object_size (6 samples, 0.13%)</title><rect x="63.4455%" y="1317" width="0.1286%" height="15" fill="rgb(248,166,6)" fg:x="2961" fg:w="6"/><text x="63.6955%" y="1327.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5526%" y="1301" width="0.0214%" height="15" fill="rgb(247,89,20)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1311.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5526%" y="1285" width="0.0214%" height="15" fill="rgb(248,130,54)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1295.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="63.5526%" y="1269" width="0.0214%" height="15" fill="rgb(234,196,4)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1279.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5526%" y="1253" width="0.0214%" height="15" fill="rgb(250,143,31)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1263.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="63.5526%" y="1237" width="0.0214%" height="15" fill="rgb(211,110,34)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1247.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="63.5526%" y="1221" width="0.0214%" height="15" fill="rgb(215,124,48)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1231.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="63.5526%" y="1205" width="0.0214%" height="15" fill="rgb(216,46,13)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1215.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="63.5526%" y="1189" width="0.0214%" height="15" fill="rgb(205,184,25)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1199.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="63.5526%" y="1173" width="0.0214%" height="15" fill="rgb(228,1,10)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1183.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="63.5526%" y="1157" width="0.0214%" height="15" fill="rgb(213,116,27)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1167.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="63.5526%" y="1141" width="0.0214%" height="15" fill="rgb(241,95,50)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1151.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="63.5526%" y="1125" width="0.0214%" height="15" fill="rgb(238,48,32)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1135.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="63.5526%" y="1109" width="0.0214%" height="15" fill="rgb(235,113,49)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1119.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="63.5526%" y="1093" width="0.0214%" height="15" fill="rgb(205,127,43)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1103.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="63.5526%" y="1077" width="0.0214%" height="15" fill="rgb(250,162,2)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1087.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="63.5526%" y="1061" width="0.0214%" height="15" fill="rgb(220,13,41)" fg:x="2966" fg:w="1"/><text x="63.8026%" y="1071.50"></text></g><g><title>_copy_from_iter (2 samples, 0.04%)</title><rect x="63.5740%" y="1317" width="0.0429%" height="15" fill="rgb(249,221,25)" fg:x="2967" fg:w="2"/><text x="63.8240%" y="1327.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5955%" y="1301" width="0.0214%" height="15" fill="rgb(215,208,19)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1311.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5955%" y="1285" width="0.0214%" height="15" fill="rgb(236,175,2)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1295.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="63.5955%" y="1269" width="0.0214%" height="15" fill="rgb(241,52,2)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1279.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.5955%" y="1253" width="0.0214%" height="15" fill="rgb(248,140,14)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1263.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="63.5955%" y="1237" width="0.0214%" height="15" fill="rgb(253,22,42)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1247.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="63.5955%" y="1221" width="0.0214%" height="15" fill="rgb(234,61,47)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1231.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="63.5955%" y="1205" width="0.0214%" height="15" fill="rgb(208,226,15)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1215.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="63.5955%" y="1189" width="0.0214%" height="15" fill="rgb(217,221,4)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1199.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="63.5955%" y="1173" width="0.0214%" height="15" fill="rgb(212,174,34)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1183.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="63.5955%" y="1157" width="0.0214%" height="15" fill="rgb(253,83,4)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1167.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="63.5955%" y="1141" width="0.0214%" height="15" fill="rgb(250,195,49)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1151.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="63.5955%" y="1125" width="0.0214%" height="15" fill="rgb(241,192,25)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1135.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="63.5955%" y="1109" width="0.0214%" height="15" fill="rgb(208,124,10)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1119.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="63.5955%" y="1093" width="0.0214%" height="15" fill="rgb(222,33,0)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1103.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="63.5955%" y="1077" width="0.0214%" height="15" fill="rgb(234,209,28)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1087.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="63.5955%" y="1061" width="0.0214%" height="15" fill="rgb(224,11,23)" fg:x="2968" fg:w="1"/><text x="63.8455%" y="1071.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.6169%" y="1317" width="0.0214%" height="15" fill="rgb(232,99,1)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1327.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.6169%" y="1301" width="0.0214%" height="15" fill="rgb(237,95,45)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1311.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="63.6169%" y="1285" width="0.0214%" height="15" fill="rgb(208,109,11)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1295.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.6169%" y="1269" width="0.0214%" height="15" fill="rgb(216,190,48)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1279.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="63.6169%" y="1253" width="0.0214%" height="15" fill="rgb(251,171,36)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1263.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="63.6169%" y="1237" width="0.0214%" height="15" fill="rgb(230,62,22)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1247.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="63.6169%" y="1221" width="0.0214%" height="15" fill="rgb(225,114,35)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1231.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="63.6169%" y="1205" width="0.0214%" height="15" fill="rgb(215,118,42)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1215.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="63.6169%" y="1189" width="0.0214%" height="15" fill="rgb(243,119,21)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1199.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="63.6169%" y="1173" width="0.0214%" height="15" fill="rgb(252,177,53)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1183.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="63.6169%" y="1157" width="0.0214%" height="15" fill="rgb(237,209,29)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1167.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="63.6169%" y="1141" width="0.0214%" height="15" fill="rgb(212,65,23)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1151.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="63.6169%" y="1125" width="0.0214%" height="15" fill="rgb(230,222,46)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1135.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="63.6169%" y="1109" width="0.0214%" height="15" fill="rgb(215,135,32)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1119.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="63.6169%" y="1093" width="0.0214%" height="15" fill="rgb(246,101,22)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1103.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="63.6169%" y="1077" width="0.0214%" height="15" fill="rgb(206,107,13)" fg:x="2969" fg:w="1"/><text x="63.8669%" y="1087.50"></text></g><g><title>ldsem_down_read (1 samples, 0.02%)</title><rect x="63.6383%" y="1317" width="0.0214%" height="15" fill="rgb(250,100,44)" fg:x="2970" fg:w="1"/><text x="63.8883%" y="1327.50"></text></g><g><title>mutex_lock (1 samples, 0.02%)</title><rect x="63.6597%" y="1317" width="0.0214%" height="15" fill="rgb(231,147,38)" fg:x="2971" fg:w="1"/><text x="63.9097%" y="1327.50"></text></g><g><title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="63.7669%" y="1301" width="0.0214%" height="15" fill="rgb(229,8,40)" fg:x="2976" fg:w="1"/><text x="64.0169%" y="1311.50"></text></g><g><title>add_wait_queue (1 samples, 0.02%)</title><rect x="63.7883%" y="1301" width="0.0214%" height="15" fill="rgb(221,135,30)" fg:x="2977" fg:w="1"/><text x="64.0383%" y="1311.50"></text></g><g><title>__tty_buffer_request_room (1 samples, 0.02%)</title><rect x="63.8312%" y="1285" width="0.0214%" height="15" fill="rgb(249,193,18)" fg:x="2979" fg:w="1"/><text x="64.0812%" y="1295.50"></text></g><g><title>_raw_spin_lock_irqsave (4 samples, 0.09%)</title><rect x="63.8526%" y="1285" width="0.0857%" height="15" fill="rgb(209,133,39)" fg:x="2980" fg:w="4"/><text x="64.1026%" y="1295.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.9383%" y="1285" width="0.0214%" height="15" fill="rgb(232,100,14)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1295.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.9383%" y="1269" width="0.0214%" height="15" fill="rgb(224,185,1)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1279.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="63.9383%" y="1253" width="0.0214%" height="15" fill="rgb(223,139,8)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1263.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="63.9383%" y="1237" width="0.0214%" height="15" fill="rgb(232,213,38)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1247.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="63.9383%" y="1221" width="0.0214%" height="15" fill="rgb(207,94,22)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1231.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="63.9383%" y="1205" width="0.0214%" height="15" fill="rgb(219,183,54)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1215.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="63.9383%" y="1189" width="0.0214%" height="15" fill="rgb(216,185,54)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1199.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="63.9383%" y="1173" width="0.0214%" height="15" fill="rgb(254,217,39)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1183.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="63.9383%" y="1157" width="0.0214%" height="15" fill="rgb(240,178,23)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1167.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="63.9383%" y="1141" width="0.0214%" height="15" fill="rgb(218,11,47)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1151.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="63.9383%" y="1125" width="0.0214%" height="15" fill="rgb(218,51,51)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1135.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="63.9383%" y="1109" width="0.0214%" height="15" fill="rgb(238,126,27)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1119.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="63.9383%" y="1093" width="0.0214%" height="15" fill="rgb(249,202,22)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1103.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="63.9383%" y="1077" width="0.0214%" height="15" fill="rgb(254,195,49)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1087.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="63.9383%" y="1061" width="0.0214%" height="15" fill="rgb(208,123,14)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1071.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="63.9383%" y="1045" width="0.0214%" height="15" fill="rgb(224,200,8)" fg:x="2984" fg:w="1"/><text x="64.1883%" y="1055.50"></text></g><g><title>memcpy (1 samples, 0.02%)</title><rect x="63.9597%" y="1285" width="0.0214%" height="15" fill="rgb(217,61,36)" fg:x="2985" fg:w="1"/><text x="64.2097%" y="1295.50"></text></g><g><title>select_task_rq_fair (1 samples, 0.02%)</title><rect x="64.0026%" y="1189" width="0.0214%" height="15" fill="rgb(206,35,45)" fg:x="2987" fg:w="1"/><text x="64.2526%" y="1199.50"></text></g><g><title>select_idle_sibling (1 samples, 0.02%)</title><rect x="64.0026%" y="1173" width="0.0214%" height="15" fill="rgb(217,65,33)" fg:x="2987" fg:w="1"/><text x="64.2526%" y="1183.50"></text></g><g><title>native_send_call_func_single_ipi (80 samples, 1.71%)</title><rect x="64.0240%" y="1141" width="1.7142%" height="15" fill="rgb(222,158,48)" fg:x="2988" fg:w="80"/><text x="64.2740%" y="1151.50"></text></g><g><title>native_write_msr (80 samples, 1.71%)</title><rect x="64.0240%" y="1125" width="1.7142%" height="15" fill="rgb(254,2,54)" fg:x="2988" fg:w="80"/><text x="64.2740%" y="1135.50"></text></g><g><title>__queue_work (82 samples, 1.76%)</title><rect x="64.0026%" y="1253" width="1.7570%" height="15" fill="rgb(250,143,38)" fg:x="2987" fg:w="82"/><text x="64.2526%" y="1263.50"></text></g><g><title>insert_work (82 samples, 1.76%)</title><rect x="64.0026%" y="1237" width="1.7570%" height="15" fill="rgb(248,25,0)" fg:x="2987" fg:w="82"/><text x="64.2526%" y="1247.50"></text></g><g><title>wake_up_process (82 samples, 1.76%)</title><rect x="64.0026%" y="1221" width="1.7570%" height="15" fill="rgb(206,152,27)" fg:x="2987" fg:w="82"/><text x="64.2526%" y="1231.50"></text></g><g><title>try_to_wake_up (82 samples, 1.76%)</title><rect x="64.0026%" y="1205" width="1.7570%" height="15" fill="rgb(240,77,30)" fg:x="2987" fg:w="82"/><text x="64.2526%" y="1215.50"></text></g><g><title>ttwu_queue_wakelist (81 samples, 1.74%)</title><rect x="64.0240%" y="1189" width="1.7356%" height="15" fill="rgb(231,5,3)" fg:x="2988" fg:w="81"/><text x="64.2740%" y="1199.50"></text></g><g><title>__smp_call_single_queue (81 samples, 1.74%)</title><rect x="64.0240%" y="1173" width="1.7356%" height="15" fill="rgb(207,226,32)" fg:x="2988" fg:w="81"/><text x="64.2740%" y="1183.50"></text></g><g><title>send_call_function_single_ipi (81 samples, 1.74%)</title><rect x="64.0240%" y="1157" width="1.7356%" height="15" fill="rgb(222,207,47)" fg:x="2988" fg:w="81"/><text x="64.2740%" y="1167.50"></text></g><g><title>x2apic_send_IPI (1 samples, 0.02%)</title><rect x="65.7382%" y="1141" width="0.0214%" height="15" fill="rgb(229,115,45)" fg:x="3068" fg:w="1"/><text x="65.9882%" y="1151.50"></text></g><g><title>__hrtimer_run_queues (13 samples, 0.28%)</title><rect x="65.7596%" y="1173" width="0.2786%" height="15" fill="rgb(224,191,6)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1183.50"></text></g><g><title>tick_sched_timer (13 samples, 0.28%)</title><rect x="65.7596%" y="1157" width="0.2786%" height="15" fill="rgb(230,227,24)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1167.50"></text></g><g><title>tick_sched_handle.isra.0 (13 samples, 0.28%)</title><rect x="65.7596%" y="1141" width="0.2786%" height="15" fill="rgb(228,80,19)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1151.50"></text></g><g><title>update_process_times (13 samples, 0.28%)</title><rect x="65.7596%" y="1125" width="0.2786%" height="15" fill="rgb(247,229,0)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1135.50"></text></g><g><title>scheduler_tick (13 samples, 0.28%)</title><rect x="65.7596%" y="1109" width="0.2786%" height="15" fill="rgb(237,194,15)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1119.50"></text></g><g><title>perf_event_task_tick (13 samples, 0.28%)</title><rect x="65.7596%" y="1093" width="0.2786%" height="15" fill="rgb(219,203,20)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1103.50"></text></g><g><title>perf_pmu_disable.part.0 (13 samples, 0.28%)</title><rect x="65.7596%" y="1077" width="0.2786%" height="15" fill="rgb(234,128,8)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1087.50"></text></g><g><title>x86_pmu_disable (13 samples, 0.28%)</title><rect x="65.7596%" y="1061" width="0.2786%" height="15" fill="rgb(248,202,8)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1071.50"></text></g><g><title>amd_pmu_disable_all (13 samples, 0.28%)</title><rect x="65.7596%" y="1045" width="0.2786%" height="15" fill="rgb(206,104,37)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1055.50"></text></g><g><title>amd_pmu_wait_on_overflow (13 samples, 0.28%)</title><rect x="65.7596%" y="1029" width="0.2786%" height="15" fill="rgb(223,8,27)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1039.50"></text></g><g><title>native_read_msr (13 samples, 0.28%)</title><rect x="65.7596%" y="1013" width="0.2786%" height="15" fill="rgb(216,217,28)" fg:x="3069" fg:w="13"/><text x="66.0096%" y="1023.50"></text></g><g><title>pty_write (105 samples, 2.25%)</title><rect x="63.8097%" y="1301" width="2.2498%" height="15" fill="rgb(249,199,1)" fg:x="2978" fg:w="105"/><text x="64.0597%" y="1311.50">p..</text></g><g><title>tty_flip_buffer_push (97 samples, 2.08%)</title><rect x="63.9811%" y="1285" width="2.0784%" height="15" fill="rgb(240,85,17)" fg:x="2986" fg:w="97"/><text x="64.2311%" y="1295.50">t..</text></g><g><title>queue_work_on (97 samples, 2.08%)</title><rect x="63.9811%" y="1269" width="2.0784%" height="15" fill="rgb(206,108,45)" fg:x="2986" fg:w="97"/><text x="64.2311%" y="1279.50">q..</text></g><g><title>asm_sysvec_apic_timer_interrupt (14 samples, 0.30%)</title><rect x="65.7596%" y="1253" width="0.3000%" height="15" fill="rgb(245,210,41)" fg:x="3069" fg:w="14"/><text x="66.0096%" y="1263.50"></text></g><g><title>sysvec_apic_timer_interrupt (14 samples, 0.30%)</title><rect x="65.7596%" y="1237" width="0.3000%" height="15" fill="rgb(206,13,37)" fg:x="3069" fg:w="14"/><text x="66.0096%" y="1247.50"></text></g><g><title>asm_call_sysvec_on_stack (14 samples, 0.30%)</title><rect x="65.7596%" y="1221" width="0.3000%" height="15" fill="rgb(250,61,18)" fg:x="3069" fg:w="14"/><text x="66.0096%" y="1231.50"></text></g><g><title>__sysvec_apic_timer_interrupt (14 samples, 0.30%)</title><rect x="65.7596%" y="1205" width="0.3000%" height="15" fill="rgb(235,172,48)" fg:x="3069" fg:w="14"/><text x="66.0096%" y="1215.50"></text></g><g><title>hrtimer_interrupt (14 samples, 0.30%)</title><rect x="65.7596%" y="1189" width="0.3000%" height="15" fill="rgb(249,201,17)" fg:x="3069" fg:w="14"/><text x="66.0096%" y="1199.50"></text></g><g><title>tick_program_event (1 samples, 0.02%)</title><rect x="66.0381%" y="1173" width="0.0214%" height="15" fill="rgb(219,208,6)" fg:x="3082" fg:w="1"/><text x="66.2881%" y="1183.50"></text></g><g><title>clockevents_program_event (1 samples, 0.02%)</title><rect x="66.0381%" y="1157" width="0.0214%" height="15" fill="rgb(248,31,23)" fg:x="3082" fg:w="1"/><text x="66.2881%" y="1167.50"></text></g><g><title>lapic_next_event (1 samples, 0.02%)</title><rect x="66.0381%" y="1141" width="0.0214%" height="15" fill="rgb(245,15,42)" fg:x="3082" fg:w="1"/><text x="66.2881%" y="1151.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="66.0381%" y="1125" width="0.0214%" height="15" fill="rgb(222,217,39)" fg:x="3082" fg:w="1"/><text x="66.2881%" y="1135.50"></text></g><g><title>n_tty_write (112 samples, 2.40%)</title><rect x="63.6812%" y="1317" width="2.3998%" height="15" fill="rgb(210,219,27)" fg:x="2972" fg:w="112"/><text x="63.9312%" y="1327.50">n_..</text></g><g><title>tty_write_room (1 samples, 0.02%)</title><rect x="66.0596%" y="1301" width="0.0214%" height="15" fill="rgb(252,166,36)" fg:x="3083" fg:w="1"/><text x="66.3096%" y="1311.50"></text></g><g><title>tty_buffer_space_avail (1 samples, 0.02%)</title><rect x="66.0596%" y="1285" width="0.0214%" height="15" fill="rgb(245,132,34)" fg:x="3083" fg:w="1"/><text x="66.3096%" y="1295.50"></text></g><g><title>new_sync_write (128 samples, 2.74%)</title><rect x="63.3812%" y="1365" width="2.7427%" height="15" fill="rgb(236,54,3)" fg:x="2958" fg:w="128"/><text x="63.6312%" y="1375.50">ne..</text></g><g><title>tty_write (128 samples, 2.74%)</title><rect x="63.3812%" y="1349" width="2.7427%" height="15" fill="rgb(241,173,43)" fg:x="2958" fg:w="128"/><text x="63.6312%" y="1359.50">tt..</text></g><g><title>file_tty_write.isra.0 (127 samples, 2.72%)</title><rect x="63.4026%" y="1333" width="2.7212%" height="15" fill="rgb(215,190,9)" fg:x="2959" fg:w="127"/><text x="63.6526%" y="1343.50">fi..</text></g><g><title>up_read (2 samples, 0.04%)</title><rect x="66.0810%" y="1317" width="0.0429%" height="15" fill="rgb(242,101,16)" fg:x="3084" fg:w="2"/><text x="66.3310%" y="1327.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="66.1024%" y="1301" width="0.0214%" height="15" fill="rgb(223,190,21)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1311.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="66.1024%" y="1285" width="0.0214%" height="15" fill="rgb(215,228,25)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1295.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="66.1024%" y="1269" width="0.0214%" height="15" fill="rgb(225,36,22)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1279.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="66.1024%" y="1253" width="0.0214%" height="15" fill="rgb(251,106,46)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1263.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="66.1024%" y="1237" width="0.0214%" height="15" fill="rgb(208,90,1)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1247.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="66.1024%" y="1221" width="0.0214%" height="15" fill="rgb(243,10,4)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1231.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="66.1024%" y="1205" width="0.0214%" height="15" fill="rgb(212,137,27)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1215.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="66.1024%" y="1189" width="0.0214%" height="15" fill="rgb(231,220,49)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1199.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="66.1024%" y="1173" width="0.0214%" height="15" fill="rgb(237,96,20)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1183.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="66.1024%" y="1157" width="0.0214%" height="15" fill="rgb(239,229,30)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1167.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="66.1024%" y="1141" width="0.0214%" height="15" fill="rgb(219,65,33)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1151.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="66.1024%" y="1125" width="0.0214%" height="15" fill="rgb(243,134,7)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1135.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="66.1024%" y="1109" width="0.0214%" height="15" fill="rgb(216,177,54)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1119.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="66.1024%" y="1093" width="0.0214%" height="15" fill="rgb(211,160,20)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1103.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="66.1024%" y="1077" width="0.0214%" height="15" fill="rgb(239,85,39)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1087.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="66.1024%" y="1061" width="0.0214%" height="15" fill="rgb(232,125,22)" fg:x="3085" fg:w="1"/><text x="66.3524%" y="1071.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="66.1453%" y="1237" width="0.0214%" height="15" fill="rgb(244,57,34)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1247.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="66.1453%" y="1221" width="0.0214%" height="15" fill="rgb(214,203,32)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1231.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="66.1453%" y="1205" width="0.0214%" height="15" fill="rgb(207,58,43)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1215.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="66.1453%" y="1189" width="0.0214%" height="15" fill="rgb(215,193,15)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1199.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="66.1453%" y="1173" width="0.0214%" height="15" fill="rgb(232,15,44)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1183.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="66.1453%" y="1157" width="0.0214%" height="15" fill="rgb(212,3,48)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1167.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="66.1453%" y="1141" width="0.0214%" height="15" fill="rgb(218,128,7)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1151.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="66.1453%" y="1125" width="0.0214%" height="15" fill="rgb(226,216,39)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1135.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="66.1453%" y="1109" width="0.0214%" height="15" fill="rgb(243,47,51)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1119.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="66.1453%" y="1093" width="0.0214%" height="15" fill="rgb(241,183,40)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1103.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="66.1453%" y="1077" width="0.0214%" height="15" fill="rgb(231,217,32)" fg:x="3087" fg:w="1"/><text x="66.3953%" y="1087.50"></text></g><g><title>rw_verify_area (3 samples, 0.06%)</title><rect x="66.1238%" y="1365" width="0.0643%" height="15" fill="rgb(229,61,38)" fg:x="3086" fg:w="3"/><text x="66.3738%" y="1375.50"></text></g><g><title>security_file_permission (3 samples, 0.06%)</title><rect x="66.1238%" y="1349" width="0.0643%" height="15" fill="rgb(225,210,5)" fg:x="3086" fg:w="3"/><text x="66.3738%" y="1359.50"></text></g><g><title>common_file_perm (3 samples, 0.06%)</title><rect x="66.1238%" y="1333" width="0.0643%" height="15" fill="rgb(231,79,45)" fg:x="3086" fg:w="3"/><text x="66.3738%" y="1343.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="66.1453%" y="1317" width="0.0429%" height="15" fill="rgb(224,100,7)" fg:x="3087" fg:w="2"/><text x="66.3953%" y="1327.50"></text></g><g><title>sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="66.1453%" y="1301" width="0.0429%" height="15" fill="rgb(241,198,18)" fg:x="3087" fg:w="2"/><text x="66.3953%" y="1311.50"></text></g><g><title>asm_call_sysvec_on_stack (2 samples, 0.04%)</title><rect x="66.1453%" y="1285" width="0.0429%" height="15" fill="rgb(252,97,53)" fg:x="3087" fg:w="2"/><text x="66.3953%" y="1295.50"></text></g><g><title>__sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="66.1453%" y="1269" width="0.0429%" height="15" fill="rgb(220,88,7)" fg:x="3087" fg:w="2"/><text x="66.3953%" y="1279.50"></text></g><g><title>hrtimer_interrupt (2 samples, 0.04%)</title><rect x="66.1453%" y="1253" width="0.0429%" height="15" fill="rgb(213,176,14)" fg:x="3087" fg:w="2"/><text x="66.3953%" y="1263.50"></text></g><g><title>tick_program_event (1 samples, 0.02%)</title><rect x="66.1667%" y="1237" width="0.0214%" height="15" fill="rgb(246,73,7)" fg:x="3088" fg:w="1"/><text x="66.4167%" y="1247.50"></text></g><g><title>clockevents_program_event (1 samples, 0.02%)</title><rect x="66.1667%" y="1221" width="0.0214%" height="15" fill="rgb(245,64,36)" fg:x="3088" fg:w="1"/><text x="66.4167%" y="1231.50"></text></g><g><title>lapic_next_event (1 samples, 0.02%)</title><rect x="66.1667%" y="1205" width="0.0214%" height="15" fill="rgb(245,80,10)" fg:x="3088" fg:w="1"/><text x="66.4167%" y="1215.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="66.1667%" y="1189" width="0.0214%" height="15" fill="rgb(232,107,50)" fg:x="3088" fg:w="1"/><text x="66.4167%" y="1199.50"></text></g><g><title>security_file_permission (1 samples, 0.02%)</title><rect x="66.1881%" y="1365" width="0.0214%" height="15" fill="rgb(253,3,0)" fg:x="3089" fg:w="1"/><text x="66.4381%" y="1375.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::flush (141 samples, 3.02%)</title><rect x="63.2098%" y="1605" width="3.0212%" height="15" fill="rgb(212,99,53)" fg:x="2950" fg:w="141"/><text x="63.4598%" y="1615.50">&lt;st..</text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::flush (141 samples, 3.02%)</title><rect x="63.2098%" y="1589" width="3.0212%" height="15" fill="rgb(249,111,54)" fg:x="2950" fg:w="141"/><text x="63.4598%" y="1599.50">&lt;&amp;s..</text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::flush (140 samples, 3.00%)</title><rect x="63.2312%" y="1573" width="2.9998%" height="15" fill="rgb(249,55,30)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1583.50">&lt;st..</text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::flush (140 samples, 3.00%)</title><rect x="63.2312%" y="1557" width="2.9998%" height="15" fill="rgb(237,47,42)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1567.50">&lt;st..</text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::flush (140 samples, 3.00%)</title><rect x="63.2312%" y="1541" width="2.9998%" height="15" fill="rgb(211,20,18)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1551.50">&lt;st..</text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (140 samples, 3.00%)</title><rect x="63.2312%" y="1525" width="2.9998%" height="15" fill="rgb(231,203,46)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1535.50">std..</text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (140 samples, 3.00%)</title><rect x="63.2312%" y="1509" width="2.9998%" height="15" fill="rgb(237,142,3)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1519.50">&lt;st..</text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (140 samples, 3.00%)</title><rect x="63.2312%" y="1493" width="2.9998%" height="15" fill="rgb(241,107,1)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1503.50">&lt;st..</text></g><g><title>std::sys::unix::fd::FileDesc::write (140 samples, 3.00%)</title><rect x="63.2312%" y="1477" width="2.9998%" height="15" fill="rgb(229,83,13)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1487.50">std..</text></g><g><title>__libc_write (140 samples, 3.00%)</title><rect x="63.2312%" y="1461" width="2.9998%" height="15" fill="rgb(241,91,40)" fg:x="2951" fg:w="140"/><text x="63.4812%" y="1471.50">__l..</text></g><g><title>entry_SYSCALL_64_after_hwframe (139 samples, 2.98%)</title><rect x="63.2526%" y="1445" width="2.9784%" height="15" fill="rgb(225,3,45)" fg:x="2952" fg:w="139"/><text x="63.5026%" y="1455.50">ent..</text></g><g><title>do_syscall_64 (138 samples, 2.96%)</title><rect x="63.2741%" y="1429" width="2.9569%" height="15" fill="rgb(244,223,14)" fg:x="2953" fg:w="138"/><text x="63.5241%" y="1439.50">do_..</text></g><g><title>__x64_sys_write (138 samples, 2.96%)</title><rect x="63.2741%" y="1413" width="2.9569%" height="15" fill="rgb(224,124,37)" fg:x="2953" fg:w="138"/><text x="63.5241%" y="1423.50">__x..</text></g><g><title>ksys_write (138 samples, 2.96%)</title><rect x="63.2741%" y="1397" width="2.9569%" height="15" fill="rgb(251,171,30)" fg:x="2953" fg:w="138"/><text x="63.5241%" y="1407.50">ksy..</text></g><g><title>vfs_write (136 samples, 2.91%)</title><rect x="63.3169%" y="1381" width="2.9141%" height="15" fill="rgb(236,46,54)" fg:x="2955" fg:w="136"/><text x="63.5669%" y="1391.50">vf..</text></g><g><title>tty_write (1 samples, 0.02%)</title><rect x="66.2096%" y="1365" width="0.0214%" height="15" fill="rgb(245,213,5)" fg:x="3090" fg:w="1"/><text x="66.4596%" y="1375.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&lt;&amp;usize&gt;&gt;::add_assign (18 samples, 0.39%)</title><rect x="66.2310%" y="1605" width="0.3857%" height="15" fill="rgb(230,144,27)" fg:x="3091" fg:w="18"/><text x="66.4810%" y="1615.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&gt;::add_assign (18 samples, 0.39%)</title><rect x="66.2310%" y="1589" width="0.3857%" height="15" fill="rgb(220,86,6)" fg:x="3091" fg:w="18"/><text x="66.4810%" y="1599.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="66.5738%" y="1573" width="0.0429%" height="15" fill="rgb(240,20,13)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1583.50"></text></g><g><title>sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="66.5738%" y="1557" width="0.0429%" height="15" fill="rgb(217,89,34)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1567.50"></text></g><g><title>__sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="66.5738%" y="1541" width="0.0429%" height="15" fill="rgb(229,13,5)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1551.50"></text></g><g><title>hrtimer_interrupt (2 samples, 0.04%)</title><rect x="66.5738%" y="1525" width="0.0429%" height="15" fill="rgb(244,67,35)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1535.50"></text></g><g><title>__hrtimer_run_queues (2 samples, 0.04%)</title><rect x="66.5738%" y="1509" width="0.0429%" height="15" fill="rgb(221,40,2)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1519.50"></text></g><g><title>tick_sched_timer (2 samples, 0.04%)</title><rect x="66.5738%" y="1493" width="0.0429%" height="15" fill="rgb(237,157,21)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1503.50"></text></g><g><title>tick_sched_handle.isra.0 (2 samples, 0.04%)</title><rect x="66.5738%" y="1477" width="0.0429%" height="15" fill="rgb(222,94,11)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1487.50"></text></g><g><title>update_process_times (2 samples, 0.04%)</title><rect x="66.5738%" y="1461" width="0.0429%" height="15" fill="rgb(249,113,6)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1471.50"></text></g><g><title>scheduler_tick (2 samples, 0.04%)</title><rect x="66.5738%" y="1445" width="0.0429%" height="15" fill="rgb(238,137,36)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1455.50"></text></g><g><title>perf_event_task_tick (2 samples, 0.04%)</title><rect x="66.5738%" y="1429" width="0.0429%" height="15" fill="rgb(210,102,26)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1439.50"></text></g><g><title>perf_pmu_disable.part.0 (2 samples, 0.04%)</title><rect x="66.5738%" y="1413" width="0.0429%" height="15" fill="rgb(218,30,30)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1423.50"></text></g><g><title>x86_pmu_disable (2 samples, 0.04%)</title><rect x="66.5738%" y="1397" width="0.0429%" height="15" fill="rgb(214,67,26)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1407.50"></text></g><g><title>amd_pmu_disable_all (2 samples, 0.04%)</title><rect x="66.5738%" y="1381" width="0.0429%" height="15" fill="rgb(251,9,53)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (2 samples, 0.04%)</title><rect x="66.5738%" y="1365" width="0.0429%" height="15" fill="rgb(228,204,25)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1375.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="66.5738%" y="1349" width="0.0429%" height="15" fill="rgb(207,153,8)" fg:x="3107" fg:w="2"/><text x="66.8238%" y="1359.50"></text></g><g><title>__sysvec_apic_timer_interrupt (53 samples, 1.14%)</title><rect x="66.6381%" y="1573" width="1.1356%" height="15" fill="rgb(242,9,16)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1583.50"></text></g><g><title>hrtimer_interrupt (53 samples, 1.14%)</title><rect x="66.6381%" y="1557" width="1.1356%" height="15" fill="rgb(217,211,10)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1567.50"></text></g><g><title>__hrtimer_run_queues (53 samples, 1.14%)</title><rect x="66.6381%" y="1541" width="1.1356%" height="15" fill="rgb(219,228,52)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1551.50"></text></g><g><title>tick_sched_timer (53 samples, 1.14%)</title><rect x="66.6381%" y="1525" width="1.1356%" height="15" fill="rgb(231,92,29)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1535.50"></text></g><g><title>tick_sched_handle.isra.0 (53 samples, 1.14%)</title><rect x="66.6381%" y="1509" width="1.1356%" height="15" fill="rgb(232,8,23)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1519.50"></text></g><g><title>update_process_times (53 samples, 1.14%)</title><rect x="66.6381%" y="1493" width="1.1356%" height="15" fill="rgb(216,211,34)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1503.50"></text></g><g><title>scheduler_tick (53 samples, 1.14%)</title><rect x="66.6381%" y="1477" width="1.1356%" height="15" fill="rgb(236,151,0)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1487.50"></text></g><g><title>perf_event_task_tick (53 samples, 1.14%)</title><rect x="66.6381%" y="1461" width="1.1356%" height="15" fill="rgb(209,168,3)" fg:x="3110" fg:w="53"/><text x="66.8881%" y="1471.50"></text></g><g><title>perf_pmu_disable.part.0 (52 samples, 1.11%)</title><rect x="66.6595%" y="1445" width="1.1142%" height="15" fill="rgb(208,129,28)" fg:x="3111" fg:w="52"/><text x="66.9095%" y="1455.50"></text></g><g><title>x86_pmu_disable (52 samples, 1.11%)</title><rect x="66.6595%" y="1429" width="1.1142%" height="15" fill="rgb(229,78,22)" fg:x="3111" fg:w="52"/><text x="66.9095%" y="1439.50"></text></g><g><title>amd_pmu_disable_all (52 samples, 1.11%)</title><rect x="66.6595%" y="1413" width="1.1142%" height="15" fill="rgb(228,187,13)" fg:x="3111" fg:w="52"/><text x="66.9095%" y="1423.50"></text></g><g><title>amd_pmu_wait_on_overflow (52 samples, 1.11%)</title><rect x="66.6595%" y="1397" width="1.1142%" height="15" fill="rgb(240,119,24)" fg:x="3111" fg:w="52"/><text x="66.9095%" y="1407.50"></text></g><g><title>native_read_msr (52 samples, 1.11%)</title><rect x="66.6595%" y="1381" width="1.1142%" height="15" fill="rgb(209,194,42)" fg:x="3111" fg:w="52"/><text x="66.9095%" y="1391.50"></text></g><g><title>idtentry_exit_cond_rcu (1 samples, 0.02%)</title><rect x="67.7737%" y="1573" width="0.0214%" height="15" fill="rgb(247,200,46)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1583.50"></text></g><g><title>prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="67.7737%" y="1557" width="0.0214%" height="15" fill="rgb(218,76,16)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1567.50"></text></g><g><title>__prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="67.7737%" y="1541" width="0.0214%" height="15" fill="rgb(225,21,48)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1551.50"></text></g><g><title>schedule (1 samples, 0.02%)</title><rect x="67.7737%" y="1525" width="0.0214%" height="15" fill="rgb(239,223,50)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1535.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="67.7737%" y="1509" width="0.0214%" height="15" fill="rgb(244,45,21)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1519.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="67.7737%" y="1493" width="0.0214%" height="15" fill="rgb(232,33,43)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1503.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="67.7737%" y="1477" width="0.0214%" height="15" fill="rgb(209,8,3)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1487.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="67.7737%" y="1461" width="0.0214%" height="15" fill="rgb(214,25,53)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1471.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="67.7737%" y="1445" width="0.0214%" height="15" fill="rgb(254,186,54)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1455.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="67.7737%" y="1429" width="0.0214%" height="15" fill="rgb(208,174,49)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1439.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="67.7737%" y="1413" width="0.0214%" height="15" fill="rgb(233,191,51)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1423.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="67.7737%" y="1397" width="0.0214%" height="15" fill="rgb(222,134,10)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1407.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="67.7737%" y="1381" width="0.0214%" height="15" fill="rgb(230,226,20)" fg:x="3163" fg:w="1"/><text x="68.0237%" y="1391.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (56 samples, 1.20%)</title><rect x="66.6167%" y="1605" width="1.1999%" height="15" fill="rgb(251,111,25)" fg:x="3109" fg:w="56"/><text x="66.8667%" y="1615.50"></text></g><g><title>sysvec_apic_timer_interrupt (55 samples, 1.18%)</title><rect x="66.6381%" y="1589" width="1.1785%" height="15" fill="rgb(224,40,46)" fg:x="3110" fg:w="55"/><text x="66.8881%" y="1599.50"></text></g><g><title>native_apic_msr_eoi_write (1 samples, 0.02%)</title><rect x="67.7952%" y="1573" width="0.0214%" height="15" fill="rgb(236,108,47)" fg:x="3164" fg:w="1"/><text x="68.0452%" y="1583.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (49 samples, 1.05%)</title><rect x="81.9584%" y="1589" width="1.0499%" height="15" fill="rgb(234,93,0)" fg:x="3825" fg:w="49"/><text x="82.2084%" y="1599.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (6 samples, 0.13%)</title><rect x="82.8798%" y="1573" width="0.1286%" height="15" fill="rgb(224,213,32)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1583.50"></text></g><g><title>sysvec_apic_timer_interrupt (6 samples, 0.13%)</title><rect x="82.8798%" y="1557" width="0.1286%" height="15" fill="rgb(251,11,48)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1567.50"></text></g><g><title>__sysvec_apic_timer_interrupt (6 samples, 0.13%)</title><rect x="82.8798%" y="1541" width="0.1286%" height="15" fill="rgb(236,173,5)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1551.50"></text></g><g><title>hrtimer_interrupt (6 samples, 0.13%)</title><rect x="82.8798%" y="1525" width="0.1286%" height="15" fill="rgb(230,95,12)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1535.50"></text></g><g><title>__hrtimer_run_queues (6 samples, 0.13%)</title><rect x="82.8798%" y="1509" width="0.1286%" height="15" fill="rgb(232,209,1)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1519.50"></text></g><g><title>tick_sched_timer (6 samples, 0.13%)</title><rect x="82.8798%" y="1493" width="0.1286%" height="15" fill="rgb(232,6,1)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1503.50"></text></g><g><title>tick_sched_handle.isra.0 (6 samples, 0.13%)</title><rect x="82.8798%" y="1477" width="0.1286%" height="15" fill="rgb(210,224,50)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1487.50"></text></g><g><title>update_process_times (6 samples, 0.13%)</title><rect x="82.8798%" y="1461" width="0.1286%" height="15" fill="rgb(228,127,35)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1471.50"></text></g><g><title>scheduler_tick (6 samples, 0.13%)</title><rect x="82.8798%" y="1445" width="0.1286%" height="15" fill="rgb(245,102,45)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1455.50"></text></g><g><title>perf_event_task_tick (6 samples, 0.13%)</title><rect x="82.8798%" y="1429" width="0.1286%" height="15" fill="rgb(214,1,49)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1439.50"></text></g><g><title>perf_pmu_disable.part.0 (6 samples, 0.13%)</title><rect x="82.8798%" y="1413" width="0.1286%" height="15" fill="rgb(226,163,40)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1423.50"></text></g><g><title>x86_pmu_disable (6 samples, 0.13%)</title><rect x="82.8798%" y="1397" width="0.1286%" height="15" fill="rgb(239,212,28)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1407.50"></text></g><g><title>amd_pmu_disable_all (6 samples, 0.13%)</title><rect x="82.8798%" y="1381" width="0.1286%" height="15" fill="rgb(220,20,13)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (6 samples, 0.13%)</title><rect x="82.8798%" y="1365" width="0.1286%" height="15" fill="rgb(210,164,35)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1375.50"></text></g><g><title>native_read_msr (6 samples, 0.13%)</title><rect x="82.8798%" y="1349" width="0.1286%" height="15" fill="rgb(248,109,41)" fg:x="3868" fg:w="6"/><text x="83.1298%" y="1359.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="83.0512%" y="1573" width="0.0214%" height="15" fill="rgb(238,23,50)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1583.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="83.0512%" y="1557" width="0.0214%" height="15" fill="rgb(211,48,49)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1567.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="83.0512%" y="1541" width="0.0214%" height="15" fill="rgb(223,36,21)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1551.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="83.0512%" y="1525" width="0.0214%" height="15" fill="rgb(207,123,46)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1535.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="83.0512%" y="1509" width="0.0214%" height="15" fill="rgb(240,218,32)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1519.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="83.0512%" y="1493" width="0.0214%" height="15" fill="rgb(252,5,43)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1503.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="83.0512%" y="1477" width="0.0214%" height="15" fill="rgb(252,84,19)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1487.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="83.0512%" y="1461" width="0.0214%" height="15" fill="rgb(243,152,39)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1471.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="83.0512%" y="1445" width="0.0214%" height="15" fill="rgb(234,160,15)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1455.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="83.0512%" y="1429" width="0.0214%" height="15" fill="rgb(237,34,20)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1439.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="83.0512%" y="1413" width="0.0214%" height="15" fill="rgb(229,97,13)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1423.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="83.0512%" y="1397" width="0.0214%" height="15" fill="rgb(234,71,50)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1407.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="83.0512%" y="1381" width="0.0214%" height="15" fill="rgb(253,155,4)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="83.0512%" y="1365" width="0.0214%" height="15" fill="rgb(222,185,37)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1375.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="83.0512%" y="1349" width="0.0214%" height="15" fill="rgb(251,177,13)" fg:x="3876" fg:w="1"/><text x="83.3012%" y="1359.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (25 samples, 0.54%)</title><rect x="83.0084%" y="1589" width="0.5357%" height="15" fill="rgb(250,179,40)" fg:x="3874" fg:w="25"/><text x="83.2584%" y="1599.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (22 samples, 0.47%)</title><rect x="83.0726%" y="1573" width="0.4714%" height="15" fill="rgb(242,44,2)" fg:x="3877" fg:w="22"/><text x="83.3226%" y="1583.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (22 samples, 0.47%)</title><rect x="83.0726%" y="1557" width="0.4714%" height="15" fill="rgb(216,177,13)" fg:x="3877" fg:w="22"/><text x="83.3226%" y="1567.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="83.5012%" y="1541" width="0.0429%" height="15" fill="rgb(216,106,43)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1551.50"></text></g><g><title>sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="83.5012%" y="1525" width="0.0429%" height="15" fill="rgb(216,183,2)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1535.50"></text></g><g><title>__sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="83.5012%" y="1509" width="0.0429%" height="15" fill="rgb(249,75,3)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1519.50"></text></g><g><title>hrtimer_interrupt (2 samples, 0.04%)</title><rect x="83.5012%" y="1493" width="0.0429%" height="15" fill="rgb(219,67,39)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1503.50"></text></g><g><title>__hrtimer_run_queues (2 samples, 0.04%)</title><rect x="83.5012%" y="1477" width="0.0429%" height="15" fill="rgb(253,228,2)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1487.50"></text></g><g><title>tick_sched_timer (2 samples, 0.04%)</title><rect x="83.5012%" y="1461" width="0.0429%" height="15" fill="rgb(235,138,27)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1471.50"></text></g><g><title>tick_sched_handle.isra.0 (2 samples, 0.04%)</title><rect x="83.5012%" y="1445" width="0.0429%" height="15" fill="rgb(236,97,51)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1455.50"></text></g><g><title>update_process_times (2 samples, 0.04%)</title><rect x="83.5012%" y="1429" width="0.0429%" height="15" fill="rgb(240,80,30)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1439.50"></text></g><g><title>scheduler_tick (2 samples, 0.04%)</title><rect x="83.5012%" y="1413" width="0.0429%" height="15" fill="rgb(230,178,19)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1423.50"></text></g><g><title>perf_event_task_tick (2 samples, 0.04%)</title><rect x="83.5012%" y="1397" width="0.0429%" height="15" fill="rgb(210,190,27)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1407.50"></text></g><g><title>perf_pmu_disable.part.0 (2 samples, 0.04%)</title><rect x="83.5012%" y="1381" width="0.0429%" height="15" fill="rgb(222,107,31)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1391.50"></text></g><g><title>x86_pmu_disable (2 samples, 0.04%)</title><rect x="83.5012%" y="1365" width="0.0429%" height="15" fill="rgb(216,127,34)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1375.50"></text></g><g><title>amd_pmu_disable_all (2 samples, 0.04%)</title><rect x="83.5012%" y="1349" width="0.0429%" height="15" fill="rgb(234,116,52)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1359.50"></text></g><g><title>amd_pmu_wait_on_overflow (2 samples, 0.04%)</title><rect x="83.5012%" y="1333" width="0.0429%" height="15" fill="rgb(222,124,15)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1343.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="83.5012%" y="1317" width="0.0429%" height="15" fill="rgb(231,179,28)" fg:x="3897" fg:w="2"/><text x="83.7512%" y="1327.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&lt;&amp;usize&gt;&gt;::add_assign (39 samples, 0.84%)</title><rect x="83.5440%" y="1589" width="0.8357%" height="15" fill="rgb(226,93,45)" fg:x="3899" fg:w="39"/><text x="83.7940%" y="1599.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&gt;::add_assign (39 samples, 0.84%)</title><rect x="83.5440%" y="1573" width="0.8357%" height="15" fill="rgb(215,8,51)" fg:x="3899" fg:w="39"/><text x="83.7940%" y="1583.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="84.3368%" y="1557" width="0.0429%" height="15" fill="rgb(223,106,5)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1567.50"></text></g><g><title>sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="84.3368%" y="1541" width="0.0429%" height="15" fill="rgb(250,191,5)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1551.50"></text></g><g><title>__sysvec_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="84.3368%" y="1525" width="0.0429%" height="15" fill="rgb(242,132,44)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1535.50"></text></g><g><title>hrtimer_interrupt (2 samples, 0.04%)</title><rect x="84.3368%" y="1509" width="0.0429%" height="15" fill="rgb(251,152,29)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1519.50"></text></g><g><title>__hrtimer_run_queues (2 samples, 0.04%)</title><rect x="84.3368%" y="1493" width="0.0429%" height="15" fill="rgb(218,179,5)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1503.50"></text></g><g><title>tick_sched_timer (2 samples, 0.04%)</title><rect x="84.3368%" y="1477" width="0.0429%" height="15" fill="rgb(227,67,19)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1487.50"></text></g><g><title>tick_sched_handle.isra.0 (2 samples, 0.04%)</title><rect x="84.3368%" y="1461" width="0.0429%" height="15" fill="rgb(233,119,31)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1471.50"></text></g><g><title>update_process_times (2 samples, 0.04%)</title><rect x="84.3368%" y="1445" width="0.0429%" height="15" fill="rgb(241,120,22)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1455.50"></text></g><g><title>scheduler_tick (2 samples, 0.04%)</title><rect x="84.3368%" y="1429" width="0.0429%" height="15" fill="rgb(224,102,30)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1439.50"></text></g><g><title>perf_event_task_tick (2 samples, 0.04%)</title><rect x="84.3368%" y="1413" width="0.0429%" height="15" fill="rgb(210,164,37)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1423.50"></text></g><g><title>perf_pmu_disable.part.0 (2 samples, 0.04%)</title><rect x="84.3368%" y="1397" width="0.0429%" height="15" fill="rgb(226,191,16)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1407.50"></text></g><g><title>x86_pmu_disable (2 samples, 0.04%)</title><rect x="84.3368%" y="1381" width="0.0429%" height="15" fill="rgb(214,40,45)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1391.50"></text></g><g><title>amd_pmu_disable_all (2 samples, 0.04%)</title><rect x="84.3368%" y="1365" width="0.0429%" height="15" fill="rgb(244,29,26)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1375.50"></text></g><g><title>amd_pmu_wait_on_overflow (2 samples, 0.04%)</title><rect x="84.3368%" y="1349" width="0.0429%" height="15" fill="rgb(216,16,5)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1359.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="84.3368%" y="1333" width="0.0429%" height="15" fill="rgb(249,76,35)" fg:x="3936" fg:w="2"/><text x="84.5868%" y="1343.50"></text></g><g><title>__irqentry_text_end (1 samples, 0.02%)</title><rect x="84.3797%" y="1589" width="0.0214%" height="15" fill="rgb(207,11,44)" fg:x="3938" fg:w="1"/><text x="84.6297%" y="1599.50"></text></g><g><title>__const_udelay (1 samples, 0.02%)</title><rect x="84.4011%" y="1365" width="0.0214%" height="15" fill="rgb(228,190,49)" fg:x="3939" fg:w="1"/><text x="84.6511%" y="1375.50"></text></g><g><title>delay_tsc (1 samples, 0.02%)</title><rect x="84.4011%" y="1349" width="0.0214%" height="15" fill="rgb(214,173,12)" fg:x="3939" fg:w="1"/><text x="84.6511%" y="1359.50"></text></g><g><title>amd_pmu_wait_on_overflow (98 samples, 2.10%)</title><rect x="84.4011%" y="1381" width="2.0999%" height="15" fill="rgb(218,26,35)" fg:x="3939" fg:w="98"/><text x="84.6511%" y="1391.50">a..</text></g><g><title>native_read_msr (97 samples, 2.08%)</title><rect x="84.4225%" y="1365" width="2.0784%" height="15" fill="rgb(220,200,19)" fg:x="3940" fg:w="97"/><text x="84.6725%" y="1375.50">n..</text></g><g><title>perf_event_task_tick (99 samples, 2.12%)</title><rect x="84.4011%" y="1445" width="2.1213%" height="15" fill="rgb(239,95,49)" fg:x="3939" fg:w="99"/><text x="84.6511%" y="1455.50">p..</text></g><g><title>perf_pmu_disable.part.0 (99 samples, 2.12%)</title><rect x="84.4011%" y="1429" width="2.1213%" height="15" fill="rgb(235,85,53)" fg:x="3939" fg:w="99"/><text x="84.6511%" y="1439.50">p..</text></g><g><title>x86_pmu_disable (99 samples, 2.12%)</title><rect x="84.4011%" y="1413" width="2.1213%" height="15" fill="rgb(233,133,31)" fg:x="3939" fg:w="99"/><text x="84.6511%" y="1423.50">x..</text></g><g><title>amd_pmu_disable_all (99 samples, 2.12%)</title><rect x="84.4011%" y="1397" width="2.1213%" height="15" fill="rgb(218,25,20)" fg:x="3939" fg:w="99"/><text x="84.6511%" y="1407.50">a..</text></g><g><title>x86_pmu_disable_all (1 samples, 0.02%)</title><rect x="86.5010%" y="1381" width="0.0214%" height="15" fill="rgb(252,210,38)" fg:x="4037" fg:w="1"/><text x="86.7510%" y="1391.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="86.5010%" y="1365" width="0.0214%" height="15" fill="rgb(242,134,21)" fg:x="4037" fg:w="1"/><text x="86.7510%" y="1375.50"></text></g><g><title>__sysvec_apic_timer_interrupt (100 samples, 2.14%)</title><rect x="84.4011%" y="1557" width="2.1427%" height="15" fill="rgb(213,28,48)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1567.50">_..</text></g><g><title>hrtimer_interrupt (100 samples, 2.14%)</title><rect x="84.4011%" y="1541" width="2.1427%" height="15" fill="rgb(250,196,2)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1551.50">h..</text></g><g><title>__hrtimer_run_queues (100 samples, 2.14%)</title><rect x="84.4011%" y="1525" width="2.1427%" height="15" fill="rgb(227,5,17)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1535.50">_..</text></g><g><title>tick_sched_timer (100 samples, 2.14%)</title><rect x="84.4011%" y="1509" width="2.1427%" height="15" fill="rgb(221,226,24)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1519.50">t..</text></g><g><title>tick_sched_handle.isra.0 (100 samples, 2.14%)</title><rect x="84.4011%" y="1493" width="2.1427%" height="15" fill="rgb(211,5,48)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1503.50">t..</text></g><g><title>update_process_times (100 samples, 2.14%)</title><rect x="84.4011%" y="1477" width="2.1427%" height="15" fill="rgb(219,150,6)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1487.50">u..</text></g><g><title>scheduler_tick (100 samples, 2.14%)</title><rect x="84.4011%" y="1461" width="2.1427%" height="15" fill="rgb(251,46,16)" fg:x="3939" fg:w="100"/><text x="84.6511%" y="1471.50">s..</text></g><g><title>task_tick_fair (1 samples, 0.02%)</title><rect x="86.5224%" y="1445" width="0.0214%" height="15" fill="rgb(220,204,40)" fg:x="4038" fg:w="1"/><text x="86.7724%" y="1455.50"></text></g><g><title>update_load_avg (1 samples, 0.02%)</title><rect x="86.5224%" y="1429" width="0.0214%" height="15" fill="rgb(211,85,2)" fg:x="4038" fg:w="1"/><text x="86.7724%" y="1439.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (101 samples, 2.16%)</title><rect x="84.4011%" y="1589" width="2.1641%" height="15" fill="rgb(229,17,7)" fg:x="3939" fg:w="101"/><text x="84.6511%" y="1599.50">a..</text></g><g><title>sysvec_apic_timer_interrupt (101 samples, 2.16%)</title><rect x="84.4011%" y="1573" width="2.1641%" height="15" fill="rgb(239,72,28)" fg:x="3939" fg:w="101"/><text x="84.6511%" y="1583.50">s..</text></g><g><title>idtentry_exit_cond_rcu (1 samples, 0.02%)</title><rect x="86.5438%" y="1557" width="0.0214%" height="15" fill="rgb(230,47,54)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1567.50"></text></g><g><title>prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="86.5438%" y="1541" width="0.0214%" height="15" fill="rgb(214,50,8)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1551.50"></text></g><g><title>__prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="86.5438%" y="1525" width="0.0214%" height="15" fill="rgb(216,198,43)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1535.50"></text></g><g><title>schedule (1 samples, 0.02%)</title><rect x="86.5438%" y="1509" width="0.0214%" height="15" fill="rgb(234,20,35)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1519.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="86.5438%" y="1493" width="0.0214%" height="15" fill="rgb(254,45,19)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1503.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="86.5438%" y="1477" width="0.0214%" height="15" fill="rgb(219,14,44)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1487.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="86.5438%" y="1461" width="0.0214%" height="15" fill="rgb(217,220,26)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1471.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="86.5438%" y="1445" width="0.0214%" height="15" fill="rgb(213,158,28)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1455.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="86.5438%" y="1429" width="0.0214%" height="15" fill="rgb(252,51,52)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1439.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="86.5438%" y="1413" width="0.0214%" height="15" fill="rgb(246,89,16)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1423.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="86.5438%" y="1397" width="0.0214%" height="15" fill="rgb(216,158,49)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1407.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="86.5438%" y="1381" width="0.0214%" height="15" fill="rgb(236,107,19)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1391.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="86.5438%" y="1365" width="0.0214%" height="15" fill="rgb(228,185,30)" fg:x="4039" fg:w="1"/><text x="86.7938%" y="1375.50"></text></g><g><title>asm_sysvec_irq_work (1 samples, 0.02%)</title><rect x="86.5652%" y="1589" width="0.0214%" height="15" fill="rgb(246,134,8)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1599.50"></text></g><g><title>sysvec_irq_work (1 samples, 0.02%)</title><rect x="86.5652%" y="1573" width="0.0214%" height="15" fill="rgb(214,143,50)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1583.50"></text></g><g><title>__sysvec_irq_work (1 samples, 0.02%)</title><rect x="86.5652%" y="1557" width="0.0214%" height="15" fill="rgb(228,75,8)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1567.50"></text></g><g><title>irq_work_run (1 samples, 0.02%)</title><rect x="86.5652%" y="1541" width="0.0214%" height="15" fill="rgb(207,175,4)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1551.50"></text></g><g><title>irq_work_run_list (1 samples, 0.02%)</title><rect x="86.5652%" y="1525" width="0.0214%" height="15" fill="rgb(205,108,24)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1535.50"></text></g><g><title>irq_work_single (1 samples, 0.02%)</title><rect x="86.5652%" y="1509" width="0.0214%" height="15" fill="rgb(244,120,49)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1519.50"></text></g><g><title>perf_pending_event (1 samples, 0.02%)</title><rect x="86.5652%" y="1493" width="0.0214%" height="15" fill="rgb(223,47,38)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1503.50"></text></g><g><title>perf_event_wakeup (1 samples, 0.02%)</title><rect x="86.5652%" y="1477" width="0.0214%" height="15" fill="rgb(229,179,11)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1487.50"></text></g><g><title>__wake_up (1 samples, 0.02%)</title><rect x="86.5652%" y="1461" width="0.0214%" height="15" fill="rgb(231,122,1)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1471.50"></text></g><g><title>__wake_up_common_lock (1 samples, 0.02%)</title><rect x="86.5652%" y="1445" width="0.0214%" height="15" fill="rgb(245,119,9)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1455.50"></text></g><g><title>__wake_up_common (1 samples, 0.02%)</title><rect x="86.5652%" y="1429" width="0.0214%" height="15" fill="rgb(241,163,25)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1439.50"></text></g><g><title>pollwake (1 samples, 0.02%)</title><rect x="86.5652%" y="1413" width="0.0214%" height="15" fill="rgb(217,214,3)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1423.50"></text></g><g><title>default_wake_function (1 samples, 0.02%)</title><rect x="86.5652%" y="1397" width="0.0214%" height="15" fill="rgb(240,86,28)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1407.50"></text></g><g><title>try_to_wake_up (1 samples, 0.02%)</title><rect x="86.5652%" y="1381" width="0.0214%" height="15" fill="rgb(215,47,9)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1391.50"></text></g><g><title>ttwu_queue_wakelist (1 samples, 0.02%)</title><rect x="86.5652%" y="1365" width="0.0214%" height="15" fill="rgb(252,25,45)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1375.50"></text></g><g><title>__smp_call_single_queue (1 samples, 0.02%)</title><rect x="86.5652%" y="1349" width="0.0214%" height="15" fill="rgb(251,164,9)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1359.50"></text></g><g><title>send_call_function_single_ipi (1 samples, 0.02%)</title><rect x="86.5652%" y="1333" width="0.0214%" height="15" fill="rgb(233,194,0)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1343.50"></text></g><g><title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="86.5652%" y="1317" width="0.0214%" height="15" fill="rgb(249,111,24)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1327.50"></text></g><g><title>native_write_msr (1 samples, 0.02%)</title><rect x="86.5652%" y="1301" width="0.0214%" height="15" fill="rgb(250,223,3)" fg:x="4040" fg:w="1"/><text x="86.8152%" y="1311.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (46 samples, 0.99%)</title><rect x="95.0504%" y="1573" width="0.9856%" height="15" fill="rgb(236,178,37)" fg:x="4436" fg:w="46"/><text x="95.3004%" y="1583.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (9 samples, 0.19%)</title><rect x="95.8432%" y="1557" width="0.1928%" height="15" fill="rgb(241,158,50)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1567.50"></text></g><g><title>sysvec_apic_timer_interrupt (9 samples, 0.19%)</title><rect x="95.8432%" y="1541" width="0.1928%" height="15" fill="rgb(213,121,41)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1551.50"></text></g><g><title>__sysvec_apic_timer_interrupt (9 samples, 0.19%)</title><rect x="95.8432%" y="1525" width="0.1928%" height="15" fill="rgb(240,92,3)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1535.50"></text></g><g><title>hrtimer_interrupt (9 samples, 0.19%)</title><rect x="95.8432%" y="1509" width="0.1928%" height="15" fill="rgb(205,123,3)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1519.50"></text></g><g><title>__hrtimer_run_queues (9 samples, 0.19%)</title><rect x="95.8432%" y="1493" width="0.1928%" height="15" fill="rgb(205,97,47)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1503.50"></text></g><g><title>tick_sched_timer (9 samples, 0.19%)</title><rect x="95.8432%" y="1477" width="0.1928%" height="15" fill="rgb(247,152,14)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1487.50"></text></g><g><title>tick_sched_handle.isra.0 (9 samples, 0.19%)</title><rect x="95.8432%" y="1461" width="0.1928%" height="15" fill="rgb(248,195,53)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1471.50"></text></g><g><title>update_process_times (9 samples, 0.19%)</title><rect x="95.8432%" y="1445" width="0.1928%" height="15" fill="rgb(226,201,16)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1455.50"></text></g><g><title>scheduler_tick (9 samples, 0.19%)</title><rect x="95.8432%" y="1429" width="0.1928%" height="15" fill="rgb(205,98,0)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1439.50"></text></g><g><title>perf_event_task_tick (9 samples, 0.19%)</title><rect x="95.8432%" y="1413" width="0.1928%" height="15" fill="rgb(214,191,48)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1423.50"></text></g><g><title>perf_pmu_disable.part.0 (9 samples, 0.19%)</title><rect x="95.8432%" y="1397" width="0.1928%" height="15" fill="rgb(237,112,39)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1407.50"></text></g><g><title>x86_pmu_disable (9 samples, 0.19%)</title><rect x="95.8432%" y="1381" width="0.1928%" height="15" fill="rgb(247,203,27)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1391.50"></text></g><g><title>amd_pmu_disable_all (9 samples, 0.19%)</title><rect x="95.8432%" y="1365" width="0.1928%" height="15" fill="rgb(235,124,28)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1375.50"></text></g><g><title>amd_pmu_wait_on_overflow (9 samples, 0.19%)</title><rect x="95.8432%" y="1349" width="0.1928%" height="15" fill="rgb(208,207,46)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1359.50"></text></g><g><title>native_read_msr (9 samples, 0.19%)</title><rect x="95.8432%" y="1333" width="0.1928%" height="15" fill="rgb(234,176,4)" fg:x="4473" fg:w="9"/><text x="96.0932%" y="1343.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.04%)</title><rect x="96.0360%" y="1573" width="0.0429%" height="15" fill="rgb(230,133,28)" fg:x="4482" fg:w="2"/><text x="96.2860%" y="1583.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (2 samples, 0.04%)</title><rect x="96.0360%" y="1557" width="0.0429%" height="15" fill="rgb(211,137,40)" fg:x="4482" fg:w="2"/><text x="96.2860%" y="1567.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::new_unchecked (2 samples, 0.04%)</title><rect x="96.0360%" y="1541" width="0.0429%" height="15" fill="rgb(254,35,13)" fg:x="4482" fg:w="2"/><text x="96.2860%" y="1551.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&lt;&amp;usize&gt;&gt;::add_assign (18 samples, 0.39%)</title><rect x="96.0789%" y="1573" width="0.3857%" height="15" fill="rgb(225,49,51)" fg:x="4484" fg:w="18"/><text x="96.3289%" y="1583.50"></text></g><g><title>&lt;usize as core::ops::arith::AddAssign&gt;::add_assign (18 samples, 0.39%)</title><rect x="96.0789%" y="1557" width="0.3857%" height="15" fill="rgb(251,10,15)" fg:x="4484" fg:w="18"/><text x="96.3289%" y="1567.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="96.4003%" y="1541" width="0.0643%" height="15" fill="rgb(228,207,15)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1551.50"></text></g><g><title>sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="96.4003%" y="1525" width="0.0643%" height="15" fill="rgb(241,99,19)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1535.50"></text></g><g><title>__sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="96.4003%" y="1509" width="0.0643%" height="15" fill="rgb(207,104,49)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1519.50"></text></g><g><title>hrtimer_interrupt (3 samples, 0.06%)</title><rect x="96.4003%" y="1493" width="0.0643%" height="15" fill="rgb(234,99,18)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1503.50"></text></g><g><title>__hrtimer_run_queues (3 samples, 0.06%)</title><rect x="96.4003%" y="1477" width="0.0643%" height="15" fill="rgb(213,191,49)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1487.50"></text></g><g><title>tick_sched_timer (3 samples, 0.06%)</title><rect x="96.4003%" y="1461" width="0.0643%" height="15" fill="rgb(210,226,19)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1471.50"></text></g><g><title>tick_sched_handle.isra.0 (3 samples, 0.06%)</title><rect x="96.4003%" y="1445" width="0.0643%" height="15" fill="rgb(229,97,18)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1455.50"></text></g><g><title>update_process_times (3 samples, 0.06%)</title><rect x="96.4003%" y="1429" width="0.0643%" height="15" fill="rgb(211,167,15)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1439.50"></text></g><g><title>scheduler_tick (3 samples, 0.06%)</title><rect x="96.4003%" y="1413" width="0.0643%" height="15" fill="rgb(210,169,34)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1423.50"></text></g><g><title>perf_event_task_tick (3 samples, 0.06%)</title><rect x="96.4003%" y="1397" width="0.0643%" height="15" fill="rgb(241,121,31)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1407.50"></text></g><g><title>perf_pmu_disable.part.0 (3 samples, 0.06%)</title><rect x="96.4003%" y="1381" width="0.0643%" height="15" fill="rgb(232,40,11)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1391.50"></text></g><g><title>x86_pmu_disable (3 samples, 0.06%)</title><rect x="96.4003%" y="1365" width="0.0643%" height="15" fill="rgb(205,86,26)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1375.50"></text></g><g><title>amd_pmu_disable_all (3 samples, 0.06%)</title><rect x="96.4003%" y="1349" width="0.0643%" height="15" fill="rgb(231,126,28)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1359.50"></text></g><g><title>amd_pmu_wait_on_overflow (3 samples, 0.06%)</title><rect x="96.4003%" y="1333" width="0.0643%" height="15" fill="rgb(219,221,18)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1343.50"></text></g><g><title>native_read_msr (3 samples, 0.06%)</title><rect x="96.4003%" y="1317" width="0.0643%" height="15" fill="rgb(211,40,0)" fg:x="4499" fg:w="3"/><text x="96.6503%" y="1327.50"></text></g><g><title>__const_udelay (3 samples, 0.06%)</title><rect x="96.4645%" y="1349" width="0.0643%" height="15" fill="rgb(239,85,43)" fg:x="4502" fg:w="3"/><text x="96.7145%" y="1359.50"></text></g><g><title>delay_tsc (3 samples, 0.06%)</title><rect x="96.4645%" y="1333" width="0.0643%" height="15" fill="rgb(231,55,21)" fg:x="4502" fg:w="3"/><text x="96.7145%" y="1343.50"></text></g><g><title>__hrtimer_run_queues (63 samples, 1.35%)</title><rect x="96.4645%" y="1509" width="1.3499%" height="15" fill="rgb(225,184,43)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1519.50"></text></g><g><title>tick_sched_timer (63 samples, 1.35%)</title><rect x="96.4645%" y="1493" width="1.3499%" height="15" fill="rgb(251,158,41)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1503.50"></text></g><g><title>tick_sched_handle.isra.0 (63 samples, 1.35%)</title><rect x="96.4645%" y="1477" width="1.3499%" height="15" fill="rgb(234,159,37)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1487.50"></text></g><g><title>update_process_times (63 samples, 1.35%)</title><rect x="96.4645%" y="1461" width="1.3499%" height="15" fill="rgb(216,204,22)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1471.50"></text></g><g><title>scheduler_tick (63 samples, 1.35%)</title><rect x="96.4645%" y="1445" width="1.3499%" height="15" fill="rgb(214,17,3)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1455.50"></text></g><g><title>perf_event_task_tick (63 samples, 1.35%)</title><rect x="96.4645%" y="1429" width="1.3499%" height="15" fill="rgb(212,111,17)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1439.50"></text></g><g><title>perf_pmu_disable.part.0 (63 samples, 1.35%)</title><rect x="96.4645%" y="1413" width="1.3499%" height="15" fill="rgb(221,157,24)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1423.50"></text></g><g><title>x86_pmu_disable (63 samples, 1.35%)</title><rect x="96.4645%" y="1397" width="1.3499%" height="15" fill="rgb(252,16,13)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1407.50"></text></g><g><title>amd_pmu_disable_all (63 samples, 1.35%)</title><rect x="96.4645%" y="1381" width="1.3499%" height="15" fill="rgb(221,62,2)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1391.50"></text></g><g><title>amd_pmu_wait_on_overflow (63 samples, 1.35%)</title><rect x="96.4645%" y="1365" width="1.3499%" height="15" fill="rgb(247,87,22)" fg:x="4502" fg:w="63"/><text x="96.7145%" y="1375.50"></text></g><g><title>native_read_msr (60 samples, 1.29%)</title><rect x="96.5288%" y="1349" width="1.2856%" height="15" fill="rgb(215,73,9)" fg:x="4505" fg:w="60"/><text x="96.7788%" y="1359.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (66 samples, 1.41%)</title><rect x="96.4645%" y="1573" width="1.4142%" height="15" fill="rgb(207,175,33)" fg:x="4502" fg:w="66"/><text x="96.7145%" y="1583.50"></text></g><g><title>sysvec_apic_timer_interrupt (66 samples, 1.41%)</title><rect x="96.4645%" y="1557" width="1.4142%" height="15" fill="rgb(243,129,54)" fg:x="4502" fg:w="66"/><text x="96.7145%" y="1567.50"></text></g><g><title>__sysvec_apic_timer_interrupt (66 samples, 1.41%)</title><rect x="96.4645%" y="1541" width="1.4142%" height="15" fill="rgb(227,119,45)" fg:x="4502" fg:w="66"/><text x="96.7145%" y="1551.50"></text></g><g><title>hrtimer_interrupt (66 samples, 1.41%)</title><rect x="96.4645%" y="1525" width="1.4142%" height="15" fill="rgb(205,109,36)" fg:x="4502" fg:w="66"/><text x="96.7145%" y="1535.50"></text></g><g><title>tick_program_event (3 samples, 0.06%)</title><rect x="97.8144%" y="1509" width="0.0643%" height="15" fill="rgb(205,6,39)" fg:x="4565" fg:w="3"/><text x="98.0644%" y="1519.50"></text></g><g><title>clockevents_program_event (3 samples, 0.06%)</title><rect x="97.8144%" y="1493" width="0.0643%" height="15" fill="rgb(221,32,16)" fg:x="4565" fg:w="3"/><text x="98.0644%" y="1503.50"></text></g><g><title>lapic_next_event (3 samples, 0.06%)</title><rect x="97.8144%" y="1477" width="0.0643%" height="15" fill="rgb(228,144,50)" fg:x="4565" fg:w="3"/><text x="98.0644%" y="1487.50"></text></g><g><title>native_write_msr (3 samples, 0.06%)</title><rect x="97.8144%" y="1461" width="0.0643%" height="15" fill="rgb(229,201,53)" fg:x="4565" fg:w="3"/><text x="98.0644%" y="1471.50"></text></g><g><title>bfinterpreter::interpreter::optimized::execute (1,427 samples, 30.58%)</title><rect x="67.8166%" y="1605" width="30.5764%" height="15" fill="rgb(249,153,27)" fg:x="3165" fg:w="1427"/><text x="68.0666%" y="1615.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>bfinterpreter::interpreter::optimized::execute (551 samples, 11.81%)</title><rect x="86.5867%" y="1589" width="11.8063%" height="15" fill="rgb(227,106,25)" fg:x="4041" fg:w="551"/><text x="86.8367%" y="1599.50">bfinterpreter::int..</text></g><g><title>bfinterpreter::interpreter::optimized::execute (24 samples, 0.51%)</title><rect x="97.8787%" y="1573" width="0.5142%" height="15" fill="rgb(230,65,29)" fg:x="4568" fg:w="24"/><text x="98.1287%" y="1583.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (4 samples, 0.09%)</title><rect x="98.3073%" y="1557" width="0.0857%" height="15" fill="rgb(221,57,46)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1567.50"></text></g><g><title>sysvec_apic_timer_interrupt (4 samples, 0.09%)</title><rect x="98.3073%" y="1541" width="0.0857%" height="15" fill="rgb(229,161,17)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1551.50"></text></g><g><title>__sysvec_apic_timer_interrupt (4 samples, 0.09%)</title><rect x="98.3073%" y="1525" width="0.0857%" height="15" fill="rgb(222,213,11)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1535.50"></text></g><g><title>hrtimer_interrupt (4 samples, 0.09%)</title><rect x="98.3073%" y="1509" width="0.0857%" height="15" fill="rgb(235,35,13)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1519.50"></text></g><g><title>__hrtimer_run_queues (4 samples, 0.09%)</title><rect x="98.3073%" y="1493" width="0.0857%" height="15" fill="rgb(233,158,34)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1503.50"></text></g><g><title>tick_sched_timer (4 samples, 0.09%)</title><rect x="98.3073%" y="1477" width="0.0857%" height="15" fill="rgb(215,151,48)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1487.50"></text></g><g><title>tick_sched_handle.isra.0 (4 samples, 0.09%)</title><rect x="98.3073%" y="1461" width="0.0857%" height="15" fill="rgb(229,84,14)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1471.50"></text></g><g><title>update_process_times (4 samples, 0.09%)</title><rect x="98.3073%" y="1445" width="0.0857%" height="15" fill="rgb(229,68,14)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1455.50"></text></g><g><title>scheduler_tick (4 samples, 0.09%)</title><rect x="98.3073%" y="1429" width="0.0857%" height="15" fill="rgb(243,106,26)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1439.50"></text></g><g><title>perf_event_task_tick (4 samples, 0.09%)</title><rect x="98.3073%" y="1413" width="0.0857%" height="15" fill="rgb(206,45,38)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1423.50"></text></g><g><title>perf_pmu_disable.part.0 (4 samples, 0.09%)</title><rect x="98.3073%" y="1397" width="0.0857%" height="15" fill="rgb(226,6,15)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1407.50"></text></g><g><title>x86_pmu_disable (4 samples, 0.09%)</title><rect x="98.3073%" y="1381" width="0.0857%" height="15" fill="rgb(232,22,54)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1391.50"></text></g><g><title>amd_pmu_disable_all (4 samples, 0.09%)</title><rect x="98.3073%" y="1365" width="0.0857%" height="15" fill="rgb(229,222,32)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1375.50"></text></g><g><title>amd_pmu_wait_on_overflow (4 samples, 0.09%)</title><rect x="98.3073%" y="1349" width="0.0857%" height="15" fill="rgb(228,62,29)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1359.50"></text></g><g><title>native_read_msr (4 samples, 0.09%)</title><rect x="98.3073%" y="1333" width="0.0857%" height="15" fill="rgb(251,103,34)" fg:x="4588" fg:w="4"/><text x="98.5573%" y="1343.50"></text></g><g><title>&lt;char as core::fmt::Display&gt;::fmt (2 samples, 0.04%)</title><rect x="98.4144%" y="1509" width="0.0429%" height="15" fill="rgb(233,12,30)" fg:x="4593" fg:w="2"/><text x="98.6644%" y="1519.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_none (2 samples, 0.04%)</title><rect x="98.4144%" y="1493" width="0.0429%" height="15" fill="rgb(238,52,0)" fg:x="4593" fg:w="2"/><text x="98.6644%" y="1503.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_some (2 samples, 0.04%)</title><rect x="98.4144%" y="1477" width="0.0429%" height="15" fill="rgb(223,98,5)" fg:x="4593" fg:w="2"/><text x="98.6644%" y="1487.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.4358%" y="1461" width="0.0214%" height="15" fill="rgb(228,75,37)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1471.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.4358%" y="1445" width="0.0214%" height="15" fill="rgb(205,115,49)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1455.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.4358%" y="1429" width="0.0214%" height="15" fill="rgb(250,154,43)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1439.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="98.4358%" y="1413" width="0.0214%" height="15" fill="rgb(226,43,29)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1423.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="98.4358%" y="1397" width="0.0214%" height="15" fill="rgb(249,228,39)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1407.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="98.4358%" y="1381" width="0.0214%" height="15" fill="rgb(216,79,43)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1391.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="98.4358%" y="1365" width="0.0214%" height="15" fill="rgb(228,95,12)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1375.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="98.4358%" y="1349" width="0.0214%" height="15" fill="rgb(249,221,15)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1359.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="98.4358%" y="1333" width="0.0214%" height="15" fill="rgb(233,34,13)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1343.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="98.4358%" y="1317" width="0.0214%" height="15" fill="rgb(214,103,39)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1327.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="98.4358%" y="1301" width="0.0214%" height="15" fill="rgb(251,126,39)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1311.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="98.4358%" y="1285" width="0.0214%" height="15" fill="rgb(214,216,36)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1295.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="98.4358%" y="1269" width="0.0214%" height="15" fill="rgb(220,221,8)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1279.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="98.4358%" y="1253" width="0.0214%" height="15" fill="rgb(240,216,3)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1263.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="98.4358%" y="1237" width="0.0214%" height="15" fill="rgb(232,218,17)" fg:x="4594" fg:w="1"/><text x="98.6858%" y="1247.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.4573%" y="1445" width="0.0214%" height="15" fill="rgb(229,163,45)" fg:x="4595" fg:w="1"/><text x="98.7073%" y="1455.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (1 samples, 0.02%)</title><rect x="98.4573%" y="1429" width="0.0214%" height="15" fill="rgb(231,110,42)" fg:x="4595" fg:w="1"/><text x="98.7073%" y="1439.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.02%)</title><rect x="98.4573%" y="1413" width="0.0214%" height="15" fill="rgb(208,170,48)" fg:x="4595" fg:w="1"/><text x="98.7073%" y="1423.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (1 samples, 0.02%)</title><rect x="98.4573%" y="1397" width="0.0214%" height="15" fill="rgb(239,116,25)" fg:x="4595" fg:w="1"/><text x="98.7073%" y="1407.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="98.4573%" y="1381" width="0.0214%" height="15" fill="rgb(219,200,50)" fg:x="4595" fg:w="1"/><text x="98.7073%" y="1391.50"></text></g><g><title>__memcpy_avx_unaligned (1 samples, 0.02%)</title><rect x="98.4573%" y="1365" width="0.0214%" height="15" fill="rgb(245,200,0)" fg:x="4595" fg:w="1"/><text x="98.7073%" y="1375.50"></text></g><g><title>std::io::buffered::linewritershim::LineWriterShim&lt;W&gt;::flush_if_completed_line (1 samples, 0.02%)</title><rect x="98.4787%" y="1445" width="0.0214%" height="15" fill="rgb(245,119,33)" fg:x="4596" fg:w="1"/><text x="98.7287%" y="1455.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::last (1 samples, 0.02%)</title><rect x="98.4787%" y="1429" width="0.0214%" height="15" fill="rgb(231,125,12)" fg:x="4596" fg:w="1"/><text x="98.7287%" y="1439.50"></text></g><g><title>bfinterpreter::interpreter::optimized::execute (2,102 samples, 45.04%)</title><rect x="53.4819%" y="1621" width="45.0396%" height="15" fill="rgb(216,96,41)" fg:x="2496" fg:w="2102"/><text x="53.7319%" y="1631.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>std::io::stdio::_print (6 samples, 0.13%)</title><rect x="98.3930%" y="1605" width="0.1286%" height="15" fill="rgb(248,43,45)" fg:x="4592" fg:w="6"/><text x="98.6430%" y="1615.50"></text></g><g><title>std::io::stdio::print_to (6 samples, 0.13%)</title><rect x="98.3930%" y="1589" width="0.1286%" height="15" fill="rgb(217,222,7)" fg:x="4592" fg:w="6"/><text x="98.6430%" y="1599.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (6 samples, 0.13%)</title><rect x="98.3930%" y="1573" width="0.1286%" height="15" fill="rgb(233,28,6)" fg:x="4592" fg:w="6"/><text x="98.6430%" y="1583.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (6 samples, 0.13%)</title><rect x="98.3930%" y="1557" width="0.1286%" height="15" fill="rgb(231,218,15)" fg:x="4592" fg:w="6"/><text x="98.6430%" y="1567.50"></text></g><g><title>std::io::Write::write_fmt (6 samples, 0.13%)</title><rect x="98.3930%" y="1541" width="0.1286%" height="15" fill="rgb(226,171,48)" fg:x="4592" fg:w="6"/><text x="98.6430%" y="1551.50"></text></g><g><title>core::fmt::write (5 samples, 0.11%)</title><rect x="98.4144%" y="1525" width="0.1071%" height="15" fill="rgb(235,201,9)" fg:x="4593" fg:w="5"/><text x="98.6644%" y="1535.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (3 samples, 0.06%)</title><rect x="98.4573%" y="1509" width="0.0643%" height="15" fill="rgb(217,80,15)" fg:x="4595" fg:w="3"/><text x="98.7073%" y="1519.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.4573%" y="1493" width="0.0643%" height="15" fill="rgb(219,152,8)" fg:x="4595" fg:w="3"/><text x="98.7073%" y="1503.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.4573%" y="1477" width="0.0643%" height="15" fill="rgb(243,107,38)" fg:x="4595" fg:w="3"/><text x="98.7073%" y="1487.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.4573%" y="1461" width="0.0643%" height="15" fill="rgb(231,17,5)" fg:x="4595" fg:w="3"/><text x="98.7073%" y="1471.50"></text></g><g><title>std::memchr::memrchr (1 samples, 0.02%)</title><rect x="98.5001%" y="1445" width="0.0214%" height="15" fill="rgb(209,25,54)" fg:x="4597" fg:w="1"/><text x="98.7501%" y="1455.50"></text></g><g><title>std::sys::unix::memchr::memrchr (1 samples, 0.02%)</title><rect x="98.5001%" y="1429" width="0.0214%" height="15" fill="rgb(219,0,2)" fg:x="4597" fg:w="1"/><text x="98.7501%" y="1439.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (1 samples, 0.02%)</title><rect x="98.5001%" y="1413" width="0.0214%" height="15" fill="rgb(246,9,5)" fg:x="4597" fg:w="1"/><text x="98.7501%" y="1423.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::unwrap (1 samples, 0.02%)</title><rect x="98.5215%" y="1621" width="0.0214%" height="15" fill="rgb(226,159,4)" fg:x="4598" fg:w="1"/><text x="98.7715%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (1 samples, 0.02%)</title><rect x="98.5430%" y="1557" width="0.0214%" height="15" fill="rgb(219,175,34)" fg:x="4599" fg:w="1"/><text x="98.7930%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (1 samples, 0.02%)</title><rect x="98.5430%" y="1541" width="0.0214%" height="15" fill="rgb(236,10,46)" fg:x="4599" fg:w="1"/><text x="98.7930%" y="1551.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.5430%" y="1525" width="0.0214%" height="15" fill="rgb(240,211,16)" fg:x="4599" fg:w="1"/><text x="98.7930%" y="1535.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (1 samples, 0.02%)</title><rect x="98.5430%" y="1509" width="0.0214%" height="15" fill="rgb(205,3,43)" fg:x="4599" fg:w="1"/><text x="98.7930%" y="1519.50"></text></g><g><title>__GI___pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="98.5430%" y="1493" width="0.0214%" height="15" fill="rgb(245,7,22)" fg:x="4599" fg:w="1"/><text x="98.7930%" y="1503.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (1 samples, 0.02%)</title><rect x="98.5430%" y="1477" width="0.0214%" height="15" fill="rgb(239,132,32)" fg:x="4599" fg:w="1"/><text x="98.7930%" y="1487.50"></text></g><g><title>std::io::stdio::_print (2 samples, 0.04%)</title><rect x="98.5430%" y="1621" width="0.0429%" height="15" fill="rgb(228,202,34)" fg:x="4599" fg:w="2"/><text x="98.7930%" y="1631.50"></text></g><g><title>std::io::stdio::print_to (2 samples, 0.04%)</title><rect x="98.5430%" y="1605" width="0.0429%" height="15" fill="rgb(254,200,22)" fg:x="4599" fg:w="2"/><text x="98.7930%" y="1615.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (2 samples, 0.04%)</title><rect x="98.5430%" y="1589" width="0.0429%" height="15" fill="rgb(219,10,39)" fg:x="4599" fg:w="2"/><text x="98.7930%" y="1599.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (2 samples, 0.04%)</title><rect x="98.5430%" y="1573" width="0.0429%" height="15" fill="rgb(226,210,39)" fg:x="4599" fg:w="2"/><text x="98.7930%" y="1583.50"></text></g><g><title>std::io::Write::write_fmt (1 samples, 0.02%)</title><rect x="98.5644%" y="1557" width="0.0214%" height="15" fill="rgb(208,219,16)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1567.50"></text></g><g><title>core::fmt::write (1 samples, 0.02%)</title><rect x="98.5644%" y="1541" width="0.0214%" height="15" fill="rgb(216,158,51)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1551.50"></text></g><g><title>core::fmt::Write::write_char (1 samples, 0.02%)</title><rect x="98.5644%" y="1525" width="0.0214%" height="15" fill="rgb(233,14,44)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1535.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="98.5644%" y="1509" width="0.0214%" height="15" fill="rgb(237,97,39)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1519.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.5644%" y="1493" width="0.0214%" height="15" fill="rgb(218,198,43)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1503.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.5644%" y="1477" width="0.0214%" height="15" fill="rgb(231,104,20)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1487.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.5644%" y="1461" width="0.0214%" height="15" fill="rgb(254,36,13)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1471.50"></text></g><g><title>std::memchr::memrchr (1 samples, 0.02%)</title><rect x="98.5644%" y="1445" width="0.0214%" height="15" fill="rgb(248,14,50)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1455.50"></text></g><g><title>std::sys::unix::memchr::memrchr (1 samples, 0.02%)</title><rect x="98.5644%" y="1429" width="0.0214%" height="15" fill="rgb(217,107,29)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1439.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (1 samples, 0.02%)</title><rect x="98.5644%" y="1413" width="0.0214%" height="15" fill="rgb(251,169,33)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1423.50"></text></g><g><title>__memrchr_avx2 (1 samples, 0.02%)</title><rect x="98.5644%" y="1397" width="0.0214%" height="15" fill="rgb(217,108,32)" fg:x="4600" fg:w="1"/><text x="98.8144%" y="1407.50"></text></g><g><title>bfinterpreter::interpreter::optimized::execute (3,926 samples, 84.12%)</title><rect x="14.4847%" y="1637" width="84.1226%" height="15" fill="rgb(219,66,42)" fg:x="676" fg:w="3926"/><text x="14.7347%" y="1647.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>std::io::stdio::stdout (1 samples, 0.02%)</title><rect x="98.5858%" y="1621" width="0.0214%" height="15" fill="rgb(206,180,7)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1631.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::get_or_init_pin (1 samples, 0.02%)</title><rect x="98.5858%" y="1605" width="0.0214%" height="15" fill="rgb(208,226,31)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1615.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::get (1 samples, 0.02%)</title><rect x="98.5858%" y="1589" width="0.0214%" height="15" fill="rgb(218,26,49)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1599.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::is_initialized (1 samples, 0.02%)</title><rect x="98.5858%" y="1573" width="0.0214%" height="15" fill="rgb(233,197,48)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1583.50"></text></g><g><title>std::sync::once::Once::is_completed (1 samples, 0.02%)</title><rect x="98.5858%" y="1557" width="0.0214%" height="15" fill="rgb(252,181,51)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1567.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.02%)</title><rect x="98.5858%" y="1541" width="0.0214%" height="15" fill="rgb(253,90,19)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1551.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.02%)</title><rect x="98.5858%" y="1525" width="0.0214%" height="15" fill="rgb(215,171,30)" fg:x="4601" fg:w="1"/><text x="98.8358%" y="1535.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (3 samples, 0.06%)</title><rect x="98.6501%" y="1541" width="0.0643%" height="15" fill="rgb(214,222,9)" fg:x="4604" fg:w="3"/><text x="98.9001%" y="1551.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.6501%" y="1525" width="0.0643%" height="15" fill="rgb(223,3,22)" fg:x="4604" fg:w="3"/><text x="98.9001%" y="1535.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.6501%" y="1509" width="0.0643%" height="15" fill="rgb(225,196,46)" fg:x="4604" fg:w="3"/><text x="98.9001%" y="1519.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.6501%" y="1493" width="0.0643%" height="15" fill="rgb(209,110,37)" fg:x="4604" fg:w="3"/><text x="98.9001%" y="1503.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (3 samples, 0.06%)</title><rect x="98.6501%" y="1477" width="0.0643%" height="15" fill="rgb(249,89,12)" fg:x="4604" fg:w="3"/><text x="98.9001%" y="1487.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (2 samples, 0.04%)</title><rect x="98.6715%" y="1461" width="0.0429%" height="15" fill="rgb(226,27,33)" fg:x="4605" fg:w="2"/><text x="98.9215%" y="1471.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (2 samples, 0.04%)</title><rect x="98.6715%" y="1445" width="0.0429%" height="15" fill="rgb(213,82,22)" fg:x="4605" fg:w="2"/><text x="98.9215%" y="1455.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (2 samples, 0.04%)</title><rect x="98.6715%" y="1429" width="0.0429%" height="15" fill="rgb(248,140,0)" fg:x="4605" fg:w="2"/><text x="98.9215%" y="1439.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.04%)</title><rect x="98.6715%" y="1413" width="0.0429%" height="15" fill="rgb(228,106,3)" fg:x="4605" fg:w="2"/><text x="98.9215%" y="1423.50"></text></g><g><title>__memcpy_avx_unaligned (2 samples, 0.04%)</title><rect x="98.6715%" y="1397" width="0.0429%" height="15" fill="rgb(209,23,37)" fg:x="4605" fg:w="2"/><text x="98.9215%" y="1407.50"></text></g><g><title>std::io::Write::write_fmt (6 samples, 0.13%)</title><rect x="98.6287%" y="1573" width="0.1286%" height="15" fill="rgb(241,93,50)" fg:x="4603" fg:w="6"/><text x="98.8787%" y="1583.50"></text></g><g><title>core::fmt::write (6 samples, 0.13%)</title><rect x="98.6287%" y="1557" width="0.1286%" height="15" fill="rgb(253,46,43)" fg:x="4603" fg:w="6"/><text x="98.8787%" y="1567.50"></text></g><g><title>core::fmt::Write::write_char (2 samples, 0.04%)</title><rect x="98.7144%" y="1541" width="0.0429%" height="15" fill="rgb(226,206,43)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1551.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="98.7144%" y="1525" width="0.0429%" height="15" fill="rgb(217,54,7)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1535.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.7144%" y="1509" width="0.0429%" height="15" fill="rgb(223,5,52)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1519.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.7144%" y="1493" width="0.0429%" height="15" fill="rgb(206,52,46)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1503.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.7144%" y="1477" width="0.0429%" height="15" fill="rgb(253,136,11)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1487.50"></text></g><g><title>std::memchr::memrchr (2 samples, 0.04%)</title><rect x="98.7144%" y="1461" width="0.0429%" height="15" fill="rgb(208,106,33)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1471.50"></text></g><g><title>std::sys::unix::memchr::memrchr (2 samples, 0.04%)</title><rect x="98.7144%" y="1445" width="0.0429%" height="15" fill="rgb(206,54,4)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1455.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (2 samples, 0.04%)</title><rect x="98.7144%" y="1429" width="0.0429%" height="15" fill="rgb(213,3,15)" fg:x="4607" fg:w="2"/><text x="98.9644%" y="1439.50"></text></g><g><title>__memrchr_avx2 (1 samples, 0.02%)</title><rect x="98.7358%" y="1413" width="0.0214%" height="15" fill="rgb(252,211,39)" fg:x="4608" fg:w="1"/><text x="98.9858%" y="1423.50"></text></g><g><title>bfinterpreter::interpreter::optimized::execute (4,469 samples, 95.76%)</title><rect x="3.0426%" y="1653" width="95.7574%" height="15" fill="rgb(223,6,36)" fg:x="142" fg:w="4469"/><text x="3.2926%" y="1663.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>std::io::stdio::_print (9 samples, 0.19%)</title><rect x="98.6072%" y="1637" width="0.1928%" height="15" fill="rgb(252,169,45)" fg:x="4602" fg:w="9"/><text x="98.8572%" y="1647.50"></text></g><g><title>std::io::stdio::print_to (8 samples, 0.17%)</title><rect x="98.6287%" y="1621" width="0.1714%" height="15" fill="rgb(212,48,26)" fg:x="4603" fg:w="8"/><text x="98.8787%" y="1631.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (8 samples, 0.17%)</title><rect x="98.6287%" y="1605" width="0.1714%" height="15" fill="rgb(251,102,48)" fg:x="4603" fg:w="8"/><text x="98.8787%" y="1615.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (8 samples, 0.17%)</title><rect x="98.6287%" y="1589" width="0.1714%" height="15" fill="rgb(243,208,16)" fg:x="4603" fg:w="8"/><text x="98.8787%" y="1599.50"></text></g><g><title>std::io::stdio::Stdout::lock (2 samples, 0.04%)</title><rect x="98.7572%" y="1573" width="0.0429%" height="15" fill="rgb(219,96,24)" fg:x="4609" fg:w="2"/><text x="99.0072%" y="1583.50"></text></g><g><title>std::sys_common::remutex::ReentrantMutex&lt;T&gt;::lock (2 samples, 0.04%)</title><rect x="98.7572%" y="1557" width="0.0429%" height="15" fill="rgb(219,33,29)" fg:x="4609" fg:w="2"/><text x="99.0072%" y="1567.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::lock (2 samples, 0.04%)</title><rect x="98.7572%" y="1541" width="0.0429%" height="15" fill="rgb(223,176,5)" fg:x="4609" fg:w="2"/><text x="99.0072%" y="1551.50"></text></g><g><title>__GI___pthread_mutex_lock (2 samples, 0.04%)</title><rect x="98.7572%" y="1525" width="0.0429%" height="15" fill="rgb(228,140,14)" fg:x="4609" fg:w="2"/><text x="99.0072%" y="1535.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.7787%" y="1509" width="0.0214%" height="15" fill="rgb(217,179,31)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1519.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.7787%" y="1493" width="0.0214%" height="15" fill="rgb(230,9,30)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1503.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.7787%" y="1477" width="0.0214%" height="15" fill="rgb(230,136,20)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1487.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="98.7787%" y="1461" width="0.0214%" height="15" fill="rgb(215,210,22)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1471.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="98.7787%" y="1445" width="0.0214%" height="15" fill="rgb(218,43,5)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1455.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="98.7787%" y="1429" width="0.0214%" height="15" fill="rgb(216,11,5)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1439.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="98.7787%" y="1413" width="0.0214%" height="15" fill="rgb(209,82,29)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1423.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="98.7787%" y="1397" width="0.0214%" height="15" fill="rgb(244,115,12)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1407.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="98.7787%" y="1381" width="0.0214%" height="15" fill="rgb(222,82,18)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1391.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="98.7787%" y="1365" width="0.0214%" height="15" fill="rgb(249,227,8)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1375.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="98.7787%" y="1349" width="0.0214%" height="15" fill="rgb(253,141,45)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1359.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="98.7787%" y="1333" width="0.0214%" height="15" fill="rgb(234,184,4)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1343.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="98.7787%" y="1317" width="0.0214%" height="15" fill="rgb(218,194,23)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1327.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="98.7787%" y="1301" width="0.0214%" height="15" fill="rgb(235,66,41)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1311.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="98.7787%" y="1285" width="0.0214%" height="15" fill="rgb(245,217,1)" fg:x="4610" fg:w="1"/><text x="99.0287%" y="1295.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="98.8001%" y="1557" width="0.0429%" height="15" fill="rgb(229,91,1)" fg:x="4611" fg:w="2"/><text x="99.0501%" y="1567.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.8001%" y="1541" width="0.0429%" height="15" fill="rgb(207,101,30)" fg:x="4611" fg:w="2"/><text x="99.0501%" y="1551.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.8001%" y="1525" width="0.0429%" height="15" fill="rgb(223,82,49)" fg:x="4611" fg:w="2"/><text x="99.0501%" y="1535.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.8001%" y="1509" width="0.0429%" height="15" fill="rgb(218,167,17)" fg:x="4611" fg:w="2"/><text x="99.0501%" y="1519.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (2 samples, 0.04%)</title><rect x="98.8001%" y="1493" width="0.0429%" height="15" fill="rgb(208,103,14)" fg:x="4611" fg:w="2"/><text x="99.0501%" y="1503.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.8215%" y="1477" width="0.0214%" height="15" fill="rgb(238,20,8)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1487.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.8215%" y="1461" width="0.0214%" height="15" fill="rgb(218,80,54)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1471.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.8215%" y="1445" width="0.0214%" height="15" fill="rgb(240,144,17)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1455.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="98.8215%" y="1429" width="0.0214%" height="15" fill="rgb(245,27,50)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1439.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="98.8215%" y="1413" width="0.0214%" height="15" fill="rgb(251,51,7)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1423.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="98.8215%" y="1397" width="0.0214%" height="15" fill="rgb(245,217,29)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1407.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="98.8215%" y="1381" width="0.0214%" height="15" fill="rgb(221,176,29)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1391.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="98.8215%" y="1365" width="0.0214%" height="15" fill="rgb(212,180,24)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1375.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="98.8215%" y="1349" width="0.0214%" height="15" fill="rgb(254,24,2)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1359.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="98.8215%" y="1333" width="0.0214%" height="15" fill="rgb(230,100,2)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1343.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="98.8215%" y="1317" width="0.0214%" height="15" fill="rgb(219,142,25)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1327.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="98.8215%" y="1301" width="0.0214%" height="15" fill="rgb(240,73,43)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1311.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="98.8215%" y="1285" width="0.0214%" height="15" fill="rgb(214,114,15)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1295.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="98.8215%" y="1269" width="0.0214%" height="15" fill="rgb(207,130,4)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1279.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="98.8215%" y="1253" width="0.0214%" height="15" fill="rgb(221,25,40)" fg:x="4612" fg:w="1"/><text x="99.0715%" y="1263.50"></text></g><g><title>std::io::stdio::_print (3 samples, 0.06%)</title><rect x="98.8001%" y="1653" width="0.0643%" height="15" fill="rgb(241,184,7)" fg:x="4611" fg:w="3"/><text x="99.0501%" y="1663.50"></text></g><g><title>std::io::stdio::print_to (3 samples, 0.06%)</title><rect x="98.8001%" y="1637" width="0.0643%" height="15" fill="rgb(235,159,4)" fg:x="4611" fg:w="3"/><text x="99.0501%" y="1647.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (3 samples, 0.06%)</title><rect x="98.8001%" y="1621" width="0.0643%" height="15" fill="rgb(214,87,48)" fg:x="4611" fg:w="3"/><text x="99.0501%" y="1631.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (3 samples, 0.06%)</title><rect x="98.8001%" y="1605" width="0.0643%" height="15" fill="rgb(246,198,24)" fg:x="4611" fg:w="3"/><text x="99.0501%" y="1615.50"></text></g><g><title>std::io::Write::write_fmt (3 samples, 0.06%)</title><rect x="98.8001%" y="1589" width="0.0643%" height="15" fill="rgb(209,66,40)" fg:x="4611" fg:w="3"/><text x="99.0501%" y="1599.50"></text></g><g><title>core::fmt::write (3 samples, 0.06%)</title><rect x="98.8001%" y="1573" width="0.0643%" height="15" fill="rgb(233,147,39)" fg:x="4611" fg:w="3"/><text x="99.0501%" y="1583.50"></text></g><g><title>core::fmt::Write::write_char (1 samples, 0.02%)</title><rect x="98.8429%" y="1557" width="0.0214%" height="15" fill="rgb(231,145,52)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1567.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="98.8429%" y="1541" width="0.0214%" height="15" fill="rgb(206,20,26)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1551.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.8429%" y="1525" width="0.0214%" height="15" fill="rgb(238,220,4)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1535.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.8429%" y="1509" width="0.0214%" height="15" fill="rgb(252,195,42)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1519.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.8429%" y="1493" width="0.0214%" height="15" fill="rgb(209,10,6)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1503.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="98.8429%" y="1477" width="0.0214%" height="15" fill="rgb(229,3,52)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1487.50"></text></g><g><title>std::io::Write::write_all (1 samples, 0.02%)</title><rect x="98.8429%" y="1461" width="0.0214%" height="15" fill="rgb(253,49,37)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1471.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (1 samples, 0.02%)</title><rect x="98.8429%" y="1445" width="0.0214%" height="15" fill="rgb(240,103,49)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1455.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (1 samples, 0.02%)</title><rect x="98.8429%" y="1429" width="0.0214%" height="15" fill="rgb(250,182,30)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1439.50"></text></g><g><title>__libc_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1413" width="0.0214%" height="15" fill="rgb(248,8,30)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1423.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.02%)</title><rect x="98.8429%" y="1397" width="0.0214%" height="15" fill="rgb(237,120,30)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1407.50"></text></g><g><title>do_syscall_64 (1 samples, 0.02%)</title><rect x="98.8429%" y="1381" width="0.0214%" height="15" fill="rgb(221,146,34)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1391.50"></text></g><g><title>__x64_sys_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1365" width="0.0214%" height="15" fill="rgb(242,55,13)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1375.50"></text></g><g><title>ksys_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1349" width="0.0214%" height="15" fill="rgb(242,112,31)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1359.50"></text></g><g><title>vfs_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1333" width="0.0214%" height="15" fill="rgb(249,192,27)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1343.50"></text></g><g><title>new_sync_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1317" width="0.0214%" height="15" fill="rgb(208,204,44)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1327.50"></text></g><g><title>tty_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1301" width="0.0214%" height="15" fill="rgb(208,93,54)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1311.50"></text></g><g><title>file_tty_write.isra.0 (1 samples, 0.02%)</title><rect x="98.8429%" y="1285" width="0.0214%" height="15" fill="rgb(242,1,31)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1295.50"></text></g><g><title>n_tty_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1269" width="0.0214%" height="15" fill="rgb(241,83,25)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1279.50"></text></g><g><title>do_output_char (1 samples, 0.02%)</title><rect x="98.8429%" y="1253" width="0.0214%" height="15" fill="rgb(205,169,50)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1263.50"></text></g><g><title>pty_write (1 samples, 0.02%)</title><rect x="98.8429%" y="1237" width="0.0214%" height="15" fill="rgb(239,186,37)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1247.50"></text></g><g><title>memcpy (1 samples, 0.02%)</title><rect x="98.8429%" y="1221" width="0.0214%" height="15" fill="rgb(205,221,10)" fg:x="4613" fg:w="1"/><text x="99.0929%" y="1231.50"></text></g><g><title>bfinterpreter::interpreter::optimized::interpret (4,616 samples, 98.91%)</title><rect x="0.0000%" y="1733" width="98.9072%" height="15" fill="rgb(218,196,15)" fg:x="0" fg:w="4616"/><text x="0.2500%" y="1743.50">bfinterpreter::interpreter::optimized::interpret</text></g><g><title>bfinterpreter::interpreter::optimized::execute (4,616 samples, 98.91%)</title><rect x="0.0000%" y="1717" width="98.9072%" height="15" fill="rgb(218,196,35)" fg:x="0" fg:w="4616"/><text x="0.2500%" y="1727.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>bfinterpreter::interpreter::optimized::execute (4,615 samples, 98.89%)</title><rect x="0.0214%" y="1701" width="98.8858%" height="15" fill="rgb(233,63,24)" fg:x="1" fg:w="4615"/><text x="0.2714%" y="1711.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>bfinterpreter::interpreter::optimized::execute (4,612 samples, 98.82%)</title><rect x="0.0857%" y="1685" width="98.8215%" height="15" fill="rgb(225,8,4)" fg:x="4" fg:w="4612"/><text x="0.3357%" y="1695.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>bfinterpreter::interpreter::optimized::execute (4,570 samples, 97.92%)</title><rect x="0.9856%" y="1669" width="97.9216%" height="15" fill="rgb(234,105,35)" fg:x="46" fg:w="4570"/><text x="1.2356%" y="1679.50">bfinterpreter::interpreter::optimized::execute</text></g><g><title>std::io::stdio::stdout (2 samples, 0.04%)</title><rect x="98.8644%" y="1653" width="0.0429%" height="15" fill="rgb(236,21,32)" fg:x="4614" fg:w="2"/><text x="99.1144%" y="1663.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.8858%" y="1637" width="0.0214%" height="15" fill="rgb(228,109,6)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1647.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.8858%" y="1621" width="0.0214%" height="15" fill="rgb(229,215,31)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1631.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="98.8858%" y="1605" width="0.0214%" height="15" fill="rgb(221,52,54)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1615.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="98.8858%" y="1589" width="0.0214%" height="15" fill="rgb(252,129,43)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1599.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="98.8858%" y="1573" width="0.0214%" height="15" fill="rgb(248,183,27)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1583.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="98.8858%" y="1557" width="0.0214%" height="15" fill="rgb(250,0,22)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1567.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="98.8858%" y="1541" width="0.0214%" height="15" fill="rgb(213,166,10)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1551.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="98.8858%" y="1525" width="0.0214%" height="15" fill="rgb(207,163,36)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1535.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="98.8858%" y="1509" width="0.0214%" height="15" fill="rgb(208,122,22)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1519.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="98.8858%" y="1493" width="0.0214%" height="15" fill="rgb(207,104,49)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1503.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="98.8858%" y="1477" width="0.0214%" height="15" fill="rgb(248,211,50)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1487.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="98.8858%" y="1461" width="0.0214%" height="15" fill="rgb(217,13,45)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1471.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="98.8858%" y="1445" width="0.0214%" height="15" fill="rgb(211,216,49)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1455.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="98.8858%" y="1429" width="0.0214%" height="15" fill="rgb(221,58,53)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1439.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="98.8858%" y="1413" width="0.0214%" height="15" fill="rgb(220,112,41)" fg:x="4615" fg:w="1"/><text x="99.1358%" y="1423.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="98.9072%" y="1173" width="0.0214%" height="15" fill="rgb(236,38,28)" fg:x="4616" fg:w="1"/><text x="99.1572%" y="1183.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1701" width="0.0429%" height="15" fill="rgb(227,195,22)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1711.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1685" width="0.0429%" height="15" fill="rgb(214,55,33)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1695.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1669" width="0.0429%" height="15" fill="rgb(248,80,13)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1679.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1653" width="0.0429%" height="15" fill="rgb(238,52,6)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1663.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1637" width="0.0429%" height="15" fill="rgb(224,198,47)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1647.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1621" width="0.0429%" height="15" fill="rgb(233,171,20)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1631.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1605" width="0.0429%" height="15" fill="rgb(241,30,25)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1615.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1589" width="0.0429%" height="15" fill="rgb(207,171,38)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1599.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1573" width="0.0429%" height="15" fill="rgb(234,70,1)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1583.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1557" width="0.0429%" height="15" fill="rgb(232,178,18)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1567.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1541" width="0.0429%" height="15" fill="rgb(241,78,40)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1525" width="0.0429%" height="15" fill="rgb(222,35,25)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1535.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1509" width="0.0429%" height="15" fill="rgb(207,92,16)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1519.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1493" width="0.0429%" height="15" fill="rgb(216,59,51)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1503.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1477" width="0.0429%" height="15" fill="rgb(213,80,28)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1487.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1461" width="0.0429%" height="15" fill="rgb(220,93,7)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1471.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1445" width="0.0429%" height="15" fill="rgb(225,24,44)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1455.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1429" width="0.0429%" height="15" fill="rgb(243,74,40)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1439.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1413" width="0.0429%" height="15" fill="rgb(228,39,7)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1423.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1397" width="0.0429%" height="15" fill="rgb(227,79,8)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1407.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1381" width="0.0429%" height="15" fill="rgb(236,58,11)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1365" width="0.0429%" height="15" fill="rgb(249,63,35)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1375.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1349" width="0.0429%" height="15" fill="rgb(252,114,16)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1359.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1333" width="0.0429%" height="15" fill="rgb(254,151,24)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1343.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="98.9072%" y="1317" width="0.0429%" height="15" fill="rgb(253,54,39)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1327.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1301" width="0.0429%" height="15" fill="rgb(243,25,45)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1311.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9072%" y="1285" width="0.0429%" height="15" fill="rgb(234,134,9)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1295.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1269" width="0.0429%" height="15" fill="rgb(227,166,31)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1279.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (2 samples, 0.04%)</title><rect x="98.9072%" y="1253" width="0.0429%" height="15" fill="rgb(245,143,41)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1263.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="98.9072%" y="1237" width="0.0429%" height="15" fill="rgb(238,181,32)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1247.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="98.9072%" y="1221" width="0.0429%" height="15" fill="rgb(224,113,18)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1231.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="98.9072%" y="1205" width="0.0429%" height="15" fill="rgb(240,229,28)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1215.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="98.9072%" y="1189" width="0.0429%" height="15" fill="rgb(250,185,3)" fg:x="4616" fg:w="2"/><text x="99.1572%" y="1199.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="98.9286%" y="1173" width="0.0214%" height="15" fill="rgb(212,59,25)" fg:x="4617" fg:w="1"/><text x="99.1786%" y="1183.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.02%)</title><rect x="98.9501%" y="1701" width="0.0214%" height="15" fill="rgb(221,87,20)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1711.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="98.9501%" y="1685" width="0.0214%" height="15" fill="rgb(213,74,28)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1695.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="98.9501%" y="1669" width="0.0214%" height="15" fill="rgb(224,132,34)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1679.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.02%)</title><rect x="98.9501%" y="1653" width="0.0214%" height="15" fill="rgb(222,101,24)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1663.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.02%)</title><rect x="98.9501%" y="1637" width="0.0214%" height="15" fill="rgb(254,142,4)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1647.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.02%)</title><rect x="98.9501%" y="1621" width="0.0214%" height="15" fill="rgb(230,229,49)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1631.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.02%)</title><rect x="98.9501%" y="1605" width="0.0214%" height="15" fill="rgb(238,70,47)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1615.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.02%)</title><rect x="98.9501%" y="1589" width="0.0214%" height="15" fill="rgb(231,160,17)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1599.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.02%)</title><rect x="98.9501%" y="1573" width="0.0214%" height="15" fill="rgb(218,68,53)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1583.50"></text></g><g><title>__GI___libc_realloc (1 samples, 0.02%)</title><rect x="98.9501%" y="1557" width="0.0214%" height="15" fill="rgb(236,111,10)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1567.50"></text></g><g><title>_int_realloc (1 samples, 0.02%)</title><rect x="98.9501%" y="1541" width="0.0214%" height="15" fill="rgb(224,34,41)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1551.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="98.9501%" y="1525" width="0.0214%" height="15" fill="rgb(241,118,19)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1535.50"></text></g><g><title>malloc_consolidate (1 samples, 0.02%)</title><rect x="98.9501%" y="1509" width="0.0214%" height="15" fill="rgb(238,129,25)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1519.50"></text></g><g><title>unlink_chunk (1 samples, 0.02%)</title><rect x="98.9501%" y="1493" width="0.0214%" height="15" fill="rgb(238,22,31)" fg:x="4618" fg:w="1"/><text x="99.2001%" y="1503.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (4 samples, 0.09%)</title><rect x="98.9072%" y="1717" width="0.0857%" height="15" fill="rgb(222,174,48)" fg:x="4616" fg:w="4"/><text x="99.1572%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1701" width="0.0214%" height="15" fill="rgb(206,152,40)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1711.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1685" width="0.0214%" height="15" fill="rgb(218,99,54)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1669" width="0.0214%" height="15" fill="rgb(220,174,26)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1679.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1653" width="0.0214%" height="15" fill="rgb(245,116,9)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1637" width="0.0214%" height="15" fill="rgb(209,72,35)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1647.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1621" width="0.0214%" height="15" fill="rgb(226,126,21)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1605" width="0.0214%" height="15" fill="rgb(227,192,1)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1615.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1589" width="0.0214%" height="15" fill="rgb(237,180,29)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1573" width="0.0214%" height="15" fill="rgb(230,197,35)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1583.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1557" width="0.0214%" height="15" fill="rgb(246,193,31)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1541" width="0.0214%" height="15" fill="rgb(241,36,4)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1551.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1525" width="0.0214%" height="15" fill="rgb(241,130,17)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1509" width="0.0214%" height="15" fill="rgb(206,137,32)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1493" width="0.0214%" height="15" fill="rgb(237,228,51)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1477" width="0.0214%" height="15" fill="rgb(243,6,42)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1487.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1461" width="0.0214%" height="15" fill="rgb(251,74,28)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1445" width="0.0214%" height="15" fill="rgb(218,20,49)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1455.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1429" width="0.0214%" height="15" fill="rgb(238,28,14)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1413" width="0.0214%" height="15" fill="rgb(229,40,46)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1423.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1397" width="0.0214%" height="15" fill="rgb(244,195,20)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1381" width="0.0214%" height="15" fill="rgb(253,56,35)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1391.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1365" width="0.0214%" height="15" fill="rgb(210,149,44)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1349" width="0.0214%" height="15" fill="rgb(240,135,12)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1333" width="0.0214%" height="15" fill="rgb(251,24,50)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1317" width="0.0214%" height="15" fill="rgb(243,200,47)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="98.9715%" y="1301" width="0.0214%" height="15" fill="rgb(224,166,26)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1285" width="0.0214%" height="15" fill="rgb(233,0,47)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1269" width="0.0214%" height="15" fill="rgb(253,80,5)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1253" width="0.0214%" height="15" fill="rgb(214,133,25)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="98.9715%" y="1237" width="0.0214%" height="15" fill="rgb(209,27,14)" fg:x="4619" fg:w="1"/><text x="99.2215%" y="1247.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="98.9929%" y="1173" width="0.0429%" height="15" fill="rgb(219,102,51)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1183.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (2 samples, 0.04%)</title><rect x="98.9929%" y="1157" width="0.0429%" height="15" fill="rgb(237,18,16)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1167.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (2 samples, 0.04%)</title><rect x="98.9929%" y="1141" width="0.0429%" height="15" fill="rgb(241,85,17)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1151.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="98.9929%" y="1125" width="0.0429%" height="15" fill="rgb(236,90,42)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1135.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="98.9929%" y="1109" width="0.0429%" height="15" fill="rgb(249,57,21)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1119.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="98.9929%" y="1093" width="0.0429%" height="15" fill="rgb(243,12,36)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1103.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="98.9929%" y="1077" width="0.0429%" height="15" fill="rgb(253,128,47)" fg:x="4620" fg:w="2"/><text x="99.2429%" y="1087.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.0144%" y="1061" width="0.0214%" height="15" fill="rgb(207,33,20)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="1071.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.0144%" y="1045" width="0.0214%" height="15" fill="rgb(233,215,35)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="1055.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.0144%" y="1029" width="0.0214%" height="15" fill="rgb(249,188,52)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="1039.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="99.0144%" y="1013" width="0.0214%" height="15" fill="rgb(225,12,32)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="1023.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="99.0144%" y="997" width="0.0214%" height="15" fill="rgb(247,98,14)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="1007.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="99.0144%" y="981" width="0.0214%" height="15" fill="rgb(247,219,48)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="991.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="99.0144%" y="965" width="0.0214%" height="15" fill="rgb(253,60,48)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="975.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="99.0144%" y="949" width="0.0214%" height="15" fill="rgb(245,15,52)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="959.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="99.0144%" y="933" width="0.0214%" height="15" fill="rgb(220,133,28)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="943.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="99.0144%" y="917" width="0.0214%" height="15" fill="rgb(217,180,4)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="927.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="99.0144%" y="901" width="0.0214%" height="15" fill="rgb(251,24,1)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="911.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="99.0144%" y="885" width="0.0214%" height="15" fill="rgb(212,185,49)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="895.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="99.0144%" y="869" width="0.0214%" height="15" fill="rgb(215,175,22)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="879.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="99.0144%" y="853" width="0.0214%" height="15" fill="rgb(250,205,14)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="863.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="99.0144%" y="837" width="0.0214%" height="15" fill="rgb(225,211,22)" fg:x="4621" fg:w="1"/><text x="99.2644%" y="847.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (3 samples, 0.06%)</title><rect x="98.9929%" y="1525" width="0.0643%" height="15" fill="rgb(251,179,42)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1535.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1509" width="0.0643%" height="15" fill="rgb(208,216,51)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1493" width="0.0643%" height="15" fill="rgb(235,36,11)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1503.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3 samples, 0.06%)</title><rect x="98.9929%" y="1477" width="0.0643%" height="15" fill="rgb(213,189,28)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1487.50"></text></g><g><title>alloc::slice::hack::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1461" width="0.0643%" height="15" fill="rgb(227,203,42)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1471.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1445" width="0.0643%" height="15" fill="rgb(244,72,36)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1455.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1429" width="0.0643%" height="15" fill="rgb(213,53,17)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1439.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1413" width="0.0643%" height="15" fill="rgb(207,167,3)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1423.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3 samples, 0.06%)</title><rect x="98.9929%" y="1397" width="0.0643%" height="15" fill="rgb(216,98,30)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1407.50"></text></g><g><title>alloc::slice::hack::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1381" width="0.0643%" height="15" fill="rgb(236,123,15)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1391.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1365" width="0.0643%" height="15" fill="rgb(248,81,50)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1375.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1349" width="0.0643%" height="15" fill="rgb(214,120,4)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1333" width="0.0643%" height="15" fill="rgb(208,179,34)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1343.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3 samples, 0.06%)</title><rect x="98.9929%" y="1317" width="0.0643%" height="15" fill="rgb(227,140,7)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1327.50"></text></g><g><title>alloc::slice::hack::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1301" width="0.0643%" height="15" fill="rgb(214,22,6)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1311.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1285" width="0.0643%" height="15" fill="rgb(207,137,27)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1295.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1269" width="0.0643%" height="15" fill="rgb(210,8,46)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1253" width="0.0643%" height="15" fill="rgb(240,16,54)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1263.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3 samples, 0.06%)</title><rect x="98.9929%" y="1237" width="0.0643%" height="15" fill="rgb(211,209,29)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1247.50"></text></g><g><title>alloc::slice::hack::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1221" width="0.0643%" height="15" fill="rgb(226,228,24)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1231.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3 samples, 0.06%)</title><rect x="98.9929%" y="1205" width="0.0643%" height="15" fill="rgb(222,84,9)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1215.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (3 samples, 0.06%)</title><rect x="98.9929%" y="1189" width="0.0643%" height="15" fill="rgb(234,203,30)" fg:x="4620" fg:w="3"/><text x="99.2429%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.0358%" y="1173" width="0.0214%" height="15" fill="rgb(238,109,14)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1183.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.0358%" y="1157" width="0.0214%" height="15" fill="rgb(233,206,34)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1167.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.0358%" y="1141" width="0.0214%" height="15" fill="rgb(220,167,47)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1151.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.0358%" y="1125" width="0.0214%" height="15" fill="rgb(238,105,10)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1135.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="99.0358%" y="1109" width="0.0214%" height="15" fill="rgb(213,227,17)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1119.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="99.0358%" y="1093" width="0.0214%" height="15" fill="rgb(217,132,38)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1103.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="99.0358%" y="1077" width="0.0214%" height="15" fill="rgb(242,146,4)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1087.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="99.0358%" y="1061" width="0.0214%" height="15" fill="rgb(212,61,9)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1071.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="99.0358%" y="1045" width="0.0214%" height="15" fill="rgb(247,126,22)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1055.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="99.0358%" y="1029" width="0.0214%" height="15" fill="rgb(220,196,2)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1039.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="99.0358%" y="1013" width="0.0214%" height="15" fill="rgb(208,46,4)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1023.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="99.0358%" y="997" width="0.0214%" height="15" fill="rgb(252,104,46)" fg:x="4622" fg:w="1"/><text x="99.2858%" y="1007.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (1 samples, 0.02%)</title><rect x="99.0572%" y="1333" width="0.0214%" height="15" fill="rgb(237,152,48)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1317" width="0.0214%" height="15" fill="rgb(221,59,37)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.0572%" y="1301" width="0.0214%" height="15" fill="rgb(209,202,51)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1285" width="0.0214%" height="15" fill="rgb(228,81,30)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1269" width="0.0214%" height="15" fill="rgb(227,42,39)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1253" width="0.0214%" height="15" fill="rgb(221,26,2)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.0572%" y="1237" width="0.0214%" height="15" fill="rgb(254,61,31)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1247.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1221" width="0.0214%" height="15" fill="rgb(222,173,38)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1205" width="0.0214%" height="15" fill="rgb(218,50,12)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1215.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1189" width="0.0214%" height="15" fill="rgb(223,88,40)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1199.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.0572%" y="1173" width="0.0214%" height="15" fill="rgb(237,54,19)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1183.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1157" width="0.0214%" height="15" fill="rgb(251,129,25)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1167.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1141" width="0.0214%" height="15" fill="rgb(238,97,19)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1125" width="0.0214%" height="15" fill="rgb(240,169,18)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.0572%" y="1109" width="0.0214%" height="15" fill="rgb(230,187,49)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1093" width="0.0214%" height="15" fill="rgb(209,44,26)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1077" width="0.0214%" height="15" fill="rgb(244,0,6)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1061" width="0.0214%" height="15" fill="rgb(248,18,21)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.0572%" y="1045" width="0.0214%" height="15" fill="rgb(245,180,19)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1029" width="0.0214%" height="15" fill="rgb(252,118,36)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="1013" width="0.0214%" height="15" fill="rgb(210,224,19)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="997" width="0.0214%" height="15" fill="rgb(218,30,24)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.0572%" y="981" width="0.0214%" height="15" fill="rgb(219,75,50)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="965" width="0.0214%" height="15" fill="rgb(234,72,50)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="949" width="0.0214%" height="15" fill="rgb(219,100,48)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.0572%" y="933" width="0.0214%" height="15" fill="rgb(253,5,41)" fg:x="4623" fg:w="1"/><text x="99.3072%" y="943.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.0786%" y="1125" width="0.0214%" height="15" fill="rgb(247,181,11)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.0786%" y="1109" width="0.0214%" height="15" fill="rgb(222,223,25)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1119.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.0786%" y="1093" width="0.0214%" height="15" fill="rgb(214,198,28)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1103.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.0786%" y="1077" width="0.0214%" height="15" fill="rgb(230,46,43)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1087.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.0786%" y="1061" width="0.0214%" height="15" fill="rgb(233,65,53)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1071.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.0786%" y="1045" width="0.0214%" height="15" fill="rgb(221,121,27)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1055.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.0786%" y="1029" width="0.0214%" height="15" fill="rgb(247,70,47)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1039.50"></text></g><g><title>&lt;T as alloc::alloc::WriteCloneIntoRaw&gt;::write_clone_into_raw (1 samples, 0.02%)</title><rect x="99.0786%" y="1013" width="0.0214%" height="15" fill="rgb(228,85,35)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1023.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.0786%" y="997" width="0.0214%" height="15" fill="rgb(209,50,18)" fg:x="4624" fg:w="1"/><text x="99.3286%" y="1007.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (2 samples, 0.04%)</title><rect x="99.0786%" y="1141" width="0.0429%" height="15" fill="rgb(250,19,35)" fg:x="4624" fg:w="2"/><text x="99.3286%" y="1151.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="1125" width="0.0214%" height="15" fill="rgb(253,107,29)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1001%" y="1109" width="0.0214%" height="15" fill="rgb(252,179,29)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1119.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="1093" width="0.0214%" height="15" fill="rgb(238,194,6)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="1077" width="0.0214%" height="15" fill="rgb(238,164,29)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1087.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="1061" width="0.0214%" height="15" fill="rgb(224,25,9)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1071.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1001%" y="1045" width="0.0214%" height="15" fill="rgb(244,153,23)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1055.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="1029" width="0.0214%" height="15" fill="rgb(212,203,14)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1039.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="1013" width="0.0214%" height="15" fill="rgb(220,164,20)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1023.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="997" width="0.0214%" height="15" fill="rgb(222,203,48)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="1007.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1001%" y="981" width="0.0214%" height="15" fill="rgb(215,159,22)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="991.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="965" width="0.0214%" height="15" fill="rgb(216,183,47)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="949" width="0.0214%" height="15" fill="rgb(229,195,25)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="933" width="0.0214%" height="15" fill="rgb(224,132,51)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1001%" y="917" width="0.0214%" height="15" fill="rgb(240,63,7)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1001%" y="901" width="0.0214%" height="15" fill="rgb(249,182,41)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="911.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="99.1001%" y="885" width="0.0214%" height="15" fill="rgb(243,47,26)" fg:x="4625" fg:w="1"/><text x="99.3501%" y="895.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (1 samples, 0.02%)</title><rect x="99.1215%" y="949" width="0.0214%" height="15" fill="rgb(233,48,2)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1215%" y="933" width="0.0214%" height="15" fill="rgb(244,165,34)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1215%" y="917" width="0.0214%" height="15" fill="rgb(207,89,7)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="927.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1215%" y="901" width="0.0214%" height="15" fill="rgb(244,117,36)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="911.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1215%" y="885" width="0.0214%" height="15" fill="rgb(226,144,34)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1215%" y="869" width="0.0214%" height="15" fill="rgb(213,23,19)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1215%" y="853" width="0.0214%" height="15" fill="rgb(217,75,12)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1215%" y="837" width="0.0214%" height="15" fill="rgb(224,159,17)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1215%" y="821" width="0.0214%" height="15" fill="rgb(217,118,1)" fg:x="4626" fg:w="1"/><text x="99.3715%" y="831.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.1429%" y="741" width="0.0214%" height="15" fill="rgb(232,180,48)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.1429%" y="725" width="0.0214%" height="15" fill="rgb(230,27,33)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="735.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.1429%" y="709" width="0.0214%" height="15" fill="rgb(205,31,21)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="719.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.1429%" y="693" width="0.0214%" height="15" fill="rgb(253,59,4)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="703.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.1429%" y="677" width="0.0214%" height="15" fill="rgb(224,201,9)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="687.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.1429%" y="661" width="0.0214%" height="15" fill="rgb(229,206,30)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="671.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.1429%" y="645" width="0.0214%" height="15" fill="rgb(212,67,47)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="655.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (1 samples, 0.02%)</title><rect x="99.1429%" y="629" width="0.0214%" height="15" fill="rgb(211,96,50)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="639.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (1 samples, 0.02%)</title><rect x="99.1429%" y="613" width="0.0214%" height="15" fill="rgb(252,114,18)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="623.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="99.1429%" y="597" width="0.0214%" height="15" fill="rgb(223,58,37)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="607.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="99.1429%" y="581" width="0.0214%" height="15" fill="rgb(237,70,4)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="591.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="99.1429%" y="565" width="0.0214%" height="15" fill="rgb(244,85,46)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="575.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="99.1429%" y="549" width="0.0214%" height="15" fill="rgb(223,39,52)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="559.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="99.1429%" y="533" width="0.0214%" height="15" fill="rgb(218,200,14)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="543.50"></text></g><g><title>asm_exc_page_fault (1 samples, 0.02%)</title><rect x="99.1429%" y="517" width="0.0214%" height="15" fill="rgb(208,171,16)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="527.50"></text></g><g><title>exc_page_fault (1 samples, 0.02%)</title><rect x="99.1429%" y="501" width="0.0214%" height="15" fill="rgb(234,200,18)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="511.50"></text></g><g><title>do_user_addr_fault (1 samples, 0.02%)</title><rect x="99.1429%" y="485" width="0.0214%" height="15" fill="rgb(228,45,11)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="495.50"></text></g><g><title>handle_mm_fault (1 samples, 0.02%)</title><rect x="99.1429%" y="469" width="0.0214%" height="15" fill="rgb(237,182,11)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="479.50"></text></g><g><title>__handle_mm_fault (1 samples, 0.02%)</title><rect x="99.1429%" y="453" width="0.0214%" height="15" fill="rgb(241,175,49)" fg:x="4627" fg:w="1"/><text x="99.3929%" y="463.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.02%)</title><rect x="99.1643%" y="741" width="0.0214%" height="15" fill="rgb(247,38,35)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="751.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="99.1643%" y="725" width="0.0214%" height="15" fill="rgb(228,39,49)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="735.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="99.1643%" y="709" width="0.0214%" height="15" fill="rgb(226,101,26)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="719.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.02%)</title><rect x="99.1643%" y="693" width="0.0214%" height="15" fill="rgb(206,141,19)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="703.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.02%)</title><rect x="99.1643%" y="677" width="0.0214%" height="15" fill="rgb(211,200,13)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="687.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.02%)</title><rect x="99.1643%" y="661" width="0.0214%" height="15" fill="rgb(241,121,6)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="671.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="99.1643%" y="645" width="0.0214%" height="15" fill="rgb(234,221,29)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="655.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="99.1643%" y="629" width="0.0214%" height="15" fill="rgb(229,136,5)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="639.50"></text></g><g><title>asm_exc_page_fault (1 samples, 0.02%)</title><rect x="99.1643%" y="613" width="0.0214%" height="15" fill="rgb(238,36,11)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="623.50"></text></g><g><title>exc_page_fault (1 samples, 0.02%)</title><rect x="99.1643%" y="597" width="0.0214%" height="15" fill="rgb(251,55,41)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="607.50"></text></g><g><title>do_user_addr_fault (1 samples, 0.02%)</title><rect x="99.1643%" y="581" width="0.0214%" height="15" fill="rgb(242,34,40)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="591.50"></text></g><g><title>handle_mm_fault (1 samples, 0.02%)</title><rect x="99.1643%" y="565" width="0.0214%" height="15" fill="rgb(215,42,17)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="575.50"></text></g><g><title>pmd_devmap_trans_unstable (1 samples, 0.02%)</title><rect x="99.1643%" y="549" width="0.0214%" height="15" fill="rgb(207,44,46)" fg:x="4628" fg:w="1"/><text x="99.4143%" y="559.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (3 samples, 0.06%)</title><rect x="99.1429%" y="757" width="0.0643%" height="15" fill="rgb(211,206,28)" fg:x="4627" fg:w="3"/><text x="99.3929%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1858%" y="741" width="0.0214%" height="15" fill="rgb(237,167,16)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1858%" y="725" width="0.0214%" height="15" fill="rgb(233,66,6)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="735.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1858%" y="709" width="0.0214%" height="15" fill="rgb(246,123,29)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1858%" y="693" width="0.0214%" height="15" fill="rgb(209,62,40)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.1858%" y="677" width="0.0214%" height="15" fill="rgb(218,4,25)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.1858%" y="661" width="0.0214%" height="15" fill="rgb(253,91,49)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.1858%" y="645" width="0.0214%" height="15" fill="rgb(228,155,29)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.1858%" y="629" width="0.0214%" height="15" fill="rgb(243,57,37)" fg:x="4629" fg:w="1"/><text x="99.4358%" y="639.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_repeat (1 samples, 0.02%)</title><rect x="99.2072%" y="565" width="0.0214%" height="15" fill="rgb(244,167,17)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="575.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.2072%" y="549" width="0.0214%" height="15" fill="rgb(207,181,38)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.2072%" y="533" width="0.0214%" height="15" fill="rgb(211,8,23)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="543.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.2072%" y="517" width="0.0214%" height="15" fill="rgb(235,11,44)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="527.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.2072%" y="501" width="0.0214%" height="15" fill="rgb(248,18,52)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="511.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.2072%" y="485" width="0.0214%" height="15" fill="rgb(208,4,7)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="495.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.2072%" y="469" width="0.0214%" height="15" fill="rgb(240,17,39)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.2072%" y="453" width="0.0214%" height="15" fill="rgb(207,170,3)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="463.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.2072%" y="437" width="0.0214%" height="15" fill="rgb(236,100,52)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="447.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.2072%" y="421" width="0.0214%" height="15" fill="rgb(246,78,51)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="431.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.2072%" y="405" width="0.0214%" height="15" fill="rgb(211,17,15)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="415.50"></text></g><g><title>&lt;bfinterpreter::interpreter::optimized::ExStatement as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.2072%" y="389" width="0.0214%" height="15" fill="rgb(209,59,46)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.2072%" y="373" width="0.0214%" height="15" fill="rgb(210,92,25)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="383.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.2072%" y="357" width="0.0214%" height="15" fill="rgb(238,174,52)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="367.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.2072%" y="341" width="0.0214%" height="15" fill="rgb(230,73,7)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="351.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.2072%" y="325" width="0.0214%" height="15" fill="rgb(243,124,40)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="335.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="99.2072%" y="309" width="0.0214%" height="15" fill="rgb(244,170,11)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="319.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="99.2072%" y="293" width="0.0214%" height="15" fill="rgb(207,114,54)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="303.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="99.2072%" y="277" width="0.0214%" height="15" fill="rgb(205,42,20)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="287.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="99.2072%" y="261" width="0.0214%" height="15" fill="rgb(230,30,28)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="271.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="99.2072%" y="245" width="0.0214%" height="15" fill="rgb(205,73,54)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="255.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="99.2072%" y="229" width="0.0214%" height="15" fill="rgb(254,227,23)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="239.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="99.2072%" y="213" width="0.0214%" height="15" fill="rgb(228,202,34)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="223.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="99.2072%" y="197" width="0.0214%" height="15" fill="rgb(222,225,37)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="207.50"></text></g><g><title>asm_exc_page_fault (1 samples, 0.02%)</title><rect x="99.2072%" y="181" width="0.0214%" height="15" fill="rgb(221,14,54)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="191.50"></text></g><g><title>exc_page_fault (1 samples, 0.02%)</title><rect x="99.2072%" y="165" width="0.0214%" height="15" fill="rgb(254,102,2)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="175.50"></text></g><g><title>do_user_addr_fault (1 samples, 0.02%)</title><rect x="99.2072%" y="149" width="0.0214%" height="15" fill="rgb(232,104,17)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="159.50"></text></g><g><title>handle_mm_fault (1 samples, 0.02%)</title><rect x="99.2072%" y="133" width="0.0214%" height="15" fill="rgb(250,220,14)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="143.50"></text></g><g><title>__handle_mm_fault (1 samples, 0.02%)</title><rect x="99.2072%" y="117" width="0.0214%" height="15" fill="rgb(241,158,9)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="127.50"></text></g><g><title>do_anonymous_page (1 samples, 0.02%)</title><rect x="99.2072%" y="101" width="0.0214%" height="15" fill="rgb(246,9,43)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="111.50"></text></g><g><title>alloc_pages_vma (1 samples, 0.02%)</title><rect x="99.2072%" y="85" width="0.0214%" height="15" fill="rgb(206,73,33)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="95.50"></text></g><g><title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="99.2072%" y="69" width="0.0214%" height="15" fill="rgb(222,79,8)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="79.50"></text></g><g><title>get_page_from_freelist (1 samples, 0.02%)</title><rect x="99.2072%" y="53" width="0.0214%" height="15" fill="rgb(234,8,54)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="63.50"></text></g><g><title>rmqueue (1 samples, 0.02%)</title><rect x="99.2072%" y="37" width="0.0214%" height="15" fill="rgb(209,134,38)" fg:x="4630" fg:w="1"/><text x="99.4572%" y="47.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (2 samples, 0.04%)</title><rect x="99.2072%" y="677" width="0.0429%" height="15" fill="rgb(230,127,29)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="687.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.04%)</title><rect x="99.2072%" y="661" width="0.0429%" height="15" fill="rgb(242,44,41)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2 samples, 0.04%)</title><rect x="99.2072%" y="645" width="0.0429%" height="15" fill="rgb(222,56,43)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.04%)</title><rect x="99.2072%" y="629" width="0.0429%" height="15" fill="rgb(238,39,47)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="639.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.04%)</title><rect x="99.2072%" y="613" width="0.0429%" height="15" fill="rgb(226,79,43)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="623.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (2 samples, 0.04%)</title><rect x="99.2072%" y="597" width="0.0429%" height="15" fill="rgb(242,105,53)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="607.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (2 samples, 0.04%)</title><rect x="99.2072%" y="581" width="0.0429%" height="15" fill="rgb(251,132,46)" fg:x="4630" fg:w="2"/><text x="99.4572%" y="591.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (1 samples, 0.02%)</title><rect x="99.2286%" y="565" width="0.0214%" height="15" fill="rgb(231,77,14)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.02%)</title><rect x="99.2286%" y="549" width="0.0214%" height="15" fill="rgb(240,135,9)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.02%)</title><rect x="99.2286%" y="533" width="0.0214%" height="15" fill="rgb(248,109,14)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (1 samples, 0.02%)</title><rect x="99.2286%" y="517" width="0.0214%" height="15" fill="rgb(227,146,52)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="527.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.02%)</title><rect x="99.2286%" y="501" width="0.0214%" height="15" fill="rgb(232,54,3)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (1 samples, 0.02%)</title><rect x="99.2286%" y="485" width="0.0214%" height="15" fill="rgb(229,201,43)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="495.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.02%)</title><rect x="99.2286%" y="469" width="0.0214%" height="15" fill="rgb(252,161,33)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="479.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.02%)</title><rect x="99.2286%" y="453" width="0.0214%" height="15" fill="rgb(226,146,40)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.02%)</title><rect x="99.2286%" y="437" width="0.0214%" height="15" fill="rgb(219,47,25)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="447.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.02%)</title><rect x="99.2286%" y="421" width="0.0214%" height="15" fill="rgb(250,135,13)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="431.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (1 samples, 0.02%)</title><rect x="99.2286%" y="405" width="0.0214%" height="15" fill="rgb(219,229,18)" fg:x="4631" fg:w="1"/><text x="99.4786%" y="415.50"></text></g><g><title>_cond_resched (1 samples, 0.02%)</title><rect x="99.2501%" y="485" width="0.0214%" height="15" fill="rgb(217,152,27)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="495.50"></text></g><g><title>preempt_schedule_common (1 samples, 0.02%)</title><rect x="99.2501%" y="469" width="0.0214%" height="15" fill="rgb(225,71,47)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="479.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="99.2501%" y="453" width="0.0214%" height="15" fill="rgb(220,139,14)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="463.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="99.2501%" y="437" width="0.0214%" height="15" fill="rgb(247,54,32)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="447.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="99.2501%" y="421" width="0.0214%" height="15" fill="rgb(252,131,39)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="431.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="99.2501%" y="405" width="0.0214%" height="15" fill="rgb(210,108,39)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="415.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="99.2501%" y="389" width="0.0214%" height="15" fill="rgb(205,23,29)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="399.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="99.2501%" y="373" width="0.0214%" height="15" fill="rgb(246,139,46)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="383.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="99.2501%" y="357" width="0.0214%" height="15" fill="rgb(250,81,26)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="367.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="99.2501%" y="341" width="0.0214%" height="15" fill="rgb(214,104,7)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="351.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="99.2501%" y="325" width="0.0214%" height="15" fill="rgb(233,189,8)" fg:x="4632" fg:w="1"/><text x="99.5001%" y="335.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (7 samples, 0.15%)</title><rect x="99.1429%" y="789" width="0.1500%" height="15" fill="rgb(228,141,17)" fg:x="4627" fg:w="7"/><text x="99.3929%" y="799.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (7 samples, 0.15%)</title><rect x="99.1429%" y="773" width="0.1500%" height="15" fill="rgb(247,157,1)" fg:x="4627" fg:w="7"/><text x="99.3929%" y="783.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (4 samples, 0.09%)</title><rect x="99.2072%" y="757" width="0.0857%" height="15" fill="rgb(249,225,5)" fg:x="4630" fg:w="4"/><text x="99.4572%" y="767.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (4 samples, 0.09%)</title><rect x="99.2072%" y="741" width="0.0857%" height="15" fill="rgb(242,55,13)" fg:x="4630" fg:w="4"/><text x="99.4572%" y="751.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (4 samples, 0.09%)</title><rect x="99.2072%" y="725" width="0.0857%" height="15" fill="rgb(230,49,50)" fg:x="4630" fg:w="4"/><text x="99.4572%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (4 samples, 0.09%)</title><rect x="99.2072%" y="709" width="0.0857%" height="15" fill="rgb(241,111,38)" fg:x="4630" fg:w="4"/><text x="99.4572%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (4 samples, 0.09%)</title><rect x="99.2072%" y="693" width="0.0857%" height="15" fill="rgb(252,155,4)" fg:x="4630" fg:w="4"/><text x="99.4572%" y="703.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2 samples, 0.04%)</title><rect x="99.2501%" y="677" width="0.0429%" height="15" fill="rgb(212,69,32)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="687.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="99.2501%" y="661" width="0.0429%" height="15" fill="rgb(243,107,47)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="671.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="99.2501%" y="645" width="0.0429%" height="15" fill="rgb(247,130,12)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="99.2501%" y="629" width="0.0429%" height="15" fill="rgb(233,74,16)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="639.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="99.2501%" y="613" width="0.0429%" height="15" fill="rgb(208,58,18)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="623.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="99.2501%" y="597" width="0.0429%" height="15" fill="rgb(242,225,1)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="607.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="99.2501%" y="581" width="0.0429%" height="15" fill="rgb(249,39,40)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="591.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="99.2501%" y="565" width="0.0429%" height="15" fill="rgb(207,72,44)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="575.50"></text></g><g><title>_int_malloc (2 samples, 0.04%)</title><rect x="99.2501%" y="549" width="0.0429%" height="15" fill="rgb(215,193,12)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="559.50"></text></g><g><title>asm_exc_page_fault (2 samples, 0.04%)</title><rect x="99.2501%" y="533" width="0.0429%" height="15" fill="rgb(248,41,39)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="543.50"></text></g><g><title>exc_page_fault (2 samples, 0.04%)</title><rect x="99.2501%" y="517" width="0.0429%" height="15" fill="rgb(253,85,4)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="527.50"></text></g><g><title>do_user_addr_fault (2 samples, 0.04%)</title><rect x="99.2501%" y="501" width="0.0429%" height="15" fill="rgb(243,70,31)" fg:x="4632" fg:w="2"/><text x="99.5001%" y="511.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.2715%" y="485" width="0.0214%" height="15" fill="rgb(253,195,26)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="495.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.2715%" y="469" width="0.0214%" height="15" fill="rgb(243,42,11)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="479.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="99.2715%" y="453" width="0.0214%" height="15" fill="rgb(239,66,17)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="463.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.2715%" y="437" width="0.0214%" height="15" fill="rgb(217,132,21)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="447.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="99.2715%" y="421" width="0.0214%" height="15" fill="rgb(252,202,21)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="431.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="99.2715%" y="405" width="0.0214%" height="15" fill="rgb(233,98,36)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="415.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="99.2715%" y="389" width="0.0214%" height="15" fill="rgb(216,153,54)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="399.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="99.2715%" y="373" width="0.0214%" height="15" fill="rgb(250,99,7)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="383.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="99.2715%" y="357" width="0.0214%" height="15" fill="rgb(207,56,50)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="367.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="99.2715%" y="341" width="0.0214%" height="15" fill="rgb(244,61,34)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="351.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="99.2715%" y="325" width="0.0214%" height="15" fill="rgb(241,50,38)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="335.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="99.2715%" y="309" width="0.0214%" height="15" fill="rgb(212,166,30)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="319.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="99.2715%" y="293" width="0.0214%" height="15" fill="rgb(249,127,32)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="303.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="99.2715%" y="277" width="0.0214%" height="15" fill="rgb(209,103,0)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="287.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="99.2715%" y="261" width="0.0214%" height="15" fill="rgb(238,209,51)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="271.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="99.2715%" y="245" width="0.0214%" height="15" fill="rgb(237,56,23)" fg:x="4633" fg:w="1"/><text x="99.5215%" y="255.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (19 samples, 0.41%)</title><rect x="98.9072%" y="1733" width="0.4071%" height="15" fill="rgb(215,153,46)" fg:x="4616" fg:w="19"/><text x="99.1572%" y="1743.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (15 samples, 0.32%)</title><rect x="98.9929%" y="1717" width="0.3214%" height="15" fill="rgb(224,49,31)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1727.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (15 samples, 0.32%)</title><rect x="98.9929%" y="1701" width="0.3214%" height="15" fill="rgb(250,18,42)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1711.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (15 samples, 0.32%)</title><rect x="98.9929%" y="1685" width="0.3214%" height="15" fill="rgb(215,176,39)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1695.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (15 samples, 0.32%)</title><rect x="98.9929%" y="1669" width="0.3214%" height="15" fill="rgb(223,77,29)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (15 samples, 0.32%)</title><rect x="98.9929%" y="1653" width="0.3214%" height="15" fill="rgb(234,94,52)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1663.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (15 samples, 0.32%)</title><rect x="98.9929%" y="1637" width="0.3214%" height="15" fill="rgb(220,154,50)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1647.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (15 samples, 0.32%)</title><rect x="98.9929%" y="1621" width="0.3214%" height="15" fill="rgb(212,11,10)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1631.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (15 samples, 0.32%)</title><rect x="98.9929%" y="1605" width="0.3214%" height="15" fill="rgb(205,166,19)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1615.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (15 samples, 0.32%)</title><rect x="98.9929%" y="1589" width="0.3214%" height="15" fill="rgb(244,198,16)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1599.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (15 samples, 0.32%)</title><rect x="98.9929%" y="1573" width="0.3214%" height="15" fill="rgb(219,69,12)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1583.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (15 samples, 0.32%)</title><rect x="98.9929%" y="1557" width="0.3214%" height="15" fill="rgb(245,30,7)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1567.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (15 samples, 0.32%)</title><rect x="98.9929%" y="1541" width="0.3214%" height="15" fill="rgb(218,221,48)" fg:x="4620" fg:w="15"/><text x="99.2429%" y="1551.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (12 samples, 0.26%)</title><rect x="99.0572%" y="1525" width="0.2571%" height="15" fill="rgb(216,66,15)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1535.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (12 samples, 0.26%)</title><rect x="99.0572%" y="1509" width="0.2571%" height="15" fill="rgb(226,122,50)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1519.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (12 samples, 0.26%)</title><rect x="99.0572%" y="1493" width="0.2571%" height="15" fill="rgb(239,156,16)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1503.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (12 samples, 0.26%)</title><rect x="99.0572%" y="1477" width="0.2571%" height="15" fill="rgb(224,27,38)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (12 samples, 0.26%)</title><rect x="99.0572%" y="1461" width="0.2571%" height="15" fill="rgb(224,39,27)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1471.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (12 samples, 0.26%)</title><rect x="99.0572%" y="1445" width="0.2571%" height="15" fill="rgb(215,92,29)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1455.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (12 samples, 0.26%)</title><rect x="99.0572%" y="1429" width="0.2571%" height="15" fill="rgb(207,159,16)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1439.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (12 samples, 0.26%)</title><rect x="99.0572%" y="1413" width="0.2571%" height="15" fill="rgb(238,163,47)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1423.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (12 samples, 0.26%)</title><rect x="99.0572%" y="1397" width="0.2571%" height="15" fill="rgb(219,91,49)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1407.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (12 samples, 0.26%)</title><rect x="99.0572%" y="1381" width="0.2571%" height="15" fill="rgb(227,167,31)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1391.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (12 samples, 0.26%)</title><rect x="99.0572%" y="1365" width="0.2571%" height="15" fill="rgb(234,80,54)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1375.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (12 samples, 0.26%)</title><rect x="99.0572%" y="1349" width="0.2571%" height="15" fill="rgb(212,114,2)" fg:x="4623" fg:w="12"/><text x="99.3072%" y="1359.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (11 samples, 0.24%)</title><rect x="99.0786%" y="1333" width="0.2357%" height="15" fill="rgb(234,50,24)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1343.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (11 samples, 0.24%)</title><rect x="99.0786%" y="1317" width="0.2357%" height="15" fill="rgb(221,68,8)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1327.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (11 samples, 0.24%)</title><rect x="99.0786%" y="1301" width="0.2357%" height="15" fill="rgb(254,180,31)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1311.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (11 samples, 0.24%)</title><rect x="99.0786%" y="1285" width="0.2357%" height="15" fill="rgb(247,130,50)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (11 samples, 0.24%)</title><rect x="99.0786%" y="1269" width="0.2357%" height="15" fill="rgb(211,109,4)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1279.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (11 samples, 0.24%)</title><rect x="99.0786%" y="1253" width="0.2357%" height="15" fill="rgb(238,50,21)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1263.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (11 samples, 0.24%)</title><rect x="99.0786%" y="1237" width="0.2357%" height="15" fill="rgb(225,57,45)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1247.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (11 samples, 0.24%)</title><rect x="99.0786%" y="1221" width="0.2357%" height="15" fill="rgb(209,196,50)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (11 samples, 0.24%)</title><rect x="99.0786%" y="1205" width="0.2357%" height="15" fill="rgb(242,140,13)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1215.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (11 samples, 0.24%)</title><rect x="99.0786%" y="1189" width="0.2357%" height="15" fill="rgb(217,111,7)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1199.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (11 samples, 0.24%)</title><rect x="99.0786%" y="1173" width="0.2357%" height="15" fill="rgb(253,193,51)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1183.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (11 samples, 0.24%)</title><rect x="99.0786%" y="1157" width="0.2357%" height="15" fill="rgb(252,70,29)" fg:x="4624" fg:w="11"/><text x="99.3286%" y="1167.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (9 samples, 0.19%)</title><rect x="99.1215%" y="1141" width="0.1928%" height="15" fill="rgb(232,127,12)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1151.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (9 samples, 0.19%)</title><rect x="99.1215%" y="1125" width="0.1928%" height="15" fill="rgb(211,180,21)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1135.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (9 samples, 0.19%)</title><rect x="99.1215%" y="1109" width="0.1928%" height="15" fill="rgb(229,72,13)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1119.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (9 samples, 0.19%)</title><rect x="99.1215%" y="1093" width="0.1928%" height="15" fill="rgb(240,211,49)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (9 samples, 0.19%)</title><rect x="99.1215%" y="1077" width="0.1928%" height="15" fill="rgb(219,149,40)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1087.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (9 samples, 0.19%)</title><rect x="99.1215%" y="1061" width="0.1928%" height="15" fill="rgb(210,127,46)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (9 samples, 0.19%)</title><rect x="99.1215%" y="1045" width="0.1928%" height="15" fill="rgb(220,106,7)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1055.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.19%)</title><rect x="99.1215%" y="1029" width="0.1928%" height="15" fill="rgb(249,31,22)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1039.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (9 samples, 0.19%)</title><rect x="99.1215%" y="1013" width="0.1928%" height="15" fill="rgb(253,1,49)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1023.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (9 samples, 0.19%)</title><rect x="99.1215%" y="997" width="0.1928%" height="15" fill="rgb(227,144,33)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="1007.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null::{{closure}} (9 samples, 0.19%)</title><rect x="99.1215%" y="981" width="0.1928%" height="15" fill="rgb(249,163,44)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="991.50"></text></g><g><title>bfinterpreter::interpreter::optimized::optimize (9 samples, 0.19%)</title><rect x="99.1215%" y="965" width="0.1928%" height="15" fill="rgb(234,15,39)" fg:x="4626" fg:w="9"/><text x="99.3715%" y="975.50"></text></g><g><title>bfinterpreter::interpreter::optimized::o_set_null (8 samples, 0.17%)</title><rect x="99.1429%" y="949" width="0.1714%" height="15" fill="rgb(207,66,16)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="959.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (8 samples, 0.17%)</title><rect x="99.1429%" y="933" width="0.1714%" height="15" fill="rgb(233,112,24)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="943.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (8 samples, 0.17%)</title><rect x="99.1429%" y="917" width="0.1714%" height="15" fill="rgb(230,90,22)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="927.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (8 samples, 0.17%)</title><rect x="99.1429%" y="901" width="0.1714%" height="15" fill="rgb(229,61,13)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (8 samples, 0.17%)</title><rect x="99.1429%" y="885" width="0.1714%" height="15" fill="rgb(225,57,24)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="895.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (8 samples, 0.17%)</title><rect x="99.1429%" y="869" width="0.1714%" height="15" fill="rgb(208,169,48)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="879.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (8 samples, 0.17%)</title><rect x="99.1429%" y="853" width="0.1714%" height="15" fill="rgb(244,218,51)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.17%)</title><rect x="99.1429%" y="837" width="0.1714%" height="15" fill="rgb(214,148,10)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="847.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (8 samples, 0.17%)</title><rect x="99.1429%" y="821" width="0.1714%" height="15" fill="rgb(225,174,27)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="831.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (8 samples, 0.17%)</title><rect x="99.1429%" y="805" width="0.1714%" height="15" fill="rgb(230,96,26)" fg:x="4627" fg:w="8"/><text x="99.3929%" y="815.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (1 samples, 0.02%)</title><rect x="99.2929%" y="789" width="0.0214%" height="15" fill="rgb(232,10,30)" fg:x="4634" fg:w="1"/><text x="99.5429%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend::{{closure}} (1 samples, 0.02%)</title><rect x="99.2929%" y="773" width="0.0214%" height="15" fill="rgb(222,8,50)" fg:x="4634" fg:w="1"/><text x="99.5429%" y="783.50"></text></g><g><title>core::ptr::write (1 samples, 0.02%)</title><rect x="99.2929%" y="757" width="0.0214%" height="15" fill="rgb(213,81,27)" fg:x="4634" fg:w="1"/><text x="99.5429%" y="767.50"></text></g><g><title>asm_exc_page_fault (1 samples, 0.02%)</title><rect x="99.2929%" y="741" width="0.0214%" height="15" fill="rgb(245,50,10)" fg:x="4634" fg:w="1"/><text x="99.5429%" y="751.50"></text></g><g><title>asm_exc_page_fault (1 samples, 0.02%)</title><rect x="99.3358%" y="1525" width="0.0214%" height="15" fill="rgb(216,100,18)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1535.50"></text></g><g><title>exc_page_fault (1 samples, 0.02%)</title><rect x="99.3358%" y="1509" width="0.0214%" height="15" fill="rgb(236,147,54)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1519.50"></text></g><g><title>do_user_addr_fault (1 samples, 0.02%)</title><rect x="99.3358%" y="1493" width="0.0214%" height="15" fill="rgb(205,143,26)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1503.50"></text></g><g><title>handle_mm_fault (1 samples, 0.02%)</title><rect x="99.3358%" y="1477" width="0.0214%" height="15" fill="rgb(236,26,9)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1487.50"></text></g><g><title>__handle_mm_fault (1 samples, 0.02%)</title><rect x="99.3358%" y="1461" width="0.0214%" height="15" fill="rgb(221,165,53)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1471.50"></text></g><g><title>do_anonymous_page (1 samples, 0.02%)</title><rect x="99.3358%" y="1445" width="0.0214%" height="15" fill="rgb(214,110,17)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1455.50"></text></g><g><title>alloc_pages_vma (1 samples, 0.02%)</title><rect x="99.3358%" y="1429" width="0.0214%" height="15" fill="rgb(237,197,12)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1439.50"></text></g><g><title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="99.3358%" y="1413" width="0.0214%" height="15" fill="rgb(205,84,17)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1423.50"></text></g><g><title>get_page_from_freelist (1 samples, 0.02%)</title><rect x="99.3358%" y="1397" width="0.0214%" height="15" fill="rgb(237,18,45)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1407.50"></text></g><g><title>clear_page_rep (1 samples, 0.02%)</title><rect x="99.3358%" y="1381" width="0.0214%" height="15" fill="rgb(221,87,14)" fg:x="4636" fg:w="1"/><text x="99.5858%" y="1391.50"></text></g><g><title>do_brk_flags (1 samples, 0.02%)</title><rect x="99.3572%" y="1397" width="0.0214%" height="15" fill="rgb(238,186,15)" fg:x="4637" fg:w="1"/><text x="99.6072%" y="1407.50"></text></g><g><title>perf_event_mmap (1 samples, 0.02%)</title><rect x="99.3572%" y="1381" width="0.0214%" height="15" fill="rgb(208,115,11)" fg:x="4637" fg:w="1"/><text x="99.6072%" y="1391.50"></text></g><g><title>perf_iterate_sb (1 samples, 0.02%)</title><rect x="99.3572%" y="1365" width="0.0214%" height="15" fill="rgb(254,175,0)" fg:x="4637" fg:w="1"/><text x="99.6072%" y="1375.50"></text></g><g><title>perf_iterate_ctx (1 samples, 0.02%)</title><rect x="99.3572%" y="1349" width="0.0214%" height="15" fill="rgb(227,24,42)" fg:x="4637" fg:w="1"/><text x="99.6072%" y="1359.50"></text></g><g><title>_int_malloc (3 samples, 0.06%)</title><rect x="99.3358%" y="1541" width="0.0643%" height="15" fill="rgb(223,211,37)" fg:x="4636" fg:w="3"/><text x="99.5858%" y="1551.50"></text></g><g><title>sysmalloc (2 samples, 0.04%)</title><rect x="99.3572%" y="1525" width="0.0429%" height="15" fill="rgb(235,49,27)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1535.50"></text></g><g><title>__GI___default_morecore (2 samples, 0.04%)</title><rect x="99.3572%" y="1509" width="0.0429%" height="15" fill="rgb(254,97,51)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1519.50"></text></g><g><title>__GI___sbrk (2 samples, 0.04%)</title><rect x="99.3572%" y="1493" width="0.0429%" height="15" fill="rgb(249,51,40)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1503.50"></text></g><g><title>__GI___sbrk (2 samples, 0.04%)</title><rect x="99.3572%" y="1477" width="0.0429%" height="15" fill="rgb(210,128,45)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1487.50"></text></g><g><title>__brk (2 samples, 0.04%)</title><rect x="99.3572%" y="1461" width="0.0429%" height="15" fill="rgb(224,137,50)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1471.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2 samples, 0.04%)</title><rect x="99.3572%" y="1445" width="0.0429%" height="15" fill="rgb(242,15,9)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1455.50"></text></g><g><title>do_syscall_64 (2 samples, 0.04%)</title><rect x="99.3572%" y="1429" width="0.0429%" height="15" fill="rgb(233,187,41)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1439.50"></text></g><g><title>__x64_sys_brk (2 samples, 0.04%)</title><rect x="99.3572%" y="1413" width="0.0429%" height="15" fill="rgb(227,2,29)" fg:x="4637" fg:w="2"/><text x="99.6072%" y="1423.50"></text></g><g><title>perf_event_mmap (1 samples, 0.02%)</title><rect x="99.3786%" y="1397" width="0.0214%" height="15" fill="rgb(222,70,3)" fg:x="4638" fg:w="1"/><text x="99.6286%" y="1407.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.4000%" y="1493" width="0.0214%" height="15" fill="rgb(213,11,42)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1503.50"></text></g><g><title>sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.4000%" y="1477" width="0.0214%" height="15" fill="rgb(225,150,9)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1487.50"></text></g><g><title>asm_call_sysvec_on_stack (1 samples, 0.02%)</title><rect x="99.4000%" y="1461" width="0.0214%" height="15" fill="rgb(230,162,45)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1471.50"></text></g><g><title>__sysvec_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="99.4000%" y="1445" width="0.0214%" height="15" fill="rgb(222,14,52)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1455.50"></text></g><g><title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="99.4000%" y="1429" width="0.0214%" height="15" fill="rgb(254,198,14)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1439.50"></text></g><g><title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="99.4000%" y="1413" width="0.0214%" height="15" fill="rgb(220,217,30)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1423.50"></text></g><g><title>tick_sched_timer (1 samples, 0.02%)</title><rect x="99.4000%" y="1397" width="0.0214%" height="15" fill="rgb(215,146,41)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1407.50"></text></g><g><title>tick_sched_handle.isra.0 (1 samples, 0.02%)</title><rect x="99.4000%" y="1381" width="0.0214%" height="15" fill="rgb(217,27,36)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1391.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="99.4000%" y="1365" width="0.0214%" height="15" fill="rgb(219,218,39)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1375.50"></text></g><g><title>scheduler_tick (1 samples, 0.02%)</title><rect x="99.4000%" y="1349" width="0.0214%" height="15" fill="rgb(219,4,42)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1359.50"></text></g><g><title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="99.4000%" y="1333" width="0.0214%" height="15" fill="rgb(249,119,36)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1343.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="99.4000%" y="1317" width="0.0214%" height="15" fill="rgb(209,23,33)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1327.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="99.4000%" y="1301" width="0.0214%" height="15" fill="rgb(211,10,0)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1311.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="99.4000%" y="1285" width="0.0214%" height="15" fill="rgb(208,99,37)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1295.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="99.4000%" y="1269" width="0.0214%" height="15" fill="rgb(213,132,31)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1279.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="99.4000%" y="1253" width="0.0214%" height="15" fill="rgb(243,129,40)" fg:x="4639" fg:w="1"/><text x="99.6500%" y="1263.50"></text></g><g><title>cgroup_throttle_swaprate (1 samples, 0.02%)</title><rect x="99.4215%" y="1461" width="0.0214%" height="15" fill="rgb(210,66,33)" fg:x="4640" fg:w="1"/><text x="99.6715%" y="1471.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (6 samples, 0.13%)</title><rect x="99.3358%" y="1717" width="0.1286%" height="15" fill="rgb(209,189,4)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1727.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (6 samples, 0.13%)</title><rect x="99.3358%" y="1701" width="0.1286%" height="15" fill="rgb(214,107,37)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1711.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (6 samples, 0.13%)</title><rect x="99.3358%" y="1685" width="0.1286%" height="15" fill="rgb(245,88,54)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1695.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (6 samples, 0.13%)</title><rect x="99.3358%" y="1669" width="0.1286%" height="15" fill="rgb(205,146,20)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1679.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (6 samples, 0.13%)</title><rect x="99.3358%" y="1653" width="0.1286%" height="15" fill="rgb(220,161,25)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1663.50"></text></g><g><title>alloc::raw_vec::finish_grow (6 samples, 0.13%)</title><rect x="99.3358%" y="1637" width="0.1286%" height="15" fill="rgb(215,152,15)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1647.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (6 samples, 0.13%)</title><rect x="99.3358%" y="1621" width="0.1286%" height="15" fill="rgb(233,192,44)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1631.50"></text></g><g><title>alloc::alloc::Global::grow_impl (6 samples, 0.13%)</title><rect x="99.3358%" y="1605" width="0.1286%" height="15" fill="rgb(240,170,46)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1615.50"></text></g><g><title>alloc::alloc::realloc (6 samples, 0.13%)</title><rect x="99.3358%" y="1589" width="0.1286%" height="15" fill="rgb(207,104,33)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1599.50"></text></g><g><title>__GI___libc_realloc (6 samples, 0.13%)</title><rect x="99.3358%" y="1573" width="0.1286%" height="15" fill="rgb(219,21,39)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1583.50"></text></g><g><title>_int_realloc (6 samples, 0.13%)</title><rect x="99.3358%" y="1557" width="0.1286%" height="15" fill="rgb(214,133,29)" fg:x="4636" fg:w="6"/><text x="99.5858%" y="1567.50"></text></g><g><title>asm_exc_page_fault (3 samples, 0.06%)</title><rect x="99.4000%" y="1541" width="0.0643%" height="15" fill="rgb(226,93,6)" fg:x="4639" fg:w="3"/><text x="99.6500%" y="1551.50"></text></g><g><title>exc_page_fault (3 samples, 0.06%)</title><rect x="99.4000%" y="1525" width="0.0643%" height="15" fill="rgb(252,222,34)" fg:x="4639" fg:w="3"/><text x="99.6500%" y="1535.50"></text></g><g><title>do_user_addr_fault (3 samples, 0.06%)</title><rect x="99.4000%" y="1509" width="0.0643%" height="15" fill="rgb(252,92,48)" fg:x="4639" fg:w="3"/><text x="99.6500%" y="1519.50"></text></g><g><title>handle_mm_fault (2 samples, 0.04%)</title><rect x="99.4215%" y="1493" width="0.0429%" height="15" fill="rgb(245,223,24)" fg:x="4640" fg:w="2"/><text x="99.6715%" y="1503.50"></text></g><g><title>__handle_mm_fault (2 samples, 0.04%)</title><rect x="99.4215%" y="1477" width="0.0429%" height="15" fill="rgb(205,176,3)" fg:x="4640" fg:w="2"/><text x="99.6715%" y="1487.50"></text></g><g><title>do_anonymous_page (1 samples, 0.02%)</title><rect x="99.4429%" y="1461" width="0.0214%" height="15" fill="rgb(235,151,15)" fg:x="4641" fg:w="1"/><text x="99.6929%" y="1471.50"></text></g><g><title>alloc_pages_vma (1 samples, 0.02%)</title><rect x="99.4429%" y="1445" width="0.0214%" height="15" fill="rgb(237,209,11)" fg:x="4641" fg:w="1"/><text x="99.6929%" y="1455.50"></text></g><g><title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="99.4429%" y="1429" width="0.0214%" height="15" fill="rgb(243,227,24)" fg:x="4641" fg:w="1"/><text x="99.6929%" y="1439.50"></text></g><g><title>get_page_from_freelist (1 samples, 0.02%)</title><rect x="99.4429%" y="1413" width="0.0214%" height="15" fill="rgb(239,193,16)" fg:x="4641" fg:w="1"/><text x="99.6929%" y="1423.50"></text></g><g><title>rmqueue (1 samples, 0.02%)</title><rect x="99.4429%" y="1397" width="0.0214%" height="15" fill="rgb(231,27,9)" fg:x="4641" fg:w="1"/><text x="99.6929%" y="1407.50"></text></g><g><title>bfinterpreter::interpreter::parse (8 samples, 0.17%)</title><rect x="99.3143%" y="1733" width="0.1714%" height="15" fill="rgb(219,169,10)" fg:x="4635" fg:w="8"/><text x="99.5643%" y="1743.50"></text></g><g><title>asm_exc_page_fault (1 samples, 0.02%)</title><rect x="99.4643%" y="1717" width="0.0214%" height="15" fill="rgb(244,229,43)" fg:x="4642" fg:w="1"/><text x="99.7143%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::Statement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1733" width="0.0214%" height="15" fill="rgb(254,38,20)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1743.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.4858%" y="1717" width="0.0214%" height="15" fill="rgb(250,47,30)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::Statement]&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1701" width="0.0214%" height="15" fill="rgb(224,124,36)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::Statement&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1685" width="0.0214%" height="15" fill="rgb(246,68,51)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::Statement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1669" width="0.0214%" height="15" fill="rgb(253,43,49)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.4858%" y="1653" width="0.0214%" height="15" fill="rgb(219,54,36)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::Statement]&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1637" width="0.0214%" height="15" fill="rgb(227,133,34)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::Statement&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1621" width="0.0214%" height="15" fill="rgb(247,227,15)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::Statement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1605" width="0.0214%" height="15" fill="rgb(229,96,14)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1615.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.4858%" y="1589" width="0.0214%" height="15" fill="rgb(220,79,17)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::Statement]&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1573" width="0.0214%" height="15" fill="rgb(205,131,53)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::Statement&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1557" width="0.0214%" height="15" fill="rgb(209,50,29)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::Statement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1541" width="0.0214%" height="15" fill="rgb(245,86,46)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.4858%" y="1525" width="0.0214%" height="15" fill="rgb(235,66,46)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::Statement]&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1509" width="0.0214%" height="15" fill="rgb(232,148,31)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::Statement&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1493" width="0.0214%" height="15" fill="rgb(217,149,8)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::Statement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1477" width="0.0214%" height="15" fill="rgb(209,183,11)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.4858%" y="1461" width="0.0214%" height="15" fill="rgb(208,55,20)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::Statement]&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1445" width="0.0214%" height="15" fill="rgb(218,39,14)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::Statement&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1429" width="0.0214%" height="15" fill="rgb(216,169,33)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::Statement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1413" width="0.0214%" height="15" fill="rgb(233,80,24)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.4858%" y="1397" width="0.0214%" height="15" fill="rgb(213,179,31)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::Statement]&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1381" width="0.0214%" height="15" fill="rgb(209,19,5)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::Statement&gt; (1 samples, 0.02%)</title><rect x="99.4858%" y="1365" width="0.0214%" height="15" fill="rgb(219,18,35)" fg:x="4643" fg:w="1"/><text x="99.7358%" y="1375.50"></text></g><g><title>[unknown] (4,645 samples, 99.53%)</title><rect x="0.0000%" y="1765" width="99.5286%" height="15" fill="rgb(209,169,16)" fg:x="0" fg:w="4645"/><text x="0.2500%" y="1775.50">[unknown]</text></g><g><title>bfinterpreter::interpreter::optimized::run (4,645 samples, 99.53%)</title><rect x="0.0000%" y="1749" width="99.5286%" height="15" fill="rgb(245,90,51)" fg:x="0" fg:w="4645"/><text x="0.2500%" y="1759.50">bfinterpreter::interpreter::optimized::run</text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1733" width="0.0214%" height="15" fill="rgb(220,99,45)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1743.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1717" width="0.0214%" height="15" fill="rgb(249,89,25)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1727.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1701" width="0.0214%" height="15" fill="rgb(239,193,0)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1711.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1685" width="0.0214%" height="15" fill="rgb(231,126,1)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1695.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1669" width="0.0214%" height="15" fill="rgb(243,166,3)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1679.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1653" width="0.0214%" height="15" fill="rgb(223,22,34)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1663.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1637" width="0.0214%" height="15" fill="rgb(251,52,51)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1647.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1621" width="0.0214%" height="15" fill="rgb(221,165,28)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1631.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1605" width="0.0214%" height="15" fill="rgb(218,121,47)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1615.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1589" width="0.0214%" height="15" fill="rgb(209,120,9)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1599.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1573" width="0.0214%" height="15" fill="rgb(236,68,12)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1583.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1557" width="0.0214%" height="15" fill="rgb(225,194,26)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1567.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1541" width="0.0214%" height="15" fill="rgb(231,84,39)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1551.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1525" width="0.0214%" height="15" fill="rgb(210,11,45)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1535.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1509" width="0.0214%" height="15" fill="rgb(224,54,52)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1519.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1493" width="0.0214%" height="15" fill="rgb(238,102,14)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1503.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1477" width="0.0214%" height="15" fill="rgb(243,160,52)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1487.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1461" width="0.0214%" height="15" fill="rgb(216,114,19)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1445" width="0.0214%" height="15" fill="rgb(244,166,37)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1429" width="0.0214%" height="15" fill="rgb(246,29,44)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1439.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1413" width="0.0214%" height="15" fill="rgb(215,56,53)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1423.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1397" width="0.0214%" height="15" fill="rgb(217,60,2)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1407.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1381" width="0.0214%" height="15" fill="rgb(207,26,24)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1391.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1365" width="0.0214%" height="15" fill="rgb(252,210,15)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1375.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1349" width="0.0214%" height="15" fill="rgb(253,209,26)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1359.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1333" width="0.0214%" height="15" fill="rgb(238,170,14)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1343.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1317" width="0.0214%" height="15" fill="rgb(216,178,15)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1301" width="0.0214%" height="15" fill="rgb(250,197,2)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1311.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;bfinterpreter::interpreter::optimized::ExStatement&gt;&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1285" width="0.0214%" height="15" fill="rgb(212,70,42)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1295.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="99.5072%" y="1269" width="0.0214%" height="15" fill="rgb(227,213,9)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1279.50"></text></g><g><title>core::ptr::drop_in_place&lt;[bfinterpreter::interpreter::optimized::ExStatement]&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1253" width="0.0214%" height="15" fill="rgb(245,99,25)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;bfinterpreter::interpreter::optimized::ExStatement&gt; (1 samples, 0.02%)</title><rect x="99.5072%" y="1237" width="0.0214%" height="15" fill="rgb(250,82,29)" fg:x="4644" fg:w="1"/><text x="99.7572%" y="1247.50"></text></g><g><title>__cpu_indicator_init (1 samples, 0.02%)</title><rect x="99.5286%" y="1701" width="0.0214%" height="15" fill="rgb(241,226,54)" fg:x="4645" fg:w="1"/><text x="99.7786%" y="1711.50"></text></g><g><title>tick_sched_handle.isra.0 (2 samples, 0.04%)</title><rect x="99.6786%" y="1573" width="0.0429%" height="15" fill="rgb(221,99,41)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1583.50"></text></g><g><title>update_process_times (2 samples, 0.04%)</title><rect x="99.6786%" y="1557" width="0.0429%" height="15" fill="rgb(213,90,21)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1567.50"></text></g><g><title>scheduler_tick (2 samples, 0.04%)</title><rect x="99.6786%" y="1541" width="0.0429%" height="15" fill="rgb(205,208,24)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1551.50"></text></g><g><title>perf_event_task_tick (2 samples, 0.04%)</title><rect x="99.6786%" y="1525" width="0.0429%" height="15" fill="rgb(246,31,12)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1535.50"></text></g><g><title>perf_pmu_disable.part.0 (2 samples, 0.04%)</title><rect x="99.6786%" y="1509" width="0.0429%" height="15" fill="rgb(213,154,6)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1519.50"></text></g><g><title>x86_pmu_disable (2 samples, 0.04%)</title><rect x="99.6786%" y="1493" width="0.0429%" height="15" fill="rgb(222,163,29)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1503.50"></text></g><g><title>amd_pmu_disable_all (2 samples, 0.04%)</title><rect x="99.6786%" y="1477" width="0.0429%" height="15" fill="rgb(227,201,8)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1487.50"></text></g><g><title>amd_pmu_wait_on_overflow (2 samples, 0.04%)</title><rect x="99.6786%" y="1461" width="0.0429%" height="15" fill="rgb(233,9,32)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1471.50"></text></g><g><title>native_read_msr (2 samples, 0.04%)</title><rect x="99.6786%" y="1445" width="0.0429%" height="15" fill="rgb(217,54,24)" fg:x="4652" fg:w="2"/><text x="99.9286%" y="1455.50"></text></g><g><title>__sysvec_apic_timer_interrupt (3 samples, 0.06%)</title><rect x="99.6786%" y="1637" width="0.0643%" height="15" fill="rgb(235,192,0)" fg:x="4652" fg:w="3"/><text x="99.9286%" y="1647.50"></text></g><g><title>hrtimer_interrupt (3 samples, 0.06%)</title><rect x="99.6786%" y="1621" width="0.0643%" height="15" fill="rgb(235,45,9)" fg:x="4652" fg:w="3"/><text x="99.9286%" y="1631.50"></text></g><g><title>__hrtimer_run_queues (3 samples, 0.06%)</title><rect x="99.6786%" y="1605" width="0.0643%" height="15" fill="rgb(246,42,40)" fg:x="4652" fg:w="3"/><text x="99.9286%" y="1615.50"></text></g><g><title>tick_sched_timer (3 samples, 0.06%)</title><rect x="99.6786%" y="1589" width="0.0643%" height="15" fill="rgb(248,111,24)" fg:x="4652" fg:w="3"/><text x="99.9286%" y="1599.50"></text></g><g><title>update_process_times (1 samples, 0.02%)</title><rect x="99.7214%" y="1573" width="0.0214%" height="15" fill="rgb(249,65,22)" fg:x="4654" fg:w="1"/><text x="99.9714%" y="1583.50"></text></g><g><title>_dl_start_user (11 samples, 0.24%)</title><rect x="99.5286%" y="1765" width="0.2357%" height="15" fill="rgb(238,111,51)" fg:x="4645" fg:w="11"/><text x="99.7786%" y="1775.50"></text></g><g><title>_dl_init (11 samples, 0.24%)</title><rect x="99.5286%" y="1749" width="0.2357%" height="15" fill="rgb(250,118,22)" fg:x="4645" fg:w="11"/><text x="99.7786%" y="1759.50"></text></g><g><title>call_init (11 samples, 0.24%)</title><rect x="99.5286%" y="1733" width="0.2357%" height="15" fill="rgb(234,84,26)" fg:x="4645" fg:w="11"/><text x="99.7786%" y="1743.50"></text></g><g><title>call_init (11 samples, 0.24%)</title><rect x="99.5286%" y="1717" width="0.2357%" height="15" fill="rgb(243,172,12)" fg:x="4645" fg:w="11"/><text x="99.7786%" y="1727.50"></text></g><g><title>init_cacheinfo (10 samples, 0.21%)</title><rect x="99.5500%" y="1701" width="0.2143%" height="15" fill="rgb(236,150,49)" fg:x="4646" fg:w="10"/><text x="99.8000%" y="1711.50"></text></g><g><title>handle_amd (10 samples, 0.21%)</title><rect x="99.5500%" y="1685" width="0.2143%" height="15" fill="rgb(225,197,26)" fg:x="4646" fg:w="10"/><text x="99.8000%" y="1695.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (4 samples, 0.09%)</title><rect x="99.6786%" y="1669" width="0.0857%" height="15" fill="rgb(214,17,42)" fg:x="4652" fg:w="4"/><text x="99.9286%" y="1679.50"></text></g><g><title>sysvec_apic_timer_interrupt (4 samples, 0.09%)</title><rect x="99.6786%" y="1653" width="0.0857%" height="15" fill="rgb(224,165,40)" fg:x="4652" fg:w="4"/><text x="99.9286%" y="1663.50"></text></g><g><title>idtentry_exit_cond_rcu (1 samples, 0.02%)</title><rect x="99.7429%" y="1637" width="0.0214%" height="15" fill="rgb(246,100,4)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1647.50"></text></g><g><title>prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="99.7429%" y="1621" width="0.0214%" height="15" fill="rgb(222,103,0)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1631.50"></text></g><g><title>__prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="99.7429%" y="1605" width="0.0214%" height="15" fill="rgb(227,189,26)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1615.50"></text></g><g><title>schedule (1 samples, 0.02%)</title><rect x="99.7429%" y="1589" width="0.0214%" height="15" fill="rgb(214,202,17)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1599.50"></text></g><g><title>__schedule (1 samples, 0.02%)</title><rect x="99.7429%" y="1573" width="0.0214%" height="15" fill="rgb(229,111,3)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1583.50"></text></g><g><title>__perf_event_task_sched_out (1 samples, 0.02%)</title><rect x="99.7429%" y="1557" width="0.0214%" height="15" fill="rgb(229,172,15)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1567.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="99.7429%" y="1541" width="0.0214%" height="15" fill="rgb(230,224,35)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1551.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="99.7429%" y="1525" width="0.0214%" height="15" fill="rgb(251,141,6)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1535.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="99.7429%" y="1509" width="0.0214%" height="15" fill="rgb(225,208,6)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1519.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="99.7429%" y="1493" width="0.0214%" height="15" fill="rgb(246,181,16)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1503.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="99.7429%" y="1477" width="0.0214%" height="15" fill="rgb(227,129,36)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1487.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="99.7429%" y="1461" width="0.0214%" height="15" fill="rgb(248,117,24)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1471.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="99.7429%" y="1445" width="0.0214%" height="15" fill="rgb(214,185,35)" fg:x="4655" fg:w="1"/><text x="99.9929%" y="1455.50"></text></g><g><title>std::fs::read_to_string (1 samples, 0.02%)</title><rect x="99.7643%" y="1557" width="0.0214%" height="15" fill="rgb(236,150,34)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1567.50"></text></g><g><title>std::fs::read_to_string::inner (1 samples, 0.02%)</title><rect x="99.7643%" y="1541" width="0.0214%" height="15" fill="rgb(243,228,27)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1551.50"></text></g><g><title>std::io::Read::read_to_string (1 samples, 0.02%)</title><rect x="99.7643%" y="1525" width="0.0214%" height="15" fill="rgb(245,77,44)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1535.50"></text></g><g><title>std::io::append_to_string (1 samples, 0.02%)</title><rect x="99.7643%" y="1509" width="0.0214%" height="15" fill="rgb(235,214,42)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1519.50"></text></g><g><title>std::io::Read::read_to_string::{{closure}} (1 samples, 0.02%)</title><rect x="99.7643%" y="1493" width="0.0214%" height="15" fill="rgb(221,74,3)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1503.50"></text></g><g><title>std::io::read_to_end (1 samples, 0.02%)</title><rect x="99.7643%" y="1477" width="0.0214%" height="15" fill="rgb(206,121,29)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1487.50"></text></g><g><title>std::io::read_to_end_with_reservation (1 samples, 0.02%)</title><rect x="99.7643%" y="1461" width="0.0214%" height="15" fill="rgb(249,131,53)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1471.50"></text></g><g><title>&lt;std::fs::File as std::io::Read&gt;::read (1 samples, 0.02%)</title><rect x="99.7643%" y="1445" width="0.0214%" height="15" fill="rgb(236,170,29)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1455.50"></text></g><g><title>std::sys::unix::fs::File::read (1 samples, 0.02%)</title><rect x="99.7643%" y="1429" width="0.0214%" height="15" fill="rgb(247,96,15)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1439.50"></text></g><g><title>std::sys::unix::fd::FileDesc::read (1 samples, 0.02%)</title><rect x="99.7643%" y="1413" width="0.0214%" height="15" fill="rgb(211,210,7)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1423.50"></text></g><g><title>__libc_read (1 samples, 0.02%)</title><rect x="99.7643%" y="1397" width="0.0214%" height="15" fill="rgb(240,88,50)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1407.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.02%)</title><rect x="99.7643%" y="1381" width="0.0214%" height="15" fill="rgb(209,229,26)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1391.50"></text></g><g><title>do_syscall_64 (1 samples, 0.02%)</title><rect x="99.7643%" y="1365" width="0.0214%" height="15" fill="rgb(210,68,23)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1375.50"></text></g><g><title>__x64_sys_read (1 samples, 0.02%)</title><rect x="99.7643%" y="1349" width="0.0214%" height="15" fill="rgb(229,180,13)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1359.50"></text></g><g><title>ksys_read (1 samples, 0.02%)</title><rect x="99.7643%" y="1333" width="0.0214%" height="15" fill="rgb(236,53,44)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1343.50"></text></g><g><title>vfs_read (1 samples, 0.02%)</title><rect x="99.7643%" y="1317" width="0.0214%" height="15" fill="rgb(244,214,29)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1327.50"></text></g><g><title>new_sync_read (1 samples, 0.02%)</title><rect x="99.7643%" y="1301" width="0.0214%" height="15" fill="rgb(220,75,29)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1311.50"></text></g><g><title>ext4_file_read_iter (1 samples, 0.02%)</title><rect x="99.7643%" y="1285" width="0.0214%" height="15" fill="rgb(214,183,37)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1295.50"></text></g><g><title>generic_file_read_iter (1 samples, 0.02%)</title><rect x="99.7643%" y="1269" width="0.0214%" height="15" fill="rgb(239,117,29)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1279.50"></text></g><g><title>generic_file_buffered_read (1 samples, 0.02%)</title><rect x="99.7643%" y="1253" width="0.0214%" height="15" fill="rgb(237,171,35)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1263.50"></text></g><g><title>touch_atime (1 samples, 0.02%)</title><rect x="99.7643%" y="1237" width="0.0214%" height="15" fill="rgb(229,178,53)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1247.50"></text></g><g><title>update_time (1 samples, 0.02%)</title><rect x="99.7643%" y="1221" width="0.0214%" height="15" fill="rgb(210,102,19)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1231.50"></text></g><g><title>generic_update_time (1 samples, 0.02%)</title><rect x="99.7643%" y="1205" width="0.0214%" height="15" fill="rgb(235,127,22)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1215.50"></text></g><g><title>__mark_inode_dirty (1 samples, 0.02%)</title><rect x="99.7643%" y="1189" width="0.0214%" height="15" fill="rgb(244,31,31)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1199.50"></text></g><g><title>ext4_dirty_inode (1 samples, 0.02%)</title><rect x="99.7643%" y="1173" width="0.0214%" height="15" fill="rgb(231,43,21)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1183.50"></text></g><g><title>__ext4_mark_inode_dirty (1 samples, 0.02%)</title><rect x="99.7643%" y="1157" width="0.0214%" height="15" fill="rgb(217,131,35)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1167.50"></text></g><g><title>ext4_reserve_inode_write (1 samples, 0.02%)</title><rect x="99.7643%" y="1141" width="0.0214%" height="15" fill="rgb(221,149,4)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1151.50"></text></g><g><title>__ext4_journal_get_write_access (1 samples, 0.02%)</title><rect x="99.7643%" y="1125" width="0.0214%" height="15" fill="rgb(232,170,28)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1135.50"></text></g><g><title>jbd2_journal_get_write_access (1 samples, 0.02%)</title><rect x="99.7643%" y="1109" width="0.0214%" height="15" fill="rgb(238,56,10)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1119.50"></text></g><g><title>jbd2_journal_add_journal_head (1 samples, 0.02%)</title><rect x="99.7643%" y="1093" width="0.0214%" height="15" fill="rgb(235,196,14)" fg:x="4656" fg:w="1"/><text x="100.0143%" y="1103.50"></text></g><g><title>_start (2 samples, 0.04%)</title><rect x="99.7643%" y="1765" width="0.0429%" height="15" fill="rgb(216,45,48)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1775.50"></text></g><g><title>__libc_start_main (2 samples, 0.04%)</title><rect x="99.7643%" y="1749" width="0.0429%" height="15" fill="rgb(238,213,17)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1759.50"></text></g><g><title>main (2 samples, 0.04%)</title><rect x="99.7643%" y="1733" width="0.0429%" height="15" fill="rgb(212,13,2)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1743.50"></text></g><g><title>std::rt::lang_start_internal (2 samples, 0.04%)</title><rect x="99.7643%" y="1717" width="0.0429%" height="15" fill="rgb(240,114,20)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1727.50"></text></g><g><title>std::panic::catch_unwind (2 samples, 0.04%)</title><rect x="99.7643%" y="1701" width="0.0429%" height="15" fill="rgb(228,41,40)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1711.50"></text></g><g><title>std::panicking::try (2 samples, 0.04%)</title><rect x="99.7643%" y="1685" width="0.0429%" height="15" fill="rgb(244,132,35)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1695.50"></text></g><g><title>std::panicking::try::do_call (2 samples, 0.04%)</title><rect x="99.7643%" y="1669" width="0.0429%" height="15" fill="rgb(253,189,4)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1679.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (2 samples, 0.04%)</title><rect x="99.7643%" y="1653" width="0.0429%" height="15" fill="rgb(224,37,19)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1663.50"></text></g><g><title>std::rt::lang_start::{{closure}} (2 samples, 0.04%)</title><rect x="99.7643%" y="1637" width="0.0429%" height="15" fill="rgb(235,223,18)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1647.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (2 samples, 0.04%)</title><rect x="99.7643%" y="1621" width="0.0429%" height="15" fill="rgb(235,163,25)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1631.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.04%)</title><rect x="99.7643%" y="1605" width="0.0429%" height="15" fill="rgb(217,145,28)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1615.50"></text></g><g><title>bfinterpreter::main (2 samples, 0.04%)</title><rect x="99.7643%" y="1589" width="0.0429%" height="15" fill="rgb(223,223,32)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1599.50"></text></g><g><title>bfinterpreter::run_program (2 samples, 0.04%)</title><rect x="99.7643%" y="1573" width="0.0429%" height="15" fill="rgb(227,189,39)" fg:x="4656" fg:w="2"/><text x="100.0143%" y="1583.50"></text></g><g><title>std::io::stdio::_print (1 samples, 0.02%)</title><rect x="99.7857%" y="1557" width="0.0214%" height="15" fill="rgb(248,10,22)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1567.50"></text></g><g><title>std::io::stdio::print_to (1 samples, 0.02%)</title><rect x="99.7857%" y="1541" width="0.0214%" height="15" fill="rgb(248,46,39)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1551.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (1 samples, 0.02%)</title><rect x="99.7857%" y="1525" width="0.0214%" height="15" fill="rgb(248,113,48)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1535.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (1 samples, 0.02%)</title><rect x="99.7857%" y="1509" width="0.0214%" height="15" fill="rgb(245,16,25)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1519.50"></text></g><g><title>std::io::Write::write_fmt (1 samples, 0.02%)</title><rect x="99.7857%" y="1493" width="0.0214%" height="15" fill="rgb(249,152,16)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1503.50"></text></g><g><title>core::fmt::write (1 samples, 0.02%)</title><rect x="99.7857%" y="1477" width="0.0214%" height="15" fill="rgb(250,16,1)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1487.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="99.7857%" y="1461" width="0.0214%" height="15" fill="rgb(249,138,3)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1471.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="99.7857%" y="1445" width="0.0214%" height="15" fill="rgb(227,71,41)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1455.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="99.7857%" y="1429" width="0.0214%" height="15" fill="rgb(209,184,23)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1439.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="99.7857%" y="1413" width="0.0214%" height="15" fill="rgb(223,215,31)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1423.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="99.7857%" y="1397" width="0.0214%" height="15" fill="rgb(210,146,28)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1407.50"></text></g><g><title>std::io::Write::write_all (1 samples, 0.02%)</title><rect x="99.7857%" y="1381" width="0.0214%" height="15" fill="rgb(209,183,41)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1391.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (1 samples, 0.02%)</title><rect x="99.7857%" y="1365" width="0.0214%" height="15" fill="rgb(209,224,45)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1375.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (1 samples, 0.02%)</title><rect x="99.7857%" y="1349" width="0.0214%" height="15" fill="rgb(224,209,51)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1359.50"></text></g><g><title>__libc_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1333" width="0.0214%" height="15" fill="rgb(223,17,39)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1343.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.02%)</title><rect x="99.7857%" y="1317" width="0.0214%" height="15" fill="rgb(234,204,37)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1327.50"></text></g><g><title>do_syscall_64 (1 samples, 0.02%)</title><rect x="99.7857%" y="1301" width="0.0214%" height="15" fill="rgb(236,120,5)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1311.50"></text></g><g><title>__x64_sys_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1285" width="0.0214%" height="15" fill="rgb(248,97,27)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1295.50"></text></g><g><title>ksys_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1269" width="0.0214%" height="15" fill="rgb(240,66,17)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1279.50"></text></g><g><title>vfs_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1253" width="0.0214%" height="15" fill="rgb(210,79,3)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1263.50"></text></g><g><title>new_sync_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1237" width="0.0214%" height="15" fill="rgb(214,176,27)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1247.50"></text></g><g><title>tty_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1221" width="0.0214%" height="15" fill="rgb(235,185,3)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1231.50"></text></g><g><title>file_tty_write.isra.0 (1 samples, 0.02%)</title><rect x="99.7857%" y="1205" width="0.0214%" height="15" fill="rgb(227,24,12)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1215.50"></text></g><g><title>n_tty_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1189" width="0.0214%" height="15" fill="rgb(252,169,48)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1199.50"></text></g><g><title>do_output_char (1 samples, 0.02%)</title><rect x="99.7857%" y="1173" width="0.0214%" height="15" fill="rgb(212,65,1)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1183.50"></text></g><g><title>pty_write (1 samples, 0.02%)</title><rect x="99.7857%" y="1157" width="0.0214%" height="15" fill="rgb(242,39,24)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1167.50"></text></g><g><title>tty_flip_buffer_push (1 samples, 0.02%)</title><rect x="99.7857%" y="1141" width="0.0214%" height="15" fill="rgb(249,32,23)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1151.50"></text></g><g><title>queue_work_on (1 samples, 0.02%)</title><rect x="99.7857%" y="1125" width="0.0214%" height="15" fill="rgb(251,195,23)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1135.50"></text></g><g><title>__queue_work (1 samples, 0.02%)</title><rect x="99.7857%" y="1109" width="0.0214%" height="15" fill="rgb(236,174,8)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1119.50"></text></g><g><title>insert_work (1 samples, 0.02%)</title><rect x="99.7857%" y="1093" width="0.0214%" height="15" fill="rgb(220,197,8)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1103.50"></text></g><g><title>wake_up_process (1 samples, 0.02%)</title><rect x="99.7857%" y="1077" width="0.0214%" height="15" fill="rgb(240,108,37)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1087.50"></text></g><g><title>try_to_wake_up (1 samples, 0.02%)</title><rect x="99.7857%" y="1061" width="0.0214%" height="15" fill="rgb(232,176,24)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1071.50"></text></g><g><title>ttwu_queue_wakelist (1 samples, 0.02%)</title><rect x="99.7857%" y="1045" width="0.0214%" height="15" fill="rgb(243,35,29)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1055.50"></text></g><g><title>__smp_call_single_queue (1 samples, 0.02%)</title><rect x="99.7857%" y="1029" width="0.0214%" height="15" fill="rgb(210,37,18)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1039.50"></text></g><g><title>send_call_function_single_ipi (1 samples, 0.02%)</title><rect x="99.7857%" y="1013" width="0.0214%" height="15" fill="rgb(224,184,40)" fg:x="4657" fg:w="1"/><text x="100.0357%" y="1023.50"></text></g><g><title>entry_SYSCALL_64 (1 samples, 0.02%)</title><rect x="99.8072%" y="1765" width="0.0214%" height="15" fill="rgb(236,39,29)" fg:x="4658" fg:w="1"/><text x="100.0572%" y="1775.50"></text></g><g><title>mmput (2 samples, 0.04%)</title><rect x="99.8286%" y="1685" width="0.0429%" height="15" fill="rgb(232,48,39)" fg:x="4659" fg:w="2"/><text x="100.0786%" y="1695.50"></text></g><g><title>exit_mmap (2 samples, 0.04%)</title><rect x="99.8286%" y="1669" width="0.0429%" height="15" fill="rgb(236,34,42)" fg:x="4659" fg:w="2"/><text x="100.0786%" y="1679.50"></text></g><g><title>unmap_vmas (2 samples, 0.04%)</title><rect x="99.8286%" y="1653" width="0.0429%" height="15" fill="rgb(243,106,37)" fg:x="4659" fg:w="2"/><text x="100.0786%" y="1663.50"></text></g><g><title>unmap_single_vma (2 samples, 0.04%)</title><rect x="99.8286%" y="1637" width="0.0429%" height="15" fill="rgb(218,96,6)" fg:x="4659" fg:w="2"/><text x="100.0786%" y="1647.50"></text></g><g><title>unmap_page_range (2 samples, 0.04%)</title><rect x="99.8286%" y="1621" width="0.0429%" height="15" fill="rgb(235,130,12)" fg:x="4659" fg:w="2"/><text x="100.0786%" y="1631.50"></text></g><g><title>zap_pte_range.isra.0 (2 samples, 0.04%)</title><rect x="99.8286%" y="1605" width="0.0429%" height="15" fill="rgb(231,95,0)" fg:x="4659" fg:w="2"/><text x="100.0786%" y="1615.50"></text></g><g><title>bfinterpreter (4,662 samples, 99.89%)</title><rect x="0.0000%" y="1781" width="99.8929%" height="15" fill="rgb(228,12,23)" fg:x="0" fg:w="4662"/><text x="0.2500%" y="1791.50">bfinterpreter</text></g><g><title>entry_SYSCALL_64_after_hwframe (3 samples, 0.06%)</title><rect x="99.8286%" y="1765" width="0.0643%" height="15" fill="rgb(216,12,1)" fg:x="4659" fg:w="3"/><text x="100.0786%" y="1775.50"></text></g><g><title>do_syscall_64 (3 samples, 0.06%)</title><rect x="99.8286%" y="1749" width="0.0643%" height="15" fill="rgb(219,59,3)" fg:x="4659" fg:w="3"/><text x="100.0786%" y="1759.50"></text></g><g><title>__x64_sys_exit_group (3 samples, 0.06%)</title><rect x="99.8286%" y="1733" width="0.0643%" height="15" fill="rgb(215,208,46)" fg:x="4659" fg:w="3"/><text x="100.0786%" y="1743.50"></text></g><g><title>do_group_exit (3 samples, 0.06%)</title><rect x="99.8286%" y="1717" width="0.0643%" height="15" fill="rgb(254,224,29)" fg:x="4659" fg:w="3"/><text x="100.0786%" y="1727.50"></text></g><g><title>do_exit (3 samples, 0.06%)</title><rect x="99.8286%" y="1701" width="0.0643%" height="15" fill="rgb(232,14,29)" fg:x="4659" fg:w="3"/><text x="100.0786%" y="1711.50"></text></g><g><title>perf_event_exit_task (1 samples, 0.02%)</title><rect x="99.8714%" y="1685" width="0.0214%" height="15" fill="rgb(208,45,52)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1695.50"></text></g><g><title>task_ctx_sched_out (1 samples, 0.02%)</title><rect x="99.8714%" y="1669" width="0.0214%" height="15" fill="rgb(234,191,28)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1679.50"></text></g><g><title>ctx_sched_out (1 samples, 0.02%)</title><rect x="99.8714%" y="1653" width="0.0214%" height="15" fill="rgb(244,67,43)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1663.50"></text></g><g><title>perf_pmu_disable.part.0 (1 samples, 0.02%)</title><rect x="99.8714%" y="1637" width="0.0214%" height="15" fill="rgb(236,189,24)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1647.50"></text></g><g><title>x86_pmu_disable (1 samples, 0.02%)</title><rect x="99.8714%" y="1621" width="0.0214%" height="15" fill="rgb(239,214,33)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1631.50"></text></g><g><title>amd_pmu_disable_all (1 samples, 0.02%)</title><rect x="99.8714%" y="1605" width="0.0214%" height="15" fill="rgb(226,176,41)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1615.50"></text></g><g><title>amd_pmu_wait_on_overflow (1 samples, 0.02%)</title><rect x="99.8714%" y="1589" width="0.0214%" height="15" fill="rgb(248,47,8)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1599.50"></text></g><g><title>native_read_msr (1 samples, 0.02%)</title><rect x="99.8714%" y="1573" width="0.0214%" height="15" fill="rgb(218,81,44)" fg:x="4661" fg:w="1"/><text x="100.1214%" y="1583.50"></text></g><g><title>all (4,667 samples, 100%)</title><rect x="0.0000%" y="1797" width="100.0000%" height="15" fill="rgb(213,98,6)" fg:x="0" fg:w="4667"/><text x="0.2500%" y="1807.50"></text></g><g><title>perf (5 samples, 0.11%)</title><rect x="99.8929%" y="1781" width="0.1071%" height="15" fill="rgb(222,85,22)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1791.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5 samples, 0.11%)</title><rect x="99.8929%" y="1765" width="0.1071%" height="15" fill="rgb(239,46,39)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1775.50"></text></g><g><title>do_syscall_64 (5 samples, 0.11%)</title><rect x="99.8929%" y="1749" width="0.1071%" height="15" fill="rgb(237,12,29)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1759.50"></text></g><g><title>__x64_sys_execve (5 samples, 0.11%)</title><rect x="99.8929%" y="1733" width="0.1071%" height="15" fill="rgb(214,77,8)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1743.50"></text></g><g><title>__do_execve_file.isra.0 (5 samples, 0.11%)</title><rect x="99.8929%" y="1717" width="0.1071%" height="15" fill="rgb(217,168,37)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1727.50"></text></g><g><title>exec_binprm (5 samples, 0.11%)</title><rect x="99.8929%" y="1701" width="0.1071%" height="15" fill="rgb(221,217,23)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1711.50"></text></g><g><title>load_elf_binary (5 samples, 0.11%)</title><rect x="99.8929%" y="1685" width="0.1071%" height="15" fill="rgb(243,229,36)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1695.50"></text></g><g><title>begin_new_exec (5 samples, 0.11%)</title><rect x="99.8929%" y="1669" width="0.1071%" height="15" fill="rgb(251,163,40)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1679.50"></text></g><g><title>perf_event_exec (5 samples, 0.11%)</title><rect x="99.8929%" y="1653" width="0.1071%" height="15" fill="rgb(237,222,12)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1663.50"></text></g><g><title>ctx_resched (5 samples, 0.11%)</title><rect x="99.8929%" y="1637" width="0.1071%" height="15" fill="rgb(248,132,6)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1647.50"></text></g><g><title>perf_pmu_enable.part.0 (5 samples, 0.11%)</title><rect x="99.8929%" y="1621" width="0.1071%" height="15" fill="rgb(227,167,50)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1631.50"></text></g><g><title>x86_pmu_enable (5 samples, 0.11%)</title><rect x="99.8929%" y="1605" width="0.1071%" height="15" fill="rgb(242,84,37)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1615.50"></text></g><g><title>native_write_msr (5 samples, 0.11%)</title><rect x="99.8929%" y="1589" width="0.1071%" height="15" fill="rgb(212,4,50)" fg:x="4662" fg:w="5"/><text x="100.1429%" y="1599.50"></text></g></svg></svg>