performance/ocw/profiling/output.svg

26698 lines
1.2 MiB

<?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="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- 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); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#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[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
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);
}
// 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(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + 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
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, 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];
}
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["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= 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 + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
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));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
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_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
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 = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="2117" > </text>
<g id="frames">
<g >
<title>[[kernel.kallsyms]] (36,544,859 samples, 0.02%)</title><rect x="182.0" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.98" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="949" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1205" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1215.5" ></text>
</g>
<g >
<title>syscall (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1813" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="26.53" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1813" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1925" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,981,933 samples, 0.01%)</title><rect x="191.7" y="1493" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.73" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1269" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.48" y="1279.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.8400.3] (356,529,424 samples, 0.19%)</title><rect x="178.2" y="1893" width="2.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="181.20" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="741" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="751.5" ></text>
</g>
<g >
<title>v8::Function::Call (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1701" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1717" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="629" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="639.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="191.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="223.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="975.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="575.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="47.5" ></text>
</g>
<g >
<title>[Discord] (68,133,879 samples, 0.04%)</title><rect x="161.9" y="1509" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.91" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="677" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (60,571,580 samples, 0.03%)</title><rect x="73.0" y="1317" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.05" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (446,255,189 samples, 0.24%)</title><rect x="11.8" y="1797" width="2.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.75" y="1807.5" ></text>
</g>
<g >
<title>v8::FunctionTemplate::GetFunction (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1061" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="91.79" y="1071.5" ></text>
</g>
<g >
<title>[unknown] (24,066,459 samples, 0.01%)</title><rect x="196.2" y="1429" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.24" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="319.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="495.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1957" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="69" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="79.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1295.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.8400.3] (491,225,602 samples, 0.26%)</title><rect x="96.9" y="1797" width="3.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="99.94" y="1807.5" ></text>
</g>
<g >
<title>pa_mainloop_dispatch (70,946,377 samples, 0.04%)</title><rect x="721.5" y="1957" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="724.48" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="175.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1071.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1989" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1999.5" ></text>
</g>
<g >
<title>pa_log_level_meta (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1941" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="212.31" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="223.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (273,273,600 samples, 0.15%)</title><rect x="34.0" y="101" width="1.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.96" y="111.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="645" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="655.5" ></text>
</g>
<g >
<title>[Discord] (27,746,210 samples, 0.01%)</title><rect x="88.5" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.49" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="629" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="639.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="207.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="719.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1013" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="133" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="143.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="213" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="223.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="623.5" ></text>
</g>
<g >
<title>[unknown] (22,768,496 samples, 0.01%)</title><rect x="183.3" y="1973" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="186.34" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (769,158,833 samples, 0.41%)</title><rect x="10.4" y="1893" width="4.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.39" y="1903.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (34,993,291 samples, 0.02%)</title><rect x="107.9" y="1429" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.85" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="751.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="613" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="623.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="335.5" ></text>
</g>
<g >
<title>statx (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1829" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="729.02" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1205" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.16" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (790,470,435 samples, 0.42%)</title><rect x="193.3" y="1797" width="5.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="196.30" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1429" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,041,123 samples, 0.03%)</title><rect x="175.0" y="1829" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.04" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="495.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1781" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,099,638 samples, 0.02%)</title><rect x="165.2" y="1781" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.20" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (48,846,085 samples, 0.03%)</title><rect x="183.0" y="1973" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.03" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="1023.5" ></text>
</g>
<g >
<title>[rg] (16,625,314 samples, 0.01%)</title><rect x="725.9" y="1701" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.92" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="159.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1135.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1893" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.35" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="181" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="581" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="591.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="287.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1973" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1983.5" >[Discord]</text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1861" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="724.53" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1317" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1327.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1477" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1487.5" ></text>
</g>
<g >
<title>[[nvidia]] (24,657,374 samples, 0.01%)</title><rect x="1174.3" y="1829" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.30" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1109" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="223.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="325" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="335.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1077" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1087.5" ></text>
</g>
<g >
<title>[unknown] (16,501,025 samples, 0.01%)</title><rect x="194.8" y="1525" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.80" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (67,876,752 samples, 0.04%)</title><rect x="97.9" y="1333" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.89" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="1925" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1413" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1423.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1221" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1231.5" ></text>
</g>
<g >
<title>[unknown] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1877" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.25" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,238,306 samples, 0.02%)</title><rect x="67.8" y="933" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.81" y="943.5" ></text>
</g>
<g >
<title>[unknown] (442,814,532 samples, 0.24%)</title><rect x="195.0" y="1669" width="2.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.04" y="1679.5" ></text>
</g>
<g >
<title>__libc_start_main (60,680,285 samples, 0.03%)</title><rect x="198.7" y="2037" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="201.72" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="421" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="431.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (129,690,519 samples, 0.07%)</title><rect x="720.6" y="1861" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.64" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (185,026,591 samples, 0.10%)</title><rect x="95.5" y="1669" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1679.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1925" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="1935.5" ></text>
</g>
<g >
<title>__close (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1573" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="82.55" y="1583.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (50,344,804 samples, 0.03%)</title><rect x="201.4" y="1765" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.40" y="1775.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="325" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="335.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1669" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1679.5" ></text>
</g>
<g >
<title>GL_CompileShader (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1285" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="109.91" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="453" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="463.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.87" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="69" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="79.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1637" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (194,407,554 samples, 0.10%)</title><rect x="63.2" y="645" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.22" y="655.5" ></text>
</g>
<g >
<title>v8::internal::ThreadIsolation::JitPageReference::AllocationContaining (18,786,441 samples, 0.01%)</title><rect x="80.5" y="1589" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="83.49" y="1599.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1061" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1071.5" ></text>
</g>
<g >
<title>execute_command_internal (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1493" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1503.5" ></text>
</g>
<g >
<title>Xorg (398,301,393 samples, 0.21%)</title><rect x="180.8" y="2069" width="2.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="183.82" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="159.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,368,203 samples, 0.02%)</title><rect x="1187.9" y="1797" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.90" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="917" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="927.5" ></text>
</g>
<g >
<title>[libc.so.6] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1077" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="101.89" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (464,519,392 samples, 0.25%)</title><rect x="32.7" y="245" width="3.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.74" y="255.5" ></text>
</g>
<g >
<title>[unknown] (24,066,459 samples, 0.01%)</title><rect x="196.2" y="1365" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.24" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,041,123 samples, 0.03%)</title><rect x="175.0" y="1813" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.04" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (24,066,459 samples, 0.01%)</title><rect x="196.2" y="1381" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.24" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (32,053,837 samples, 0.02%)</title><rect x="72.6" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="75.65" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="63.5" ></text>
</g>
<g >
<title>[Discord] (3,641,526,971 samples, 1.96%)</title><rect x="54.2" y="1493" width="23.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="57.23" y="1503.5" >[..</text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="911.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1973" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1141" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1221" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (57,551,516 samples, 0.03%)</title><rect x="65.7" y="869" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.70" y="879.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="127.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="703.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1989" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1941" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1461" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (100,275,673 samples, 0.05%)</title><rect x="63.7" y="437" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="447.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="415.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1327.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1781" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (56,841,735 samples, 0.03%)</title><rect x="196.0" y="1461" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.03" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.11" y="1391.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1205" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1237" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="927.5" ></text>
</g>
<g >
<title>[Discord] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.91" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1285" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,256,984 samples, 0.03%)</title><rect x="181.8" y="1909" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.82" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="325" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="335.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="629" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="639.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (45,757,354 samples, 0.02%)</title><rect x="98.8" y="1317" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.77" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (8,943,795,645 samples, 4.81%)</title><rect x="111.2" y="1845" width="56.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="114.17" y="1855.5" >[Disco..</text>
</g>
<g >
<title>[unknown] (80,177,168 samples, 0.04%)</title><rect x="201.3" y="1909" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.25" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (22,462,241 samples, 0.01%)</title><rect x="197.2" y="1509" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="200.21" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,080,798 samples, 0.01%)</title><rect x="188.3" y="1317" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.34" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="63.5" ></text>
</g>
<g >
<title>ioctl (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1925" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="185.65" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,363,913 samples, 0.01%)</title><rect x="1188.1" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.06" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,374,493 samples, 0.02%)</title><rect x="189.5" y="1205" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.48" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="127.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,627,135 samples, 0.01%)</title><rect x="104.6" y="1333" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.61" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (32,749,118 samples, 0.02%)</title><rect x="70.1" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.11" y="911.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1477" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1487.5" ></text>
</g>
<g >
<title>malloc (58,393,741 samples, 0.03%)</title><rect x="35.8" y="2037" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="38.80" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (33,858,213 samples, 0.02%)</title><rect x="28.2" y="37" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="31.18" y="47.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="741" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="751.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="101" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="111.5" ></text>
</g>
<g >
<title>[[anon:v8]] (71,368,111 samples, 0.04%)</title><rect x="195.3" y="1509" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.34" y="1519.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1509" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1205" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1109" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="757" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="767.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1397" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (33,398,159 samples, 0.02%)</title><rect x="91.2" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.21" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="767.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="559.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (44,166,764 samples, 0.02%)</title><rect x="726.5" y="1989" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.54" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1967.5" ></text>
</g>
<g >
<title>execute_command_internal (23,869,686 samples, 0.01%)</title><rect x="187.8" y="1349" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.82" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="1023.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,492,172,711 samples, 0.80%)</title><rect x="26.2" y="1301" width="9.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.23" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (241,757,904 samples, 0.13%)</title><rect x="97.5" y="1573" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.52" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1797" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="687.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="117" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="127.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="101" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="111.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (72,830,410 samples, 0.04%)</title><rect x="186.2" y="1941" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.15" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,305,504 samples, 0.02%)</title><rect x="94.1" y="1349" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.14" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (28,728,292 samples, 0.02%)</title><rect x="65.0" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.01" y="1055.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,856,771 samples, 0.03%)</title><rect x="726.5" y="2021" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.50" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="751.5" ></text>
</g>
<g >
<title>[Discord] (162,250,466 samples, 0.09%)</title><rect x="13.2" y="1429" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.16" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (60,489,582 samples, 0.03%)</title><rect x="27.6" y="1205" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1215.5" ></text>
</g>
<g >
<title>execute_command_internal (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1749" width="2.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (127,517,163 samples, 0.07%)</title><rect x="97.7" y="1509" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.65" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="831.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="69" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="79.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="991.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="575.5" ></text>
</g>
<g >
<title>[libxcb.so.1.1.0] (30,563,579 samples, 0.02%)</title><rect x="36.3" y="2037" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="39.29" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="607.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1157" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="405" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="415.5" ></text>
</g>
<g >
<title>[[anon:v8]] (182,333,446 samples, 0.10%)</title><rect x="34.5" y="53" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="37.53" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1621" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1631.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1909" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.35" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (827,167,466 samples, 0.44%)</title><rect x="30.4" y="821" width="5.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="831.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="341" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="351.5" ></text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="2005" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="111.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1285" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1295.5" ></text>
</g>
<g >
<title>__libc_start_main (482,222,205 samples, 0.26%)</title><rect x="187.1" y="2037" width="3.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="190.11" y="2047.5" ></text>
</g>
<g >
<title>execute_command (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1653" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.40" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1269" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (50,433,808 samples, 0.03%)</title><rect x="72.0" y="1061" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.95" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (517,602,829 samples, 0.28%)</title><rect x="177.2" y="1957" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="501" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="511.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="799.5" ></text>
</g>
<g >
<title>pa_log_levelv_meta (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1925" width="0.9" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="212.31" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1023.5" ></text>
</g>
<g >
<title>[libc.so.6] (30,641,957 samples, 0.02%)</title><rect x="106.6" y="1045" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="109.64" y="1055.5" ></text>
</g>
<g >
<title>[[anon:v8]] (266,642,881 samples, 0.14%)</title><rect x="93.5" y="1429" width="1.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.54" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.82" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1077" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1087.5" ></text>
</g>
<g >
<title>execute_command_internal (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1125" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1141" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1413" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="373" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="383.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="111.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="981" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="991.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="79.5" ></text>
</g>
<g >
<title>[Discord] (897,843,356 samples, 0.48%)</title><rect x="83.9" y="1637" width="5.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,716,277 samples, 0.01%)</title><rect x="182.7" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.67" y="1743.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,098,969,558 samples, 4.89%)</title><rect x="110.6" y="2037" width="57.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="113.58" y="2047.5" >[libc...</text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="1973" width="13.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.45" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (100,275,673 samples, 0.05%)</title><rect x="63.7" y="421" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="431.5" ></text>
</g>
<g >
<title>[Discord] (211,242,525 samples, 0.11%)</title><rect x="175.6" y="1957" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.61" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1397" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="45.35" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="575.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1221" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="2021" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (8,884,268,050 samples, 4.77%)</title><rect x="39.1" y="1733" width="56.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="42.10" y="1743.5" >[Disc..</text>
</g>
<g >
<title>[[anon:v8]] (977,488,003 samples, 0.53%)</title><rect x="29.5" y="1109" width="6.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.49" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (31,110,570 samples, 0.02%)</title><rect x="107.2" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.25" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="335.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="357" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (201,211,120 samples, 0.11%)</title><rect x="720.2" y="1909" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.18" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1813" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.88" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (119,195,929 samples, 0.06%)</title><rect x="81.3" y="1573" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="1989" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.23" y="1999.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1189" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.91" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="933" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,084,316 samples, 0.03%)</title><rect x="189.4" y="1237" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.38" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1253" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="405" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="415.5" ></text>
</g>
<g >
<title>[Discord] (132,625,301 samples, 0.07%)</title><rect x="16.0" y="1765" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.01" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="351.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="469" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="479.5" ></text>
</g>
<g >
<title>execute_command_internal (482,222,205 samples, 0.26%)</title><rect x="187.1" y="1957" width="3.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.11" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="77.99" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1413" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1445" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1455.5" ></text>
</g>
<g >
<title>Discord:gdrv0 (75,770,179 samples, 0.04%)</title><rect x="23.3" y="2069" width="0.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="26.31" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="2021" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="373" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="383.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (39,478,909 samples, 0.02%)</title><rect x="725.1" y="2037" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.12" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1045" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="111.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="229" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="239.5" ></text>
</g>
<g >
<title>[libell.so.0.0.2] (27,507,977 samples, 0.01%)</title><rect x="204.4" y="1845" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="207.42" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="79.5" ></text>
</g>
<g >
<title>[Discord] (1,420,858,684 samples, 0.76%)</title><rect x="101.0" y="1733" width="9.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="103.99" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (638,432,203 samples, 0.34%)</title><rect x="60.5" y="1141" width="4.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.50" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="581" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="591.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="319.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="117" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="127.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="783.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1093" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1103.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,530,222 samples, 0.01%)</title><rect x="1189.9" y="2005" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1477" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.72" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (290,115,280 samples, 0.16%)</title><rect x="62.6" y="853" width="1.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.62" y="863.5" ></text>
</g>
<g >
<title>[[i915]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1637" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="201.56" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="383.5" ></text>
</g>
<g >
<title>[unknown] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="2005" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="113.17" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="277" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="287.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1445" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1455.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="837" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (631,581,891 samples, 0.34%)</title><rect x="66.5" y="1013" width="4.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="69.50" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="101" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="111.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1477" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="261" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,989,526 samples, 0.01%)</title><rect x="15.1" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.06" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="341" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="351.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1525" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1535.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1397" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.53" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="79.5" ></text>
</g>
<g >
<title>[Discord] (95,032,790 samples, 0.05%)</title><rect x="77.7" y="1477" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.74" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (306,023,315 samples, 0.16%)</title><rect x="33.7" y="149" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.75" y="159.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,437,648 samples, 0.03%)</title><rect x="205.5" y="1765" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.52" y="1775.5" ></text>
</g>
<g >
<title>[[i915]] (39,999,450 samples, 0.02%)</title><rect x="110.3" y="1765" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="113.31" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1429" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (596,497,036 samples, 0.32%)</title><rect x="60.7" y="1077" width="3.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.67" y="1087.5" ></text>
</g>
<g >
<title>pa_pdispatch_run (26,307,600 samples, 0.01%)</title><rect x="721.7" y="1861" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="724.71" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (707,883,069 samples, 0.38%)</title><rect x="31.2" y="597" width="4.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.20" y="607.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="639.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (277,293,679 samples, 0.15%)</title><rect x="207.6" y="2053" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.55" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (115,959,824 samples, 0.06%)</title><rect x="90.7" y="1381" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.74" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1669" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="25.77" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="239.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="271.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="383.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1461" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="2021" width="13.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1177.45" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (6,015,120,248 samples, 3.23%)</title><rect x="42.6" y="1621" width="38.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="45.64" y="1631.5" >[Di..</text>
</g>
<g >
<title>[at-spi2-registryd] (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1925" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="186.34" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,760,370 samples, 0.02%)</title><rect x="206.3" y="2005" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.27" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1493" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (5,124,713,978 samples, 2.75%)</title><rect x="46.6" y="1573" width="32.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="49.64" y="1583.5" >[D..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1925" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1935.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1877" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="212.31" y="1887.5" ></text>
</g>
<g >
<title>execute_command_internal (18,047,719 samples, 0.01%)</title><rect x="187.0" y="2021" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="189.99" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="2053" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="729.82" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (405,703,012 samples, 0.22%)</title><rect x="159.9" y="1685" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="162.86" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1525" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1535.5" ></text>
</g>
<g >
<title>[libc.so.6] (90,513,064 samples, 0.05%)</title><rect x="209.6" y="1765" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.57" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (185,539,694 samples, 0.10%)</title><rect x="13.1" y="1509" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="325" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="335.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1285" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1295.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1269" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1279.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1349" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="351.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="255.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="773" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="783.5" ></text>
</g>
<g >
<title>[Discord] (380,774,214 samples, 0.20%)</title><rect x="97.3" y="1701" width="2.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.27" y="1711.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (28,953,606 samples, 0.02%)</title><rect x="107.1" y="1221" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.06" y="1231.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (18,174,106 samples, 0.01%)</title><rect x="77.0" y="1461" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="80.04" y="1471.5" ></text>
</g>
<g >
<title>execute_command (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1157" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1167.5" ></text>
</g>
<g >
<title>g_main_context_iteration (1,536,939,216 samples, 0.83%)</title><rect x="100.3" y="1845" width="9.7" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="103.30" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="927.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="415.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="95.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1541" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.61" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1957" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="853" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="863.5" ></text>
</g>
<g >
<title>[Discord] (106,045,450 samples, 0.06%)</title><rect x="68.4" y="949" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.41" y="959.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1333" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1839.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="581" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="591.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1797" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="965" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="975.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="709" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1925" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1935.5" ></text>
</g>
<g >
<title>[[i915]] (23,859,286 samples, 0.01%)</title><rect x="42.4" y="1205" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.40" y="1215.5" ></text>
</g>
<g >
<title>[libc.so.6] (229,745,788 samples, 0.12%)</title><rect x="15.8" y="2053" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="18.78" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (272,040,487 samples, 0.15%)</title><rect x="184.1" y="1925" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="187.10" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="213" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="223.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="255.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="847.5" ></text>
</g>
<g >
<title>dhcpcd (19,480,290 samples, 0.01%)</title><rect x="200.3" y="2069" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="203.29" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="527.5" ></text>
</g>
<g >
<title>pa_pstream_unlink (25,777,105 samples, 0.01%)</title><rect x="721.5" y="1893" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="724.48" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="133" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="143.5" ></text>
</g>
<g >
<title>[unknown] (911,650,519 samples, 0.49%)</title><rect x="168.4" y="1877" width="5.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.36" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="405" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="415.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1509" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="271.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="517" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1493" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="543.5" ></text>
</g>
<g >
<title>[Discord] (31,003,816 samples, 0.02%)</title><rect x="72.8" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.85" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1253" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1797" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="26.53" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="181" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="335.5" ></text>
</g>
<g >
<title>[unknown] (17,816,107 samples, 0.01%)</title><rect x="196.3" y="1349" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.28" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (17,869,008 samples, 0.01%)</title><rect x="162.6" y="1685" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="165.56" y="1695.5" ></text>
</g>
<g >
<title>kworker/u48:4-e (19,812,325 samples, 0.01%)</title><rect x="206.6" y="2069" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="209.63" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1413" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1423.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (35,440,556 samples, 0.02%)</title><rect x="186.6" y="1925" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.64" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="495.5" ></text>
</g>
<g >
<title>execute_command (123,363,191 samples, 0.07%)</title><rect x="187.4" y="1605" width="0.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.41" y="1615.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="757" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="767.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="303.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1589" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1599.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="2021" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="2031.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (19,202,851 samples, 0.01%)</title><rect x="191.9" y="2021" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="194.89" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1365" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="661" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="671.5" ></text>
</g>
<g >
<title>pthread_once (99,311,834 samples, 0.05%)</title><rect x="209.6" y="1813" width="0.6" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="212.57" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (72,640,155 samples, 0.04%)</title><rect x="191.4" y="1605" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.43" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="111.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (72,905,021 samples, 0.04%)</title><rect x="77.8" y="1429" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.82" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1061" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="735.5" ></text>
</g>
<g >
<title>[[anon:v8]] (431,497,892 samples, 0.23%)</title><rect x="86.8" y="1413" width="2.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.85" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1295.5" ></text>
</g>
<g >
<title>[tmux] (16,005,413 samples, 0.01%)</title><rect x="1188.8" y="2005" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.79" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1109" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="53" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1029" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="1039.5" ></text>
</g>
<g >
<title>g_main_context_iteration (491,225,602 samples, 0.26%)</title><rect x="96.9" y="1813" width="3.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="99.94" y="1823.5" ></text>
</g>
<g >
<title>BlockHandler (51,494,844 samples, 0.03%)</title><rect x="181.3" y="1973" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="184.27" y="1983.5" ></text>
</g>
<g >
<title>[[anon:v8]] (194,076,042 samples, 0.10%)</title><rect x="88.4" y="1381" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.35" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,790,843 samples, 0.01%)</title><rect x="163.0" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="165.98" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="37" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="47.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1061" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="735.5" ></text>
</g>
<g >
<title>[Discord] (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1295.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="2053" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="943.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,155,672 samples, 0.01%)</title><rect x="206.9" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.91" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (319,736,093 samples, 0.17%)</title><rect x="62.4" y="869" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.43" y="879.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1141" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1253" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="86.11" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="79.5" ></text>
</g>
<g >
<title>v8::Function::Call (255,880,992 samples, 0.14%)</title><rect x="82.0" y="1637" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.02" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="639.5" ></text>
</g>
<g >
<title>node::InternalMakeCallback (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1509" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="101.72" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1989" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1999.5" ></text>
</g>
<g >
<title>command_substitute (55,148,749 samples, 0.03%)</title><rect x="188.2" y="1477" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="191.19" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="527.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,067,300 samples, 0.02%)</title><rect x="80.3" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.30" y="1583.5" ></text>
</g>
<g >
<title>[libGLX_mesa.so.0.0.0] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1477" width="0.7" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="104.92" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1429" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="591.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,482,241 samples, 0.02%)</title><rect x="181.9" y="1845" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.95" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (143,884,606 samples, 0.08%)</title><rect x="177.3" y="1893" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.29" y="1903.5" ></text>
</g>
<g >
<title>spectrwm (63,173,227 samples, 0.03%)</title><rect x="727.3" y="2069" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="730.28" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (399,527,220 samples, 0.21%)</title><rect x="12.1" y="1717" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.05" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1039.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="405" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="415.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="639.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1205" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1957" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="143.5" ></text>
</g>
<g >
<title>[Discord] (1,323,438,342 samples, 0.71%)</title><rect x="101.4" y="1637" width="8.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.41" y="1647.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1749" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="184.13" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="335.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1813" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (48,846,085 samples, 0.03%)</title><rect x="183.0" y="1957" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.03" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="517" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="527.5" ></text>
</g>
<g >
<title>[Discord] (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1413" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.78" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1285" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1125" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1701" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="277" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="287.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="437" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="447.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="367.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="47.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1957" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (173,997,938 samples, 0.09%)</title><rect x="13.1" y="1477" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="847.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="517" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="527.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,828,757 samples, 0.01%)</title><rect x="204.7" y="1957" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.69" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (185,539,694 samples, 0.10%)</title><rect x="13.1" y="1493" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1503.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,885,078 samples, 0.03%)</title><rect x="75.3" y="1237" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,885,078 samples, 0.03%)</title><rect x="75.3" y="1253" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1317" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,794,384 samples, 0.03%)</title><rect x="208.9" y="1749" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.87" y="1759.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1317" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1301" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1311.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1109" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1253" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1749" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.88" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (57,501,651 samples, 0.03%)</title><rect x="68.7" y="885" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.72" y="895.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="149" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="159.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1125" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="949" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="959.5" ></text>
</g>
<g >
<title>_dl_catch_exception (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1973" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1192.87" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="447.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1461" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1989" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="79.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1685" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="200.95" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="37" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,632,522 samples, 0.02%)</title><rect x="109.5" y="1029" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.48" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1381" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="581" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="591.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="661" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="671.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="2037" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="177.14" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1413" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1205" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="261" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="271.5" ></text>
</g>
<g >
<title>[Discord] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1589" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1391.5" ></text>
</g>
<g >
<title>[bash] (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1541" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1551.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1237" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="815.5" ></text>
</g>
<g >
<title>[Discord] (882,966,044 samples, 0.47%)</title><rect x="103.3" y="1493" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.32" y="1503.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1493" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="83.61" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="527.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1461" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1471.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1461" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="83.61" y="1471.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1141" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.57" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="559.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="111.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="575.5" ></text>
</g>
<g >
<title>[gawk] (360,996,390 samples, 0.19%)</title><rect x="183.6" y="2053" width="2.3" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="186.59" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1205" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.48" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,603,681 samples, 0.07%)</title><rect x="1173.5" y="1797" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1176.51" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1877" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1061" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="575.5" ></text>
</g>
<g >
<title>[bash] (45,802,750 samples, 0.02%)</title><rect x="189.1" y="1301" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="335.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (339,290,793 samples, 0.18%)</title><rect x="105.6" y="1397" width="2.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.64" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="693" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="703.5" ></text>
</g>
<g >
<title>[Discord] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1685" width="5.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.15" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,323,117 samples, 0.02%)</title><rect x="15.4" y="1733" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.41" y="1743.5" ></text>
</g>
<g >
<title>__libc_start_main (124,935,227 samples, 0.07%)</title><rect x="199.3" y="2037" width="0.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="202.32" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="2021" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="207.97" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="869" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="879.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (43,952,246 samples, 0.02%)</title><rect x="164.7" y="1765" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="167.69" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="207.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="175.5" ></text>
</g>
<g >
<title>[[i915]] (16,898,318 samples, 0.01%)</title><rect x="206.8" y="1813" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.81" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="677" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="687.5" ></text>
</g>
<g >
<title>[unknown] (27,921,215 samples, 0.02%)</title><rect x="180.8" y="2053" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="183.82" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="927.5" ></text>
</g>
<g >
<title>[[i915]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1317" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,099,638 samples, 0.02%)</title><rect x="165.2" y="1765" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.20" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (48,846,085 samples, 0.03%)</title><rect x="183.0" y="1941" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.03" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="287.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="933" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="943.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1445" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="261" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="271.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="815.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1973" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (57,130,716 samples, 0.03%)</title><rect x="34.0" y="53" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.96" y="63.5" ></text>
</g>
<g >
<title>dri_flush (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1445" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="104.92" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="421" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="431.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="133" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="143.5" ></text>
</g>
<g >
<title>[libc.so.6] (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1829" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.31" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (20,592,359 samples, 0.01%)</title><rect x="96.4" y="1541" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.35" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (9,074,192,492 samples, 4.88%)</title><rect x="110.7" y="1925" width="57.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.67" y="1935.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (169,720,357 samples, 0.09%)</title><rect x="68.2" y="981" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.19" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1525" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="223.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="943.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="613" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="623.5" ></text>
</g>
<g >
<title>[Discord] (31,966,558 samples, 0.02%)</title><rect x="162.1" y="1493" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="165.14" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="159.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="527.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="799.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1749" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1759.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1125" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,686,611 samples, 0.02%)</title><rect x="175.1" y="1733" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.11" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1429" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.72" y="1439.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="677" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1541" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="2053" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.19" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,440,397 samples, 0.02%)</title><rect x="96.5" y="1573" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.48" y="1583.5" ></text>
</g>
<g >
<title>v8::FunctionTemplate::GetFunction (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1093" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="96.95" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1621" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="719.5" ></text>
</g>
<g >
<title>execute_command (28,450,377 samples, 0.02%)</title><rect x="188.0" y="1541" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="191.01" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1893" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,313,299 samples, 0.01%)</title><rect x="200.1" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.14" y="1855.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="869" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="879.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="767.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1925" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="149" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="159.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="831.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,557,448 samples, 0.02%)</title><rect x="95.0" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.04" y="1311.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="2021" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.21" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="911.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1605" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (706,784,596 samples, 0.38%)</title><rect x="103.8" y="1445" width="4.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.84" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1925" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1861" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.49" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1141" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="405" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="415.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1157" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.11" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.82" y="943.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="751.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="2037" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (37,474,454 samples, 0.02%)</title><rect x="13.5" y="1237" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.52" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="159.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="623.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="341" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="351.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1285" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="639.5" ></text>
</g>
<g >
<title>[Discord] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="2021" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="38.69" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1957" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1967.5" ></text>
</g>
<g >
<title>[[anon:v8]] (252,584,895 samples, 0.14%)</title><rect x="195.1" y="1557" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.06" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (201,876,056 samples, 0.11%)</title><rect x="175.7" y="1941" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.66" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1343.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="373" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="383.5" ></text>
</g>
<g >
<title>[libc.so.6] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1925" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="201.87" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (70,779,793 samples, 0.04%)</title><rect x="97.9" y="1349" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.87" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (61,030,248 samples, 0.03%)</title><rect x="93.2" y="1397" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.16" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1055.5" ></text>
</g>
<g >
<title>strcmp@plt (16,687,238 samples, 0.01%)</title><rect x="185.7" y="1861" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="188.72" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="63.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="127.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="773" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="783.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="357" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="367.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="831.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="773" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="783.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="671.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1269" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1279.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="2005" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,113,570 samples, 0.01%)</title><rect x="85.5" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.53" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="159.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="415.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="885" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1893" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.79" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (356,529,424 samples, 0.19%)</title><rect x="178.2" y="1877" width="2.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.20" y="1887.5" ></text>
</g>
<g >
<title>Discord (13,535,029,141 samples, 7.27%)</title><rect x="24.3" y="2069" width="85.8" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="27.30" y="2079.5" >Discord</text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="245" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1829" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.79" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="911.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="229" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="239.5" ></text>
</g>
<g >
<title>execute_command (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1973" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.34" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="565" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="575.5" ></text>
</g>
<g >
<title>[Discord] (138,156,415 samples, 0.07%)</title><rect x="63.5" y="469" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="479.5" ></text>
</g>
<g >
<title>[[anon:v8]] (47,528,244 samples, 0.03%)</title><rect x="89.3" y="1301" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.28" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="389" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1269" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1279.5" ></text>
</g>
<g >
<title>[unknown] (22,768,496 samples, 0.01%)</title><rect x="183.3" y="1989" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="186.34" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (16,519,882 samples, 0.01%)</title><rect x="98.1" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.13" y="1295.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (265,221,991 samples, 0.14%)</title><rect x="207.6" y="1989" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.63" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="95.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="703.5" ></text>
</g>
<g >
<title>execute_command (482,222,205 samples, 0.26%)</title><rect x="187.1" y="1973" width="3.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.11" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="767.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1029" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (15,963,049 samples, 0.01%)</title><rect x="106.0" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.99" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1269" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1045" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (185,105,784 samples, 0.10%)</title><rect x="175.8" y="1909" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.76" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (838,441,816 samples, 0.45%)</title><rect x="17.3" y="1925" width="5.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.30" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="757" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="767.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="255.5" ></text>
</g>
<g >
<title>[[anon:v8]] (51,434,827 samples, 0.03%)</title><rect x="194.7" y="1669" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.71" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,219,580 samples, 0.01%)</title><rect x="182.1" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.11" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="2037" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1973" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (120,806,128 samples, 0.06%)</title><rect x="13.4" y="1365" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.42" y="1375.5" ></text>
</g>
<g >
<title>pa_mainloop_iterate (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="1973" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1191.19" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (2,929,046,288 samples, 1.57%)</title><rect x="56.2" y="1413" width="18.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="59.15" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (118,341,865 samples, 0.06%)</title><rect x="67.1" y="901" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.06" y="911.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="517" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="527.5" ></text>
</g>
<g >
<title>[Discord] (75,342,968 samples, 0.04%)</title><rect x="179.4" y="1621" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.39" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (57,551,516 samples, 0.03%)</title><rect x="65.7" y="853" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.70" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1157" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="421" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="431.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="581" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="591.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="319.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="815.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="127.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1141" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="53" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="63.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="495.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="1029" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="1039.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1349" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1359.5" ></text>
</g>
<g >
<title>[libadwaita-1.so.0] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1189" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="204.25" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1573" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,797,942 samples, 0.01%)</title><rect x="76.1" y="1317" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.14" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (98,525,347 samples, 0.05%)</title><rect x="81.3" y="1541" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1477" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="543.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1445" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1455.5" ></text>
</g>
<g >
<title>[libpulse.so.0.24.3] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1877" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="213.35" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1845" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1855.5" ></text>
</g>
<g >
<title>[libc.so.6] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="2021" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="728.37" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (240,588,190 samples, 0.13%)</title><rect x="1172.8" y="1813" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1175.76" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,041,123 samples, 0.03%)</title><rect x="175.0" y="1781" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.04" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,760,370 samples, 0.02%)</title><rect x="206.3" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.27" y="2031.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="975.5" ></text>
</g>
<g >
<title>__libc_start_main (53,160,619 samples, 0.03%)</title><rect x="207.1" y="2037" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="210.11" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1941" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="885" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="895.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="901" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="911.5" ></text>
</g>
<g >
<title>[Discord] (26,843,266 samples, 0.01%)</title><rect x="76.7" y="1205" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.65" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (83,499,678 samples, 0.04%)</title><rect x="76.5" y="1285" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.47" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1605" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1615.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1605" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="17.34" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="543.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="671.5" ></text>
</g>
<g >
<title>[Discord] (29,630,519 samples, 0.02%)</title><rect x="92.3" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.49" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1525" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="319.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1957" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="847.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1973" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="293" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="303.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1231.5" ></text>
</g>
<g >
<title>[dbus-broker] (60,680,285 samples, 0.03%)</title><rect x="198.7" y="1989" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="201.72" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.87" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="613" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="623.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1221" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.71" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="287.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="223.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="165" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="175.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1141" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1151.5" ></text>
</g>
<g >
<title>command_substitute (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1685" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="210.11" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="415.5" ></text>
</g>
<g >
<title>[Discord] (133,087,727 samples, 0.07%)</title><rect x="177.4" y="1797" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.35" y="1807.5" ></text>
</g>
<g >
<title>[[i915]] (28,811,152 samples, 0.02%)</title><rect x="206.3" y="1973" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.27" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1925" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (464,519,392 samples, 0.25%)</title><rect x="32.7" y="261" width="3.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.74" y="271.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,391,377 samples, 0.02%)</title><rect x="15.4" y="1701" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.43" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="623.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,914,882 samples, 0.01%)</title><rect x="24.2" y="1893" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.19" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.95" y="1631.5" ></text>
</g>
<g >
<title>[bash] (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1861" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.34" y="1871.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1301" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="703.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1509" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1493" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1503.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="85" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.12" y="95.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="485" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="495.5" ></text>
</g>
<g >
<title>[Discord] (29,439,836 samples, 0.02%)</title><rect x="73.7" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.72" y="1359.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (64,282,989 samples, 0.03%)</title><rect x="104.1" y="1397" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.11" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (29,440,397 samples, 0.02%)</title><rect x="96.5" y="1557" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.48" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (32,548,498 samples, 0.02%)</title><rect x="89.4" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.38" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="559.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="645" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="655.5" ></text>
</g>
<g >
<title>GL_CompileShader (101,980,462 samples, 0.05%)</title><rect x="106.3" y="1317" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="109.26" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,812,325 samples, 0.01%)</title><rect x="206.6" y="2053" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.63" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,796,792 samples, 0.01%)</title><rect x="1188.3" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.31" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1445" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="463.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="831.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="943.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1253" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="981" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="991.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1957" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (75,770,179 samples, 0.04%)</title><rect x="23.3" y="2053" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.31" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1317" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1477" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1487.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (99,812,030 samples, 0.05%)</title><rect x="102.0" y="1365" width="0.6" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="104.98" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="831.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="47.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1413" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="495.5" ></text>
</g>
<g >
<title>[Discord] (584,238,142 samples, 0.31%)</title><rect x="18.5" y="1781" width="3.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="21.45" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1381" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (363,517,921 samples, 0.20%)</title><rect x="62.2" y="949" width="2.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.15" y="959.5" ></text>
</g>
<g >
<title>[bash] (55,148,749 samples, 0.03%)</title><rect x="188.2" y="1557" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.19" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.82" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1349" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="981" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="991.5" ></text>
</g>
<g >
<title>PickKeyboard (32,772,210 samples, 0.02%)</title><rect x="182.4" y="1893" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="185.37" y="1903.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1269" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="453" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="463.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1861" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1871.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1989" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="597" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (241,757,904 samples, 0.13%)</title><rect x="97.5" y="1541" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.52" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (214,751,275 samples, 0.12%)</title><rect x="178.9" y="1733" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1829" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="463.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="783.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (68,766,303 samples, 0.04%)</title><rect x="106.4" y="1141" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.40" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (39,438,417 samples, 0.02%)</title><rect x="89.9" y="1589" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.90" y="1599.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1301" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.53" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1029" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="1957" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.17" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="597" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="383.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1573" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="47.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1925" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="773" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="783.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1989" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (3,543,802,813 samples, 1.90%)</title><rect x="54.6" y="1477" width="22.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="57.57" y="1487.5" >[..</text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="1973" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1983.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (64,282,989 samples, 0.03%)</title><rect x="104.1" y="1365" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.11" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,051,232 samples, 0.01%)</title><rect x="727.1" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.10" y="1983.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1349" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.52" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1173" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1183.5" ></text>
</g>
<g >
<title>ppoll (34,290,759 samples, 0.02%)</title><rect x="99.8" y="1781" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="102.84" y="1791.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="485" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="495.5" ></text>
</g>
<g >
<title>[Discord] (87,273,483 samples, 0.05%)</title><rect x="175.8" y="1877" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.81" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1397" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.40" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="511.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="703.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="85" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="95.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,545,540 samples, 0.02%)</title><rect x="70.3" y="901" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.32" y="911.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="933" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="943.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,240,782 samples, 0.02%)</title><rect x="67.6" y="821" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="70.63" y="831.5" ></text>
</g>
<g >
<title>[libGLX_mesa.so.0.0.0] (51,291,635 samples, 0.03%)</title><rect x="42.3" y="1557" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="45.31" y="1567.5" ></text>
</g>
<g >
<title>[[i915]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1013" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="110.52" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="287.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,055,511 samples, 0.04%)</title><rect x="163.2" y="1717" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="166.17" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (193,902,764 samples, 0.10%)</title><rect x="195.2" y="1525" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.16" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1509" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1519.5" ></text>
</g>
<g >
<title>echo (17,705,973 samples, 0.01%)</title><rect x="200.5" y="2069" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="203.45" y="2079.5" ></text>
</g>
<g >
<title>[libc.so.6] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="2053" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.73" y="2063.5" ></text>
</g>
<g >
<title>malloc (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1285" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="96.75" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (89,111,618 samples, 0.05%)</title><rect x="89.6" y="1669" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1679.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1397" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="319.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1333" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="127.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="1957" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="1967.5" ></text>
</g>
<g >
<title>[[anon:v8]] (405,822,522 samples, 0.22%)</title><rect x="33.1" y="213" width="2.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.12" y="223.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="133" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="143.5" ></text>
</g>
<g >
<title>__madvise (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1669" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="200.84" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (32,749,715 samples, 0.02%)</title><rect x="33.7" y="69" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.75" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,981,933 samples, 0.01%)</title><rect x="191.7" y="1509" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.73" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1173" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1183.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1701" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="437" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="447.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="607.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="863.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="949" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="959.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (72,601,602,676 samples, 39.01%)</title><rect x="727.9" y="2053" width="460.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.85" y="2063.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[unknown] (727,002,915 samples, 0.39%)</title><rect x="193.7" y="1781" width="4.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="196.70" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="991.5" ></text>
</g>
<g >
<title>v8::Function::Call (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1445" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.11" y="1455.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1189" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1045" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1055.5" ></text>
</g>
<g >
<title>[unknown] (40,476,546 samples, 0.02%)</title><rect x="205.0" y="1765" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.98" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,051,232 samples, 0.01%)</title><rect x="727.1" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.10" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="789" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (57,583,001 samples, 0.03%)</title><rect x="181.8" y="1893" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.84" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (233,418,787 samples, 0.13%)</title><rect x="175.5" y="2021" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.47" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="293" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="68.88" y="303.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1189" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1765" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (17,816,107 samples, 0.01%)</title><rect x="196.3" y="1333" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.28" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1333" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.71" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (917,640,807 samples, 0.49%)</title><rect x="1168.6" y="1877" width="5.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1171.63" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="421" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="431.5" ></text>
</g>
<g >
<title>GL_DrawRangeElements (31,291,358 samples, 0.02%)</title><rect x="104.5" y="1429" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="107.52" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="773" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,429,702 samples, 0.01%)</title><rect x="14.0" y="1077" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.98" y="1087.5" ></text>
</g>
<g >
<title>__close (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1429" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="78.66" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1365" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="965" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="975.5" ></text>
</g>
<g >
<title>[Discord] (4,166,618,869 samples, 2.24%)</title><rect x="51.9" y="1541" width="26.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="54.92" y="1551.5" >[..</text>
</g>
<g >
<title>[[anon:v8]] (49,885,078 samples, 0.03%)</title><rect x="75.3" y="1221" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="639.5" ></text>
</g>
<g >
<title>[Discord] (2,474,029,996 samples, 1.33%)</title><rect x="57.2" y="1333" width="15.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="60.16" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="197" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="207.5" ></text>
</g>
<g >
<title>[[i915]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1301" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1093" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="645" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="655.5" ></text>
</g>
<g >
<title>[bash] (18,459,234 samples, 0.01%)</title><rect x="199.8" y="1109" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.79" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (517,602,829 samples, 0.28%)</title><rect x="177.2" y="2021" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="767.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (101,980,462 samples, 0.05%)</title><rect x="106.3" y="1301" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.26" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="933" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.08" y="943.5" ></text>
</g>
<g >
<title>execute_command_internal (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1461" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (84,497,575 samples, 0.05%)</title><rect x="90.9" y="1317" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.94" y="1327.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (20,947,502 samples, 0.01%)</title><rect x="107.7" y="1349" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.66" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (391,867,999 samples, 0.21%)</title><rect x="159.9" y="1669" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="162.95" y="1679.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="2053" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (1,059,905,525 samples, 0.57%)</title><rect x="103.0" y="1525" width="6.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.00" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="991.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1653" width="5.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.15" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="725" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="735.5" ></text>
</g>
<g >
<title>malloc (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1093" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="109.91" y="1103.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (16,796,898 samples, 0.01%)</title><rect x="201.3" y="981" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.29" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1253" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.75" y="1263.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,523,315,849 samples, 0.82%)</title><rect x="26.0" y="1333" width="9.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.03" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="975.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1429" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="543.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (17,542,200 samples, 0.01%)</title><rect x="201.0" y="1861" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.03" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="223.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="607.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="207.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="671.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1829" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.53" y="1839.5" ></text>
</g>
<g >
<title>[[i915]] (34,546,908 samples, 0.02%)</title><rect x="42.3" y="1253" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,981,760 samples, 0.03%)</title><rect x="15.3" y="1797" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.30" y="1807.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1413" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="111.41" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,905,361 samples, 0.02%)</title><rect x="206.8" y="2005" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.75" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (185,026,591 samples, 0.10%)</title><rect x="95.5" y="1653" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.49" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="613" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1957" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="389" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="399.5" ></text>
</g>
<g >
<title>[Discord] (26,649,783 samples, 0.01%)</title><rect x="71.2" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.19" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="63.5" ></text>
</g>
<g >
<title>__libc_start_main (46,756,423 samples, 0.03%)</title><rect x="727.3" y="2037" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="730.28" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="69" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.43" y="79.5" ></text>
</g>
<g >
<title>[Discord] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1557" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.13" y="1567.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1119.5" ></text>
</g>
<g >
<title>[libc.so.6] (99,311,834 samples, 0.05%)</title><rect x="209.6" y="1781" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.57" y="1791.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1941" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="2021" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="415.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="975.5" ></text>
</g>
<g >
<title>[Discord] (17,869,008 samples, 0.01%)</title><rect x="162.6" y="1669" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="165.56" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1637" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (31,042,877 samples, 0.02%)</title><rect x="70.5" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.51" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1173" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="191.5" ></text>
</g>
<g >
<title>[Discord] (41,219,878 samples, 0.02%)</title><rect x="81.6" y="1429" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.62" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1013" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="543.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="1941" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="1951.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="853" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1381" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (32,749,715 samples, 0.02%)</title><rect x="33.7" y="101" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.75" y="111.5" ></text>
</g>
<g >
<title>[Discord] (821,624,986 samples, 0.44%)</title><rect x="17.4" y="1909" width="5.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.39" y="1919.5" ></text>
</g>
<g >
<title>operator new[] (32,548,498 samples, 0.02%)</title><rect x="89.4" y="1237" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="92.38" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="911.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,420,703,829 samples, 37.84%)</title><rect x="727.9" y="2037" width="446.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.94" y="2047.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1605" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="783.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="485" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="495.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="357" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,155,696 samples, 0.03%)</title><rect x="1174.0" y="1781" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1176.99" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,045,761 samples, 0.02%)</title><rect x="191.6" y="1525" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.63" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (43,206,660 samples, 0.02%)</title><rect x="1188.4" y="1941" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.42" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1109" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1247.5" ></text>
</g>
<g >
<title>__libc_start_main (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="2037" width="0.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1191.99" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1647.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1013" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="975.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="421" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="431.5" ></text>
</g>
<g >
<title>[Discord] (2,177,319,717 samples, 1.17%)</title><rect x="57.4" y="1317" width="13.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="60.39" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1701" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.13" y="1727.5" ></text>
</g>
<g >
<title>EGL_GetSyncValuesCHROMIUM (34,380,231 samples, 0.02%)</title><rect x="101.1" y="1701" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="104.12" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1951.5" ></text>
</g>
<g >
<title>GL_LinkProgram (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1333" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="108.99" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="741" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="751.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="511.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="239.5" ></text>
</g>
<g >
<title>[Discord] (416,033,340 samples, 0.22%)</title><rect x="97.0" y="1733" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.04" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="319.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="479.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="517" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="527.5" ></text>
</g>
<g >
<title>[unknown] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1861" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.25" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,113,570 samples, 0.01%)</title><rect x="85.5" y="1349" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.53" y="1359.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1989" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (72,727,013 samples, 0.04%)</title><rect x="85.1" y="1397" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.07" y="1407.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,098,969,558 samples, 4.89%)</title><rect x="110.6" y="2053" width="57.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="113.58" y="2063.5" >[libc...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,978,568 samples, 0.02%)</title><rect x="182.7" y="1797" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.67" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1189" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (869,402,754 samples, 0.47%)</title><rect x="10.2" y="1909" width="5.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.17" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (68,701,117 samples, 0.04%)</title><rect x="63.7" y="373" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="383.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="245" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="255.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1685" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1695.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1205" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.75" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1621" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="293" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="303.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="197" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="207.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="175.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="437" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="447.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="437" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="447.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="1909" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (707,883,069 samples, 0.38%)</title><rect x="31.2" y="645" width="4.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.20" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,433,416 samples, 0.05%)</title><rect x="720.9" y="1845" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.87" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1765" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="309" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="319.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1285" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (749,357,440 samples, 0.40%)</title><rect x="17.6" y="1877" width="4.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.61" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1605" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1615.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.65" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="2005" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="2015.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (126,241,134 samples, 0.07%)</title><rect x="207.9" y="1957" width="0.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.91" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1125" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1135.5" ></text>
</g>
<g >
<title>command_substitute (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1429" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="190.41" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (75,339,629 samples, 0.04%)</title><rect x="161.9" y="1525" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.86" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="783.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="559.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1109" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.29" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="975.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="677" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,560,937 samples, 0.01%)</title><rect x="194.7" y="1589" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.74" y="1599.5" ></text>
</g>
<g >
<title>source_builtin (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1829" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="202.34" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="853" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1717" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="133" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="143.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="917" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="927.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1317" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1327.5" ></text>
</g>
<g >
<title>all (186,101,489,268 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1429" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1439.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1429" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1381" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="517" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.13" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (28,201,008 samples, 0.02%)</title><rect x="77.8" y="1397" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1589" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1599.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1557" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.96" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (897,843,356 samples, 0.48%)</title><rect x="83.9" y="1605" width="5.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (464,519,392 samples, 0.25%)</title><rect x="32.7" y="229" width="3.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.74" y="239.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="735.5" ></text>
</g>
<g >
<title>threaded-ml (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="2069" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1191.19" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="303.5" ></text>
</g>
<g >
<title>[bash] (23,869,686 samples, 0.01%)</title><rect x="187.8" y="1333" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.82" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="293" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="303.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1189" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="533" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="543.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1381" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="94.47" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="687.5" ></text>
</g>
<g >
<title>[Discord] (95,608,765 samples, 0.05%)</title><rect x="94.3" y="1397" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.35" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="1941" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.17" y="1951.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1445" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,069,955 samples, 0.02%)</title><rect x="99.9" y="1669" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="102.87" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,833,980 samples, 0.01%)</title><rect x="98.9" y="949" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.93" y="959.5" ></text>
</g>
<g >
<title>[Discord] (185,026,591 samples, 0.10%)</title><rect x="95.5" y="1685" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="335.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="735.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="367.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (101,756,400 samples, 0.05%)</title><rect x="97.8" y="1413" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.76" y="1423.5" ></text>
</g>
<g >
<title>[bash] (55,148,749 samples, 0.03%)</title><rect x="188.2" y="1525" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.19" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (56,799,365 samples, 0.03%)</title><rect x="176.0" y="1797" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.99" y="1807.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="997" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="421" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="431.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1125" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1183.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1349" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="389" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="399.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="479.5" ></text>
</g>
<g >
<title>[Discord] (46,558,498 samples, 0.03%)</title><rect x="81.0" y="1573" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.97" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1343.5" ></text>
</g>
<g >
<title>execute_command (86,814,960 samples, 0.05%)</title><rect x="187.6" y="1573" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.64" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="655.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="271.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="159.5" ></text>
</g>
<g >
<title>execute_command (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1845" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="210.11" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1023.5" ></text>
</g>
<g >
<title>[gawk] (354,899,697 samples, 0.19%)</title><rect x="183.6" y="2005" width="2.3" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="186.62" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (255,880,992 samples, 0.14%)</title><rect x="82.0" y="1605" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="309" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="319.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,041,826 samples, 0.02%)</title><rect x="64.8" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.84" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="245" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="255.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="837" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="847.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (33,669,707 samples, 0.02%)</title><rect x="1189.7" y="2037" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.66" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (63,987,898 samples, 0.03%)</title><rect x="78.7" y="1285" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.72" y="1295.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1333" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1343.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1365" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1375.5" ></text>
</g>
<g >
<title>[[i915]] (28,528,495 samples, 0.02%)</title><rect x="102.4" y="1221" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="105.43" y="1231.5" ></text>
</g>
<g >
<title>make_child (20,474,249 samples, 0.01%)</title><rect x="187.3" y="1765" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="190.28" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="79.5" ></text>
</g>
<g >
<title>[unknown] (22,462,241 samples, 0.01%)</title><rect x="197.2" y="1477" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="200.21" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1135.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1285" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.87" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,790,843 samples, 0.01%)</title><rect x="163.0" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="165.98" y="1727.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,192,658 samples, 0.01%)</title><rect x="199.6" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.63" y="495.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="239.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1381" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1391.5" ></text>
</g>
<g >
<title>main (124,935,227 samples, 0.07%)</title><rect x="199.3" y="2005" width="0.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="202.32" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,323,815 samples, 0.04%)</title><rect x="208.8" y="1797" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.81" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="575.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="927.5" ></text>
</g>
<g >
<title>[libc.so.6] (22,768,496 samples, 0.01%)</title><rect x="183.3" y="2021" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="186.34" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.11" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (242,089,820 samples, 0.13%)</title><rect x="66.7" y="997" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.66" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="367.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1077" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1087.5" ></text>
</g>
<g >
<title>execute_command_internal (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1957" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.34" y="1967.5" ></text>
</g>
<g >
<title>command_substitute (446,900,643 samples, 0.24%)</title><rect x="187.2" y="1781" width="2.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="190.17" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="453" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="463.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="255.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="357" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1925" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (92,065,286 samples, 0.05%)</title><rect x="28.0" y="1189" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1199.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1125" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1461" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1471.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="789" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="799.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1013" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="511.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1429" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1439.5" ></text>
</g>
<g >
<title>[bash] (30,077,467 samples, 0.02%)</title><rect x="189.1" y="1269" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (32,166,977 samples, 0.02%)</title><rect x="94.6" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.56" y="1327.5" ></text>
</g>
<g >
<title>execute_command (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1669" width="2.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.41" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1909" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1919.5" >[Discord]</text>
</g>
<g >
<title>[Discord] (28,041,826 samples, 0.02%)</title><rect x="64.8" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.84" y="943.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="831.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1877" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1887.5" ></text>
</g>
<g >
<title>sh (19,987,539 samples, 0.01%)</title><rect x="727.0" y="2069" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="729.97" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="117" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="127.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="2005" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (1,915,686,460 samples, 1.03%)</title><rect x="58.4" y="1285" width="12.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="61.36" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (110,389,533 samples, 0.06%)</title><rect x="13.5" y="1333" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.49" y="1343.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="2005" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (78,640,551 samples, 0.04%)</title><rect x="65.6" y="885" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.57" y="895.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1087.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,158,700 samples, 0.01%)</title><rect x="101.1" y="1685" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.12" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="309" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1973" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,499,469 samples, 0.04%)</title><rect x="109.2" y="1045" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.24" y="1055.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="533" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="543.5" ></text>
</g>
<g >
<title>[[i915]] (22,716,277 samples, 0.01%)</title><rect x="182.7" y="1717" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="185.67" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1183.5" ></text>
</g>
<g >
<title>v8::Isolate::Initialize (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1781" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="25.93" y="1791.5" ></text>
</g>
<g >
<title>reader_loop (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1989" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="210.11" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="677" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="687.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="367.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (44,058,002 samples, 0.02%)</title><rect x="179.5" y="1557" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.50" y="1567.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (156,533,955 samples, 0.08%)</title><rect x="185.9" y="1989" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="188.87" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="687.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="815.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1125" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.91" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="175.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1285" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1301" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="799.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="357" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="367.5" ></text>
</g>
<g >
<title>[[i915]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1189" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="112.00" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="853" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1685" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="271.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1461" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1877" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1887.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1525" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1813" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="533" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="543.5" ></text>
</g>
<g >
<title>[Discord] (60,489,582 samples, 0.03%)</title><rect x="27.6" y="1189" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="959.5" ></text>
</g>
<g >
<title>clock_gettime (34,499,225 samples, 0.02%)</title><rect x="198.1" y="1765" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.09" y="1775.5" ></text>
</g>
<g >
<title>gdk_x11_display_get_xcursor (17,542,200 samples, 0.01%)</title><rect x="201.0" y="1813" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="204.03" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1461" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="575.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1493" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1093" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1189" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1199.5" ></text>
</g>
<g >
<title>[libGLX_mesa.so.0.0.0] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1493" width="0.7" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="104.92" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="111.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="799.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (28,992,762 samples, 0.02%)</title><rect x="724.1" y="2037" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="727.15" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (9,133,878,014 samples, 4.91%)</title><rect x="38.8" y="1749" width="57.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="41.75" y="1759.5" >[Disco..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="389" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="399.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1413" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="277" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="287.5" ></text>
</g>
<g >
<title>[Discord] (55,823,758 samples, 0.03%)</title><rect x="82.2" y="1525" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.16" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="223.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1253" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="175.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="613" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="623.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1509" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1519.5" ></text>
</g>
<g >
<title>[libpulse.so.0.24.3] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1813" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="213.35" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="847.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="367.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1413" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="309" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="319.5" ></text>
</g>
<g >
<title>main (224,499,374 samples, 0.12%)</title><rect x="209.3" y="2005" width="1.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="212.31" y="2015.5" ></text>
</g>
<g >
<title>execute_command_internal (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1141" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,429,702 samples, 0.01%)</title><rect x="14.0" y="1061" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.98" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1269" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1109" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1173" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="95.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1269" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1279.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1189" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1871.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="1957" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.21" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,905,361 samples, 0.02%)</title><rect x="206.8" y="2053" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.75" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="933" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="943.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="789" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="799.5" ></text>
</g>
<g >
<title>[Discord] (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1381" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.78" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="591.5" ></text>
</g>
<g >
<title>[Discord] (138,156,415 samples, 0.07%)</title><rect x="63.5" y="485" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="495.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1733" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (194,407,554 samples, 0.10%)</title><rect x="63.2" y="661" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.22" y="671.5" ></text>
</g>
<g >
<title>[[i915]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1941" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.91" y="1951.5" ></text>
</g>
<g >
<title>[libell.so.0.0.2] (89,834,214 samples, 0.05%)</title><rect x="204.1" y="1909" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="207.06" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="735.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="213" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="223.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="799.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="271.5" ></text>
</g>
<g >
<title>[unknown] (24,066,459 samples, 0.01%)</title><rect x="196.2" y="1445" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.24" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="277" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1381" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1391.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1781" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (76,378,931 samples, 0.04%)</title><rect x="97.8" y="1365" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.84" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1509" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1519.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="549" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="559.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1791.5" ></text>
</g>
<g >
<title>[[i915]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1845" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.38" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1733" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="239.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="133" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="143.5" ></text>
</g>
<g >
<title>command_substitute (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1685" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="210.26" y="1695.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,557,448 samples, 0.02%)</title><rect x="95.0" y="1349" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.04" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1909" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1919.5" ></text>
</g>
<g >
<title>pa_context_new_with_proplist (155,021,469 samples, 0.08%)</title><rect x="209.3" y="1989" width="1.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="212.31" y="1999.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1349" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (26,157,889 samples, 0.01%)</title><rect x="173.8" y="1733" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="176.78" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1253" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="847.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="703.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="351.5" ></text>
</g>
<g >
<title>[Discord] (162,873,019 samples, 0.09%)</title><rect x="161.3" y="1589" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.31" y="1599.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="517" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="527.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="175.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="63.5" ></text>
</g>
<g >
<title>[[i915]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1845" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.91" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1445" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="549" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1685" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1045" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1055.5" ></text>
</g>
<g >
<title>__libc_start_main (27,688,256 samples, 0.01%)</title><rect x="727.7" y="2037" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="730.68" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="143.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (17,834,864 samples, 0.01%)</title><rect x="107.9" y="1413" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.85" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="293" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="303.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="997" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="165" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="175.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1909" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,736,073 samples, 0.01%)</title><rect x="162.4" y="1701" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="165.43" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1295.5" ></text>
</g>
<g >
<title>node::CallbackScope::CallbackScope (27,487,160 samples, 0.01%)</title><rect x="99.4" y="1685" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="102.39" y="1695.5" ></text>
</g>
<g >
<title>execute_command_internal (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1781" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,123,513,964 samples, 1.14%)</title><rect x="1174.7" y="1925" width="13.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.73" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1237" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.75" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1525" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1813" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="63.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1557" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="869" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="879.5" ></text>
</g>
<g >
<title>[rg] (133,613,885 samples, 0.07%)</title><rect x="725.4" y="1877" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="735.5" ></text>
</g>
<g >
<title>[Discord] (120,806,128 samples, 0.06%)</title><rect x="13.4" y="1349" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.42" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1189" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1199.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="2053" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.69" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1141" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="821" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1695.5" ></text>
</g>
<g >
<title>[bash] (55,148,749 samples, 0.03%)</title><rect x="188.2" y="1509" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.19" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,560,937 samples, 0.01%)</title><rect x="194.7" y="1605" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.74" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="85" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="95.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="639.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="661" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="671.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="2005" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1029" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="335.5" ></text>
</g>
<g >
<title>[Discord] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1429" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.61" y="1439.5" ></text>
</g>
<g >
<title>do_redirections (25,192,658 samples, 0.01%)</title><rect x="199.6" y="517" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="202.63" y="527.5" ></text>
</g>
<g >
<title>[Discord] (459,314,483 samples, 0.25%)</title><rect x="19.2" y="1765" width="2.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="22.18" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (145,175,593 samples, 0.08%)</title><rect x="173.0" y="1797" width="0.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="176.03" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (98,525,347 samples, 0.05%)</title><rect x="81.3" y="1477" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.53" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="975.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1301" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="105.40" y="1311.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1909" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (494,301,150 samples, 0.27%)</title><rect x="104.7" y="1429" width="3.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="107.72" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (517,602,829 samples, 0.28%)</title><rect x="177.2" y="1941" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (831,842,371 samples, 0.45%)</title><rect x="84.3" y="1445" width="5.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.31" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="447.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1493" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="735.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (81,300,885 samples, 0.04%)</title><rect x="106.3" y="1189" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.32" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1061" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (146,580,171 samples, 0.08%)</title><rect x="67.1" y="965" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.06" y="975.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="53" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="63.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="127.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1685" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1765" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="26.53" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1333" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="105.40" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="799.5" ></text>
</g>
<g >
<title>[Discord] (88,892,685 samples, 0.05%)</title><rect x="67.2" y="837" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.25" y="847.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1173" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="373" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="383.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="37" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="47.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="1925" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="287.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1007.5" ></text>
</g>
<g >
<title>v8::Function::Call (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1429" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.78" y="1439.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,041,826 samples, 0.02%)</title><rect x="64.8" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.84" y="975.5" ></text>
</g>
<g >
<title>[unknown] (924,251,554 samples, 0.50%)</title><rect x="192.6" y="1861" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.58" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,035,855,105 samples, 0.56%)</title><rect x="29.1" y="1141" width="6.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.12" y="1151.5" ></text>
</g>
<g >
<title>__mbrtowc (16,628,455 samples, 0.01%)</title><rect x="726.8" y="2021" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="729.82" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="447.5" ></text>
</g>
<g >
<title>execute_command_internal (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1653" width="2.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (78,640,551 samples, 0.04%)</title><rect x="65.6" y="949" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.57" y="959.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="975.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="623.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1253" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="869" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="879.5" ></text>
</g>
<g >
<title>[Discord] (26,843,266 samples, 0.01%)</title><rect x="76.7" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.65" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (143,884,606 samples, 0.08%)</title><rect x="177.3" y="1861" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.29" y="1871.5" ></text>
</g>
<g >
<title>[[i915]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1621" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="201.56" y="1631.5" ></text>
</g>
<g >
<title>__libc_start_main (136,536,155 samples, 0.07%)</title><rect x="725.4" y="2037" width="0.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="728.37" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (44,262,980 samples, 0.02%)</title><rect x="95.0" y="1397" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.95" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (53,814,357 samples, 0.03%)</title><rect x="96.3" y="1621" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.33" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="47.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="469" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="479.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="335.5" ></text>
</g>
<g >
<title>fnmatch (43,206,660 samples, 0.02%)</title><rect x="1188.4" y="1973" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1191.42" y="1983.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="565" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="575.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="837" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="847.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="975.5" ></text>
</g>
<g >
<title>execve (59,174,239 samples, 0.03%)</title><rect x="192.0" y="2053" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="195.01" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="85" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1727.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1445" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1455.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="357" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="367.5" ></text>
</g>
<g >
<title>[Discord] (95,362,779 samples, 0.05%)</title><rect x="26.4" y="1237" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.13" y="1711.5" ></text>
</g>
<g >
<title>epoll_wait (65,777,842 samples, 0.04%)</title><rect x="15.3" y="1893" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="18.27" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="565" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="575.5" ></text>
</g>
<g >
<title>[unknown] (21,867,324 samples, 0.01%)</title><rect x="195.6" y="1477" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.59" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.95" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="277" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="287.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="639.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (361,733,995 samples, 0.19%)</title><rect x="1185.9" y="1893" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.90" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="911.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1413" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1423.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="2021" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1071.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="821" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="831.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1317" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1749" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,888,202 samples, 0.01%)</title><rect x="15.1" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.09" y="1647.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="997" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1007.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (52,502,137 samples, 0.03%)</title><rect x="102.1" y="1349" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="105.06" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1717" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="309" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1349" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1055.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,797,942 samples, 0.01%)</title><rect x="76.1" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.14" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (63,987,898 samples, 0.03%)</title><rect x="78.7" y="1237" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.72" y="1247.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,828,757 samples, 0.01%)</title><rect x="204.7" y="1925" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.69" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (1,604,612,354 samples, 0.86%)</title><rect x="153.0" y="1765" width="10.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="155.99" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1749" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.93" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1845" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="415.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="207.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="543.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="229" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,135,820,827 samples, 0.61%)</title><rect x="1167.3" y="1893" width="7.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1170.25" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,211,991 samples, 0.01%)</title><rect x="165.7" y="1749" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.74" y="1759.5" ></text>
</g>
<g >
<title>v8::Function::Call (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1221" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,905,361 samples, 0.02%)</title><rect x="206.8" y="2037" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.75" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (118,341,865 samples, 0.06%)</title><rect x="67.1" y="933" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.06" y="943.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,760,370 samples, 0.02%)</title><rect x="206.3" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.27" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (272,610,352 samples, 0.15%)</title><rect x="62.7" y="805" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.73" y="815.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1477" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="83.61" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1397" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (792,609,756 samples, 0.43%)</title><rect x="103.7" y="1461" width="5.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.75" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="431.5" ></text>
</g>
<g >
<title>[unknown] (49,555,689 samples, 0.03%)</title><rect x="173.6" y="1765" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="176.63" y="1775.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (28,541,040 samples, 0.02%)</title><rect x="727.1" y="2037" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="730.10" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (29,439,836 samples, 0.02%)</title><rect x="73.7" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.72" y="1343.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="319.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="239.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="111.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="719.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1269" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.91" y="1279.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="805" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.05" y="815.5" ></text>
</g>
<g >
<title>_dl_catch_exception (26,138,111 samples, 0.01%)</title><rect x="726.7" y="1973" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="729.65" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,812,325 samples, 0.01%)</title><rect x="206.6" y="2005" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.63" y="2015.5" ></text>
</g>
<g >
<title>uv_sem_wait (17,881,426 samples, 0.01%)</title><rect x="35.7" y="2005" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="38.69" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="581" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="591.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="469" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="479.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="399.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="527.5" ></text>
</g>
<g >
<title>[Discord] (55,415,241 samples, 0.03%)</title><rect x="27.2" y="1237" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (319,736,093 samples, 0.17%)</title><rect x="62.4" y="885" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.43" y="895.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1429" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (884,611,078 samples, 0.48%)</title><rect x="192.8" y="1829" width="5.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.77" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="591.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="79.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="271.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="831.5" ></text>
</g>
<g >
<title>[sudo] (27,688,256 samples, 0.01%)</title><rect x="727.7" y="1941" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="730.68" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (89,111,618 samples, 0.05%)</title><rect x="89.6" y="1653" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1663.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,540,847 samples, 0.01%)</title><rect x="1188.3" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (9,098,969,558 samples, 4.89%)</title><rect x="110.6" y="2005" width="57.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.58" y="2015.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1125" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1493" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="581" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="591.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1141" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="991.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="2021" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="597" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="607.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="607.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="719.5" ></text>
</g>
<g >
<title>[libc.so.6] (43,206,660 samples, 0.02%)</title><rect x="1188.4" y="1909" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.42" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="997" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1189" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="415.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="271.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1205" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1989" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1013" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1023.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1653" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="741" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="751.5" ></text>
</g>
<g >
<title>l_dbus_message_iter_get_variant (15,947,968 samples, 0.01%)</title><rect x="204.2" y="1861" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="207.20" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1205" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="933" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="943.5" ></text>
</g>
<g >
<title>g_main_context_iteration (367,448,118 samples, 0.20%)</title><rect x="178.2" y="1925" width="2.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="181.20" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (341,766,450 samples, 0.18%)</title><rect x="160.3" y="1653" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="163.26" y="1663.5" ></text>
</g>
<g >
<title>[[nvidia]] (25,929,977 samples, 0.01%)</title><rect x="1174.3" y="1861" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.29" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="693" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="261" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="271.5" ></text>
</g>
<g >
<title>l_dbus_message_iter_next_entry (44,993,399 samples, 0.02%)</title><rect x="204.3" y="1861" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="207.30" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.12" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="943.5" ></text>
</g>
<g >
<title>[Discord] (898,053,296 samples, 0.48%)</title><rect x="59.0" y="1221" width="5.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="61.99" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="805" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="815.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="341" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="351.5" ></text>
</g>
<g >
<title>[Discord] (92,467,182 samples, 0.05%)</title><rect x="69.3" y="965" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.27" y="975.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="917" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="927.5" ></text>
</g>
<g >
<title>DedicatedWorker (74,991,823 samples, 0.04%)</title><rect x="22.7" y="2069" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="25.73" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (84,497,575 samples, 0.05%)</title><rect x="90.9" y="1285" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.94" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="517" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="527.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1045" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1349" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.71" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1029" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="463.5" ></text>
</g>
<g >
<title>[Discord] (28,579,015 samples, 0.02%)</title><rect x="88.2" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.17" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1749" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="319.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1157" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.57" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="111.5" ></text>
</g>
<g >
<title>[Discord] (100,256,362 samples, 0.05%)</title><rect x="95.5" y="1557" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="581" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1541" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="911.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1247.5" ></text>
</g>
<g >
<title>[bash] (30,077,467 samples, 0.02%)</title><rect x="189.1" y="1221" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (1,273,173,885 samples, 0.68%)</title><rect x="101.6" y="1589" width="8.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.65" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="47.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (26,307,600 samples, 0.01%)</title><rect x="721.7" y="1893" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="724.71" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (139,202,980 samples, 0.07%)</title><rect x="184.6" y="1861" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="187.61" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="799.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (28,437,790 samples, 0.02%)</title><rect x="201.4" y="1701" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.40" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1637" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1647.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="373" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="383.5" ></text>
</g>
<g >
<title>[libc.so.6] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="2037" width="5.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="171.33" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (80,177,168 samples, 0.04%)</title><rect x="201.3" y="1941" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.25" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1381" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1311.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (17,542,200 samples, 0.01%)</title><rect x="201.0" y="1845" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.03" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (57,501,651 samples, 0.03%)</title><rect x="68.7" y="869" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.72" y="879.5" ></text>
</g>
<g >
<title>[Discord] (668,948,449 samples, 0.36%)</title><rect x="18.0" y="1829" width="4.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="21.02" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="229" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="239.5" ></text>
</g>
<g >
<title>v8::Function::Call (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1493" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="101.72" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="159.5" ></text>
</g>
<g >
<title>[Discord] (20,592,359 samples, 0.01%)</title><rect x="96.4" y="1573" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.35" y="1583.5" ></text>
</g>
<g >
<title>_Fork (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1301" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="190.48" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (33,398,159 samples, 0.02%)</title><rect x="91.2" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.21" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="287.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="575.5" ></text>
</g>
<g >
<title>[unknown] (148,863,984 samples, 0.08%)</title><rect x="200.8" y="2021" width="1.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.83" y="2031.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="1973" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.21" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="943.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="831.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1941" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="1951.5" ></text>
</g>
<g >
<title>[libc.so.6] (75,601,888 samples, 0.04%)</title><rect x="181.7" y="1925" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="184.73" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="271.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1797" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1157" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (35,115,473 samples, 0.02%)</title><rect x="176.1" y="1749" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="179.09" y="1759.5" ></text>
</g>
<g >
<title>execute_command (248,872,228 samples, 0.13%)</title><rect x="188.2" y="1589" width="1.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="191.19" y="1599.5" ></text>
</g>
<g >
<title>chromium (973,529,282 samples, 0.52%)</title><rect x="192.4" y="2069" width="6.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="195.38" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="559.5" ></text>
</g>
<g >
<title>Discord:sh8 (29,032,610 samples, 0.02%)</title><rect x="24.1" y="2069" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="27.12" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1189" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="79.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1397" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1311.5" ></text>
</g>
<g >
<title>parse_and_execute (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1413" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="190.41" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="741" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="1999.5" ></text>
</g>
<g >
<title>[libc.so.6] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1333" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="191.65" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="149" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="159.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1349" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.87" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1327.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1525" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="767.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="885" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="895.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="165" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="175.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="207.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1877" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.79" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (66,379,043 samples, 0.04%)</title><rect x="21.4" y="1589" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="24.37" y="1599.5" ></text>
</g>
<g >
<title>dbus_message_iter_append_basic (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1877" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="186.34" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1237" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (121,065,510 samples, 0.07%)</title><rect x="191.1" y="1637" width="0.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.12" y="1647.5" ></text>
</g>
<g >
<title>[[anon:v8]] (943,218,433 samples, 0.51%)</title><rect x="29.7" y="1061" width="6.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.71" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="559.5" ></text>
</g>
<g >
<title>[Discord] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.82" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.11" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="389" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="399.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="831.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="783.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="613" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="623.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="229" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="239.5" ></text>
</g>
<g >
<title>[unknown] (185,759,891 samples, 0.10%)</title><rect x="196.7" y="1637" width="1.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.67" y="1647.5" ></text>
</g>
<g >
<title>[[anon:v8]] (662,797,156 samples, 0.36%)</title><rect x="31.5" y="549" width="4.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="559.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="591.5" ></text>
</g>
<g >
<title>[Discord] (57,130,716 samples, 0.03%)</title><rect x="34.0" y="37" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.96" y="47.5" ></text>
</g>
<g >
<title>[Discord] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1669" width="5.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.15" y="1679.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1381" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1391.5" ></text>
</g>
<g >
<title>GL_LinkProgram (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1413" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="108.01" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1109" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="63.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="821" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="831.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (9,496,989,457 samples, 5.10%)</title><rect x="36.7" y="1797" width="60.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.73" y="1807.5" >[Disco..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (411,150,519 samples, 0.22%)</title><rect x="12.0" y="1733" width="2.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.98" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1493" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (143,884,606 samples, 0.08%)</title><rect x="177.3" y="1877" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.29" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1909" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="229" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="239.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1381" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1349" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="405" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="415.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="79.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="895.5" ></text>
</g>
<g >
<title>[Discord] (9,275,655,251 samples, 4.98%)</title><rect x="38.0" y="1765" width="58.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="40.98" y="1775.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (255,880,992 samples, 0.14%)</title><rect x="82.0" y="1589" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="469" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="479.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1173" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1183.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (28,437,790 samples, 0.02%)</title><rect x="201.4" y="1717" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.40" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="245" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="255.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="677" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="687.5" ></text>
</g>
<g >
<title>[Discord] (28,361,106 samples, 0.02%)</title><rect x="71.8" y="1029" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.77" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.13" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="895.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1925" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1935.5" >[Discord]</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (19,202,851 samples, 0.01%)</title><rect x="191.9" y="2005" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="194.89" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1509" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1621" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="927.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="2037" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="2047.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1749" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (1,885,547,201 samples, 1.01%)</title><rect x="58.5" y="1269" width="12.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="61.55" y="1279.5" ></text>
</g>
<g >
<title>napi_get_value_external (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1253" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="80.82" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="415.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="197" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="207.5" ></text>
</g>
<g >
<title>[libprotocol-native.so] (25,777,105 samples, 0.01%)</title><rect x="721.5" y="1909" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="724.48" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="293" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1887.5" ></text>
</g>
<g >
<title>[[anon:v8]] (897,843,356 samples, 0.48%)</title><rect x="83.9" y="1589" width="5.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.89" y="1599.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1413" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="94.61" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,796,792 samples, 0.01%)</title><rect x="1188.3" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.31" y="1727.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1669" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="357" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="367.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1429" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="197" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="207.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="815.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="709" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="719.5" ></text>
</g>
<g >
<title>[spectrwm] (18,041,103 samples, 0.01%)</title><rect x="727.4" y="1973" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="730.37" y="1983.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1365" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.71" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1061" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1365" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="469" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="479.5" ></text>
</g>
<g >
<title>rm (16,787,361 samples, 0.01%)</title><rect x="726.4" y="2069" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="729.39" y="2079.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (60,560,288 samples, 0.03%)</title><rect x="23.4" y="1925" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.41" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="453" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1221" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="86.11" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (773,891,127 samples, 0.42%)</title><rect x="17.6" y="1893" width="4.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.58" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="895.5" ></text>
</g>
<g >
<title>[Discord] (32,964,903 samples, 0.02%)</title><rect x="83.9" y="1509" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="111.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1813" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="186.34" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1221" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (36,994,858 samples, 0.02%)</title><rect x="72.4" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.41" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1397" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="751.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (51,291,635 samples, 0.03%)</title><rect x="42.3" y="1573" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="45.31" y="1583.5" ></text>
</g>
<g >
<title>[libc.so.6] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="117" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="28.43" y="127.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="431.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="671.5" ></text>
</g>
<g >
<title>[[anon:v8]] (84,163,153 samples, 0.05%)</title><rect x="83.1" y="1397" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.11" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="677" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="687.5" ></text>
</g>
<g >
<title>[[nvidia]] (25,929,977 samples, 0.01%)</title><rect x="1174.3" y="1845" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.29" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="815.5" ></text>
</g>
<g >
<title>node::InternalMakeCallback (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1525" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="101.72" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="165" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="175.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="2037" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.21" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1605" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1615.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,007,695,244 samples, 0.54%)</title><rect x="29.3" y="1125" width="6.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.30" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (88,941,069 samples, 0.05%)</title><rect x="87.8" y="1365" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.79" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (331,071,349 samples, 0.18%)</title><rect x="97.3" y="1685" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.27" y="1695.5" ></text>
</g>
<g >
<title>[cat] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1989" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="193.50" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="319.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (112,616,182 samples, 0.06%)</title><rect x="65.4" y="997" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.35" y="1007.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1813" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1823.5" ></text>
</g>
<g >
<title>perf-tester (80,546,551,638 samples, 43.28%)</title><rect x="210.7" y="2069" width="510.8" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="213.74" y="2079.5" >perf-tester</text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="1925" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="463.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="271.5" ></text>
</g>
<g >
<title>[[anon:v8]] (83,499,678 samples, 0.04%)</title><rect x="76.5" y="1269" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.47" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="959.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1125" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (3,363,347,221 samples, 1.81%)</title><rect x="55.0" y="1461" width="21.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="57.99" y="1471.5" >[..</text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="399.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="159.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="479.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1685" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1695.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (266,441,343 samples, 0.14%)</title><rect x="97.4" y="1605" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.44" y="1615.5" ></text>
</g>
<g >
<title>cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1397" width="0.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="76.96" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1189" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,523,315,849 samples, 0.82%)</title><rect x="26.0" y="1317" width="9.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.03" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (48,846,085 samples, 0.03%)</title><rect x="183.0" y="1925" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.03" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (272,610,352 samples, 0.15%)</title><rect x="62.7" y="821" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.73" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1509" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,989,526 samples, 0.01%)</title><rect x="15.1" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.06" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1861" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,942,364 samples, 0.02%)</title><rect x="1188.0" y="1781" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.98" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (55,235,411 samples, 0.03%)</title><rect x="15.3" y="1781" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.33" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="895.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1397" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1407.5" ></text>
</g>
<g >
<title>EGL_SwapBuffers (51,291,635 samples, 0.03%)</title><rect x="42.3" y="1621" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="45.31" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="277" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="287.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="1925" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="453" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="463.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1055.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (31,291,358 samples, 0.02%)</title><rect x="104.5" y="1413" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="107.52" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1109" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="469" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1285" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1295.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1413" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1423.5" ></text>
</g>
<g >
<title>[libc.so.6] (331,443,453 samples, 0.18%)</title><rect x="183.7" y="1957" width="2.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="186.72" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.13" y="1743.5" ></text>
</g>
<g >
<title>[bash] (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1797" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.34" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="815.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="687.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="863.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1023.5" ></text>
</g>
<g >
<title>execute_command_internal (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1621" width="2.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="165" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="175.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="453" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="463.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1829" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="37" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.43" y="47.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="485" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="495.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (66,128,246 samples, 0.04%)</title><rect x="23.4" y="1941" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.37" y="1951.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1045" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.29" y="1055.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1237" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1247.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="789" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="799.5" ></text>
</g>
<g >
<title>[libc.so.6] (890,014,754 samples, 0.48%)</title><rect x="10.1" y="2037" width="5.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="13.13" y="2047.5" ></text>
</g>
<g >
<title>__libc_start_main (22,768,496 samples, 0.01%)</title><rect x="183.3" y="2037" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="186.34" y="2047.5" ></text>
</g>
<g >
<title>v8::Function::Call (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1477" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.16" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1429" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="2021" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="229" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="239.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="319.5" ></text>
</g>
<g >
<title>[Discord] (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1397" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.78" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="607.5" ></text>
</g>
<g >
<title>[libc.so.6] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1541" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="82.55" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="639.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="431.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="533" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="543.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="709" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="719.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1253" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1263.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1509" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (84,499,206 samples, 0.05%)</title><rect x="106.9" y="1301" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.91" y="1311.5" ></text>
</g>
<g >
<title>pa_mainloop_dispatch (61,342,948 samples, 0.03%)</title><rect x="210.3" y="1957" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="213.29" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="261" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="271.5" ></text>
</g>
<g >
<title>[Discord] (29,332,311 samples, 0.02%)</title><rect x="32.9" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.93" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="405" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,989,526 samples, 0.01%)</title><rect x="15.1" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.06" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="207.5" ></text>
</g>
<g >
<title>[libc.so.6] (99,311,834 samples, 0.05%)</title><rect x="209.6" y="1797" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.57" y="1807.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (26,138,111 samples, 0.01%)</title><rect x="726.7" y="1925" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.65" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1317" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="495.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="847.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="805" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="815.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="757" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="767.5" ></text>
</g>
<g >
<title>[Discord] (43,009,040 samples, 0.02%)</title><rect x="63.7" y="325" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="335.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,041,826 samples, 0.02%)</title><rect x="64.8" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.84" y="959.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1381" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="2005" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="213" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="223.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="367.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="389" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="399.5" ></text>
</g>
<g >
<title>[Discord] (102,680,937 samples, 0.06%)</title><rect x="13.5" y="1317" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.49" y="1327.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (123,768,589 samples, 0.07%)</title><rect x="207.9" y="1941" width="0.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.92" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="277" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,981,760 samples, 0.03%)</title><rect x="15.3" y="1845" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.30" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (56,298,713 samples, 0.03%)</title><rect x="86.2" y="1301" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.18" y="1311.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1893" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1903.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (81,300,885 samples, 0.04%)</title><rect x="106.3" y="1173" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.32" y="1183.5" ></text>
</g>
<g >
<title>dri_flush (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1509" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="45.31" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="997" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1007.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (52,242,967 samples, 0.03%)</title><rect x="175.0" y="1765" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.05" y="1775.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,553,956,939 samples, 0.84%)</title><rect x="25.8" y="1397" width="9.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1125" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="965" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="975.5" ></text>
</g>
<g >
<title>[Discord] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.24" y="895.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="629" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="639.5" ></text>
</g>
<g >
<title>[Discord] (37,474,454 samples, 0.02%)</title><rect x="13.5" y="1253" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.52" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="719.5" ></text>
</g>
<g >
<title>[Discord] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.82" y="927.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1877" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="357" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="367.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="607.5" ></text>
</g>
<g >
<title>[unknown] (16,416,804 samples, 0.01%)</title><rect x="727.6" y="2053" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="730.57" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (61,030,248 samples, 0.03%)</title><rect x="93.2" y="1413" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.16" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1445" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="271.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1461" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.76" y="1471.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="933" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="943.5" ></text>
</g>
<g >
<title>v8::Function::Call (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1781" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="25.77" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1397" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="751.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="143.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,480,290 samples, 0.01%)</title><rect x="200.3" y="2053" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="203.29" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1221" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (235,448,157 samples, 0.13%)</title><rect x="178.9" y="1797" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.87" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="949" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="959.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="655.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="95.5" ></text>
</g>
<g >
<title>[bash] (23,869,686 samples, 0.01%)</title><rect x="187.8" y="1365" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.82" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (1,511,909,602 samples, 0.81%)</title><rect x="100.4" y="1797" width="9.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="103.42" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="229" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="239.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="2037" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="901" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="911.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1941" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1951.5" >[Discord]</text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="175.5" ></text>
</g>
<g >
<title>v8::Function::Call (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1317" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="149" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="159.5" ></text>
</g>
<g >
<title>[libprotocol-native.so] (23,632,051 samples, 0.01%)</title><rect x="721.7" y="1829" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="724.71" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1887.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="357" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="367.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="671.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1189" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="367.5" ></text>
</g>
<g >
<title>[unknown] (22,462,241 samples, 0.01%)</title><rect x="197.2" y="1525" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="200.21" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1573" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="47.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="959.5" ></text>
</g>
<g >
<title>[bash] (36,334,190 samples, 0.02%)</title><rect x="189.1" y="1285" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1311.5" ></text>
</g>
<g >
<title>v8::Object::Set (29,332,311 samples, 0.02%)</title><rect x="32.9" y="133" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="35.93" y="143.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1461" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1589" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (146,245,395 samples, 0.08%)</title><rect x="178.9" y="1669" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.95" y="1679.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (86,802,530 samples, 0.05%)</title><rect x="201.2" y="1957" width="0.6" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.21" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1173" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1183.5" ></text>
</g>
<g >
<title>rg (199,512,211 samples, 0.11%)</title><rect x="725.1" y="2069" width="1.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="728.12" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="671.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="943.5" ></text>
</g>
<g >
<title>[[anon:v8]] (943,218,433 samples, 0.51%)</title><rect x="29.7" y="1077" width="6.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.71" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1397" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (70,029,244 samples, 0.04%)</title><rect x="91.0" y="1205" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.03" y="1215.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1509" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (162,361,618 samples, 0.09%)</title><rect x="82.6" y="1445" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.61" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="447.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="885" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="895.5" ></text>
</g>
<g >
<title>[Discord] (44,262,980 samples, 0.02%)</title><rect x="95.0" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.95" y="1375.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (33,669,707 samples, 0.02%)</title><rect x="1189.7" y="2005" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.66" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="37" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="47.5" ></text>
</g>
<g >
<title>[bash] (106,641,229 samples, 0.06%)</title><rect x="189.1" y="1317" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1541" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="255.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="597" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="607.5" ></text>
</g>
<g >
<title>[bash] (55,148,749 samples, 0.03%)</title><rect x="188.2" y="1493" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.19" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1231.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1173" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="927.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="725" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="735.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1077" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1541" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1551.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1189" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.99" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (166,841,050 samples, 0.09%)</title><rect x="90.6" y="1429" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.55" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="2031.5" ></text>
</g>
<g >
<title>[[anon:v8]] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1477" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.83" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (70,365,635 samples, 0.04%)</title><rect x="81.4" y="1445" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.44" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="367.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1557" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1845" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="170.93" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="597" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="607.5" ></text>
</g>
<g >
<title>[libxcb.so.1.1.0] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="2053" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="203.57" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="629" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="639.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1839.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,627,135 samples, 0.01%)</title><rect x="104.6" y="1317" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.61" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="981" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="991.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="559.5" ></text>
</g>
<g >
<title>read (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1109" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="101.89" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,570,289 samples, 0.01%)</title><rect x="165.6" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.61" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="2037" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="303.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="581" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="591.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1429" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1023.5" ></text>
</g>
<g >
<title>[dbus-broker] (60,680,285 samples, 0.03%)</title><rect x="198.7" y="2053" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="201.72" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="991.5" ></text>
</g>
<g >
<title>[Discord] (55,415,241 samples, 0.03%)</title><rect x="27.2" y="1221" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1231.5" ></text>
</g>
<g >
<title>execve (41,145,651 samples, 0.02%)</title><rect x="190.2" y="2053" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="193.16" y="2063.5" ></text>
</g>
<g >
<title>setitimer (48,846,085 samples, 0.03%)</title><rect x="183.0" y="1989" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="186.03" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (102,666,913 samples, 0.06%)</title><rect x="16.2" y="1653" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1663.5" ></text>
</g>
<g >
<title>[libc.so.6] (354,899,697 samples, 0.19%)</title><rect x="183.6" y="2021" width="2.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="186.62" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="607.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="325" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="63.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="293" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,051,232 samples, 0.01%)</title><rect x="727.1" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.10" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,334,036 samples, 0.01%)</title><rect x="206.3" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.29" y="1951.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1493" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1781" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,308,512,254 samples, 37.78%)</title><rect x="728.7" y="1989" width="445.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="731.65" y="1999.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[Discord] (131,969,407 samples, 0.07%)</title><rect x="24.3" y="53" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="63.5" ></text>
</g>
<g >
<title>[[anon:v8]] (490,435,491 samples, 0.26%)</title><rect x="32.6" y="293" width="3.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.58" y="303.5" ></text>
</g>
<g >
<title>[Discord] (363,517,921 samples, 0.20%)</title><rect x="62.2" y="965" width="2.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.15" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1253" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1263.5" ></text>
</g>
<g >
<title>recvmsg (16,752,758 samples, 0.01%)</title><rect x="36.4" y="2021" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="39.37" y="2031.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1333" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="335.5" ></text>
</g>
<g >
<title>[[nvidia]] (22,697,804 samples, 0.01%)</title><rect x="1174.3" y="1765" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.31" y="1775.5" ></text>
</g>
<g >
<title>execute_command_internal (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1829" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="95.5" ></text>
</g>
<g >
<title>[bash] (482,222,205 samples, 0.26%)</title><rect x="187.1" y="1941" width="3.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.11" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1365" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1375.5" ></text>
</g>
<g >
<title>execute_command_internal (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1957" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1967.5" ></text>
</g>
<g >
<title>[sudo] (27,688,256 samples, 0.01%)</title><rect x="727.7" y="1989" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="730.68" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="879.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="437" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1077" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1375.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (101,980,462 samples, 0.05%)</title><rect x="106.3" y="1285" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.26" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (222,412,618 samples, 0.12%)</title><rect x="63.0" y="725" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.05" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1461" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1471.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (43,685,461 samples, 0.02%)</title><rect x="204.7" y="1989" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.69" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="671.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1701" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1711.5" ></text>
</g>
<g >
<title>loader_dri3_swap_buffers_msc (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1525" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="45.31" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="303.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (18,174,106 samples, 0.01%)</title><rect x="77.0" y="1477" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="80.04" y="1487.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="917" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,568,184 samples, 0.02%)</title><rect x="13.9" y="1109" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.94" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (31,389,716 samples, 0.02%)</title><rect x="91.8" y="1429" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.79" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="933" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="943.5" ></text>
</g>
<g >
<title>[Discord] (15,963,049 samples, 0.01%)</title><rect x="106.0" y="1077" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.99" y="1087.5" ></text>
</g>
<g >
<title>[intel_drv.so] (19,413,506 samples, 0.01%)</title><rect x="181.4" y="1909" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="184.38" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1925" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,792,957 samples, 0.01%)</title><rect x="164.4" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.39" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (136,893,208 samples, 0.07%)</title><rect x="16.0" y="1781" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.99" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="773" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="783.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="479.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1317" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1237" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1247.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1493" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.87" y="1839.5" ></text>
</g>
<g >
<title>[[anon:v8]] (584,971,301 samples, 0.31%)</title><rect x="32.0" y="373" width="3.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.98" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="53" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="2021" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (27,746,210 samples, 0.01%)</title><rect x="88.5" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.49" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (165,947,044 samples, 0.09%)</title><rect x="720.4" y="1893" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.41" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (34,099,374 samples, 0.02%)</title><rect x="78.7" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.72" y="1183.5" ></text>
</g>
<g >
<title>execute_command_internal (86,814,960 samples, 0.05%)</title><rect x="187.6" y="1557" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.64" y="1567.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1109" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,750,959 samples, 0.02%)</title><rect x="721.3" y="1813" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.27" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1925" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="661" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="671.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="949" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="959.5" ></text>
</g>
<g >
<title>[Discord] (84,497,575 samples, 0.05%)</title><rect x="90.9" y="1269" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.94" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="949" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="959.5" ></text>
</g>
<g >
<title>[Discord] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1541" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.13" y="1551.5" ></text>
</g>
<g >
<title>[bash] (456,759,298 samples, 0.25%)</title><rect x="187.1" y="1797" width="2.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.11" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1525" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1861" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (224,499,374 samples, 0.12%)</title><rect x="209.3" y="2021" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.31" y="2031.5" ></text>
</g>
<g >
<title>[[i915]] (23,859,286 samples, 0.01%)</title><rect x="42.4" y="1189" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.40" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1381" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="45.35" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,047,719 samples, 0.01%)</title><rect x="187.0" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.99" y="1999.5" ></text>
</g>
<g >
<title>[[anon:v8]] (50,032,756 samples, 0.03%)</title><rect x="96.4" y="1605" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.35" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="421" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="431.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="95.5" ></text>
</g>
<g >
<title>[Discord] (9,088,893,128 samples, 4.88%)</title><rect x="110.6" y="1957" width="57.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.58" y="1967.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="511.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="703.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="789" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="799.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="181" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="191.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1253" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (25,712,531 samples, 0.01%)</title><rect x="70.8" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.80" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="591.5" ></text>
</g>
<g >
<title>[unknown] (42,550,971 samples, 0.02%)</title><rect x="200.9" y="1941" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.92" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="607.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="389" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="399.5" ></text>
</g>
<g >
<title>execute_command_internal (248,872,228 samples, 0.13%)</title><rect x="188.2" y="1573" width="1.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="191.19" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="927.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="447.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,158,700 samples, 0.01%)</title><rect x="101.1" y="1653" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.12" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,790,843 samples, 0.01%)</title><rect x="163.0" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="165.98" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,230,026 samples, 0.01%)</title><rect x="15.1" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.11" y="1631.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1493" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="45.31" y="1503.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.82" y="1215.5" ></text>
</g>
<g >
<title>pa_tagstruct_put_proplist (23,632,051 samples, 0.01%)</title><rect x="721.7" y="1813" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="724.71" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="869" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1925" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1151.5" ></text>
</g>
<g >
<title>operator new[] (43,952,246 samples, 0.02%)</title><rect x="164.7" y="1781" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="167.69" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="479.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="623.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="95.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="847.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="213" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="223.5" ></text>
</g>
<g >
<title>__libc_fork (37,174,345 samples, 0.02%)</title><rect x="188.7" y="1349" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="191.65" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="815.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1541" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (660,101,036 samples, 0.35%)</title><rect x="18.0" y="1813" width="4.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="21.04" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="175.5" ></text>
</g>
<g >
<title>[Discord] (1,283,424,013 samples, 0.69%)</title><rect x="101.6" y="1605" width="8.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.58" y="1615.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,070,320 samples, 0.03%)</title><rect x="204.7" y="2021" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.65" y="2031.5" ></text>
</g>
<g >
<title>[iwctl] (102,637,000 samples, 0.06%)</title><rect x="204.0" y="2005" width="0.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="207.00" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="453" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="463.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1349" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="565" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1301" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,007,485 samples, 0.02%)</title><rect x="79.8" y="1365" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.75" y="1375.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="821" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="831.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1333" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.52" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.65" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="591.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="421" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1733" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="885" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="895.5" ></text>
</g>
<g >
<title>gsk_renderer_render (50,344,804 samples, 0.03%)</title><rect x="201.4" y="1781" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="204.40" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="415.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1941" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="277" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="287.5" ></text>
</g>
<g >
<title>[Discord] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.53" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (124,898,580 samples, 0.07%)</title><rect x="179.1" y="1653" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.08" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (131,212,234 samples, 0.07%)</title><rect x="95.5" y="1621" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1189" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,540,847 samples, 0.01%)</title><rect x="1188.3" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,715,873 samples, 0.02%)</title><rect x="175.1" y="1749" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.10" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="389" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="399.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="751.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="85" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="95.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="943.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1125" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1765" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.88" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (172,950,048 samples, 0.09%)</title><rect x="88.5" y="1365" width="1.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.49" y="1375.5" ></text>
</g>
<g >
<title>pa_mainloop_iterate (69,477,905 samples, 0.04%)</title><rect x="210.3" y="1973" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="213.29" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="367.5" ></text>
</g>
<g >
<title>[Discord] (389,212,988 samples, 0.21%)</title><rect x="62.0" y="997" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="64.99" y="1007.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,627,135 samples, 0.01%)</title><rect x="104.6" y="1349" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.61" y="1359.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (64,282,989 samples, 0.03%)</title><rect x="104.1" y="1381" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.11" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="85" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.43" y="95.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (35,440,556 samples, 0.02%)</title><rect x="186.6" y="1941" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.64" y="1951.5" ></text>
</g>
<g >
<title>l_main_run_with_signal (89,834,214 samples, 0.05%)</title><rect x="204.1" y="1989" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="207.06" y="1999.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="965" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="975.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="511.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1733" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (66,379,043 samples, 0.04%)</title><rect x="21.4" y="1605" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="24.37" y="1615.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1893" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.53" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1765" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.93" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (1,442,050,216 samples, 0.77%)</title><rect x="154.0" y="1749" width="9.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="157.02" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="175.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1845" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="341" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="351.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="671.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="783.5" ></text>
</g>
<g >
<title>[Discord] (87,273,483 samples, 0.05%)</title><rect x="175.8" y="1861" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.81" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="165" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="175.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1381" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="453" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="463.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="389" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="399.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1525" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="367.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1045" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1413" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="773" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1823.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (39,478,909 samples, 0.02%)</title><rect x="725.1" y="2021" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.12" y="2031.5" ></text>
</g>
<g >
<title>pa_pstream_unlink (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1781" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="213.35" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (241,757,904 samples, 0.13%)</title><rect x="97.5" y="1557" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.52" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="965" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="975.5" ></text>
</g>
<g >
<title>[Discord] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="2005" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.23" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (138,156,415 samples, 0.07%)</title><rect x="63.5" y="517" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="527.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1157" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1167.5" ></text>
</g>
<g >
<title>execute_command_internal (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1925" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (43,035,418 samples, 0.02%)</title><rect x="85.7" y="1413" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.70" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (116,401,178 samples, 0.06%)</title><rect x="16.1" y="1669" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.12" y="1679.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="661" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="671.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="271.5" ></text>
</g>
<g >
<title>[Discord] (234,138,390 samples, 0.13%)</title><rect x="12.9" y="1573" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.86" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="479.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="79.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="399.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1125" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.99" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="239.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="37" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="47.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="543.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="197" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="207.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.65" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (244,889,530 samples, 0.13%)</title><rect x="62.9" y="789" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.90" y="799.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="271.5" ></text>
</g>
<g >
<title>[Discord] (34,099,374 samples, 0.02%)</title><rect x="78.7" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.72" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="933" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="2037" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1109" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="1957" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (27,746,210 samples, 0.01%)</title><rect x="88.5" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.49" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1941" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1951.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="741" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="751.5" ></text>
</g>
<g >
<title>[Discord] (31,966,558 samples, 0.02%)</title><rect x="162.1" y="1461" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="165.14" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="1989" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="239.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="309" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,420,703,829 samples, 37.84%)</title><rect x="727.9" y="2005" width="446.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.94" y="2015.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="309" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,394,275 samples, 0.02%)</title><rect x="175.2" y="1701" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.20" y="1711.5" ></text>
</g>
<g >
<title>[[anon:v8]] (555,347,110 samples, 0.30%)</title><rect x="32.2" y="309" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.17" y="319.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="997" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1007.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1381" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1391.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (28,953,606 samples, 0.02%)</title><rect x="107.1" y="1253" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.06" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="943.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="879.5" ></text>
</g>
<g >
<title>execute_command_internal (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1557" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="192.05" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="431.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="111.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1151.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1301" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (29,440,397 samples, 0.02%)</title><rect x="96.5" y="1541" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.48" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1909" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1919.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1637" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1647.5" ></text>
</g>
<g >
<title>[[anon:v8]] (60,571,580 samples, 0.03%)</title><rect x="73.0" y="1285" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.05" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1429" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="94.61" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="565" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="575.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="581" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="591.5" ></text>
</g>
<g >
<title>__madvise (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1429" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="111.13" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="863.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="165" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1797" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.88" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="527.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (30,131,804 samples, 0.02%)</title><rect x="71.0" y="1301" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="73.99" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1589" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.95" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1941" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="421" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (58,209,330 samples, 0.03%)</title><rect x="1188.4" y="1989" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.42" y="1999.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="197" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="207.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1183.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (28,953,606 samples, 0.02%)</title><rect x="107.1" y="1237" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.06" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1317" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="255.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="495.5" ></text>
</g>
<g >
<title>[Discord] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1445" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.61" y="1455.5" ></text>
</g>
<g >
<title>[bash] (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1717" width="2.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1727.5" ></text>
</g>
<g >
<title>[ghostty] (89,237,475 samples, 0.05%)</title><rect x="724.6" y="2037" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="727.56" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="655.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1221" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (37,025,977 samples, 0.02%)</title><rect x="179.5" y="1541" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.55" y="1551.5" ></text>
</g>
<g >
<title>[[anon:v8]] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1237" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.16" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="959.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="767.5" ></text>
</g>
<g >
<title>source_file (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1813" width="0.7" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="202.34" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="687.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="677" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="687.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1733" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1743.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (61,342,948 samples, 0.03%)</title><rect x="210.3" y="1925" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.29" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="341" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="351.5" ></text>
</g>
<g >
<title>ioctl (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1301" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="112.00" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1221" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1493" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1503.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1733" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (146,580,171 samples, 0.08%)</title><rect x="67.1" y="949" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.06" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1429" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (119,195,929 samples, 0.06%)</title><rect x="81.3" y="1557" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (28,361,106 samples, 0.02%)</title><rect x="71.8" y="1013" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.77" y="1023.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,158,427 samples, 0.01%)</title><rect x="108.0" y="1413" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.97" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1525" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="661" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="671.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="287.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1333" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="735.5" ></text>
</g>
<g >
<title>execute_command (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1973" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="210.11" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="1183.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (101,980,462 samples, 0.05%)</title><rect x="106.3" y="1253" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.26" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,055,511 samples, 0.04%)</title><rect x="163.2" y="1749" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="166.17" y="1759.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1973" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1983.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (80,411,580 samples, 0.04%)</title><rect x="104.0" y="1413" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="107.01" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1397" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (65,946,347 samples, 0.04%)</title><rect x="26.6" y="1221" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.62" y="1231.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (91,184,694 samples, 0.05%)</title><rect x="186.0" y="1973" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.04" y="1983.5" ></text>
</g>
<g >
<title>set_shellopts (30,723,824 samples, 0.02%)</title><rect x="189.8" y="1765" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="192.81" y="1775.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="709" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="719.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="469" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="479.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1301" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.87" y="1311.5" ></text>
</g>
<g >
<title>Compositor (862,149,143 samples, 0.46%)</title><rect x="17.2" y="2069" width="5.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="20.23" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="991.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1861" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="901" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1797" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="287.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="847.5" ></text>
</g>
<g >
<title>[Discord] (78,640,551 samples, 0.04%)</title><rect x="65.6" y="965" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.57" y="975.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="885" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="895.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="917" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="927.5" ></text>
</g>
<g >
<title>ioctl (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1413" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="45.35" y="1423.5" ></text>
</g>
<g >
<title>reader_loop (482,222,205 samples, 0.26%)</title><rect x="187.1" y="1989" width="3.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="190.11" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (663,017,503 samples, 0.36%)</title><rect x="193.9" y="1765" width="4.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="196.89" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1205" width="5.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.01" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="213" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="223.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="911.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1397" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1093" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="959.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1541" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="1909" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1919.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="1957" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (36,994,858 samples, 0.02%)</title><rect x="72.4" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.41" y="1023.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1397" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (31,110,570 samples, 0.02%)</title><rect x="107.2" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.25" y="1263.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1893" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1397" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.16" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="447.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="127.5" ></text>
</g>
<g >
<title>execute_command_internal (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1589" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.40" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (32,964,903 samples, 0.02%)</title><rect x="83.9" y="1493" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="837" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="847.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="655.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1295.5" ></text>
</g>
<g >
<title>node::CallbackScope::~CallbackScope (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1525" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="101.53" y="1535.5" ></text>
</g>
<g >
<title>[bash] (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1733" width="2.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="623.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1909" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.75" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (158,184,541 samples, 0.08%)</title><rect x="63.5" y="549" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="559.5" ></text>
</g>
<g >
<title>[Discord] (265,877,309 samples, 0.14%)</title><rect x="90.4" y="1461" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.36" y="1471.5" ></text>
</g>
<g >
<title>[iwctl] (102,637,000 samples, 0.06%)</title><rect x="204.0" y="2053" width="0.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="207.00" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="495.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1717" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1061" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="693" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="703.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="309" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="319.5" ></text>
</g>
<g >
<title>recvmsg (28,447,232 samples, 0.02%)</title><rect x="200.6" y="2037" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="203.57" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="437" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="447.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="47.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="959.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1253" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1263.5" ></text>
</g>
<g >
<title>__libc_fork (54,084,316 samples, 0.03%)</title><rect x="189.4" y="1285" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="192.38" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1279.5" ></text>
</g>
<g >
<title>[libpulse.so.0.24.3] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1797" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="213.35" y="1807.5" ></text>
</g>
<g >
<title>_Fork (27,628,767 samples, 0.01%)</title><rect x="187.6" y="1365" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="190.65" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,275,880,021 samples, 0.69%)</title><rect x="27.6" y="1237" width="8.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.60" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1029" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1039.5" ></text>
</g>
<g >
<title>__libc_start_main (41,549,320 samples, 0.02%)</title><rect x="205.0" y="2037" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="207.97" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,055,511 samples, 0.04%)</title><rect x="163.2" y="1765" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="166.17" y="1775.5" ></text>
</g>
<g >
<title>execute_command_internal (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1685" width="2.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="437" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="447.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="1909" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (523,078,296 samples, 0.28%)</title><rect x="1171.0" y="1845" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.97" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="815.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="351.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="63.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1957" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.69" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1397" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1407.5" ></text>
</g>
<g >
<title>[at-spi2-registryd] (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1893" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="186.34" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="2005" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="901" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="911.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="1957" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1173" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (96,922,944 samples, 0.05%)</title><rect x="106.9" y="1317" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.91" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="383.5" ></text>
</g>
<g >
<title>kworker/u49:1-i (45,905,361 samples, 0.02%)</title><rect x="206.8" y="2069" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="209.75" y="2079.5" ></text>
</g>
<g >
<title>main (73,680,852 samples, 0.04%)</title><rect x="721.5" y="2005" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="724.48" y="2015.5" ></text>
</g>
<g >
<title>execute_command (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1941" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.34" y="1951.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="997" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="943.5" ></text>
</g>
<g >
<title>[Discord] (638,432,203 samples, 0.34%)</title><rect x="60.5" y="1125" width="4.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.50" y="1135.5" ></text>
</g>
<g >
<title>ThreadPoolForeg (10,024,110,174 samples, 5.39%)</title><rect x="110.6" y="2069" width="63.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="113.58" y="2079.5" >Thread..</text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="815.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="431.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="527.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="837" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="847.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (52,174,351 samples, 0.03%)</title><rect x="98.7" y="1333" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.73" y="1343.5" ></text>
</g>
<g >
<title>Chrome_IOThread (229,745,788 samples, 0.12%)</title><rect x="15.8" y="2069" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="18.78" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (39,811,868 samples, 0.02%)</title><rect x="195.3" y="1477" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.34" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1893" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1957" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="193.50" y="1967.5" ></text>
</g>
<g >
<title>[[anon:v8]] (42,593,892 samples, 0.02%)</title><rect x="194.7" y="1653" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.71" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (62,081,789 samples, 0.03%)</title><rect x="94.6" y="1381" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.56" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1077" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,885,078 samples, 0.03%)</title><rect x="75.3" y="1269" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (113,217,434 samples, 0.06%)</title><rect x="97.7" y="1477" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.72" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1231.5" ></text>
</g>
<g >
<title>[[anon:v8]] (889,930,961 samples, 0.48%)</title><rect x="30.0" y="869" width="5.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.05" y="879.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1573" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1733" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.88" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="351.5" ></text>
</g>
<g >
<title>[Discord] (72,727,013 samples, 0.04%)</title><rect x="85.1" y="1381" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.07" y="1391.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1541" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.92" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="895.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="463.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1557" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1567.5" ></text>
</g>
<g >
<title>[rg] (19,273,253 samples, 0.01%)</title><rect x="725.9" y="1733" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.90" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1877" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="191.5" ></text>
</g>
<g >
<title>[Discord] (175,186,205 samples, 0.09%)</title><rect x="161.2" y="1605" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.23" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,365,532 samples, 0.02%)</title><rect x="178.0" y="1733" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.98" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="693" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="703.5" ></text>
</g>
<g >
<title>ioctl (62,805,951 samples, 0.03%)</title><rect x="110.2" y="1989" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="113.17" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="437" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="447.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1045" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1509" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1589" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="133" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="143.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="549" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (145,203,838 samples, 0.08%)</title><rect x="88.7" y="1349" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.66" y="1359.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1557" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="757" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="767.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="399.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="917" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="927.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1199.5" ></text>
</g>
<g >
<title>[[i915]] (16,898,318 samples, 0.01%)</title><rect x="206.8" y="1781" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.81" y="1791.5" ></text>
</g>
<g >
<title>[[anon:v8]] (63,299,064 samples, 0.03%)</title><rect x="93.9" y="1381" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.95" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1637" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1231.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1215.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="2037" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="27.12" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (596,497,036 samples, 0.32%)</title><rect x="60.7" y="1093" width="3.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.67" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (30,067,300 samples, 0.02%)</title><rect x="80.3" y="1589" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="83.30" y="1599.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="517" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="527.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1813" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="143.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="847.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="63.5" ></text>
</g>
<g >
<title>_dl_catch_exception (35,440,556 samples, 0.02%)</title><rect x="186.6" y="1973" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="189.64" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="879.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1039.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1317" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (728,996,537 samples, 0.39%)</title><rect x="17.7" y="1861" width="4.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.74" y="1871.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1845" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.35" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="895.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1493" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1477" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="85" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="95.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="399.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="431.5" ></text>
</g>
<g >
<title>clock_gettime (29,216,886 samples, 0.02%)</title><rect x="180.6" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="183.63" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1285" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="127.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="165" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,069,955 samples, 0.02%)</title><rect x="99.9" y="1717" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="102.87" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (29,332,311 samples, 0.02%)</title><rect x="32.9" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.93" y="47.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="117" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="127.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="277" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="287.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="223.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1167.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (21,779,088 samples, 0.01%)</title><rect x="1189.7" y="1973" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.68" y="1983.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1205" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.71" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="655.5" ></text>
</g>
<g >
<title>[unknown] (869,954,285 samples, 0.47%)</title><rect x="168.6" y="1845" width="5.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.62" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="687.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (58,094,385 samples, 0.03%)</title><rect x="108.3" y="1429" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="111.32" y="1439.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (26,307,600 samples, 0.01%)</title><rect x="721.7" y="1909" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="724.71" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1397" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1407.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (155,847,335 samples, 0.08%)</title><rect x="207.7" y="1973" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.72" y="1983.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1381" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1269" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1279.5" ></text>
</g>
<g >
<title>parse_and_execute (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1781" width="0.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="202.34" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1365" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="95.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1493" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="655.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1189" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1781" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1791.5" ></text>
</g>
<g >
<title>[libc.so.6] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="2037" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.96" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="415.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1381" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1317" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="831.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="191.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="735.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="559.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1461" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1237" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1247.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="2053" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.24" y="879.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="2053" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1333" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1343.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1039.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (42,550,971 samples, 0.02%)</title><rect x="200.9" y="1957" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="203.92" y="1967.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1653" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="597" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="607.5" ></text>
</g>
<g >
<title>[Discord] (43,009,040 samples, 0.02%)</title><rect x="63.7" y="309" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="319.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="645" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="655.5" ></text>
</g>
<g >
<title>[Discord] (37,385,870 samples, 0.02%)</title><rect x="163.8" y="1749" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="166.78" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="965" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="165" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="175.5" ></text>
</g>
<g >
<title>[unknown] (22,462,241 samples, 0.01%)</title><rect x="197.2" y="1541" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="200.21" y="1551.5" ></text>
</g>
<g >
<title>_dbus_type_reader_set_basic (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1829" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="186.34" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="415.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="255.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1717" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1727.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1983.5" ></text>
</g>
<g >
<title>complex_method (80,546,551,638 samples, 43.28%)</title><rect x="210.7" y="1989" width="510.8" height="15.0" fill="rgb(249,204,49)" rx="2" ry="2" />
<text x="213.74" y="1999.5" >complex_method</text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1125" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1135.5" ></text>
</g>
<g >
<title>__libc_start_main (972,489,700 samples, 0.52%)</title><rect x="192.4" y="2037" width="6.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="195.38" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1477" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (106,045,450 samples, 0.06%)</title><rect x="68.4" y="965" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.41" y="975.5" ></text>
</g>
<g >
<title>pa_mainloop_run (69,477,905 samples, 0.04%)</title><rect x="210.3" y="1989" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="213.29" y="1999.5" ></text>
</g>
<g >
<title>[bash] (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1701" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="981" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="991.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="533" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="543.5" ></text>
</g>
<g >
<title>[[nvidia]] (22,697,804 samples, 0.01%)</title><rect x="1174.3" y="1797" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.31" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (177,099,913 samples, 0.10%)</title><rect x="82.5" y="1509" width="1.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.52" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="709" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="719.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="597" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="607.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1445" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (33,305,504 samples, 0.02%)</title><rect x="94.1" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.14" y="1295.5" ></text>
</g>
<g >
<title>execute_command_internal (95,075,336 samples, 0.05%)</title><rect x="199.4" y="1733" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.38" y="1743.5" ></text>
</g>
<g >
<title>[[i915]] (16,898,318 samples, 0.01%)</title><rect x="206.8" y="1797" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.81" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="837" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.03" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="117" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="127.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="431.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="2037" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="255.5" ></text>
</g>
<g >
<title>[Discord] (149,788,824 samples, 0.08%)</title><rect x="178.9" y="1685" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="869" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="879.5" ></text>
</g>
<g >
<title>execute_command_internal (106,641,229 samples, 0.06%)</title><rect x="189.1" y="1333" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="192.09" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (31,003,816 samples, 0.02%)</title><rect x="72.8" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.85" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (70,029,244 samples, 0.04%)</title><rect x="91.0" y="1189" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.03" y="1199.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1173" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="997" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="853" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (62,294,658 samples, 0.03%)</title><rect x="70.1" y="917" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.11" y="927.5" ></text>
</g>
<g >
<title>[Discord] (95,362,779 samples, 0.05%)</title><rect x="26.4" y="1253" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1263.5" ></text>
</g>
<g >
<title>main (53,160,619 samples, 0.03%)</title><rect x="207.1" y="2005" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="210.11" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,544,220 samples, 0.03%)</title><rect x="191.6" y="1557" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.57" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="831.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1813" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="693" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="703.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1285" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (9,098,969,558 samples, 4.89%)</title><rect x="110.6" y="1989" width="57.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.58" y="1999.5" >[Disco..</text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="789" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="799.5" ></text>
</g>
<g >
<title>__libc_start_main (73,680,852 samples, 0.04%)</title><rect x="721.5" y="2037" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="724.48" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="191.5" ></text>
</g>
<g >
<title>execute_command_internal (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1909" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.34" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.80" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (752,098,488 samples, 0.40%)</title><rect x="30.9" y="677" width="4.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="687.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="511.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="181" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="191.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="245" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="255.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1077" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,492,681 samples, 0.02%)</title><rect x="80.8" y="1589" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.78" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1909" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1919.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (20,947,502 samples, 0.01%)</title><rect x="107.7" y="1317" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.66" y="1327.5" ></text>
</g>
<g >
<title>execute_command_internal (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1173" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="527.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="517" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="527.5" ></text>
</g>
<g >
<title>WriteEventsToClient (44,367,333 samples, 0.02%)</title><rect x="182.4" y="1909" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="185.37" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="959.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="495.5" ></text>
</g>
<g >
<title>tmux:_client (58,209,330 samples, 0.03%)</title><rect x="1188.4" y="2069" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1191.42" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1173" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (641,411,811 samples, 0.34%)</title><rect x="31.6" y="533" width="4.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="543.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (81,300,885 samples, 0.04%)</title><rect x="106.3" y="1205" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.32" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1765" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="815.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="885" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="895.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="95.5" ></text>
</g>
<g >
<title>[Discord] (399,527,220 samples, 0.21%)</title><rect x="12.1" y="1701" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.05" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="213" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="223.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="895.5" ></text>
</g>
<g >
<title>[Discord] (519,312,714 samples, 0.28%)</title><rect x="11.5" y="1861" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.53" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="607.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (20,947,502 samples, 0.01%)</title><rect x="107.7" y="1333" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.66" y="1343.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,635,432 samples, 0.01%)</title><rect x="78.3" y="1541" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="81.34" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="127.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1285" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="101" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="111.5" ></text>
</g>
<g >
<title>[Discord] (222,412,618 samples, 0.12%)</title><rect x="63.0" y="709" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.05" y="719.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="223.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="533" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1717" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (63,987,898 samples, 0.03%)</title><rect x="78.7" y="1253" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.72" y="1263.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1061" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.75" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,760,370 samples, 0.02%)</title><rect x="206.3" y="2053" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.27" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1119.5" ></text>
</g>
<g >
<title>[unknown] (56,841,735 samples, 0.03%)</title><rect x="196.0" y="1493" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.03" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (190,063,212 samples, 0.10%)</title><rect x="13.1" y="1525" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="895.5" ></text>
</g>
<g >
<title>[Xorg] (370,380,178 samples, 0.20%)</title><rect x="181.0" y="2005" width="2.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="183.99" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (132,625,301 samples, 0.07%)</title><rect x="16.0" y="1749" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.01" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="309" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="319.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1429" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1589" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="255.5" ></text>
</g>
<g >
<title>[iwctl] (83,359,702 samples, 0.04%)</title><rect x="204.1" y="1893" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="207.06" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="181" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (943,218,433 samples, 0.51%)</title><rect x="29.7" y="1045" width="6.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.71" y="1055.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1733" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1157" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="917" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="927.5" ></text>
</g>
<g >
<title>execute_command_internal (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1397" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1167.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1061" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1071.5" ></text>
</g>
<g >
<title>[iwctl] (83,359,702 samples, 0.04%)</title><rect x="204.1" y="1877" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="207.06" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1717" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1541" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="37" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1557" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="319.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1861" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (269,768,630 samples, 0.14%)</title><rect x="97.4" y="1637" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.42" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="879.5" ></text>
</g>
<g >
<title>execute_command_internal (470,727,085 samples, 0.25%)</title><rect x="187.1" y="1877" width="3.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.11" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="511.5" ></text>
</g>
<g >
<title>[Discord] (29,630,519 samples, 0.02%)</title><rect x="92.3" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1461" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="703.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1365" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (28,361,106 samples, 0.02%)</title><rect x="71.8" y="1045" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.77" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1023.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1141" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.99" y="1151.5" ></text>
</g>
<g >
<title>iwd (41,549,320 samples, 0.02%)</title><rect x="205.0" y="2069" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="207.97" y="2079.5" ></text>
</g>
<g >
<title>[intel_drv.so] (45,348,404 samples, 0.02%)</title><rect x="181.3" y="1925" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="184.31" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (194,407,554 samples, 0.10%)</title><rect x="63.2" y="629" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.22" y="639.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="485" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="495.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,586,221 samples, 0.01%)</title><rect x="15.6" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.58" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="917" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="927.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (75,770,179 samples, 0.04%)</title><rect x="23.3" y="2005" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.31" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (911,650,519 samples, 0.49%)</title><rect x="168.4" y="1893" width="5.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.36" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1167.5" ></text>
</g>
<g >
<title>[[i915]] (32,306,715 samples, 0.02%)</title><rect x="42.3" y="1237" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1247.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1269" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.87" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1231.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.79" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="85" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="95.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1221" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (53,160,619 samples, 0.03%)</title><rect x="207.1" y="2021" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="210.11" y="2031.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="261" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="271.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1621" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1077" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="303.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1269" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="879.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1525" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="181" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="191.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (96,298,797 samples, 0.05%)</title><rect x="208.1" y="1925" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="211.10" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1253" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="143.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="511.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="623.5" ></text>
</g>
<g >
<title>main (80,546,551,638 samples, 43.28%)</title><rect x="210.7" y="2005" width="510.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="213.74" y="2015.5" >main</text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1317" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="149" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="159.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1301" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="111.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="613" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1381" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="831.5" ></text>
</g>
<g >
<title>[Discord] (118,341,865 samples, 0.06%)</title><rect x="67.1" y="917" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.06" y="927.5" ></text>
</g>
<g >
<title>pkey_set (75,090,731 samples, 0.04%)</title><rect x="166.6" y="1829" width="0.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="169.56" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="687.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1957" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1285" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="105.40" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1525" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1973" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1983.5" ></text>
</g>
<g >
<title>__send (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1637" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="17.34" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,790,843 samples, 0.01%)</title><rect x="163.0" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="165.98" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="37" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="47.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="495.5" ></text>
</g>
<g >
<title>[libc.so.6] (563,207,679 samples, 0.30%)</title><rect x="177.2" y="2053" width="3.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="180.25" y="2063.5" ></text>
</g>
<g >
<title>[spectrwm] (18,041,103 samples, 0.01%)</title><rect x="727.4" y="1989" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="730.37" y="1999.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1237" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,459,957,595 samples, 0.78%)</title><rect x="26.4" y="1285" width="9.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.43" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="725" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="735.5" ></text>
</g>
<g >
<title>[unknown] (620,310,852 samples, 0.33%)</title><rect x="194.2" y="1733" width="3.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.16" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (131,969,407 samples, 0.07%)</title><rect x="24.3" y="37" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="47.5" ></text>
</g>
<g >
<title>[[anon:v8]] (364,574,910 samples, 0.20%)</title><rect x="68.2" y="997" width="2.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="71.19" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="741" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="751.5" ></text>
</g>
<g >
<title>[unknown] (18,047,719 samples, 0.01%)</title><rect x="187.0" y="2037" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="189.99" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1509" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1519.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1797" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1333" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1119.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1797" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1301" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1311.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1845" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.53" y="1855.5" ></text>
</g>
<g >
<title>_dl_catch_exception (29,229,326 samples, 0.02%)</title><rect x="725.2" y="1973" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="728.16" y="1983.5" ></text>
</g>
<g >
<title>pa_memimport_free (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1765" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="213.35" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (88,941,069 samples, 0.05%)</title><rect x="87.8" y="1349" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.79" y="1359.5" ></text>
</g>
<g >
<title>[[i915]] (34,546,908 samples, 0.02%)</title><rect x="42.3" y="1269" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.71" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="853" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="863.5" ></text>
</g>
<g >
<title>[Discord] (173,997,938 samples, 0.09%)</title><rect x="13.1" y="1445" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1173" width="5.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.01" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1733" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1829" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1839.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1349" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (44,704,013 samples, 0.02%)</title><rect x="78.0" y="1397" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.00" y="1407.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (72,868,064 samples, 0.04%)</title><rect x="23.3" y="1957" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.33" y="1967.5" ></text>
</g>
<g >
<title>execute_command (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1189" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (82,369,417 samples, 0.04%)</title><rect x="86.2" y="1317" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.18" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (32,964,903 samples, 0.02%)</title><rect x="83.9" y="1525" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1493" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.83" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="879.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="1941" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,716,277 samples, 0.01%)</title><rect x="182.7" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.67" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (30,375,245 samples, 0.02%)</title><rect x="82.9" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.91" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (6,314,787,585 samples, 3.39%)</title><rect x="126.3" y="1829" width="40.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="129.29" y="1839.5" >[Di..</text>
</g>
<g >
<title>[Discord] (33,398,159 samples, 0.02%)</title><rect x="91.2" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.21" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (36,994,858 samples, 0.02%)</title><rect x="72.4" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.41" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1205" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1215.5" ></text>
</g>
<g >
<title>[[i915]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1829" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.91" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="447.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1205" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.99" y="1215.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1317" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.87" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1839.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,068,817,847 samples, 0.57%)</title><rect x="28.9" y="1157" width="6.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.91" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="69" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="79.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="783.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1119.5" ></text>
</g>
<g >
<title>[Xorg] (44,367,333 samples, 0.02%)</title><rect x="182.4" y="1957" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="185.37" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="101" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="111.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="645" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="655.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="351.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="383.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="959.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="149" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="159.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="767.5" ></text>
</g>
<g >
<title>[bash] (470,727,085 samples, 0.25%)</title><rect x="187.1" y="1845" width="3.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.11" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1141" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1151.5" ></text>
</g>
<g >
<title>[[i915]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1829" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.38" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,792,957 samples, 0.01%)</title><rect x="164.4" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.39" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="965" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="975.5" ></text>
</g>
<g >
<title>[Discord] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1397" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.11" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,440,397 samples, 0.02%)</title><rect x="96.5" y="1509" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.48" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,565,966 samples, 0.03%)</title><rect x="164.2" y="1781" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.18" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="53" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="63.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1397" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1269" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (351,655,721 samples, 0.19%)</title><rect x="178.2" y="1861" width="2.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.23" y="1871.5" ></text>
</g>
<g >
<title>_start (482,222,205 samples, 0.26%)</title><rect x="187.1" y="2053" width="3.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="190.11" y="2063.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (37,609,575 samples, 0.02%)</title><rect x="725.1" y="2005" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.12" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1397" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="335.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="927.5" ></text>
</g>
<g >
<title>[unknown] (16,695,640 samples, 0.01%)</title><rect x="196.3" y="1285" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.29" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="629" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="639.5" ></text>
</g>
<g >
<title>[Discord] (9,088,893,128 samples, 4.88%)</title><rect x="110.6" y="1941" width="57.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.58" y="1951.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="671.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="543.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="367.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="63.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="751.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="383.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="351.5" ></text>
</g>
<g >
<title>v8::MicrotasksScope::MicrotasksScope (31,698,925 samples, 0.02%)</title><rect x="95.2" y="1717" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="98.23" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1957" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="143.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1237" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="133" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="143.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1685" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1205" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1215.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1925" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (331,443,453 samples, 0.18%)</title><rect x="183.7" y="1973" width="2.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="186.72" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1413" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1221" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.48" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1013" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="2037" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (107,694,096 samples, 0.06%)</title><rect x="196.7" y="1621" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.67" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="479.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1493" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1445" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,374,493 samples, 0.02%)</title><rect x="189.5" y="1173" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.48" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="879.5" ></text>
</g>
<g >
<title>[Discord] (100,256,362 samples, 0.05%)</title><rect x="95.5" y="1573" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="991.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="335.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1845" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,962,937 samples, 0.02%)</title><rect x="191.6" y="1541" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.62" y="1551.5" ></text>
</g>
<g >
<title>[at-spi2-registryd] (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1909" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="186.34" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (42,550,971 samples, 0.02%)</title><rect x="200.9" y="1909" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.92" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1397" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="671.5" ></text>
</g>
<g >
<title>[[anon:v8]] (139,871,745 samples, 0.08%)</title><rect x="94.3" y="1413" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.35" y="1423.5" ></text>
</g>
<g >
<title>[libc.so.6] (563,207,679 samples, 0.30%)</title><rect x="177.2" y="2037" width="3.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="180.25" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="863.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (26,138,111 samples, 0.01%)</title><rect x="726.7" y="1941" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.65" y="1951.5" ></text>
</g>
<g >
<title>[[nvidia]] (22,697,804 samples, 0.01%)</title><rect x="1174.3" y="1813" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.31" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="2021" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="911.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="373" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="383.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1397" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1461" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1471.5" ></text>
</g>
<g >
<title>GL_DrawRangeElements (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1413" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="107.87" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (306,023,315 samples, 0.16%)</title><rect x="33.7" y="117" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.75" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1509" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1029" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="351.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="175.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="495.5" ></text>
</g>
<g >
<title>execute_command_internal (100,757,450 samples, 0.05%)</title><rect x="199.3" y="1765" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.34" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (20,592,359 samples, 0.01%)</title><rect x="96.4" y="1557" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.35" y="1567.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (156,533,955 samples, 0.08%)</title><rect x="185.9" y="2005" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="188.87" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1429" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1077" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="629" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,553,956,939 samples, 0.84%)</title><rect x="25.8" y="1365" width="9.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1573" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1583.5" ></text>
</g>
<g >
<title>dhcpcd-run-hook (186,585,501 samples, 0.10%)</title><rect x="199.1" y="2069" width="1.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="202.10" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1269" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.71" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="863.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1525" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="101" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="111.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1893" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="341" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="351.5" ></text>
</g>
<g >
<title>[tmux] (23,184,925 samples, 0.01%)</title><rect x="1188.8" y="2037" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.79" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="447.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="933" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="943.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="341" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="351.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="79.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="533" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="543.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="495.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="69" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="79.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1013" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="383.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="725" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="735.5" ></text>
</g>
<g >
<title>[unknown] (89,237,475 samples, 0.05%)</title><rect x="724.6" y="2053" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="727.56" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1845" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="69" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,084,316 samples, 0.03%)</title><rect x="189.4" y="1221" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.38" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="261" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="271.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="741" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="751.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="863.5" ></text>
</g>
<g >
<title>[[i915]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1253" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="105.40" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1055.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (68,766,303 samples, 0.04%)</title><rect x="106.4" y="1157" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.40" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1797" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1807.5" ></text>
</g>
<g >
<title>[libc.so.6] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="2037" width="5.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="20.23" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1285" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1797" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (201,876,056 samples, 0.11%)</title><rect x="175.7" y="1925" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.66" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1413" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (207,544,724 samples, 0.11%)</title><rect x="195.2" y="1541" width="1.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.16" y="1551.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (31,291,358 samples, 0.02%)</title><rect x="104.5" y="1397" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="107.52" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="405" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="415.5" ></text>
</g>
<g >
<title>[Discord] (139,693,575 samples, 0.08%)</title><rect x="20.9" y="1637" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="23.90" y="1647.5" ></text>
</g>
<g >
<title>execute_command (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1941" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="210.11" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="559.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (18,367,516 samples, 0.01%)</title><rect x="201.0" y="1877" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.03" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1413" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1765" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1775.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,828,757 samples, 0.01%)</title><rect x="204.7" y="1941" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.69" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="767.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1461" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="757" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="767.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1039.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (17,834,864 samples, 0.01%)</title><rect x="107.9" y="1397" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.85" y="1407.5" ></text>
</g>
<g >
<title>ZSTD_compressCCtx (16,756,784 samples, 0.01%)</title><rect x="23.2" y="1925" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="26.21" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="325" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,919,317 samples, 0.01%)</title><rect x="175.2" y="1669" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.22" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="613" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="623.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="479.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="799.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="751.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1413" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="245" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="255.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="719.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="863.5" ></text>
</g>
<g >
<title>[Discord] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.13" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1781" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1791.5" ></text>
</g>
<g >
<title>[[i915]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1205" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="112.00" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="741" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="751.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1381" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="479.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="863.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="223.5" ></text>
</g>
<g >
<title>[Discord] (265,412,700 samples, 0.14%)</title><rect x="160.7" y="1621" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="163.75" y="1631.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="453" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="463.5" ></text>
</g>
<g >
<title>[Discord] (253,784,798 samples, 0.14%)</title><rect x="12.7" y="1621" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.73" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="2005" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1189" width="5.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.01" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (88,941,069 samples, 0.05%)</title><rect x="87.8" y="1333" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.79" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1589" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (26,070,704 samples, 0.01%)</title><rect x="86.5" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.54" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="613" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="623.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="351.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="997" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1007.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1919.5" ></text>
</g>
<g >
<title>node::InternalCallbackScope::InternalCallbackScope (24,638,361 samples, 0.01%)</title><rect x="99.4" y="1669" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="102.39" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1829" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="847.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1909" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (158,184,541 samples, 0.08%)</title><rect x="63.5" y="565" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="575.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="1989" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="255.5" ></text>
</g>
<g >
<title>[bash] (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1749" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.91" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="911.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1749" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.35" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="181" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="191.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1445" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1455.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="485" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1983.5" ></text>
</g>
<g >
<title>[[i915]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1941" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.38" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (205,619,107 samples, 0.11%)</title><rect x="65.2" y="1013" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.20" y="1023.5" ></text>
</g>
<g >
<title>malloc (97,384,180 samples, 0.05%)</title><rect x="165.5" y="1813" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="168.55" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="901" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="911.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1183.5" ></text>
</g>
<g >
<title>[libc.so.6] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="2021" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="193.50" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="229" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="239.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1039.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1669" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1333" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1343.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (28,541,040 samples, 0.02%)</title><rect x="727.1" y="2053" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="730.10" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="927.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1829" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="447.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="383.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1237" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="2031.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (18,174,106 samples, 0.01%)</title><rect x="77.0" y="1445" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="80.04" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="383.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,386,207,970 samples, 0.74%)</title><rect x="1165.7" y="1941" width="8.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1168.66" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="591.5" ></text>
</g>
<g >
<title>[Discord] (89,111,618 samples, 0.05%)</title><rect x="89.6" y="1621" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1573" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1285" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1445" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.72" y="1455.5" ></text>
</g>
<g >
<title>__gconv_open (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1845" width="0.9" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="212.31" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="815.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.79" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="799.5" ></text>
</g>
<g >
<title>[spectrwm] (18,041,103 samples, 0.01%)</title><rect x="727.4" y="1957" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="730.37" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1045" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (39,438,417 samples, 0.02%)</title><rect x="89.9" y="1605" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.90" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1461" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="53" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="63.5" ></text>
</g>
<g >
<title>[Discord] (9,068,625,536 samples, 4.87%)</title><rect x="110.7" y="1909" width="57.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.71" y="1919.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="767.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1023.5" ></text>
</g>
<g >
<title>__libc_start_main (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="2037" width="73.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="39.55" y="2047.5" >__libc_s..</text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="261" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="271.5" ></text>
</g>
<g >
<title>[libc.so.6] (65,777,842 samples, 0.04%)</title><rect x="15.3" y="1877" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="18.27" y="1887.5" ></text>
</g>
<g >
<title>Discord:sh7 (24,559,656 samples, 0.01%)</title><rect x="24.0" y="2069" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="26.96" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1205" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="351.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1829" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1839.5" ></text>
</g>
<g >
<title>[libxcb.so.1.1.0] (76,498,605 samples, 0.04%)</title><rect x="35.8" y="2053" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="38.80" y="2063.5" ></text>
</g>
<g >
<title>[dbus-broker] (60,680,285 samples, 0.03%)</title><rect x="198.7" y="1973" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="201.72" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1525" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,553,956,939 samples, 0.84%)</title><rect x="25.8" y="1381" width="9.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="383.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1909" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,492,681 samples, 0.02%)</title><rect x="80.8" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.78" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1413" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1423.5" ></text>
</g>
<g >
<title>at-spi2-registr (22,768,496 samples, 0.01%)</title><rect x="183.3" y="2069" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="186.34" y="2079.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1125" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="597" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1733" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,569,309 samples, 0.01%)</title><rect x="186.8" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.76" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="431.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="837" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="847.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="981" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,801,084 samples, 0.02%)</title><rect x="1174.1" y="1733" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.09" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="271.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1183.5" ></text>
</g>
<g >
<title>VizCompositorTh (563,207,679 samples, 0.30%)</title><rect x="177.2" y="2069" width="3.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="180.25" y="2079.5" ></text>
</g>
<g >
<title>execute_command_internal (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1573" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.40" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1221" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="757" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="767.5" ></text>
</g>
<g >
<title>[Discord] (191,355,856 samples, 0.10%)</title><rect x="15.8" y="1845" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.83" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="565" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="575.5" ></text>
</g>
<g >
<title>[[anon:v8]] (332,035,145 samples, 0.18%)</title><rect x="87.5" y="1397" width="2.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.48" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,553,956,939 samples, 0.84%)</title><rect x="25.8" y="1413" width="9.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1423.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1605" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1615.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1957" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1029" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,540,847 samples, 0.01%)</title><rect x="1188.3" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1791.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1925" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1205" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="197" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="207.5" ></text>
</g>
<g >
<title>[Discord] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1253" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="239.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (62,294,658 samples, 0.03%)</title><rect x="70.1" y="949" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.11" y="959.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1701" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1941" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="185.65" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="879.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1541" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="783.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="511.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1301" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1311.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1877" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (126,771,136 samples, 0.07%)</title><rect x="93.5" y="1413" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1589" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1599.5" ></text>
</g>
<g >
<title>[libc.so.6] (370,380,178 samples, 0.20%)</title><rect x="181.0" y="2021" width="2.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="183.99" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1871.5" ></text>
</g>
<g >
<title>node::InternalMakeCallback (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1605" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="83.61" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1269" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="655.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="895.5" ></text>
</g>
<g >
<title>[Discord] (106,174,855 samples, 0.06%)</title><rect x="174.3" y="1877" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.26" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="623.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="511.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="95.5" ></text>
</g>
<g >
<title>[[i915]] (51,107,673 samples, 0.03%)</title><rect x="110.2" y="1845" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="113.24" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1269" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1279.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,153,827 samples, 0.02%)</title><rect x="1188.5" y="1845" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.52" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,160,108 samples, 0.02%)</title><rect x="1174.1" y="1749" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.05" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="879.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="229" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1685" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1285" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,113,570 samples, 0.01%)</title><rect x="85.5" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.53" y="1375.5" ></text>
</g>
<g >
<title>[libc.so.6] (30,669,737 samples, 0.02%)</title><rect x="83.7" y="1669" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="86.69" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1957" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1967.5" >[Discord]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1909" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1919.5" ></text>
</g>
<g >
<title>execute_command (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1557" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="191.54" y="1567.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1237" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="117" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="127.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1909" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (29,439,836 samples, 0.02%)</title><rect x="73.7" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.72" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="255.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1781" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="223.5" ></text>
</g>
<g >
<title>execute_command_internal (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1557" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1605" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1615.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1781" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.01" y="1791.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="29.43" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="69" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="79.5" ></text>
</g>
<g >
<title>[Discord] (29,080,881 samples, 0.02%)</title><rect x="74.5" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="77.50" y="1151.5" ></text>
</g>
<g >
<title>[unknown] (42,550,971 samples, 0.02%)</title><rect x="200.9" y="1893" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.92" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1349" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (60,571,580 samples, 0.03%)</title><rect x="73.0" y="1301" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.05" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="911.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1013" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1557" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.61" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1557" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.13" y="1567.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="533" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="543.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1509" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="277" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="287.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="207.5" ></text>
</g>
<g >
<title>__poll (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1925" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1191.26" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1477" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.13" y="1487.5" ></text>
</g>
<g >
<title>[bash] (18,047,719 samples, 0.01%)</title><rect x="187.0" y="2005" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="189.99" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,959,024 samples, 0.03%)</title><rect x="175.0" y="1845" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="177.99" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,201,008 samples, 0.02%)</title><rect x="77.8" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1423.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1845" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.82" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (490,435,491 samples, 0.26%)</title><rect x="32.6" y="277" width="3.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.58" y="287.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="933" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="943.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="277" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,354,005 samples, 0.01%)</title><rect x="77.3" y="1493" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.32" y="1503.5" ></text>
</g>
<g >
<title>node::InternalCallbackScope::Close (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1493" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="101.53" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="527.5" ></text>
</g>
<g >
<title>[libc.so.6] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1861" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="170.93" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1813" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.79" y="1823.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1221" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="287.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="389" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1695.5" ></text>
</g>
<g >
<title>[libpulse.so.0.24.3] (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1829" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="213.35" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (70,029,244 samples, 0.04%)</title><rect x="91.0" y="1173" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.03" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="869" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="879.5" ></text>
</g>
<g >
<title>[Discord] (33,305,504 samples, 0.02%)</title><rect x="94.1" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.14" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="2037" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="853" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="863.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="69" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="79.5" ></text>
</g>
<g >
<title>[[anon:v8]] (112,635,949 samples, 0.06%)</title><rect x="35.0" y="37" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="37.97" y="47.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1205" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1215.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="261" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="68.88" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1807.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (81,300,885 samples, 0.04%)</title><rect x="106.3" y="1221" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.32" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1605" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.95" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="133" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="143.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (31,003,816 samples, 0.02%)</title><rect x="72.8" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.85" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="437" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="447.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="767.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="191.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="693" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="703.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="799.5" ></text>
</g>
<g >
<title>[Discord] (413,875,640 samples, 0.22%)</title><rect x="61.8" y="1061" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="64.83" y="1071.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,440,397 samples, 0.02%)</title><rect x="96.5" y="1493" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.48" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="549" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="559.5" ></text>
</g>
<g >
<title>[[i915]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1061" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="110.52" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="2021" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="2031.5" ></text>
</g>
<g >
<title>[[anon:v8]] (91,575,396 samples, 0.05%)</title><rect x="72.8" y="1333" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="75.85" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (228,178,990 samples, 0.12%)</title><rect x="1186.7" y="1861" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.75" y="1871.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1717" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1727.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1973" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.69" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1509" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="2053" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1957" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (383,335,095 samples, 0.21%)</title><rect x="97.2" y="1717" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.25" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (43,952,246 samples, 0.02%)</title><rect x="164.7" y="1749" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="167.69" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1173" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (79,059,269 samples, 0.04%)</title><rect x="191.4" y="1621" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.39" y="1631.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="383.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="655.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,436,279 samples, 0.01%)</title><rect x="176.8" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.81" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="101" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="111.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="159.5" ></text>
</g>
<g >
<title>writev (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1781" width="0.1" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="184.13" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="1983.5" ></text>
</g>
<g >
<title>__tsearch (24,754,622 samples, 0.01%)</title><rect x="185.5" y="1861" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="188.50" y="1871.5" ></text>
</g>
<g >
<title>mieqProcessInputEvents (35,430,913 samples, 0.02%)</title><rect x="181.0" y="1973" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="184.02" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (43,009,040 samples, 0.02%)</title><rect x="63.7" y="277" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="287.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1605" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1615.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1909" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="211.79" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="2005" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="399.5" ></text>
</g>
<g >
<title>[Discord] (517,602,829 samples, 0.28%)</title><rect x="177.2" y="1973" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1893" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (53,814,428 samples, 0.03%)</title><rect x="83.3" y="1365" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.30" y="1375.5" ></text>
</g>
<g >
<title>[libc.so.6] (43,206,660 samples, 0.02%)</title><rect x="1188.4" y="1957" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.42" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="63.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="325" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="335.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="671.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="463.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="143.5" ></text>
</g>
<g >
<title>[Discord] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1397" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="77.99" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1317" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,981,760 samples, 0.03%)</title><rect x="15.3" y="1829" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.30" y="1839.5" ></text>
</g>
<g >
<title>[libc.so.6] (124,935,227 samples, 0.07%)</title><rect x="199.3" y="2021" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="202.32" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (233,418,787 samples, 0.13%)</title><rect x="175.5" y="1973" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.47" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1125" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1925" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1935.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="1989" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="1999.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1333" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="53" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="63.5" ></text>
</g>
<g >
<title>[[anon:v8]] (32,548,498 samples, 0.02%)</title><rect x="89.4" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.38" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (191,801,659 samples, 0.10%)</title><rect x="178.9" y="1701" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1317" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="105.40" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (116,401,178 samples, 0.06%)</title><rect x="16.1" y="1685" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.12" y="1695.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1141" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="959.5" ></text>
</g>
<g >
<title>[Discord] (44,058,002 samples, 0.02%)</title><rect x="179.5" y="1573" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.50" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="149" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="159.5" ></text>
</g>
<g >
<title>pthread_rwlock_unlock (33,161,013 samples, 0.02%)</title><rect x="724.3" y="2037" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="727.33" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1317" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1055.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (52,174,351 samples, 0.03%)</title><rect x="98.7" y="1349" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.73" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1279.5" ></text>
</g>
<g >
<title>[unknown] (42,550,971 samples, 0.02%)</title><rect x="200.9" y="1925" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.92" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="405" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="415.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1765" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="133" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="143.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="159.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1109" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="517" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="527.5" ></text>
</g>
<g >
<title>[Discord] (1,351,880,373 samples, 0.73%)</title><rect x="101.3" y="1685" width="8.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.34" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="895.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="149" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,269,800 samples, 0.01%)</title><rect x="166.4" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.41" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,099,374 samples, 0.02%)</title><rect x="78.7" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.72" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1269" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.16" y="1279.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="853" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="863.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,570,289 samples, 0.01%)</title><rect x="165.6" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.61" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1829" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="997" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,439,836 samples, 0.02%)</title><rect x="73.7" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.72" y="1295.5" ></text>
</g>
<g >
<title>[unknown] (554,793,324 samples, 0.30%)</title><rect x="194.6" y="1701" width="3.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.56" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1141" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1349" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="533" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,184,906 samples, 0.03%)</title><rect x="15.4" y="1765" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.37" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (32,749,715 samples, 0.02%)</title><rect x="33.7" y="85" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.75" y="95.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,070,320 samples, 0.03%)</title><rect x="204.7" y="2053" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.65" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1221" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="303.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="495.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1141" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (34,068,474 samples, 0.02%)</title><rect x="90.1" y="1493" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.15" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="69" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="79.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1445" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1455.5" ></text>
</g>
<g >
<title>make_child (16,478,410 samples, 0.01%)</title><rect x="187.9" y="1317" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="190.87" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="69" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="79.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1621" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="943.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="655.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="549" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (194,584,739 samples, 0.10%)</title><rect x="71.6" y="1093" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.62" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="319.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1429" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="104.92" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1775.5" ></text>
</g>
<g >
<title>__libc_sigaction (26,080,798 samples, 0.01%)</title><rect x="188.3" y="1333" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="191.34" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (210,163,782 samples, 0.11%)</title><rect x="63.1" y="693" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.12" y="703.5" ></text>
</g>
<g >
<title>[[i915]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1653" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="201.56" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1061" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1071.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="469" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="431.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="837" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="847.5" ></text>
</g>
<g >
<title>[Discord] (76,378,931 samples, 0.04%)</title><rect x="97.8" y="1381" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.84" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="437" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="447.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="485" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="495.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="101" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.12" y="111.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="479.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="79.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="533" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="543.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="111.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="245" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="255.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="389" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="399.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="719.5" ></text>
</g>
<g >
<title>expand_string_assignment (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1461" width="0.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="192.05" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.11" y="1359.5" ></text>
</g>
<g >
<title>iconv_open (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1861" width="0.9" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="212.31" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="805" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="815.5" ></text>
</g>
<g >
<title>[libc.so.6] (890,014,754 samples, 0.48%)</title><rect x="10.1" y="2053" width="5.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="13.13" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="623.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1077" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1445" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1343.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="805" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="815.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="485" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="495.5" ></text>
</g>
<g >
<title>ProcessInputEvents (35,430,913 samples, 0.02%)</title><rect x="181.0" y="1989" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="184.02" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="517" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="527.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1509" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.02" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="389" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="399.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="703.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="879.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="95.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1061" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="623.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="511.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="415.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="511.5" ></text>
</g>
<g >
<title>[Discord] (69,120,458 samples, 0.04%)</title><rect x="175.9" y="1813" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.91" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1935.5" ></text>
</g>
<g >
<title>expand_string_assignment (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1029" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="202.43" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (679,457,194 samples, 0.37%)</title><rect x="60.3" y="1173" width="4.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.32" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1365" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="45.35" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1061" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1141" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,336,214 samples, 0.02%)</title><rect x="66.3" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="69.28" y="959.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1237" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1109" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1119.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (17,542,200 samples, 0.01%)</title><rect x="201.0" y="1797" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.03" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="1973" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1429" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="95.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (265,221,991 samples, 0.14%)</title><rect x="207.6" y="2005" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.63" y="2015.5" ></text>
</g>
<g >
<title>[rg] (90,540,665 samples, 0.05%)</title><rect x="725.4" y="1829" width="0.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.45" y="1839.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1381" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1941" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1941" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.65" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="53" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="63.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1461" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (77,125,974 samples, 0.04%)</title><rect x="68.6" y="933" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.59" y="943.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1877" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1887.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1237" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1125" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="101.89" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="255.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1429" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1269" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1279.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1365" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1375.5" ></text>
</g>
<g >
<title>execute_command (482,222,205 samples, 0.26%)</title><rect x="187.1" y="1925" width="3.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.11" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="879.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1797" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="181" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="191.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="575.5" ></text>
</g>
<g >
<title>[Discord] (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1365" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.78" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (266,441,343 samples, 0.14%)</title><rect x="97.4" y="1621" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.44" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (31,003,816 samples, 0.02%)</title><rect x="72.8" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.85" y="1263.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1909" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.71" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1397" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="751.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="293" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="303.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (19,202,851 samples, 0.01%)</title><rect x="191.9" y="2037" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="194.89" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="111.5" ></text>
</g>
<g >
<title>[libc.so.6] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1269" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="16.82" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="79.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="693" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="703.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="437" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="447.5" ></text>
</g>
<g >
<title>[Discord] (136,971,460 samples, 0.07%)</title><rect x="86.0" y="1413" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.98" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1247.5" ></text>
</g>
<g >
<title>clock_gettime (31,827,152 samples, 0.02%)</title><rect x="100.1" y="1829" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="103.09" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1253" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1829" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.01" y="1839.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (36,397,977 samples, 0.02%)</title><rect x="721.6" y="1925" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="724.64" y="1935.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1061" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1071.5" ></text>
</g>
<g >
<title>_start (80,546,551,638 samples, 43.28%)</title><rect x="210.7" y="2053" width="510.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="213.74" y="2063.5" >_start</text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (992,554,658 samples, 0.53%)</title><rect x="156.6" y="1733" width="6.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="159.61" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (79,502,824 samples, 0.04%)</title><rect x="1187.7" y="1813" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.69" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="693" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="703.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="703.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="671.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="271.5" ></text>
</g>
<g >
<title>[Discord] (143,884,606 samples, 0.08%)</title><rect x="177.3" y="1845" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.29" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="229" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="239.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1861" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1871.5" >[Discord]</text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="869" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="879.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1141" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="501" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="511.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1429" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1439.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1477" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1301" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (99,462,747 samples, 0.05%)</title><rect x="86.8" y="1397" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.85" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="837" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="847.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1301" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="175.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="197" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="207.5" ></text>
</g>
<g >
<title>[Discord] (32,749,715 samples, 0.02%)</title><rect x="33.7" y="37" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.75" y="47.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="469" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="37" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="47.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="447.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1429" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1039.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="2053" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.21" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1589" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1599.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="271.5" ></text>
</g>
<g >
<title>[Discord] (32,749,118 samples, 0.02%)</title><rect x="70.1" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.11" y="863.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="239.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="783.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1477" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="895.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="2005" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (88,892,685 samples, 0.05%)</title><rect x="67.2" y="869" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.25" y="879.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="863.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1397" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="271.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="239.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="751.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="1989" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.21" y="1999.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1349" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.53" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="479.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="981" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (68,373,678 samples, 0.04%)</title><rect x="66.1" y="997" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="69.07" y="1007.5" ></text>
</g>
<g >
<title>[libc.so.6] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1269" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="80.16" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1461" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="815.5" ></text>
</g>
<g >
<title>v8::Function::Call (29,439,836 samples, 0.02%)</title><rect x="73.7" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.72" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (555,347,110 samples, 0.30%)</title><rect x="32.2" y="325" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.17" y="335.5" ></text>
</g>
<g >
<title>sleep (28,541,040 samples, 0.02%)</title><rect x="727.1" y="2069" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="730.10" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1925" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1269" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="149" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="159.5" ></text>
</g>
<g >
<title>[Discord] (119,195,929 samples, 0.06%)</title><rect x="81.3" y="1589" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.11" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (28,238,306 samples, 0.02%)</title><rect x="67.8" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.81" y="927.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="783.5" ></text>
</g>
<g >
<title>[libc.so.6] (43,206,660 samples, 0.02%)</title><rect x="1188.4" y="1925" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.42" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1253" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1263.5" ></text>
</g>
<g >
<title>execute_command_internal (482,222,205 samples, 0.26%)</title><rect x="187.1" y="1909" width="3.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.11" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="821" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="831.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="239.5" ></text>
</g>
<g >
<title>[Discord] (98,525,347 samples, 0.05%)</title><rect x="81.3" y="1509" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1519.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1141" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="997" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1317" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="261" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="271.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="799.5" ></text>
</g>
<g >
<title>[Discord] (32,166,977 samples, 0.02%)</title><rect x="94.6" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.56" y="1343.5" ></text>
</g>
<g >
<title>[[anon:v8]] (855,523,759 samples, 0.46%)</title><rect x="30.3" y="853" width="5.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.26" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="245" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="255.5" ></text>
</g>
<g >
<title>ZSTD_compress (16,756,784 samples, 0.01%)</title><rect x="23.2" y="1941" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="26.21" y="1951.5" ></text>
</g>
<g >
<title>[libc.so.6] (102,637,000 samples, 0.06%)</title><rect x="204.0" y="2021" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="207.00" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="927.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="751.5" ></text>
</g>
<g >
<title>[Discord] (1,485,333,192 samples, 0.80%)</title><rect x="100.6" y="1749" width="9.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="103.58" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="1909" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="1919.5" ></text>
</g>
<g >
<title>pa_proplist_get (23,632,051 samples, 0.01%)</title><rect x="721.7" y="1797" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="724.71" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="357" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1839.5" ></text>
</g>
<g >
<title>_XEventsQueued (27,402,357 samples, 0.01%)</title><rect x="193.0" y="1797" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="196.04" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="277" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="287.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="319.5" ></text>
</g>
<g >
<title>[Discord] (319,736,093 samples, 0.17%)</title><rect x="62.4" y="901" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.43" y="911.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="575.5" ></text>
</g>
<g >
<title>pthread_once (28,153,827 samples, 0.02%)</title><rect x="1188.5" y="1893" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="1191.52" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1077" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="229" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1887.5" ></text>
</g>
<g >
<title>InputThread (69,766,242 samples, 0.04%)</title><rect x="110.1" y="2069" width="0.5" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="113.12" y="2079.5" ></text>
</g>
<g >
<title>[[i915]] (22,716,277 samples, 0.01%)</title><rect x="182.7" y="1781" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="185.67" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,905,361 samples, 0.02%)</title><rect x="206.8" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.75" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,153,827 samples, 0.02%)</title><rect x="1188.5" y="1813" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.52" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="287.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="565" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="575.5" ></text>
</g>
<g >
<title>execute_command (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1909" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="210.11" y="1919.5" ></text>
</g>
<g >
<title>__clone (26,671,291 samples, 0.01%)</title><rect x="23.0" y="2053" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="26.04" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="2053" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1893" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1157" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="2005" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="2015.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (156,533,955 samples, 0.08%)</title><rect x="185.9" y="2021" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="188.87" y="2031.5" ></text>
</g>
<g >
<title>[[anon:v8]] (568,469,352 samples, 0.31%)</title><rect x="86.0" y="1429" width="3.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.98" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="1941" width="13.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.45" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1029" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="165" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="175.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="191.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="687.5" ></text>
</g>
<g >
<title>[libc.so.6] (60,959,024 samples, 0.03%)</title><rect x="175.0" y="1877" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="177.99" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (32,548,498 samples, 0.02%)</title><rect x="89.4" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.38" y="1231.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1029" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1733" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1845" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1855.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1589" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="207.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1941" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1951.5" ></text>
</g>
<g >
<title>[dbus-broker] (22,854,337 samples, 0.01%)</title><rect x="198.7" y="1941" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="201.72" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1093" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1103.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (19,202,851 samples, 0.01%)</title><rect x="191.9" y="1989" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="194.89" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1909" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="1919.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (72,868,064 samples, 0.04%)</title><rect x="23.3" y="1989" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.33" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="645" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="655.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="2021" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="287.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="277" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="287.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="655.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,070,320 samples, 0.03%)</title><rect x="204.7" y="2037" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.65" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="463.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1333" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (63,578,358 samples, 0.03%)</title><rect x="208.9" y="1765" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.86" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="1973" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="1983.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1333" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="559.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="223.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="399.5" ></text>
</g>
<g >
<title>[Discord] (44,084,884 samples, 0.02%)</title><rect x="176.1" y="1765" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="179.07" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (244,889,530 samples, 0.13%)</title><rect x="62.9" y="757" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.90" y="767.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="287.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="687.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="2005" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="39.37" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (10,015,478,045 samples, 5.38%)</title><rect x="36.6" y="1829" width="63.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.59" y="1839.5" >[Disco..</text>
</g>
<g >
<title>execute_command_internal (49,812,476 samples, 0.03%)</title><rect x="188.2" y="1445" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="191.23" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1493" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1973" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.95" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1743.5" ></text>
</g>
<g >
<title>[[anon:v8]] (45,899,353 samples, 0.02%)</title><rect x="70.7" y="1301" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.70" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="357" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="367.5" ></text>
</g>
<g >
<title>[Discord] (36,146,201 samples, 0.02%)</title><rect x="78.1" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.05" y="1359.5" ></text>
</g>
<g >
<title>[pactl] (224,499,374 samples, 0.12%)</title><rect x="209.3" y="2053" width="1.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="212.31" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (252,983,736 samples, 0.14%)</title><rect x="195.1" y="1637" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.06" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1589" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (162,250,466 samples, 0.09%)</title><rect x="13.2" y="1413" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.16" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1765" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1733" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1743.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1317" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1327.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1221" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.91" y="1231.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1637" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1093" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (254,913,085 samples, 0.14%)</title><rect x="97.4" y="1589" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.44" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="277" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="287.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="149" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,394,275 samples, 0.02%)</title><rect x="175.2" y="1717" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.20" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1103.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (52,174,351 samples, 0.03%)</title><rect x="98.7" y="1397" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.73" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="885" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="895.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1477" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (33,398,159 samples, 0.02%)</title><rect x="91.2" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.21" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (41,597,570 samples, 0.02%)</title><rect x="36.3" y="2053" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="39.29" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (163,758,039 samples, 0.09%)</title><rect x="1187.2" y="1845" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.15" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (210,531,328 samples, 0.11%)</title><rect x="15.8" y="1893" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="2005" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="2015.5" ></text>
</g>
<g >
<title>malloc (17,869,008 samples, 0.01%)</title><rect x="162.6" y="1701" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="165.56" y="1711.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1429" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1439.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,113,570 samples, 0.01%)</title><rect x="85.5" y="1397" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.53" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="261" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="271.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="2021" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="2031.5" ></text>
</g>
<g >
<title>btowc (331,443,453 samples, 0.18%)</title><rect x="183.7" y="1989" width="2.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="186.72" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (148,863,984 samples, 0.08%)</title><rect x="200.8" y="2005" width="1.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.83" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1733" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="591.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="613" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="623.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="421" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="431.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (17,542,200 samples, 0.01%)</title><rect x="201.0" y="1829" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.03" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="63.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,917,027 samples, 0.02%)</title><rect x="13.9" y="1141" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.87" y="1151.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="277" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="68.88" y="287.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (28,437,790 samples, 0.02%)</title><rect x="201.4" y="1733" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.40" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1637" width="5.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.15" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="815.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1477" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="245" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="255.5" ></text>
</g>
<g >
<title>[unknown] (94,558,943 samples, 0.05%)</title><rect x="195.8" y="1509" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.79" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="741" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="751.5" ></text>
</g>
<g >
<title>[Discord] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="1957" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.23" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="389" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="399.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="527.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="127.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="725" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,999,450 samples, 0.02%)</title><rect x="110.3" y="1829" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.31" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="933" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="943.5" ></text>
</g>
<g >
<title>read (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1973" width="1.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="193.50" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,513,456 samples, 0.02%)</title><rect x="15.0" y="1701" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.05" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="901" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="911.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="335.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="463.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="901" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="911.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (52,174,351 samples, 0.03%)</title><rect x="98.7" y="1413" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.73" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="63.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,107,673 samples, 0.03%)</title><rect x="110.2" y="1877" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.24" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1157" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1605" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1615.5" ></text>
</g>
<g >
<title>[[anon:v8]] (85,782,689 samples, 0.05%)</title><rect x="77.7" y="1445" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.74" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="527.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1301" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (36,146,201 samples, 0.02%)</title><rect x="78.1" y="1381" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.05" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="159.5" ></text>
</g>
<g >
<title>sed (74,723,925 samples, 0.04%)</title><rect x="726.5" y="2069" width="0.5" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="729.50" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="399.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="133" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.12" y="143.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1445" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="575.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="207.5" ></text>
</g>
<g >
<title>[Discord] (5,915,579,642 samples, 3.18%)</title><rect x="43.1" y="1605" width="37.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="46.10" y="1615.5" >[Di..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1797" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="741" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="751.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1541" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="431.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1365" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="94.47" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (32,053,837 samples, 0.02%)</title><rect x="72.6" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.65" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="847.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1253" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (862,973,439 samples, 0.46%)</title><rect x="59.2" y="1205" width="5.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="62.21" y="1215.5" ></text>
</g>
<g >
<title>[libc.so.6] (65,777,842 samples, 0.04%)</title><rect x="15.3" y="1861" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="18.27" y="1871.5" ></text>
</g>
<g >
<title>pa_client_conf_load (155,021,469 samples, 0.08%)</title><rect x="209.3" y="1973" width="1.0" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="212.31" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="671.5" ></text>
</g>
<g >
<title>[libc.so.6] (73,680,852 samples, 0.04%)</title><rect x="721.5" y="2021" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="724.48" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1669" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1679.5" ></text>
</g>
<g >
<title>[Xorg] (44,367,333 samples, 0.02%)</title><rect x="182.4" y="1941" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="185.37" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="175.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="495.5" ></text>
</g>
<g >
<title>[Discord] (517,602,829 samples, 0.28%)</title><rect x="177.2" y="1989" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1781" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1791.5" ></text>
</g>
<g >
<title>[[anon:v8]] (768,145,761 samples, 0.41%)</title><rect x="90.4" y="1493" width="4.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.36" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (30,096,018 samples, 0.02%)</title><rect x="85.7" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.70" y="1391.5" ></text>
</g>
<g >
<title>[libgdk-3.so.0.2417.32] (27,402,357 samples, 0.01%)</title><rect x="193.0" y="1813" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="196.04" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="2005" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1061" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="53" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="63.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="293" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="303.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (641,411,811 samples, 0.34%)</title><rect x="31.6" y="517" width="4.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="527.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (34,499,225 samples, 0.02%)</title><rect x="198.1" y="1749" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="201.09" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1349" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1359.5" ></text>
</g>
<g >
<title>[intel_drv.so] (51,494,844 samples, 0.03%)</title><rect x="181.3" y="1957" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="184.27" y="1967.5" ></text>
</g>
<g >
<title>[[i915]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1045" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="110.52" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.71" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="565" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="575.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="895.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="757" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="767.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="85" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="95.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="703.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="549" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="559.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1893" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (233,418,787 samples, 0.13%)</title><rect x="175.5" y="2053" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="178.47" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1365" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="63.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="389" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1781" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="26.53" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="165" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="175.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (29,229,326 samples, 0.02%)</title><rect x="725.2" y="1925" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.16" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="245" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="255.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="319.5" ></text>
</g>
<g >
<title>[Discord] (233,418,787 samples, 0.13%)</title><rect x="175.5" y="1989" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.47" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="917" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="927.5" ></text>
</g>
<g >
<title>[unknown] (17,640,914 samples, 0.01%)</title><rect x="205.0" y="1749" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="208.05" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="965" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="975.5" ></text>
</g>
<g >
<title>[Discord] (115,959,824 samples, 0.06%)</title><rect x="90.7" y="1333" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.74" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1679.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1253" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1263.5" ></text>
</g>
<g >
<title>[libc.so.6] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1541" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="24.65" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1717" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (84,497,575 samples, 0.05%)</title><rect x="90.9" y="1237" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.94" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="303.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="421" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="431.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="1989" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="543.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="549" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1397" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1407.5" ></text>
</g>
<g >
<title>[bash] (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1733" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (89,111,618 samples, 0.05%)</title><rect x="89.6" y="1637" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1477" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="85" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (15,963,049 samples, 0.01%)</title><rect x="106.0" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.99" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="77.99" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1253" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (183,342,686 samples, 0.10%)</title><rect x="175.8" y="1893" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.77" y="1903.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1173" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.29" y="1183.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1349" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1013" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1023.5" ></text>
</g>
<g >
<title>make_child (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1333" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="190.48" y="1343.5" ></text>
</g>
<g >
<title>__libc_start_main (224,499,374 samples, 0.12%)</title><rect x="209.3" y="2037" width="1.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="212.31" y="2047.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1925" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1397" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1407.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,530,222 samples, 0.01%)</title><rect x="1189.9" y="2021" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="997" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1189" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (603,522,317 samples, 0.32%)</title><rect x="158.9" y="1717" width="3.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="161.94" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (252,584,895 samples, 0.14%)</title><rect x="195.1" y="1589" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.06" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (109,904,483 samples, 0.06%)</title><rect x="92.0" y="1445" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.05" y="1455.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1253" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="159.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (52,174,351 samples, 0.03%)</title><rect x="98.7" y="1381" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.73" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,560,937 samples, 0.01%)</title><rect x="194.7" y="1637" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.74" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="287.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="501" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="511.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="831.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="133" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="143.5" ></text>
</g>
<g >
<title>[[i915]] (39,999,450 samples, 0.02%)</title><rect x="110.3" y="1781" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="113.31" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="431.5" ></text>
</g>
<g >
<title>[Discord] (31,476,637 samples, 0.02%)</title><rect x="72.1" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.07" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,142,247 samples, 0.02%)</title><rect x="92.5" y="1045" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="95.54" y="1055.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (29,229,326 samples, 0.02%)</title><rect x="725.2" y="1941" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.16" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="645" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="655.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1397" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1749" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (7,815,172,521 samples, 4.20%)</title><rect x="40.0" y="1685" width="49.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="43.03" y="1695.5" >[Dis..</text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="527.5" ></text>
</g>
<g >
<title>[Discord] (36,146,201 samples, 0.02%)</title><rect x="78.1" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.05" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,433,416 samples, 0.05%)</title><rect x="720.9" y="1829" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.87" y="1839.5" ></text>
</g>
<g >
<title>[bash] (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1717" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="207.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (39,478,909 samples, 0.02%)</title><rect x="725.1" y="2053" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.12" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="527.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="127.5" ></text>
</g>
<g >
<title>[Discord] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.82" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="63.5" ></text>
</g>
<g >
<title>[bash] (456,759,298 samples, 0.25%)</title><rect x="187.1" y="1813" width="2.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.11" y="1823.5" ></text>
</g>
<g >
<title>__libc_fork (20,474,249 samples, 0.01%)</title><rect x="187.3" y="1749" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="190.28" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (29,439,836 samples, 0.02%)</title><rect x="73.7" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.72" y="1327.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (31,142,914 samples, 0.02%)</title><rect x="102.1" y="1333" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="105.14" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="597" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="607.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1797" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1807.5" ></text>
</g>
<g >
<title>mkstemp (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1829" width="0.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="20.13" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="629" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="991.5" ></text>
</g>
<g >
<title>[Discord] (1,059,905,525 samples, 0.57%)</title><rect x="103.0" y="1541" width="6.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.00" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1237" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.48" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="783.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="741" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="751.5" ></text>
</g>
<g >
<title>[Discord] (137,480,258 samples, 0.07%)</title><rect x="90.7" y="1397" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.74" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (182,194,696 samples, 0.10%)</title><rect x="200.8" y="2053" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="203.83" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (16,325,478 samples, 0.01%)</title><rect x="87.2" y="1365" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.21" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="431.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="63.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="959.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="431.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1349" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1359.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (156,533,955 samples, 0.08%)</title><rect x="185.9" y="2053" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="188.87" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="629" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="639.5" ></text>
</g>
<g >
<title>[Discord] (86,793,594 samples, 0.05%)</title><rect x="21.2" y="1621" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="24.24" y="1631.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1893" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1903.5" ></text>
</g>
<g >
<title>[libell.so.0.0.2] (89,834,214 samples, 0.05%)</title><rect x="204.1" y="1941" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="207.06" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1941" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1557" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1781" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="101" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="111.5" ></text>
</g>
<g >
<title>[Discord] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1509" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.61" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="927.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="2005" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1477" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="655.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1781" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1791.5" ></text>
</g>
<g >
<title>v8::Function::Call (897,843,356 samples, 0.48%)</title><rect x="83.9" y="1669" width="5.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.89" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="309" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="319.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1765" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="895.5" ></text>
</g>
<g >
<title>Chrome_ChildIOT (890,014,754 samples, 0.48%)</title><rect x="10.1" y="2069" width="5.7" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="13.13" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (40,673,638 samples, 0.02%)</title><rect x="91.8" y="1445" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="94.79" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="575.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="991.5" ></text>
</g>
<g >
<title>[Discord] (131,212,234 samples, 0.07%)</title><rect x="95.5" y="1605" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1615.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="901" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="911.5" ></text>
</g>
<g >
<title>[rg] (47,405,862 samples, 0.03%)</title><rect x="725.7" y="1765" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.72" y="1775.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1973" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1983.5" ></text>
</g>
<g >
<title>[tmux] (58,209,330 samples, 0.03%)</title><rect x="1188.4" y="2021" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.42" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (268,447,138 samples, 0.14%)</title><rect x="719.8" y="1973" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="722.76" y="1983.5" ></text>
</g>
<g >
<title>[[anon:v8]] (32,053,837 samples, 0.02%)</title><rect x="72.6" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="75.65" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="223.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="287.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="917" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="927.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="981" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="991.5" ></text>
</g>
<g >
<title>[Discord] (265,412,700 samples, 0.14%)</title><rect x="160.7" y="1637" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="163.75" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1285" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (115,959,824 samples, 0.06%)</title><rect x="90.7" y="1349" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.74" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (259,764,576 samples, 0.14%)</title><rect x="12.7" y="1637" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.70" y="1647.5" ></text>
</g>
<g >
<title>[bash] (470,727,085 samples, 0.25%)</title><rect x="187.1" y="1861" width="3.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.11" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.71" y="1295.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1893" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1903.5" ></text>
</g>
<g >
<title>epoll_wait (75,601,888 samples, 0.04%)</title><rect x="181.7" y="1957" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="184.73" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (9,098,969,558 samples, 4.89%)</title><rect x="110.6" y="1973" width="57.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.58" y="1983.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1429" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="639.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="725" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="735.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="319.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="623.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1909" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="212.31" y="1919.5" ></text>
</g>
<g >
<title>WriteEventsToClient (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1829" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="184.13" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (650,438,060 samples, 0.35%)</title><rect x="194.0" y="1749" width="4.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="196.97" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="1973" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="719.5" ></text>
</g>
<g >
<title>[Discord] (1,303,120,306 samples, 0.70%)</title><rect x="101.5" y="1621" width="8.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.46" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1061" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="533" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="543.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="981" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="991.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1957" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="101" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="111.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="597" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="607.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1333" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1343.5" ></text>
</g>
<g >
<title>[libGLX_mesa.so.0.0.0] (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1541" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="45.31" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (582,070,414 samples, 0.31%)</title><rect x="194.4" y="1717" width="3.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.40" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="191.5" ></text>
</g>
<g >
<title>[Discord] (50,790,955 samples, 0.03%)</title><rect x="88.7" y="1317" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.66" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="463.5" ></text>
</g>
<g >
<title>[bash] (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1621" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.40" y="1631.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1013" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1583.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (35,440,556 samples, 0.02%)</title><rect x="186.6" y="1957" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.64" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (251,075,476 samples, 0.13%)</title><rect x="184.2" y="1877" width="1.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="187.23" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="831.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (75,770,179 samples, 0.04%)</title><rect x="23.3" y="2021" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.31" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="69" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="79.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="655.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1653" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1663.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1989" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1999.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (26,255,351 samples, 0.01%)</title><rect x="106.1" y="1093" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.09" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="319.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,530,222 samples, 0.01%)</title><rect x="1189.9" y="2037" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="789" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="799.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1253" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1295.5" ></text>
</g>
<g >
<title>v8::Function::Call (119,195,929 samples, 0.06%)</title><rect x="81.3" y="1621" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.26" y="1631.5" ></text>
</g>
<g >
<title>execute_command_internal (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1669" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.40" y="1679.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="1973" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1365" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="447.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="367.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1221" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="207.5" ></text>
</g>
<g >
<title>[libc.so.6] (34,290,759 samples, 0.02%)</title><rect x="99.8" y="1749" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="102.84" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (730,343,087 samples, 0.39%)</title><rect x="60.0" y="1189" width="4.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.00" y="1199.5" ></text>
</g>
<g >
<title>sudo (27,688,256 samples, 0.01%)</title><rect x="727.7" y="2069" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="730.68" y="2079.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,912,171 samples, 0.02%)</title><rect x="80.1" y="1557" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.06" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="751.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="517" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="527.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="607.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="453" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="463.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,120,071 samples, 0.02%)</title><rect x="70.8" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.80" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="863.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="687.5" ></text>
</g>
<g >
<title>[Discord] (43,009,040 samples, 0.02%)</title><rect x="63.7" y="341" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="351.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="639.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="719.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="117" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="127.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="965" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="975.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="2053" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="27.12" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (306,023,315 samples, 0.16%)</title><rect x="33.7" y="133" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.75" y="143.5" ></text>
</g>
<g >
<title>[Discord] (3,876,821,617 samples, 2.08%)</title><rect x="53.0" y="1525" width="24.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="55.99" y="1535.5" >[..</text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="501" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="511.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="335.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1301" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (185,026,591 samples, 0.10%)</title><rect x="95.5" y="1701" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1941" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="751.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="997" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="1007.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="101" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="111.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="117" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1957" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="703.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1765" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="239.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="549" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="559.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="197" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="207.5" ></text>
</g>
<g >
<title>[libc.so.6] (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="2037" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.19" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1893" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="309" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="319.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1413" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (943,218,433 samples, 0.51%)</title><rect x="29.7" y="1093" width="6.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.71" y="1103.5" ></text>
</g>
<g >
<title>expand_string_assignment (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1493" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="190.41" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="271.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="709" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="2037" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1429" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1077" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1087.5" ></text>
</g>
<g >
<title>__munmap (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1733" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="213.35" y="1743.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.8400.3] (1,531,489,391 samples, 0.82%)</title><rect x="100.3" y="1813" width="9.7" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="103.33" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1493" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (377,483,521 samples, 0.20%)</title><rect x="12.1" y="1685" width="2.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.15" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (29,332,311 samples, 0.02%)</title><rect x="32.9" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.93" y="95.5" ></text>
</g>
<g >
<title>[[i915]] (45,905,361 samples, 0.02%)</title><rect x="206.8" y="1973" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.75" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="2053" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (61,679,192 samples, 0.03%)</title><rect x="195.3" y="1493" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.34" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="725" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="735.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="501" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="511.5" ></text>
</g>
<g >
<title>[Discord] (33,809,438 samples, 0.02%)</title><rect x="34.3" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="37.32" y="47.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="863.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="927.5" ></text>
</g>
<g >
<title>[unknown] (598,795,982 samples, 0.32%)</title><rect x="170.2" y="1829" width="3.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="173.15" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="453" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="463.5" ></text>
</g>
<g >
<title>parse_and_execute (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1765" width="2.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="190.41" y="1775.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (45,285,906 samples, 0.02%)</title><rect x="108.4" y="1333" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="111.41" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1349" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="45.35" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="549" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="559.5" ></text>
</g>
<g >
<title>[Discord] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1573" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="2053" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="113.17" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1509" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="47.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1157" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="335.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (10,053,510,197 samples, 5.40%)</title><rect x="36.6" y="1845" width="63.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1855.5" >[Discord]</text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="367.5" ></text>
</g>
<g >
<title>[Discord] (33,036,082 samples, 0.02%)</title><rect x="84.1" y="1461" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="87.10" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1957" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="927.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="1925" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (119,402,224 samples, 0.06%)</title><rect x="161.6" y="1541" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.58" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="479.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (26,255,351 samples, 0.01%)</title><rect x="106.1" y="1109" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.09" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.11" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="175.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="479.5" ></text>
</g>
<g >
<title>[Discord] (29,080,881 samples, 0.02%)</title><rect x="74.5" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="77.50" y="1167.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1477" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1925" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="341" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="351.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="383.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="79.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="197" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="207.5" ></text>
</g>
<g >
<title>v8::Function::Call (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="303.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (32,749,118 samples, 0.02%)</title><rect x="70.1" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.11" y="879.5" ></text>
</g>
<g >
<title>renderer (490,914,410 samples, 0.26%)</title><rect x="722.0" y="2069" width="3.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="725.01" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1573" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1583.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1173" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.99" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="181" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1317" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1327.5" ></text>
</g>
<g >
<title>[bash] (19,436,402 samples, 0.01%)</title><rect x="207.1" y="1653" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,364,594,816 samples, 0.73%)</title><rect x="27.0" y="1269" width="8.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.04" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="447.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="463.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="143.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="2005" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="39.17" y="2015.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1157" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.91" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="1013" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (80,177,168 samples, 0.04%)</title><rect x="201.3" y="1925" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.25" y="1935.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="2005" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="197" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="207.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1365" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="373" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="383.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="351.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,657,130 samples, 0.01%)</title><rect x="207.8" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.79" y="1823.5" ></text>
</g>
<g >
<title>execve (19,465,139 samples, 0.01%)</title><rect x="726.3" y="2053" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="729.27" y="2063.5" ></text>
</g>
<g >
<title>[Xorg] (87,770,410 samples, 0.05%)</title><rect x="181.7" y="1973" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.65" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1327.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1845" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (151,171,168 samples, 0.08%)</title><rect x="15.9" y="1797" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.95" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1189" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="853" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="863.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1093" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="191.5" ></text>
</g>
<g >
<title>[Discord] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1461" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.13" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (316,819,513 samples, 0.17%)</title><rect x="1186.2" y="1877" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1189.18" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="213" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1845" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="179.75" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="719.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1461" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (287,265,296 samples, 0.15%)</title><rect x="12.6" y="1653" width="1.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.65" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,540,847 samples, 0.01%)</title><rect x="1188.3" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="85" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="95.5" ></text>
</g>
<g >
<title>[rg] (63,850,684 samples, 0.03%)</title><rect x="725.6" y="1797" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.62" y="1807.5" ></text>
</g>
<g >
<title>[at-spi2-registryd] (22,768,496 samples, 0.01%)</title><rect x="183.3" y="2005" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="186.34" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="453" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="463.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="709" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="719.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1397" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (2,044,463,484 samples, 1.10%)</title><rect x="151.2" y="1781" width="13.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="154.21" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1525" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="767.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="511.5" ></text>
</g>
<g >
<title>[Discord] (56,187,307 samples, 0.03%)</title><rect x="179.4" y="1605" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.42" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="469" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="479.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="591.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1797" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1797" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="671.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="469" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="623.5" ></text>
</g>
<g >
<title>[Discord] (282,576,797 samples, 0.15%)</title><rect x="105.9" y="1381" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.86" y="1391.5" ></text>
</g>
<g >
<title>__dup2 (25,192,658 samples, 0.01%)</title><rect x="199.6" y="501" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="202.63" y="511.5" ></text>
</g>
<g >
<title>[Discord] (33,305,504 samples, 0.02%)</title><rect x="94.1" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.14" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (32,166,977 samples, 0.02%)</title><rect x="94.6" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.56" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1295.5" ></text>
</g>
<g >
<title>[[i915]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1813" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.38" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="239.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1477" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1487.5" ></text>
</g>
<g >
<title>parse_and_execute (107,916,922 samples, 0.06%)</title><rect x="189.1" y="1381" width="0.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="192.09" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (57,130,716 samples, 0.03%)</title><rect x="34.0" y="69" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.96" y="79.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1381" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1903.5" ></text>
</g>
<g >
<title>execute_command (95,075,336 samples, 0.05%)</title><rect x="199.4" y="1749" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.38" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1765" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.01" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1493" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1119.5" ></text>
</g>
<g >
<title>[rg] (63,850,684 samples, 0.03%)</title><rect x="725.6" y="1781" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.62" y="1791.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1013" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1023.5" ></text>
</g>
<g >
<title>expand_string_assignment (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1445" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="191.54" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1365" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (98,525,347 samples, 0.05%)</title><rect x="81.3" y="1493" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1503.5" ></text>
</g>
<g >
<title>[[i915]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1813" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.91" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="197" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="207.5" ></text>
</g>
<g >
<title>[Discord] (31,003,816 samples, 0.02%)</title><rect x="72.8" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.85" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="591.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="117" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.12" y="127.5" ></text>
</g>
<g >
<title>[Discord] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.11" y="1359.5" ></text>
</g>
<g >
<title>v8::Function::Call (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1381" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.82" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,924,173 samples, 0.02%)</title><rect x="209.1" y="1717" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="212.06" y="1727.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1525" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="199.48" y="1535.5" ></text>
</g>
<g >
<title>[unknown] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="2037" width="13.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1177.45" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.91" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,249,833,512 samples, 0.67%)</title><rect x="1166.5" y="1925" width="8.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1169.53" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1701" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="303.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="511.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="111.5" ></text>
</g>
<g >
<title>[Discord] (150,154,711 samples, 0.08%)</title><rect x="177.2" y="1909" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="623.5" ></text>
</g>
<g >
<title>epoll_wait (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1957" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="201.87" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1221" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1231.5" ></text>
</g>
<g >
<title>[unknown] (22,462,241 samples, 0.01%)</title><rect x="197.2" y="1493" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="200.21" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="47.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="2021" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (78,640,551 samples, 0.04%)</title><rect x="65.6" y="901" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.57" y="911.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="133" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="143.5" ></text>
</g>
<g >
<title>[Discord] (88,892,685 samples, 0.05%)</title><rect x="67.2" y="853" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.25" y="863.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,812,325 samples, 0.01%)</title><rect x="206.6" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.63" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (112,616,182 samples, 0.06%)</title><rect x="65.4" y="981" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.35" y="991.5" ></text>
</g>
<g >
<title>[Discord] (5,575,105,669 samples, 3.00%)</title><rect x="44.7" y="1589" width="35.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="47.71" y="1599.5" >[D..</text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="549" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="975.5" ></text>
</g>
<g >
<title>[Discord] (416,603,034 samples, 0.22%)</title><rect x="11.9" y="1765" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.94" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1711.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1525" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="607.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="671.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1381" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1045" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="751.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="79.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1989" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="373" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="383.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.26" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="885" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="895.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="85" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="95.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="559.5" ></text>
</g>
<g >
<title>[Discord] (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="2021" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.23" y="2031.5" ></text>
</g>
<g >
<title>operator new[] (32,749,715 samples, 0.02%)</title><rect x="33.7" y="53" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="36.75" y="63.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1445" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="45.31" y="1455.5" ></text>
</g>
<g >
<title>execute_command (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1685" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.40" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="927.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1893" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1903.5" >[Discord]</text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="575.5" ></text>
</g>
<g >
<title>[Discord] (272,610,352 samples, 0.15%)</title><rect x="62.7" y="837" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.73" y="847.5" ></text>
</g>
<g >
<title>set_signal_handler (26,080,798 samples, 0.01%)</title><rect x="188.3" y="1349" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="191.34" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1717" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="341" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="351.5" ></text>
</g>
<g >
<title>[bash] (49,812,476 samples, 0.03%)</title><rect x="188.2" y="1429" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.23" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1221" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1887.5" ></text>
</g>
<g >
<title>[[anon:v8]] (216,142,884 samples, 0.12%)</title><rect x="34.3" y="69" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="37.32" y="79.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (69,996,724,577 samples, 37.61%)</title><rect x="730.6" y="1957" width="443.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="733.63" y="1967.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="95.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (23,733,916 samples, 0.01%)</title><rect x="108.8" y="1461" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="111.77" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="671.5" ></text>
</g>
<g >
<title>[Discord] (225,452,211 samples, 0.12%)</title><rect x="12.9" y="1557" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.86" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="335.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1253" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1263.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1461" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="45.31" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1237" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="86.11" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1173" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1183.5" ></text>
</g>
<g >
<title>awk (540,489,815 samples, 0.29%)</title><rect x="183.5" y="2069" width="3.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="186.49" y="2079.5" ></text>
</g>
<g >
<title>[libprotocol-native.so] (26,307,600 samples, 0.01%)</title><rect x="721.7" y="1877" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="724.71" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1525" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="927.5" ></text>
</g>
<g >
<title>[[i915]] (23,859,286 samples, 0.01%)</title><rect x="42.4" y="1173" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.40" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="277" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (57,583,001 samples, 0.03%)</title><rect x="181.8" y="1877" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.84" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="149" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="159.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1477" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="112.00" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="389" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1861" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1055.5" ></text>
</g>
<g >
<title>Utils (31,960,171 samples, 0.02%)</title><rect x="176.9" y="2069" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="179.95" y="2079.5" ></text>
</g>
<g >
<title>ghostty (223,530,112 samples, 0.12%)</title><rect x="200.6" y="2069" width="1.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="203.57" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (3,102,871,389 samples, 1.67%)</title><rect x="55.5" y="1429" width="19.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="58.48" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1445" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,374,493 samples, 0.02%)</title><rect x="189.5" y="1189" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.48" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="751.5" ></text>
</g>
<g >
<title>[Discord] (897,843,356 samples, 0.48%)</title><rect x="83.9" y="1653" width="5.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1231.5" ></text>
</g>
<g >
<title>containerd (25,737,457 samples, 0.01%)</title><rect x="198.6" y="2069" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="201.56" y="2079.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1445" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="143.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="783.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1253" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.48" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="303.5" ></text>
</g>
<g >
<title>[Discord] (9,457,307,238 samples, 5.08%)</title><rect x="37.0" y="1781" width="59.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.98" y="1791.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="709" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="719.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1039.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1237" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1247.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1973" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="837" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="847.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1375.5" ></text>
</g>
<g >
<title>fallocate64 (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1301" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="16.82" y="1311.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="629" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="757" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="767.5" ></text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="1973" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="1983.5" ></text>
</g>
<g >
<title>[libc.so.6] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1557" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="82.55" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (148,863,984 samples, 0.08%)</title><rect x="200.8" y="1989" width="1.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="203.83" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="79.5" ></text>
</g>
<g >
<title>[Discord] (429,402,606 samples, 0.23%)</title><rect x="97.0" y="1749" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.96" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="159.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="479.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1093" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="863.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1957" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="591.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="261" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="271.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1813" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="543.5" ></text>
</g>
<g >
<title>[Discord] (6,645,068,606 samples, 3.57%)</title><rect x="41.5" y="1653" width="42.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="44.51" y="1663.5" >[Di..</text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="261" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="271.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="591.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="527.5" ></text>
</g>
<g >
<title>[unknown] (27,840,421 samples, 0.01%)</title><rect x="186.9" y="2053" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="189.93" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="799.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="559.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1429" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1439.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="245" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="255.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="773" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="783.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="149" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="159.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (33,871,165 samples, 0.02%)</title><rect x="104.3" y="1349" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.31" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="133" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="143.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="773" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="783.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="335.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="37" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,394,275 samples, 0.02%)</title><rect x="175.2" y="1685" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.20" y="1695.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.8400.3] (452,444,387 samples, 0.24%)</title><rect x="97.0" y="1781" width="2.8" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="99.96" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1781" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (95,032,790 samples, 0.05%)</title><rect x="77.7" y="1493" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.74" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="133" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="143.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1909" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="2005" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1589" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1599.5" ></text>
</g>
<g >
<title>v8::Function::Call (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1237" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1685" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="783.5" ></text>
</g>
<g >
<title>_start (53,160,619 samples, 0.03%)</title><rect x="207.1" y="2053" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="210.11" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,569,309 samples, 0.01%)</title><rect x="186.8" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.76" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.87" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (104,655,926 samples, 0.06%)</title><rect x="86.2" y="1381" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.18" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="143.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="501" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1823.5" ></text>
</g>
<g >
<title>v8::Function::Call (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1477" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="101.53" y="1487.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="949" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="959.5" ></text>
</g>
<g >
<title>[Discord] (124,994,989 samples, 0.07%)</title><rect x="174.2" y="1893" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.20" y="1903.5" ></text>
</g>
<g >
<title>xargs (20,530,222 samples, 0.01%)</title><rect x="1189.9" y="2069" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1192.87" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,560,937 samples, 0.01%)</title><rect x="194.7" y="1573" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.74" y="1583.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (277,293,679 samples, 0.15%)</title><rect x="207.6" y="2037" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.55" y="2047.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="1973" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (46,558,498 samples, 0.03%)</title><rect x="81.0" y="1589" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.97" y="1599.5" ></text>
</g>
<g >
<title>[libc.so.6] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="2053" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.96" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (57,501,651 samples, 0.03%)</title><rect x="68.7" y="901" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.72" y="911.5" ></text>
</g>
<g >
<title>[Discord] (69,697,497 samples, 0.04%)</title><rect x="34.5" y="37" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="37.53" y="47.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="111.5" ></text>
</g>
<g >
<title>__libc_sigaction (27,688,256 samples, 0.01%)</title><rect x="727.7" y="1925" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="730.68" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1381" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1349" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1157" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.82" y="1167.5" ></text>
</g>
<g >
<title>[spectrwm] (18,041,103 samples, 0.01%)</title><rect x="727.4" y="1941" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="730.37" y="1951.5" ></text>
</g>
<g >
<title>[libGLX_mesa.so.0.0.0] (21,158,700 samples, 0.01%)</title><rect x="101.1" y="1621" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="104.12" y="1631.5" ></text>
</g>
<g >
<title>[libc.so.6] (46,756,423 samples, 0.03%)</title><rect x="727.3" y="2021" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="730.28" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="879.5" ></text>
</g>
<g >
<title>[libc.so.6] (27,688,256 samples, 0.01%)</title><rect x="727.7" y="2021" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="730.68" y="2031.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1557" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1567.5" ></text>
</g>
<g >
<title>_Fork (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1333" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="191.75" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="175.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="549" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="559.5" ></text>
</g>
<g >
<title>[Discord] (101,756,400 samples, 0.05%)</title><rect x="97.8" y="1429" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.76" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1365" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="687.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="661" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="671.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="565" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="575.5" ></text>
</g>
<g >
<title>operator new[] (26,070,704 samples, 0.01%)</title><rect x="86.5" y="1301" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="89.54" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="997" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1189" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.79" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="735.5" ></text>
</g>
<g >
<title>[unknown] (22,768,496 samples, 0.01%)</title><rect x="183.3" y="1957" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="186.34" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1349" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1359.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,028,079 samples, 0.01%)</title><rect x="96.0" y="1429" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="99.01" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1157" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="1919.5" ></text>
</g>
<g >
<title>[libxcb.so.1.1.0] (16,416,804 samples, 0.01%)</title><rect x="727.6" y="2037" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="730.57" y="2047.5" ></text>
</g>
<g >
<title>tmux:_server (136,737,616 samples, 0.07%)</title><rect x="1188.8" y="2069" width="0.9" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1191.79" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="773" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="783.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="933" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1445" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="815.5" ></text>
</g>
<g >
<title>[Discord] (131,265,071 samples, 0.07%)</title><rect x="97.7" y="1525" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.65" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="85" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="95.5" ></text>
</g>
<g >
<title>[sed] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="2037" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="729.82" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1061" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="1007.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1813" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1237" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1077" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1589" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1599.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,492,681 samples, 0.02%)</title><rect x="80.8" y="1621" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.78" y="1631.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1653" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1845" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.25" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1333" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1343.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1509" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1349" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="901" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="911.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="37" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="47.5" ></text>
</g>
<g >
<title>[Discord] (42,984,333 samples, 0.02%)</title><rect x="13.5" y="1285" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.49" y="1295.5" ></text>
</g>
<g >
<title>[[i915]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1157" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="112.00" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (59,064,265 samples, 0.03%)</title><rect x="97.9" y="1317" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.95" y="1327.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1861" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.53" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="895.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="581" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="591.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (20,947,502 samples, 0.01%)</title><rect x="107.7" y="1381" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.66" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="1925" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (60,571,580 samples, 0.03%)</title><rect x="73.0" y="1269" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.05" y="1279.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="453" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (201,211,120 samples, 0.11%)</title><rect x="720.2" y="1925" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.18" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="469" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="479.5" ></text>
</g>
<g >
<title>[libpulse.so.0.24.3] (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="2005" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1191.19" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="463.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="629" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="639.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1717" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1877" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1887.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1333" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="687.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="63.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="47.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="815.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="799.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="127.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="559.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1861" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="693" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1775.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1669" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="655.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="757" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1749" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="191.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1205" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,924,173 samples, 0.02%)</title><rect x="209.1" y="1733" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="212.06" y="1743.5" ></text>
</g>
<g >
<title>WaitForSomething (163,413,466 samples, 0.09%)</title><rect x="181.2" y="1989" width="1.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="184.24" y="1999.5" ></text>
</g>
<g >
<title>[[anon:v8]] (39,438,417 samples, 0.02%)</title><rect x="89.9" y="1573" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.90" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (31,042,877 samples, 0.02%)</title><rect x="70.5" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.51" y="1263.5" ></text>
</g>
<g >
<title>__libc_start_main (102,637,000 samples, 0.06%)</title><rect x="204.0" y="2037" width="0.7" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="207.00" y="2047.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1701" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="47.5" ></text>
</g>
<g >
<title>[Discord] (41,219,878 samples, 0.02%)</title><rect x="81.6" y="1413" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.62" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="895.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1909" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (51,684,158 samples, 0.03%)</title><rect x="197.0" y="1557" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="200.02" y="1567.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1109" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="1119.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.99" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="2053" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1797" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.01" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="959.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1269" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1279.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1397" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1525" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1413" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1423.5" ></text>
</g>
<g >
<title>[bash] (29,968,529 samples, 0.02%)</title><rect x="199.6" y="725" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.60" y="735.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="805" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1621" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (26,843,266 samples, 0.01%)</title><rect x="76.7" y="1221" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.65" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (143,884,606 samples, 0.08%)</title><rect x="177.3" y="1829" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.29" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="341" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="351.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="495.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="885" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="895.5" ></text>
</g>
<g >
<title>[libc.so.6] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="2037" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.04" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1541" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1551.5" ></text>
</g>
<g >
<title>execute_command_internal (28,450,377 samples, 0.02%)</title><rect x="188.0" y="1525" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="191.01" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (32,548,498 samples, 0.02%)</title><rect x="89.4" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.38" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,792,957 samples, 0.01%)</title><rect x="164.4" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.39" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (28,418,143 samples, 0.02%)</title><rect x="67.5" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.45" y="815.5" ></text>
</g>
<g >
<title>[unknown] (16,501,025 samples, 0.01%)</title><rect x="194.8" y="1541" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.80" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1877" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1887.5" ></text>
</g>
<g >
<title>[libc.so.6] (77,284,364 samples, 0.04%)</title><rect x="209.7" y="1749" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.66" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (52,587,332 samples, 0.03%)</title><rect x="71.6" y="1077" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.62" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="453" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="463.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="165" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="175.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1231.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1253" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1557" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (25,039,384 samples, 0.01%)</title><rect x="165.6" y="1749" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="168.58" y="1759.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1045" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1055.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="421" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="431.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,042,877 samples, 0.02%)</title><rect x="70.5" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.51" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1039.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1989" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1637" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1647.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (33,669,707 samples, 0.02%)</title><rect x="1189.7" y="2021" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.66" y="2031.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1157" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.99" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1701" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="373" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="383.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1701" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="703.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="2005" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="203.57" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (363,517,921 samples, 0.20%)</title><rect x="62.2" y="933" width="2.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.15" y="943.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="917" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1061" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="1071.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1525" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.92" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1525" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1061" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1071.5" ></text>
</g>
<g >
<title>__libc_fork (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1877" width="0.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1192.01" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="207.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="837" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="847.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1061" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (38,760,370 samples, 0.02%)</title><rect x="206.3" y="2037" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.27" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.11" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (68,701,117 samples, 0.04%)</title><rect x="63.7" y="389" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="399.5" ></text>
</g>
<g >
<title>[[anon:v8]] (831,842,371 samples, 0.45%)</title><rect x="84.3" y="1461" width="5.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.31" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (1,511,909,602 samples, 0.81%)</title><rect x="100.4" y="1781" width="9.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="103.42" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="757" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="767.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (33,669,707 samples, 0.02%)</title><rect x="1189.7" y="2053" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.66" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (273,273,600 samples, 0.15%)</title><rect x="34.0" y="85" width="1.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.96" y="95.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1109" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.91" y="1119.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1461" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="789" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="799.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="415.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1269" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1279.5" ></text>
</g>
<g >
<title>[[i915]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1285" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (120,806,128 samples, 0.06%)</title><rect x="13.4" y="1381" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.42" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.65" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="101" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.43" y="111.5" ></text>
</g>
<g >
<title>[Discord] (25,191,806 samples, 0.01%)</title><rect x="178.0" y="1717" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.02" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1013" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1023.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1541" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1285" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (88,892,685 samples, 0.05%)</title><rect x="67.2" y="885" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.25" y="895.5" ></text>
</g>
<g >
<title>[libc.so.6] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1829" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="17.88" y="1839.5" ></text>
</g>
<g >
<title>ThreadPoolServi (209,896,022 samples, 0.11%)</title><rect x="174.1" y="2069" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="177.14" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (214,751,275 samples, 0.12%)</title><rect x="178.9" y="1749" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="687.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="805" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="815.5" ></text>
</g>
<g >
<title>[Discord] (32,964,903 samples, 0.02%)</title><rect x="83.9" y="1557" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="287.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="2005" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="2015.5" >[Discord]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="1989" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="1999.5" ></text>
</g>
<g >
<title>__mprotect (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1541" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="84.13" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (792,397,251 samples, 0.43%)</title><rect x="30.7" y="805" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.66" y="815.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (19,202,851 samples, 0.01%)</title><rect x="191.9" y="2053" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="194.89" y="2063.5" ></text>
</g>
<g >
<title>execute_command_internal (248,872,228 samples, 0.13%)</title><rect x="188.2" y="1605" width="1.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="191.19" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (30,565,543 samples, 0.02%)</title><rect x="73.0" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.05" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (98,525,347 samples, 0.05%)</title><rect x="81.3" y="1525" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1333" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="191.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1701" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1711.5" ></text>
</g>
<g >
<title>[[i915]] (39,999,450 samples, 0.02%)</title><rect x="110.3" y="1797" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="113.31" y="1807.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="933" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="943.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="645" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="655.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="437" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="447.5" ></text>
</g>
<g >
<title>execute_command_internal (25,813,577 samples, 0.01%)</title><rect x="187.8" y="1381" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.82" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1589" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1599.5" ></text>
</g>
<g >
<title>[libprotocol-native.so] (26,307,600 samples, 0.01%)</title><rect x="721.7" y="1845" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="724.71" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.53" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="127.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.40" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1077" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="757" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="767.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="735.5" ></text>
</g>
<g >
<title>[Discord] (138,156,415 samples, 0.07%)</title><rect x="63.5" y="501" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="511.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="959.5" ></text>
</g>
<g >
<title>[Discord] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.53" y="927.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="949" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1285" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (348,058,395 samples, 0.19%)</title><rect x="19.8" y="1717" width="2.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="22.80" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="415.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (51,291,635 samples, 0.03%)</title><rect x="42.3" y="1589" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="45.31" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1349" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="101" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="111.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="319.5" ></text>
</g>
<g >
<title>node::InternalCallbackScope::~InternalCallbackScope (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1509" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="101.53" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="565" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="575.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1173" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="85" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="95.5" ></text>
</g>
<g >
<title>mieqProcessDeviceEvent (35,430,913 samples, 0.02%)</title><rect x="181.0" y="1957" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="184.02" y="1967.5" ></text>
</g>
<g >
<title>[cat] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="2005" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="193.50" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,412,883 samples, 0.05%)</title><rect x="89.0" y="1317" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.98" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="495.5" ></text>
</g>
<g >
<title>[Discord] (1,258,798,425 samples, 0.68%)</title><rect x="101.7" y="1573" width="8.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.74" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="133" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="143.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,051,232 samples, 0.01%)</title><rect x="727.1" y="1989" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.10" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (3,808,122,634 samples, 2.05%)</title><rect x="53.4" y="1509" width="24.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="56.43" y="1519.5" >[..</text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="207.5" ></text>
</g>
<g >
<title>[Discord] (224,754,021 samples, 0.12%)</title><rect x="178.9" y="1765" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="773" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="783.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1893" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1685" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1695.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1925" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (239,277,055 samples, 0.13%)</title><rect x="172.4" y="1813" width="1.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="175.43" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="415.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="655.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,437,283 samples, 0.02%)</title><rect x="15.4" y="1749" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.40" y="1759.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.8400.3] (367,448,118 samples, 0.20%)</title><rect x="178.2" y="1909" width="2.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="181.20" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="1941" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.23" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1477" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1487.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1957" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="415.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1055.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1957" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1141" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1151.5" ></text>
</g>
<g >
<title>[unknown] (518,805,475 samples, 0.28%)</title><rect x="194.7" y="1685" width="3.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.66" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1221" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="725" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="735.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="597" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="607.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="357" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="367.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="543.5" ></text>
</g>
<g >
<title>[Discord] (31,966,558 samples, 0.02%)</title><rect x="162.1" y="1477" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="165.14" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="2005" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="709" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="719.5" ></text>
</g>
<g >
<title>[Discord] (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1333" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.78" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (358,506,241 samples, 0.19%)</title><rect x="12.3" y="1669" width="2.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.27" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1237" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="981" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="991.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="591.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1093" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="405" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,891,599 samples, 0.03%)</title><rect x="181.9" y="1861" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="184.89" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1157" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.44" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (16,501,025 samples, 0.01%)</title><rect x="194.8" y="1509" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.80" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (31,265,778 samples, 0.02%)</title><rect x="76.1" y="1429" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.11" y="1439.5" ></text>
</g>
<g >
<title>[unknown] (16,501,025 samples, 0.01%)</title><rect x="194.8" y="1557" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="197.80" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="69" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="79.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1493" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1503.5" ></text>
</g>
<g >
<title>execute_command_internal (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1701" width="2.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1711.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1477" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="45.31" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="927.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="389" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="399.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="325" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="335.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="47.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="511.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1445" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="815.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1301" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="69" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="79.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="485" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="495.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="437" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="815.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,657,130 samples, 0.01%)</title><rect x="207.8" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.79" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="719.5" ></text>
</g>
<g >
<title>[Discord] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1733" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.93" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="527.5" ></text>
</g>
<g >
<title>GL_DrawArrays (80,411,580 samples, 0.04%)</title><rect x="104.0" y="1429" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="107.01" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,142,247 samples, 0.02%)</title><rect x="92.5" y="1029" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="95.54" y="1039.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1973" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,513,456 samples, 0.02%)</title><rect x="15.0" y="1717" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.05" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,981,933 samples, 0.01%)</title><rect x="191.7" y="1477" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.73" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1087.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1077" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1087.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1013" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="2021" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (32,749,118 samples, 0.02%)</title><rect x="70.1" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="73.11" y="895.5" ></text>
</g>
<g >
<title>pa_memimport_free (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1877" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="724.53" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="159.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="79.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="271.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="399.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1509" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (246,621,095 samples, 0.13%)</title><rect x="12.8" y="1605" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.78" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="725" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="735.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1429" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1439.5" ></text>
</g>
<g >
<title>sudo_ev_loop_v1 (27,688,256 samples, 0.01%)</title><rect x="727.7" y="1957" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="730.68" y="1967.5" ></text>
</g>
<g >
<title>[bash] (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1765" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1775.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1477" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1221" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1717" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="831.5" ></text>
</g>
<g >
<title>[Discord] (133,087,727 samples, 0.07%)</title><rect x="177.4" y="1813" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.35" y="1823.5" ></text>
</g>
<g >
<title>[libc.so.6] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1093" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="101.89" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="463.5" ></text>
</g>
<g >
<title>execve (28,059,480 samples, 0.02%)</title><rect x="200.1" y="2053" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="203.11" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (27,365,500 samples, 0.01%)</title><rect x="86.4" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.37" y="1295.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (56,930,848 samples, 0.03%)</title><rect x="106.5" y="1077" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.48" y="1087.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (56,930,848 samples, 0.03%)</title><rect x="106.5" y="1125" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.48" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="191.5" ></text>
</g>
<g >
<title>[unknown] (30,642,081 samples, 0.02%)</title><rect x="177.0" y="2053" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="179.96" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (60,489,582 samples, 0.03%)</title><rect x="27.6" y="1221" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="949" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="959.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="735.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1141" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1413" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1151.5" ></text>
</g>
<g >
<title>[libc.so.6] (63,390,721 samples, 0.03%)</title><rect x="14.8" y="1845" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="17.83" y="1855.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,530,222 samples, 0.01%)</title><rect x="1189.9" y="2053" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.87" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,153,231 samples, 0.01%)</title><rect x="165.4" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.37" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1173" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="89.71" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1061" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1071.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="789" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.05" y="799.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1429" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="933" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="943.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1007.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1205" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.91" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1509" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="165" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1701" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="965" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="975.5" ></text>
</g>
<g >
<title>[rg] (90,540,665 samples, 0.05%)</title><rect x="725.4" y="1813" width="0.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.45" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (55,786,195 samples, 0.03%)</title><rect x="76.7" y="1253" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.65" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1349" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (502,268,452 samples, 0.27%)</title><rect x="92.0" y="1461" width="3.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="95.05" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (16,066,669 samples, 0.01%)</title><rect x="17.1" y="1957" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="20.13" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.53" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="111.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="239.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="431.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1013" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (3,256,291,335 samples, 1.75%)</title><rect x="144.3" y="1797" width="20.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="147.32" y="1807.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (156,533,955 samples, 0.08%)</title><rect x="185.9" y="2037" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="188.87" y="2047.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1301" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (131,212,234 samples, 0.07%)</title><rect x="95.5" y="1637" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="975.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1317" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1327.5" ></text>
</g>
<g >
<title>[libc.so.6] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="2053" width="5.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="20.23" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (68,138,994 samples, 0.04%)</title><rect x="165.5" y="1797" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="168.55" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (2,051,535,867 samples, 1.10%)</title><rect x="57.7" y="1301" width="13.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="60.69" y="1311.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="1925" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="1935.5" ></text>
</g>
<g >
<title>[[anon:v8]] (918,826,079 samples, 0.49%)</title><rect x="29.9" y="901" width="5.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.86" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1791.5" ></text>
</g>
<g >
<title>v8::Function::Call (89,111,618 samples, 0.05%)</title><rect x="89.6" y="1685" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="949" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1845" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.79" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (43,035,418 samples, 0.02%)</title><rect x="85.7" y="1397" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.70" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1205" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="895.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1055.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1365" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.53" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (158,184,541 samples, 0.08%)</title><rect x="63.5" y="597" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1093" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.11" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="527.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="101" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="111.5" ></text>
</g>
<g >
<title>[Discord] (389,212,988 samples, 0.21%)</title><rect x="62.0" y="981" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="64.99" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (802,214,235 samples, 0.43%)</title><rect x="90.1" y="1541" width="5.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.15" y="1551.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="773" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="783.5" ></text>
</g>
<g >
<title>[Discord] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.91" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="495.5" ></text>
</g>
<g >
<title>[[idma64]] (61,034,971 samples, 0.03%)</title><rect x="1169.7" y="1861" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1172.68" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1445" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1455.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (40,858,155 samples, 0.02%)</title><rect x="23.5" y="1877" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.53" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="421" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1237" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="245" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="255.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="623.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="63.5" ></text>
</g>
<g >
<title>[[anon:v8]] (837,200,998 samples, 0.45%)</title><rect x="65.2" y="1045" width="5.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.20" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1349" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1359.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1061" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.30" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1365" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="77.99" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="175.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="181" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="191.5" ></text>
</g>
<g >
<title>GL_Uniform4fv (24,154,484 samples, 0.01%)</title><rect x="105.5" y="1397" width="0.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="108.48" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="149" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="159.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="2005" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="2015.5" ></text>
</g>
<g >
<title>l_main_iterate (89,834,214 samples, 0.05%)</title><rect x="204.1" y="1957" width="0.5" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="207.06" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1061" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1071.5" ></text>
</g>
<g >
<title>[Xorg] (44,367,333 samples, 0.02%)</title><rect x="182.4" y="1925" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="185.37" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.82" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="287.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="543.5" ></text>
</g>
<g >
<title>pa_mainloop_poll (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1957" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.26" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (7,913,229,384 samples, 4.25%)</title><rect x="40.0" y="1701" width="50.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="42.97" y="1711.5" >[Disc..</text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="511.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="821" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="831.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="773" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="783.5" ></text>
</g>
<g >
<title>[Discord] (124,941,517 samples, 0.07%)</title><rect x="16.1" y="1717" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.06" y="1727.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1957" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (56,841,735 samples, 0.03%)</title><rect x="196.0" y="1477" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.03" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="213" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1973" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1557" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.58" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (109,496,848 samples, 0.06%)</title><rect x="97.7" y="1461" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.74" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (1,323,438,342 samples, 0.71%)</title><rect x="101.4" y="1653" width="8.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.41" y="1663.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,206,549 samples, 0.01%)</title><rect x="24.1" y="1909" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.15" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (707,883,069 samples, 0.38%)</title><rect x="31.2" y="629" width="4.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.20" y="639.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1541" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,981,760 samples, 0.03%)</title><rect x="15.3" y="1813" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.30" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (418,751,194 samples, 0.23%)</title><rect x="105.2" y="1413" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.20" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="533" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="543.5" ></text>
</g>
<g >
<title>[[anon:v8]] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1253" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.16" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="639.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1125" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="591.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1141" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (78,640,551 samples, 0.04%)</title><rect x="65.6" y="933" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.57" y="943.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="181" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1013" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (43,009,040 samples, 0.02%)</title><rect x="63.7" y="293" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="303.5" ></text>
</g>
<g >
<title>[Discord] (1,401,821,135 samples, 0.75%)</title><rect x="101.0" y="1717" width="8.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.02" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="127.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="357" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="367.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="447.5" ></text>
</g>
<g >
<title>[Discord] (33,976,305 samples, 0.02%)</title><rect x="21.5" y="1573" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="24.54" y="1583.5" ></text>
</g>
<g >
<title>__send (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1557" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="24.65" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (60,064,176 samples, 0.03%)</title><rect x="107.1" y="1285" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.06" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (232,923,671 samples, 0.13%)</title><rect x="82.2" y="1541" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.16" y="1551.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1301" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="917" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="927.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,153,827 samples, 0.02%)</title><rect x="1188.5" y="1877" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.52" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1749" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="197" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="207.5" ></text>
</g>
<g >
<title>[Discord] (31,476,637 samples, 0.02%)</title><rect x="72.1" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.07" y="1055.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.99" y="975.5" ></text>
</g>
<g >
<title>[Discord] (2,744,563,680 samples, 1.47%)</title><rect x="56.5" y="1381" width="17.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="59.50" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (392,363,969 samples, 0.21%)</title><rect x="92.7" y="1445" width="2.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="95.75" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (8,979,593,117 samples, 4.83%)</title><rect x="111.0" y="1861" width="56.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="114.00" y="1871.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="655.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1301" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1839.5" ></text>
</g>
<g >
<title>[libc.so.6] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1941" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="193.50" y="1951.5" ></text>
</g>
<g >
<title>pa_mainloop_run (73,680,852 samples, 0.04%)</title><rect x="721.5" y="1989" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="724.48" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1621" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="223.5" ></text>
</g>
<g >
<title>[Discord] (613,125,935 samples, 0.33%)</title><rect x="11.3" y="1877" width="3.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.34" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="623.5" ></text>
</g>
<g >
<title>[[anon:v8]] (83,499,678 samples, 0.04%)</title><rect x="76.5" y="1301" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.47" y="1311.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1365" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1461" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="255.5" ></text>
</g>
<g >
<title>pthread_once (272,040,487 samples, 0.15%)</title><rect x="184.1" y="1941" width="1.7" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="187.10" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="367.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="389" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="399.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="117" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="127.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="591.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="831.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="175.5" ></text>
</g>
<g >
<title>[[i915]] (16,898,318 samples, 0.01%)</title><rect x="206.8" y="1845" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.81" y="1855.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="405" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="415.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (56,930,848 samples, 0.03%)</title><rect x="106.5" y="1109" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.48" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1109" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1119.5" ></text>
</g>
<g >
<title>ioctl (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1349" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="105.40" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1525" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.61" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (861,067,314 samples, 0.46%)</title><rect x="103.5" y="1477" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.46" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.12" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="63.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="543.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.08" y="959.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="335.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="629" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="639.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1813" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (52,253,805 samples, 0.03%)</title><rect x="13.5" y="1301" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.49" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="383.5" ></text>
</g>
<g >
<title>[Discord] (926,787,673 samples, 0.50%)</title><rect x="103.1" y="1509" width="5.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="106.12" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="783.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="671.5" ></text>
</g>
<g >
<title>[Discord] (6,814,994,296 samples, 3.66%)</title><rect x="40.4" y="1669" width="43.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="43.43" y="1679.5" >[Dis..</text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1429" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="661" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="671.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="117" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="127.5" ></text>
</g>
<g >
<title>[Discord] (16,325,478 samples, 0.01%)</title><rect x="87.2" y="1349" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.21" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="559.5" ></text>
</g>
<g >
<title>[Discord] (33,809,438 samples, 0.02%)</title><rect x="34.3" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="37.32" y="63.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1253" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1205" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (88,986,033 samples, 0.05%)</title><rect x="201.2" y="1973" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="204.21" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1749" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1413" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="677" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,007,485 samples, 0.02%)</title><rect x="79.8" y="1333" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.75" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="117" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="127.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="335.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1989" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1941" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="351.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1023.5" ></text>
</g>
<g >
<title>[[i915]] (22,716,277 samples, 0.01%)</title><rect x="182.7" y="1701" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="185.67" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="255.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="693" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="703.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1109" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="735.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1733" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="191.5" ></text>
</g>
<g >
<title>[Discord] (162,873,019 samples, 0.09%)</title><rect x="161.3" y="1573" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.31" y="1583.5" ></text>
</g>
<g >
<title>v8::Function::New (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1077" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="91.79" y="1087.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (20,828,757 samples, 0.01%)</title><rect x="204.7" y="1973" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.69" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="335.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="223.5" ></text>
</g>
<g >
<title>[Discord] (43,009,040 samples, 0.02%)</title><rect x="63.7" y="357" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,429,702 samples, 0.01%)</title><rect x="14.0" y="1093" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.98" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="831.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="863.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="533" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="543.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1269" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (115,959,824 samples, 0.06%)</title><rect x="90.7" y="1365" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.74" y="1375.5" ></text>
</g>
<g >
<title>[unknown] (107,694,096 samples, 0.06%)</title><rect x="196.7" y="1605" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.67" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="293" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="303.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="821" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="831.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1333" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1237" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1247.5" ></text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="2053" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="351.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1925" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (53,482,050 samples, 0.03%)</title><rect x="177.9" y="1765" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.86" y="1775.5" ></text>
</g>
<g >
<title>irq/9-acpi (249,597,589 samples, 0.13%)</title><rect x="202.3" y="2069" width="1.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="205.29" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="645" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="655.5" ></text>
</g>
<g >
<title>[libc.so.6] (41,527,878 samples, 0.02%)</title><rect x="79.3" y="1573" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="82.28" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="223.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (35,276,301 samples, 0.02%)</title><rect x="725.1" y="1989" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.12" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="181" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1493" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (435,315,056 samples, 0.23%)</title><rect x="159.7" y="1701" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="162.67" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1749" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="325" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="335.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1509" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (49,673,201 samples, 0.03%)</title><rect x="89.6" y="1541" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1551.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,964,148 samples, 0.01%)</title><rect x="201.4" y="1653" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.44" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1397" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="303.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1183.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1493" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="112.00" y="1503.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="709" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="719.5" ></text>
</g>
<g >
<title>[[i915]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1237" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="105.40" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (95,032,790 samples, 0.05%)</title><rect x="77.7" y="1509" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.74" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="383.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (26,337,169 samples, 0.01%)</title><rect x="87.3" y="965" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="90.31" y="975.5" ></text>
</g>
<g >
<title>[Discord] (28,418,143 samples, 0.02%)</title><rect x="67.5" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.45" y="799.5" ></text>
</g>
<g >
<title>[bash] (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1605" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.40" y="1615.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,487,874 samples, 0.01%)</title><rect x="726.7" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.71" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (16,695,640 samples, 0.01%)</title><rect x="196.3" y="1317" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.29" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1007.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1381" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="165" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="175.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,716,277 samples, 0.01%)</title><rect x="182.7" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.67" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1743.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1493" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1503.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1333" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1343.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,032,610 samples, 0.02%)</title><rect x="24.1" y="1989" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="27.12" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (162,361,618 samples, 0.09%)</title><rect x="82.6" y="1477" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.61" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="143.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1413" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="975.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="181" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="191.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,059,480 samples, 0.02%)</title><rect x="200.1" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.11" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="879.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="613" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="623.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="671.5" ></text>
</g>
<g >
<title>[Discord] (29,332,311 samples, 0.02%)</title><rect x="32.9" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.93" y="79.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1029" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="175.5" ></text>
</g>
<g >
<title>[Discord] (158,184,541 samples, 0.08%)</title><rect x="63.5" y="581" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="591.5" ></text>
</g>
<g >
<title>[libxcb.so.1.1.0] (18,310,667 samples, 0.01%)</title><rect x="201.9" y="2037" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="204.86" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="367.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="895.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="837" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (555,347,110 samples, 0.30%)</title><rect x="32.2" y="341" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.17" y="351.5" ></text>
</g>
<g >
<title>execute_command_internal (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1813" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (25,039,384 samples, 0.01%)</title><rect x="165.6" y="1765" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="168.58" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (84,497,575 samples, 0.05%)</title><rect x="90.9" y="1301" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.94" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (82,369,417 samples, 0.04%)</title><rect x="86.2" y="1333" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.18" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="885" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="895.5" ></text>
</g>
<g >
<title>execute_command (29,968,529 samples, 0.02%)</title><rect x="199.6" y="565" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.60" y="575.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="133" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="143.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1887.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1285" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1295.5" ></text>
</g>
<g >
<title>[sudo] (27,688,256 samples, 0.01%)</title><rect x="727.7" y="2005" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="730.68" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,615,238 samples, 0.03%)</title><rect x="64.7" y="1013" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,492,681 samples, 0.02%)</title><rect x="80.8" y="1605" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.78" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="383.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1039.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="213" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="223.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="687.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="815.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="143.5" ></text>
</g>
<g >
<title>expand_string_assignment (29,968,529 samples, 0.02%)</title><rect x="199.6" y="757" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="202.60" y="767.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (29,332,311 samples, 0.02%)</title><rect x="32.9" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.93" y="111.5" ></text>
</g>
<g >
<title>__libc_fork (28,232,975 samples, 0.02%)</title><rect x="187.6" y="1381" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="190.64" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1877" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1183.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,856,771 samples, 0.03%)</title><rect x="726.5" y="2037" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.50" y="2047.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1269" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1973" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1765" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1775.5" ></text>
</g>
<g >
<title>operator new[] (37,385,870 samples, 0.02%)</title><rect x="163.8" y="1765" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="166.78" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (904,764,293 samples, 0.49%)</title><rect x="192.6" y="1845" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.65" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,760,892 samples, 0.02%)</title><rect x="13.9" y="1125" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="16.88" y="1135.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="597" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,249,472 samples, 0.03%)</title><rect x="14.9" y="1781" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.88" y="1791.5" ></text>
</g>
<g >
<title>napi::environment::Environment::from_raw (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1269" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="80.82" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="805" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="815.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1717" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="367.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="255.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1183.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1253" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1263.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1381" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="107.87" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="351.5" ></text>
</g>
<g >
<title>[nvidia_drv.so] (27,921,215 samples, 0.02%)</title><rect x="180.8" y="2037" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="183.82" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (370,422,708 samples, 0.20%)</title><rect x="33.3" y="181" width="2.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.34" y="191.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1333" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.87" y="1343.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (62,175,082 samples, 0.03%)</title><rect x="721.5" y="1941" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="724.48" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="143.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1829" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,584,538 samples, 0.02%)</title><rect x="166.3" y="1813" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.33" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="405" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,363,984 samples, 0.01%)</title><rect x="188.8" y="1317" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.75" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (370,422,708 samples, 0.20%)</title><rect x="33.3" y="197" width="2.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.34" y="207.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="789" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="799.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,160,108 samples, 0.02%)</title><rect x="1174.1" y="1765" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.05" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (124,847,104 samples, 0.07%)</title><rect x="63.5" y="453" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.54" y="463.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (30,641,957 samples, 0.02%)</title><rect x="106.6" y="1061" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.64" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (31,389,716 samples, 0.02%)</title><rect x="91.8" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.79" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="735.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1333" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1343.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1413" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="725" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="735.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1365" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.13" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1237" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="613" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="623.5" ></text>
</g>
<g >
<title>[Discord] (191,355,856 samples, 0.10%)</title><rect x="15.8" y="1861" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.83" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="581" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="591.5" ></text>
</g>
<g >
<title>[libc.so.6] (21,790,843 samples, 0.01%)</title><rect x="163.0" y="1733" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="165.98" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="799.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1135.5" ></text>
</g>
<g >
<title>execute_command (24,175,848 samples, 0.01%)</title><rect x="207.1" y="1797" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="210.11" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="117" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="127.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1221" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1231.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="2021" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="39.17" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1685" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="847.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1525" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,553,956,939 samples, 0.84%)</title><rect x="25.8" y="1349" width="9.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1359.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1413" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (37,241,749 samples, 0.02%)</title><rect x="85.3" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.30" y="1359.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="901" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="911.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (51,291,635 samples, 0.03%)</title><rect x="42.3" y="1605" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="45.31" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1237" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="895.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="165" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="175.5" ></text>
</g>
<g >
<title>[pulseaudio] (73,680,852 samples, 0.04%)</title><rect x="721.5" y="2053" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="724.48" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="911.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,070,320 samples, 0.03%)</title><rect x="204.7" y="2005" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="207.65" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="933" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="943.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="255.5" ></text>
</g>
<g >
<title>[Discord] (125,721,088 samples, 0.07%)</title><rect x="92.7" y="1429" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.75" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.65" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (480,998,486 samples, 0.26%)</title><rect x="11.6" y="1813" width="3.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.63" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="101" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="965" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="975.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="847.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,790,843 samples, 0.01%)</title><rect x="163.0" y="1653" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="165.98" y="1663.5" ></text>
</g>
<g >
<title>[[anon:v8]] (162,361,618 samples, 0.09%)</title><rect x="82.6" y="1493" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.61" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,999,450 samples, 0.02%)</title><rect x="110.3" y="1749" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.31" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="303.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1381" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.53" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,102,857,338 samples, 0.59%)</title><rect x="28.7" y="1173" width="7.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.70" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="607.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1205" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1135.5" ></text>
</g>
<g >
<title>cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate (21,544,174 samples, 0.01%)</title><rect x="27.5" y="37" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="30.46" y="47.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="613" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="623.5" ></text>
</g>
<g >
<title>[Discord] (37,474,454 samples, 0.02%)</title><rect x="13.5" y="1269" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.52" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,155,672 samples, 0.01%)</title><rect x="206.9" y="1845" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.91" y="1855.5" ></text>
</g>
<g >
<title>[bash] (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1541" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.64" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="997" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (438,743,627 samples, 0.24%)</title><rect x="195.1" y="1653" width="2.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.06" y="1663.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,137,087,303 samples, 37.69%)</title><rect x="729.7" y="1973" width="444.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="732.74" y="1983.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="85" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="95.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="207.5" ></text>
</g>
<g >
<title>v8::Object::New (18,567,782 samples, 0.01%)</title><rect x="99.6" y="1685" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="102.56" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="943.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="575.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (141,997,407 samples, 0.08%)</title><rect x="71.9" y="1077" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.95" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="869" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="879.5" ></text>
</g>
<g >
<title>[Discord] (336,837,101 samples, 0.18%)</title><rect x="19.9" y="1701" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="22.87" y="1711.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="2021" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1191.19" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="63.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1061" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,946,340 samples, 0.01%)</title><rect x="185.9" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="188.93" y="1951.5" ></text>
</g>
<g >
<title>[libc.so.6] (80,546,551,638 samples, 43.28%)</title><rect x="210.7" y="2021" width="510.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="213.74" y="2031.5" >[libc.so.6]</text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="1957" width="13.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.45" y="1967.5" ></text>
</g>
<g >
<title>[[anon:v8]] (84,163,153 samples, 0.05%)</title><rect x="83.1" y="1413" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.11" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="309" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="319.5" ></text>
</g>
<g >
<title>execute_command_internal (106,641,229 samples, 0.06%)</title><rect x="189.1" y="1365" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="192.09" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="383.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,361,106 samples, 0.02%)</title><rect x="71.8" y="1061" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.77" y="1071.5" ></text>
</g>
<g >
<title>[libc.so.6] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="2021" width="6.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="195.38" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1813" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="645" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="655.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="405" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="415.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="69" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="79.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1557" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="527.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1381" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (252,584,895 samples, 0.14%)</title><rect x="195.1" y="1573" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.06" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="95.5" ></text>
</g>
<g >
<title>execute_command_internal (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1845" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.26" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (137,480,258 samples, 0.07%)</title><rect x="90.7" y="1413" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.74" y="1423.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1973" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1983.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,158,700 samples, 0.01%)</title><rect x="101.1" y="1637" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.12" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="1925" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.17" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1925" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1935.5" ></text>
</g>
<g >
<title>[bash] (30,077,467 samples, 0.02%)</title><rect x="189.1" y="1205" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1215.5" ></text>
</g>
<g >
<title>[Xorg] (21,278,539 samples, 0.01%)</title><rect x="181.1" y="1941" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.11" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (104,704,525 samples, 0.06%)</title><rect x="1187.5" y="1829" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.53" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (916,420,204 samples, 0.49%)</title><rect x="168.3" y="1941" width="5.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.33" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="319.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="815.5" ></text>
</g>
<g >
<title>[Discord] (241,121,806 samples, 0.13%)</title><rect x="106.0" y="1365" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.99" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="351.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1573" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1583.5" ></text>
</g>
<g >
<title>execve (17,705,973 samples, 0.01%)</title><rect x="200.5" y="2053" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="203.45" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="639.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="959.5" ></text>
</g>
<g >
<title>[Discord] (429,402,606 samples, 0.23%)</title><rect x="97.0" y="1765" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.96" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="319.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="559.5" ></text>
</g>
<g >
<title>[Discord] (204,958,560 samples, 0.11%)</title><rect x="178.9" y="1717" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1221" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="101" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="111.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1141" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1151.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="943.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="831.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="831.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1205" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,716,377 samples, 0.04%)</title><rect x="165.0" y="1797" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.02" y="1807.5" ></text>
</g>
<g >
<title>pa_config_parse (155,021,469 samples, 0.08%)</title><rect x="209.3" y="1957" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="212.31" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.11" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (178,383,630 samples, 0.10%)</title><rect x="67.1" y="981" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.06" y="991.5" ></text>
</g>
<g >
<title>[Discord] (22,942,183 samples, 0.01%)</title><rect x="174.6" y="1813" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.63" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (389,212,988 samples, 0.21%)</title><rect x="62.0" y="1045" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="64.99" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1493" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="1941" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1285" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.48" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (67,202,238 samples, 0.04%)</title><rect x="208.8" y="1781" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.84" y="1791.5" ></text>
</g>
<g >
<title>[[anon:v8]] (135,680,907 samples, 0.07%)</title><rect x="82.8" y="1429" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.78" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="159.5" ></text>
</g>
<g >
<title>[libc.so.6] (229,745,788 samples, 0.12%)</title><rect x="15.8" y="2037" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="18.78" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (38,907,267 samples, 0.02%)</title><rect x="83.3" y="1349" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.30" y="1359.5" ></text>
</g>
<g >
<title>recvmsg (63,390,721 samples, 0.03%)</title><rect x="14.8" y="1861" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="17.83" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1093" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1103.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1413" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="517" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="527.5" ></text>
</g>
<g >
<title>[Discord] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.71" y="1199.5" ></text>
</g>
<g >
<title>tmux (33,669,707 samples, 0.02%)</title><rect x="1189.7" y="2069" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1192.66" y="2079.5" ></text>
</g>
<g >
<title>[[anon:v8]] (768,145,761 samples, 0.41%)</title><rect x="90.4" y="1477" width="4.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="93.36" y="1487.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (29,660,842 samples, 0.02%)</title><rect x="1189.7" y="1989" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1192.68" y="1999.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1189" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1199.5" ></text>
</g>
<g >
<title>expand_string_assignment (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1749" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="210.26" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="117" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="127.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,964,148 samples, 0.01%)</title><rect x="201.4" y="1637" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.44" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (6,311,904,227 samples, 3.39%)</title><rect x="42.0" y="1637" width="40.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="45.00" y="1647.5" >[Di..</text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="725" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="735.5" ></text>
</g>
<g >
<title>[Discord] (3,754,211,867 samples, 2.02%)</title><rect x="141.2" y="1813" width="23.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="144.22" y="1823.5" >[..</text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="853" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="863.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1253" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.71" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="719.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1477" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="24.65" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="815.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="837" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (62,294,658 samples, 0.03%)</title><rect x="70.1" y="933" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="73.11" y="943.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1493" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (58,696,870 samples, 0.03%)</title><rect x="32.7" y="181" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="191.5" ></text>
</g>
<g >
<title>[libevent_core-2.1.so.7.0.1] (58,209,330 samples, 0.03%)</title><rect x="1188.4" y="2053" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1191.42" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1141" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="661" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="671.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1141" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.91" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="559.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,172,577,177 samples, 0.63%)</title><rect x="1167.0" y="1909" width="7.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1170.02" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="895.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="959.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="325" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="335.5" ></text>
</g>
<g >
<title>[libc.so.6] (233,418,787 samples, 0.13%)</title><rect x="175.5" y="2037" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="178.47" y="2047.5" ></text>
</g>
<g >
<title>execute_command_internal (18,459,234 samples, 0.01%)</title><rect x="199.8" y="1141" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.79" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="981" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="991.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="671.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1253" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.91" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="703.5" ></text>
</g>
<g >
<title>[Discord] (58,696,870 samples, 0.03%)</title><rect x="32.7" y="213" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="223.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1477" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="47.5" ></text>
</g>
<g >
<title>[Discord] (104,243,933 samples, 0.06%)</title><rect x="97.7" y="1445" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.74" y="1455.5" ></text>
</g>
<g >
<title>[unknown] (73,103,764 samples, 0.04%)</title><rect x="196.9" y="1573" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.89" y="1583.5" ></text>
</g>
<g >
<title>execute_command_internal (54,801,231 samples, 0.03%)</title><rect x="199.6" y="1157" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1167.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1141" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="1247.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1397" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="78.66" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,269,800 samples, 0.01%)</title><rect x="166.4" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="169.41" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1333" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1343.5" ></text>
</g>
<g >
<title>[libc.so.6] (60,680,285 samples, 0.03%)</title><rect x="198.7" y="2021" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="201.72" y="2031.5" ></text>
</g>
<g >
<title>operator new[] (37,043,655 samples, 0.02%)</title><rect x="99.1" y="1669" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="102.13" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="623.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="479.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (46,558,498 samples, 0.03%)</title><rect x="81.0" y="1605" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="83.97" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="69" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="79.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,692,077 samples, 0.01%)</title><rect x="64.0" y="245" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="66.97" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,230,026 samples, 0.01%)</title><rect x="15.1" y="1605" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.11" y="1615.5" ></text>
</g>
<g >
<title>baraction.sh (553,470,625 samples, 0.30%)</title><rect x="186.9" y="2069" width="3.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="189.91" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (26,157,889 samples, 0.01%)</title><rect x="173.8" y="1749" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="176.78" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="517" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="527.5" ></text>
</g>
<g >
<title>[Discord] (1,351,880,373 samples, 0.73%)</title><rect x="101.3" y="1701" width="8.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.34" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="85" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="95.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1109" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (2,782,228,064 samples, 1.50%)</title><rect x="56.3" y="1397" width="17.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="59.26" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.75" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="911.5" ></text>
</g>
<g >
<title>[Discord] (255,880,992 samples, 0.14%)</title><rect x="82.0" y="1573" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (34,099,374 samples, 0.02%)</title><rect x="78.7" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.72" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (411,150,519 samples, 0.22%)</title><rect x="12.0" y="1749" width="2.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.98" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="607.5" ></text>
</g>
<g >
<title>[libc.so.6] (59,402,966 samples, 0.03%)</title><rect x="183.7" y="1941" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="186.72" y="1951.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="1941" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="415.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="975.5" ></text>
</g>
<g >
<title>[Discord] (76,474,510 samples, 0.04%)</title><rect x="174.4" y="1861" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.43" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="533" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="543.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="991.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="213" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1461" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="607.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1157" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1167.5" ></text>
</g>
<g >
<title>[tmux] (16,005,413 samples, 0.01%)</title><rect x="1188.8" y="2021" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.79" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1445" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1455.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="293" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="303.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="991.5" ></text>
</g>
<g >
<title>[bash] (30,077,467 samples, 0.02%)</title><rect x="189.1" y="1237" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1205" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="133" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="143.5" ></text>
</g>
<g >
<title>_IO_fread (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1141" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="101.89" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1183.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,158,700 samples, 0.01%)</title><rect x="101.1" y="1669" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.12" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (1,856,967,070 samples, 1.00%)</title><rect x="58.7" y="1253" width="11.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="61.73" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1653" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1663.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="661" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,049,912 samples, 0.02%)</title><rect x="102.4" y="1269" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="105.40" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (8,983,874,760 samples, 4.83%)</title><rect x="111.0" y="1877" width="56.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.97" y="1887.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="933" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="943.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="181" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="191.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1365" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.52" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="549" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="559.5" ></text>
</g>
<g >
<title>[Discord] (31,966,558 samples, 0.02%)</title><rect x="162.1" y="1445" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="165.14" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (274,615,204 samples, 0.15%)</title><rect x="97.4" y="1653" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.39" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1045" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="1957" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="1967.5" ></text>
</g>
<g >
<title>[bash] (30,077,467 samples, 0.02%)</title><rect x="189.1" y="1253" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1445" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1455.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1125" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="501" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="511.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1077" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1087.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,333,554 samples, 0.01%)</title><rect x="73.4" y="1333" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="76.43" y="1343.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1381" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (29,332,311 samples, 0.02%)</title><rect x="32.9" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.93" y="127.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1413" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="991.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="495.5" ></text>
</g>
<g >
<title>execute_command_internal (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1637" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.40" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="991.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="783.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1349" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="47.5" ></text>
</g>
<g >
<title>[Discord] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1429" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="543.5" ></text>
</g>
<g >
<title>[Discord] (50,433,738 samples, 0.03%)</title><rect x="176.0" y="1781" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="179.03" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="533" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="543.5" ></text>
</g>
<g >
<title>pa_mainloop_iterate (73,680,852 samples, 0.04%)</title><rect x="721.5" y="1973" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="724.48" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="485" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="495.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1205" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.79" y="1215.5" ></text>
</g>
<g >
<title>[libc.so.6] (60,959,024 samples, 0.03%)</title><rect x="175.0" y="1861" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="177.99" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="671.5" ></text>
</g>
<g >
<title>[[anon:v8]] (83,499,678 samples, 0.04%)</title><rect x="76.5" y="1317" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.47" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1157" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1557" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1567.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,155,672 samples, 0.01%)</title><rect x="206.9" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.91" y="1839.5" ></text>
</g>
<g >
<title>[libc.so.6] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="245" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="68.88" y="255.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="32.49" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (124,941,517 samples, 0.07%)</title><rect x="16.1" y="1701" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.06" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (9,098,969,558 samples, 4.89%)</title><rect x="110.6" y="2021" width="57.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.58" y="2031.5" >[Disco..</text>
</g>
<g >
<title>execute_command_internal (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1701" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.40" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1071.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1461" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1471.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="351.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="175.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="495.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (101,980,462 samples, 0.05%)</title><rect x="106.3" y="1269" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.26" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="645" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="655.5" ></text>
</g>
<g >
<title>[Discord] (30,557,448 samples, 0.02%)</title><rect x="95.0" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.04" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="837" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="847.5" ></text>
</g>
<g >
<title>[Discord] (213,679,119 samples, 0.11%)</title><rect x="15.8" y="1989" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1999.5" ></text>
</g>
<g >
<title>__libc_start_main (370,380,178 samples, 0.20%)</title><rect x="181.0" y="2037" width="2.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="183.99" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="703.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1221" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1231.5" ></text>
</g>
<g >
<title>[[i915]] (28,811,152 samples, 0.02%)</title><rect x="206.3" y="1957" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.27" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1445" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1973" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (517,602,829 samples, 0.28%)</title><rect x="177.2" y="2005" width="3.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="223.5" ></text>
</g>
<g >
<title>v8::Function::Call (185,026,591 samples, 0.10%)</title><rect x="95.5" y="1733" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.49" y="1743.5" ></text>
</g>
<g >
<title>[[anon:v8]] (53,814,428 samples, 0.03%)</title><rect x="83.3" y="1381" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.30" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (31,003,816 samples, 0.02%)</title><rect x="72.8" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="75.85" y="1247.5" ></text>
</g>
<g >
<title>node::InternalMakeCallback (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1589" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="83.61" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (89,469,747 samples, 0.05%)</title><rect x="173.4" y="1781" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="176.38" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="869" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="879.5" ></text>
</g>
<g >
<title>[Discord] (70,365,635 samples, 0.04%)</title><rect x="81.4" y="1461" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.44" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1135.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="511.5" ></text>
</g>
<g >
<title>[Discord] (58,696,870 samples, 0.03%)</title><rect x="32.7" y="149" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="159.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1381" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1391.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1557" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (28,418,143 samples, 0.02%)</title><rect x="67.5" y="821" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.45" y="831.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="677" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="687.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (136,971,460 samples, 0.07%)</title><rect x="86.0" y="1397" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.98" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="47.5" ></text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="1957" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="1967.5" ></text>
</g>
<g >
<title>[[anon:v8]] (22,286,509 samples, 0.01%)</title><rect x="86.7" y="1237" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="89.71" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="495.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,583,147,633 samples, 0.85%)</title><rect x="25.7" y="1477" width="10.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.65" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1877" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1941" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1509" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (233,418,787 samples, 0.13%)</title><rect x="175.5" y="2005" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.47" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (38,950,096 samples, 0.02%)</title><rect x="174.5" y="1829" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.53" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (336,209,880 samples, 0.18%)</title><rect x="1172.2" y="1829" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1175.16" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="191.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1989" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="39.37" y="1999.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1349" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (277,513,753 samples, 0.15%)</title><rect x="20.1" y="1685" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="23.10" y="1695.5" ></text>
</g>
<g >
<title>[bash] (55,148,749 samples, 0.03%)</title><rect x="188.2" y="1541" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.19" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (2,630,925,333 samples, 1.41%)</title><rect x="56.9" y="1349" width="16.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="59.85" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="165" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,101,318,079 samples, 1.13%)</title><rect x="1174.9" y="1909" width="13.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.87" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,391,377 samples, 0.02%)</title><rect x="15.4" y="1717" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="18.43" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (57,501,651 samples, 0.03%)</title><rect x="68.7" y="917" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.72" y="927.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="543.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1765" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1775.5" ></text>
</g>
<g >
<title>[libc.so.6] (75,601,888 samples, 0.04%)</title><rect x="181.7" y="1941" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="184.73" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (201,211,120 samples, 0.11%)</title><rect x="720.2" y="1941" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.18" y="1951.5" ></text>
</g>
<g >
<title>[[i915]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1029" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="110.52" y="1039.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (99,812,030 samples, 0.05%)</title><rect x="102.0" y="1381" width="0.6" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="104.98" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1893" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (24,066,459 samples, 0.01%)</title><rect x="196.2" y="1413" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.24" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (44,704,013 samples, 0.02%)</title><rect x="78.0" y="1413" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.00" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1525" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="453" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="463.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,570,289 samples, 0.01%)</title><rect x="165.6" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.61" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (34,365,532 samples, 0.02%)</title><rect x="178.0" y="1749" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.98" y="1759.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,095,643 samples, 0.03%)</title><rect x="191.5" y="1589" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.51" y="1599.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,812,325 samples, 0.01%)</title><rect x="206.6" y="2037" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.63" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="191.5" ></text>
</g>
<g >
<title>[Discord] (64,911,619 samples, 0.03%)</title><rect x="32.2" y="293" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.17" y="303.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="607.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="495.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="373" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="383.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1349" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (991,037,780 samples, 0.53%)</title><rect x="58.7" y="1237" width="6.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="61.73" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="495.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="351.5" ></text>
</g>
<g >
<title>[dbus-broker] (22,854,337 samples, 0.01%)</title><rect x="198.7" y="1957" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="201.72" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (21,520,434 samples, 0.01%)</title><rect x="91.5" y="1285" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.47" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1151.5" ></text>
</g>
<g >
<title>[rg] (123,383,476 samples, 0.07%)</title><rect x="725.4" y="1861" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.40" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,981,933 samples, 0.01%)</title><rect x="191.7" y="1461" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.73" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="197" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="207.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="719.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait (90,541,185 samples, 0.05%)</title><rect x="176.4" y="1877" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.36" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="463.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="245" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="255.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="303.5" ></text>
</g>
<g >
<title>[[anon:v8]] (255,880,992 samples, 0.14%)</title><rect x="82.0" y="1557" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.02" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="223.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="821" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="831.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="341" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="351.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1749" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1759.5" ></text>
</g>
<g >
<title>_dbus_header_set_field_basic (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1845" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="186.34" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="607.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="751.5" ></text>
</g>
<g >
<title>[Discord] (596,497,036 samples, 0.32%)</title><rect x="60.7" y="1109" width="3.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.67" y="1119.5" ></text>
</g>
<g >
<title>expand_string_assignment (58,364,583 samples, 0.03%)</title><rect x="187.6" y="1461" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="190.64" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (69,905,641 samples, 0.04%)</title><rect x="175.9" y="1829" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.91" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1269" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="86.11" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="383.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="63.5" ></text>
</g>
<g >
<title>[Discord] (195,603,426 samples, 0.11%)</title><rect x="90.6" y="1445" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.55" y="1455.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1029" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1039.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1173" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (8,835,535,918 samples, 4.75%)</title><rect x="39.2" y="1717" width="56.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="42.21" y="1727.5" >[Disc..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,521,207 samples, 0.03%)</title><rect x="79.5" y="1477" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.55" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="991.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1263.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,663,556 samples, 0.05%)</title><rect x="78.5" y="1557" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.53" y="1567.5" ></text>
</g>
<g >
<title>[[anon:v8]] (695,816,235 samples, 0.37%)</title><rect x="31.3" y="581" width="4.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="591.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="485" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="495.5" ></text>
</g>
<g >
<title>ksoftirqd/7 (20,514,512 samples, 0.01%)</title><rect x="205.9" y="2069" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="208.91" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (294,027,694 samples, 0.16%)</title><rect x="97.3" y="1669" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.27" y="1679.5" ></text>
</g>
<g >
<title>[[nvidia]] (22,697,804 samples, 0.01%)</title><rect x="1174.3" y="1781" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1177.31" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (44,168,990 samples, 0.02%)</title><rect x="180.5" y="1813" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.54" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="533" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="543.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1541" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1551.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (44,418,653 samples, 0.02%)</title><rect x="42.3" y="1429" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="45.31" y="1439.5" ></text>
</g>
<g >
<title>reader_loop (120,166,233 samples, 0.06%)</title><rect x="199.3" y="1989" width="0.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="202.32" y="1999.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,557,448 samples, 0.02%)</title><rect x="95.0" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.04" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="1093" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.47" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="261" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="271.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="943.5" ></text>
</g>
<g >
<title>[Discord] (190,063,212 samples, 0.10%)</title><rect x="13.1" y="1541" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1551.5" ></text>
</g>
<g >
<title>command_substitute (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1381" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="191.54" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="831.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="341" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="351.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="911.5" ></text>
</g>
<g >
<title>_start (370,380,178 samples, 0.20%)</title><rect x="181.0" y="2053" width="2.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="183.99" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,331,295,262 samples, 0.72%)</title><rect x="27.2" y="1253" width="8.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.25" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="405" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="415.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1413" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="1199.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1365" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1365" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="501" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="511.5" ></text>
</g>
<g >
<title>[bash] (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1461" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.54" y="1471.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="485" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="495.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="2053" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1365" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.75" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="447.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="373" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="383.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="767.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (194,407,554 samples, 0.10%)</title><rect x="63.2" y="677" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.22" y="687.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="127.5" ></text>
</g>
<g >
<title>[Discord] (31,110,570 samples, 0.02%)</title><rect x="107.2" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.25" y="1279.5" ></text>
</g>
<g >
<title>[libc.so.6] (272,040,487 samples, 0.15%)</title><rect x="184.1" y="1893" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="187.10" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1493" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1503.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="197" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="207.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="287.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1429" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1439.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,627,135 samples, 0.01%)</title><rect x="104.6" y="1365" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.61" y="1375.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (132,740,561 samples, 0.07%)</title><rect x="167.0" y="1829" width="0.9" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="170.03" y="1839.5" ></text>
</g>
<g >
<title>[libc.so.6] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1909" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.26" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.95" y="1231.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (72,868,064 samples, 0.04%)</title><rect x="23.3" y="1973" width="0.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.33" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.57" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="831.5" ></text>
</g>
<g >
<title>execute_command_internal (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1877" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.34" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1109" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="943.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="655.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1013" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1023.5" ></text>
</g>
<g >
<title>[Xorg] (101,068,118 samples, 0.05%)</title><rect x="182.3" y="1989" width="0.7" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="185.32" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="549" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="559.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="127.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="2005" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="341" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="351.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="591.5" ></text>
</g>
<g >
<title>[libpulsecommon-17.0.so] (61,342,948 samples, 0.03%)</title><rect x="210.3" y="1941" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="213.29" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="415.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="559.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="767.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1269" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1333" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,912,171 samples, 0.02%)</title><rect x="80.1" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.06" y="1583.5" ></text>
</g>
<g >
<title>[bash] (28,984,771 samples, 0.02%)</title><rect x="207.3" y="1829" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.26" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="229" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="239.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1237" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="405" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="415.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="207.5" ></text>
</g>
<g >
<title>[[anon:v8]] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1221" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.16" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="943.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217,063,870 samples, 0.12%)</title><rect x="190.5" y="1669" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.51" y="1679.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="565" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="575.5" ></text>
</g>
<g >
<title>parse_and_execute (29,968,529 samples, 0.02%)</title><rect x="199.6" y="693" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="202.60" y="703.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="149" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="159.5" ></text>
</g>
<g >
<title>[[i915]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1781" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.38" y="1791.5" ></text>
</g>
<g >
<title>[perf-1165143.map] (52,174,351 samples, 0.03%)</title><rect x="98.7" y="1365" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="101.73" y="1375.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1509" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="104.92" y="1519.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="901" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="997" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="109.91" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="639.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="373" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="383.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="1141" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="1151.5" ></text>
</g>
<g >
<title>[[i915]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1781" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.91" y="1791.5" ></text>
</g>
<g >
<title>EGL_SwapBuffers (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1557" width="0.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="104.92" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="911.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1909" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1919.5" ></text>
</g>
<g >
<title>make_child (37,174,345 samples, 0.02%)</title><rect x="188.7" y="1365" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="191.65" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,084,316 samples, 0.03%)</title><rect x="189.4" y="1253" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.38" y="1263.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="1093" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="2021" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (135,031,232 samples, 0.07%)</title><rect x="13.3" y="1397" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.33" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (24,066,459 samples, 0.01%)</title><rect x="196.2" y="1397" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.24" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (82,369,417 samples, 0.04%)</title><rect x="86.2" y="1349" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.18" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,069,955 samples, 0.02%)</title><rect x="99.9" y="1733" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="102.87" y="1743.5" ></text>
</g>
<g >
<title>[libell.so.0.0.2] (27,507,977 samples, 0.01%)</title><rect x="204.4" y="1829" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="207.42" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1877" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1887.5" ></text>
</g>
<g >
<title>cat (309,216,508 samples, 0.17%)</title><rect x="190.4" y="2069" width="2.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="193.42" y="2079.5" ></text>
</g>
<g >
<title>[rg] (115,382,791 samples, 0.06%)</title><rect x="725.4" y="1845" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.45" y="1855.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,153,827 samples, 0.02%)</title><rect x="1188.5" y="1829" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.52" y="1839.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1221" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.94" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="277" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="287.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="799.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="325" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="335.5" ></text>
</g>
<g >
<title>[Discord] (210,531,328 samples, 0.11%)</title><rect x="15.8" y="1877" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.78" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="95.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="1077" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (59,065,039 samples, 0.03%)</title><rect x="88.0" y="1317" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.98" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,420,703,829 samples, 37.84%)</title><rect x="727.9" y="2021" width="446.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.94" y="2031.5" >[[kernel.kallsyms]]</text>
</g>
<g >
<title>[Discord] (25,888,817 samples, 0.01%)</title><rect x="77.2" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.16" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (33,398,159 samples, 0.02%)</title><rect x="91.2" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.21" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="789" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="799.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1429" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1183.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1269" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="741" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="751.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="725" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="735.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1397" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="107.87" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="511.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1013" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="351.5" ></text>
</g>
<g >
<title>v8::Function::New (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1109" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="96.95" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="303.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="863.5" ></text>
</g>
<g >
<title>[libc.so.6] (39,386,536 samples, 0.02%)</title><rect x="209.8" y="1733" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.80" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (244,889,530 samples, 0.13%)</title><rect x="62.9" y="773" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.90" y="783.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1621" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1631.5" ></text>
</g>
<g >
<title>iwctl (173,497,180 samples, 0.09%)</title><rect x="203.9" y="2069" width="1.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="206.87" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.49" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (242,111,307 samples, 0.13%)</title><rect x="12.8" y="1589" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="15.81" y="1599.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.80" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,478,281 samples, 0.01%)</title><rect x="165.9" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.85" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (62,393,884 samples, 0.03%)</title><rect x="91.0" y="1157" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.03" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (32,964,903 samples, 0.02%)</title><rect x="83.9" y="1541" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1551.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="2005" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="431.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="239.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1327.5" ></text>
</g>
<g >
<title>command_substitute (54,046,552 samples, 0.03%)</title><rect x="187.6" y="1413" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="190.64" y="1423.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,440,397 samples, 0.02%)</title><rect x="96.5" y="1525" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.48" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="719.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="421" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="431.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="111.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="959.5" ></text>
</g>
<g >
<title>[Discord] (27,113,570 samples, 0.01%)</title><rect x="85.5" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.53" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1813" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.01" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1381" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="271.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="399.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1349" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,630,519 samples, 0.02%)</title><rect x="92.3" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,348,725 samples, 0.02%)</title><rect x="83.1" y="1285" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="86.11" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1077" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.01" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="847.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="79.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="149" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="38.69" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="949" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="959.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="335.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1813" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,560,937 samples, 0.01%)</title><rect x="194.7" y="1621" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.74" y="1631.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="2053" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (26,843,266 samples, 0.01%)</title><rect x="76.7" y="1237" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.65" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="111.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="949" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="959.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1093" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1605" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.95" y="1615.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="293" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="303.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1199.5" ></text>
</g>
<g >
<title>[[anon:v8]] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.08" y="975.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1317" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="1135.5" ></text>
</g>
<g >
<title>[[anon:v8]] (91,095,028 samples, 0.05%)</title><rect x="72.3" y="1061" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="75.27" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="95.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1381" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="325" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="335.5" ></text>
</g>
<g >
<title>[Discord] (28,762,376 samples, 0.02%)</title><rect x="91.6" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.61" y="1311.5" ></text>
</g>
<g >
<title>execute_command (90,955,779 samples, 0.05%)</title><rect x="199.4" y="1717" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.40" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (29,404,953 samples, 0.02%)</title><rect x="31.8" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.79" y="143.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1541" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1269" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="965" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="469" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="479.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="725" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="735.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (252,584,895 samples, 0.14%)</title><rect x="195.1" y="1621" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.06" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1829" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1013" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1023.5" ></text>
</g>
<g >
<title>[[anon:v8]] (44,262,980 samples, 0.02%)</title><rect x="95.0" y="1381" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.95" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="773" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,256,832 samples, 0.02%)</title><rect x="42.3" y="1333" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="45.35" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (40,129,634 samples, 0.02%)</title><rect x="98.8" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.79" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="149" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="159.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1861" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,107,673 samples, 0.03%)</title><rect x="110.2" y="1893" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.24" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1509" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="255.5" ></text>
</g>
<g >
<title>[sudo] (27,688,256 samples, 0.01%)</title><rect x="727.7" y="1973" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="730.68" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,716,377 samples, 0.04%)</title><rect x="165.0" y="1813" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.02" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1733" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1743.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1541" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="143.5" ></text>
</g>
<g >
<title>[Discord] (480,998,486 samples, 0.26%)</title><rect x="11.6" y="1829" width="3.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.63" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1653" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="37" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="47.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="895.5" ></text>
</g>
<g >
<title>[Discord] (84,497,575 samples, 0.05%)</title><rect x="90.9" y="1253" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="93.94" y="1263.5" ></text>
</g>
<g >
<title>make_child (37,106,611 samples, 0.02%)</title><rect x="188.3" y="1381" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="191.27" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="933" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="943.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="735.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1989" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,107,673 samples, 0.03%)</title><rect x="110.2" y="1909" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.24" y="1919.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (17,627,135 samples, 0.01%)</title><rect x="104.6" y="1381" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.61" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="367.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="335.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="991.5" ></text>
</g>
<g >
<title>[Discord] (37,241,749 samples, 0.02%)</title><rect x="85.3" y="1333" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.30" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="511.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="255.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,422,745 samples, 0.02%)</title><rect x="164.2" y="1765" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="167.23" y="1775.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="335.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="741" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="751.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="975.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="437" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="447.5" ></text>
</g>
<g >
<title>[Discord] (27,713,483 samples, 0.01%)</title><rect x="76.5" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.47" y="1263.5" ></text>
</g>
<g >
<title>[libc.so.6] (34,290,759 samples, 0.02%)</title><rect x="99.8" y="1765" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="102.84" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1183.5" ></text>
</g>
<g >
<title>[[i915]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1173" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="112.00" y="1183.5" ></text>
</g>
<g >
<title>__libc_fork (26,306,216 samples, 0.01%)</title><rect x="187.5" y="1317" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="190.48" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="847.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (30,675,658 samples, 0.02%)</title><rect x="78.5" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.53" y="1327.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,041,826 samples, 0.02%)</title><rect x="64.8" y="997" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.84" y="1007.5" ></text>
</g>
<g >
<title>[libpulse.so.0.24.3] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1941" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1191.26" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1077" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="511.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="975.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1183.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1621" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="17.34" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="1989" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1999.5" ></text>
</g>
<g >
<title>[ghostty] (398,800,052 samples, 0.21%)</title><rect x="722.0" y="2053" width="2.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="725.01" y="2063.5" ></text>
</g>
<g >
<title>PickPointer (32,772,210 samples, 0.02%)</title><rect x="182.4" y="1877" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="185.37" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="2037" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="255.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="597" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="607.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,557,448 samples, 0.02%)</title><rect x="95.0" y="1285" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.04" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (306,023,315 samples, 0.16%)</title><rect x="33.7" y="165" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="36.75" y="175.5" ></text>
</g>
<g >
<title>[Discord] (314,000,664 samples, 0.17%)</title><rect x="178.5" y="1845" width="2.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.47" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="735.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="335.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="981" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,041,123 samples, 0.03%)</title><rect x="175.0" y="1797" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="178.04" y="1807.5" ></text>
</g>
<g >
<title>execute_command (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1893" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.34" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="959.5" ></text>
</g>
<g >
<title>execute_command_internal (29,968,529 samples, 0.02%)</title><rect x="199.6" y="661" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.60" y="671.5" ></text>
</g>
<g >
<title>[[anon:v8]] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1365" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="84.89" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="245" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1477" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1487.5" ></text>
</g>
<g >
<title>[[anon:v8]] (63,987,898 samples, 0.03%)</title><rect x="78.7" y="1317" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.72" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1221" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1231.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.8400.3] (1,536,939,216 samples, 0.83%)</title><rect x="100.3" y="1829" width="9.7" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="103.30" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="853" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="863.5" ></text>
</g>
<g >
<title>[libgdk-3.so.0.2417.32] (23,041,781 samples, 0.01%)</title><rect x="99.7" y="1765" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="102.68" y="1775.5" ></text>
</g>
<g >
<title>mux (66,374,034 samples, 0.04%)</title><rect x="207.0" y="2069" width="0.5" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="210.04" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="815.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1237" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.91" y="1247.5" ></text>
</g>
<g >
<title>[[anon:v8]] (63,987,898 samples, 0.03%)</title><rect x="78.7" y="1301" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.72" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="917" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="927.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1077" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,544,220 samples, 0.03%)</title><rect x="191.6" y="1573" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="194.57" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (55,415,241 samples, 0.03%)</title><rect x="27.2" y="1189" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.25" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="581" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="981" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="110.52" y="991.5" ></text>
</g>
<g >
<title>[Discord] (389,212,988 samples, 0.21%)</title><rect x="62.0" y="1029" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="64.99" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1269" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="191.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="335.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="261" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="2053" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="943.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="901" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="911.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1909" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="229" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (185,964,602 samples, 0.10%)</title><rect x="190.7" y="1653" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.71" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (182,568,227 samples, 0.10%)</title><rect x="20.7" y="1653" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="23.70" y="1663.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1365" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="405" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="415.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="799.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1621" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="735.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1157" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1167.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (29,216,886 samples, 0.02%)</title><rect x="180.6" y="1557" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="183.63" y="1567.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1221" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="108.01" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="367.5" ></text>
</g>
<g >
<title>[Discord] (63,299,064 samples, 0.03%)</title><rect x="93.9" y="1365" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1375.5" ></text>
</g>
<g >
<title>pkey_set (78,065,795 samples, 0.04%)</title><rect x="197.3" y="1621" width="0.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="200.35" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1429" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="613" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="623.5" ></text>
</g>
<g >
<title>[at-spi2-registryd] (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1941" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="186.34" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="485" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="495.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="303.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (21,512,672 samples, 0.01%)</title><rect x="183.3" y="1861" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="186.34" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1253" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.20" y="47.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="175.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (42,218,400 samples, 0.02%)</title><rect x="106.0" y="1317" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.99" y="1327.5" ></text>
</g>
<g >
<title>[intel_drv.so] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="2021" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="113.17" y="2031.5" ></text>
</g>
<g >
<title>_start (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="2053" width="73.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="39.55" y="2063.5" >_start</text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="879.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="325" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1807.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (20,947,502 samples, 0.01%)</title><rect x="107.7" y="1365" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="110.66" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="85" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="95.5" ></text>
</g>
<g >
<title>[Discord] (95,955,290 samples, 0.05%)</title><rect x="16.2" y="1541" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.20" y="1551.5" ></text>
</g>
<g >
<title>pa_log_set_ident (140,297,799 samples, 0.08%)</title><rect x="209.3" y="1893" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="212.31" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (268,447,138 samples, 0.14%)</title><rect x="719.8" y="1957" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="722.76" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,570,289 samples, 0.01%)</title><rect x="165.6" y="1685" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.61" y="1695.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="655.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="453" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="463.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="757" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,574,556 samples, 0.02%)</title><rect x="64.1" y="405" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.13" y="415.5" ></text>
</g>
<g >
<title>[Discord] (1,121,431,354 samples, 0.60%)</title><rect x="102.6" y="1557" width="7.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="105.61" y="1567.5" ></text>
</g>
<g >
<title>[libc.so.6] (272,040,487 samples, 0.15%)</title><rect x="184.1" y="1909" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="187.10" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1461" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="575.5" ></text>
</g>
<g >
<title>execute_command (470,727,085 samples, 0.25%)</title><rect x="187.1" y="1893" width="3.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.11" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (30,683,496 samples, 0.02%)</title><rect x="88.8" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.79" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="165" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="175.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1445" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1455.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1029" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1039.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="501" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="511.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="229" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="239.5" ></text>
</g>
<g >
<title>[Discord] (30,096,320 samples, 0.02%)</title><rect x="75.2" y="1093" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.15" y="1103.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="197" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="207.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="271.5" ></text>
</g>
<g >
<title>[tmux] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="1941" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.99" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="949" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="959.5" ></text>
</g>
<g >
<title>[bash] (19,436,402 samples, 0.01%)</title><rect x="207.1" y="1669" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="210.11" y="1679.5" ></text>
</g>
<g >
<title>[intel_drv.so] (36,498,817 samples, 0.02%)</title><rect x="182.7" y="1957" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="185.65" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (808,583,684 samples, 0.43%)</title><rect x="193.2" y="1813" width="5.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="196.22" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,292,029 samples, 0.01%)</title><rect x="186.8" y="1797" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.75" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="933" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.99" y="943.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1509" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="112.00" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (48,846,085 samples, 0.03%)</title><rect x="183.0" y="1909" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.03" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (40,092,713 samples, 0.02%)</title><rect x="69.9" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.86" y="959.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="661" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="671.5" ></text>
</g>
<g >
<title>[Discord] (245,218,875 samples, 0.13%)</title><rect x="178.8" y="1813" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.81" y="1823.5" ></text>
</g>
<g >
<title>[bash] (18,459,234 samples, 0.01%)</title><rect x="199.8" y="1125" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.79" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (378,974,635 samples, 0.20%)</title><rect x="19.6" y="1733" width="2.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="22.60" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="117" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="29.03" y="127.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="447.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="405" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="415.5" ></text>
</g>
<g >
<title>[rg] (24,485,274 samples, 0.01%)</title><rect x="725.9" y="1749" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.87" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="351.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1125" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1135.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1413" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="104.92" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1973" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="559.5" ></text>
</g>
<g >
<title>[ghostty] (161,954,225 samples, 0.09%)</title><rect x="200.8" y="2037" width="1.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="203.83" y="2047.5" ></text>
</g>
<g >
<title>ioctl (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1157" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="110.52" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="479.5" ></text>
</g>
<g >
<title>[Discord] (158,184,541 samples, 0.08%)</title><rect x="63.5" y="613" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="1989" width="13.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.45" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (30,631,170 samples, 0.02%)</title><rect x="98.5" y="1461" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.53" y="1471.5" ></text>
</g>
<g >
<title>[[i915]] (16,898,318 samples, 0.01%)</title><rect x="206.8" y="1829" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="209.81" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="639.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="447.5" ></text>
</g>
<g >
<title>[Discord] (431,842,544 samples, 0.23%)</title><rect x="11.8" y="1781" width="2.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.85" y="1791.5" ></text>
</g>
<g >
<title>execute_command (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1477" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1487.5" ></text>
</g>
<g >
<title>[bash] (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1845" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.34" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="271.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="629" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="639.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="383.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1029" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1039.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1237" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="303.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="581" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="591.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="661" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="671.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="565" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="575.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="367.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1301" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="117" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="127.5" ></text>
</g>
<g >
<title>[Discord] (27,746,210 samples, 0.01%)</title><rect x="88.5" y="1317" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.49" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="143.5" ></text>
</g>
<g >
<title>[libc.so.6] (15,934,192 samples, 0.01%)</title><rect x="21.7" y="1525" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="24.65" y="1535.5" ></text>
</g>
<g >
<title>[libc.so.6] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="2037" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.73" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1189" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,313,299 samples, 0.01%)</title><rect x="200.1" y="1861" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.14" y="1871.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (70,553,571 samples, 0.04%)</title><rect x="108.3" y="1445" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="111.32" y="1455.5" ></text>
</g>
<g >
<title>kworker/4:0-i91 (38,760,370 samples, 0.02%)</title><rect x="206.3" y="2069" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="209.27" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (62,772,766 samples, 0.03%)</title><rect x="92.3" y="1365" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1375.5" ></text>
</g>
<g >
<title>[cat] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="2053" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="193.50" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1413" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="78.66" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="197" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1573" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1007.5" ></text>
</g>
<g >
<title>pa_mainloop_run (35,895,223 samples, 0.02%)</title><rect x="1188.2" y="1989" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1191.19" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="447.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (75,770,179 samples, 0.04%)</title><rect x="23.3" y="2037" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="26.31" y="2047.5" ></text>
</g>
<g >
<title>pthread_getspecific (29,245,186 samples, 0.02%)</title><rect x="166.0" y="1797" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="168.98" y="1807.5" ></text>
</g>
<g >
<title>[[anon:v8]] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="1141" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.98" y="1151.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="383.5" ></text>
</g>
<g >
<title>__munmap (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1845" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="724.53" y="1855.5" ></text>
</g>
<g >
<title>gtk_widget_snapshot_child (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1605" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="204.25" y="1615.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,069,955 samples, 0.02%)</title><rect x="99.9" y="1685" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="102.87" y="1695.5" ></text>
</g>
<g >
<title>[[anon:v8]] (717,676,080 samples, 0.39%)</title><rect x="31.1" y="661" width="4.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.14" y="671.5" ></text>
</g>
<g >
<title>[libc.so.6] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="2053" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="177.14" y="2063.5" ></text>
</g>
<g >
<title>[libell.so.0.0.2] (89,834,214 samples, 0.05%)</title><rect x="204.1" y="1925" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="207.06" y="1935.5" ></text>
</g>
<g >
<title>__libc_start_main (354,899,697 samples, 0.19%)</title><rect x="183.6" y="2037" width="2.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="186.62" y="2047.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (16,756,784 samples, 0.01%)</title><rect x="23.2" y="2005" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.21" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1301" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1311.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (80,063,324 samples, 0.04%)</title><rect x="186.1" y="1957" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="189.11" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (1,333,175,721 samples, 0.72%)</title><rect x="101.4" y="1669" width="8.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="104.41" y="1679.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="229" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="239.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1749" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="351.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="437" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="447.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1103.5" ></text>
</g>
<g >
<title>[Xorg] (80,866,150 samples, 0.04%)</title><rect x="182.4" y="1973" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="185.37" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,028,126 samples, 0.01%)</title><rect x="64.3" y="533" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.33" y="543.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="991.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="431.5" ></text>
</g>
<g >
<title>[[anon:v8]] (102,387,371 samples, 0.06%)</title><rect x="69.9" y="965" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.86" y="975.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="85" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="95.5" ></text>
</g>
<g >
<title>[Discord] (865,929,290 samples, 0.47%)</title><rect x="65.0" y="1221" width="5.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.01" y="1231.5" ></text>
</g>
<g >
<title>v8::Value::IsExternal (26,900,569 samples, 0.01%)</title><rect x="77.8" y="1237" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="80.82" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="901" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="911.5" ></text>
</g>
<g >
<title>[Discord] (95,032,790 samples, 0.05%)</title><rect x="77.7" y="1461" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="80.74" y="1471.5" ></text>
</g>
<g >
<title>[[anon:v8]] (36,146,201 samples, 0.02%)</title><rect x="78.1" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.05" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="607.5" ></text>
</g>
<g >
<title>pactl (517,056,448 samples, 0.28%)</title><rect x="207.5" y="2069" width="3.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="210.46" y="2079.5" ></text>
</g>
<g >
<title>[at-spi2-registryd] (22,768,496 samples, 0.01%)</title><rect x="183.3" y="2053" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="186.34" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="885" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="895.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="389" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,905,361 samples, 0.02%)</title><rect x="206.8" y="1989" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.75" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,978,568 samples, 0.02%)</title><rect x="182.7" y="1813" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="185.67" y="1823.5" ></text>
</g>
<g >
<title>[Discord] (95,362,779 samples, 0.05%)</title><rect x="26.4" y="1269" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="1045" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="1055.5" ></text>
</g>
<g >
<title>[unknown] (16,695,640 samples, 0.01%)</title><rect x="196.3" y="1301" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.29" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1813" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (21,756,201 samples, 0.01%)</title><rect x="196.5" y="1221" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.53" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (46,884,639 samples, 0.03%)</title><rect x="89.0" y="1301" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1279.5" ></text>
</g>
<g >
<title>cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate (25,916,099 samples, 0.01%)</title><rect x="32.6" y="37" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="35.58" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1333" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,645,738 samples, 0.01%)</title><rect x="189.6" y="1125" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="192.61" y="1135.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (29,229,326 samples, 0.02%)</title><rect x="725.2" y="1957" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="728.16" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,465,139 samples, 0.01%)</title><rect x="726.3" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.27" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="399.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,559,656 samples, 0.01%)</title><rect x="24.0" y="2021" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.96" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="869" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="879.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="431.5" ></text>
</g>
<g >
<title>[Discord] (20,884,624 samples, 0.01%)</title><rect x="89.8" y="1445" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.76" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="277" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="287.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1413" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (78,640,551 samples, 0.04%)</title><rect x="65.6" y="917" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.57" y="927.5" ></text>
</g>
<g >
<title>[Discord] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.53" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="437" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="447.5" ></text>
</g>
<g >
<title>[[anon:v8]] (614,376,254 samples, 0.33%)</title><rect x="31.8" y="453" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.79" y="463.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="63.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="1071.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1349" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1215.5" ></text>
</g>
<g >
<title>[rg] (136,536,155 samples, 0.07%)</title><rect x="725.4" y="1941" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.37" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (165,345,361 samples, 0.09%)</title><rect x="15.9" y="1813" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.95" y="1823.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (24,435,030 samples, 0.01%)</title><rect x="106.9" y="1173" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="109.91" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="101" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="111.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1045" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1055.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="693" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="703.5" ></text>
</g>
<g >
<title>make_child (28,232,975 samples, 0.02%)</title><rect x="187.6" y="1397" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="190.64" y="1407.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,230,760 samples, 0.01%)</title><rect x="22.4" y="1877" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.36" y="1887.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (59,877,951 samples, 0.03%)</title><rect x="200.8" y="1973" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="203.83" y="1983.5" ></text>
</g>
<g >
<title>[[anon:v8]] (94,141,744 samples, 0.05%)</title><rect x="93.8" y="1397" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.75" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="943.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="879.5" ></text>
</g>
<g >
<title>[unknown] (45,604,850 samples, 0.02%)</title><rect x="180.5" y="1941" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="183.53" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="149" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="159.5" ></text>
</g>
<g >
<title>[Discord] (124,941,517 samples, 0.07%)</title><rect x="16.1" y="1733" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="19.06" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="757" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="67.68" y="767.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,955,830 samples, 0.01%)</title><rect x="104.9" y="1365" width="0.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="107.87" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="799.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="1237" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (37,025,977 samples, 0.02%)</title><rect x="179.5" y="1525" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.55" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="69" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="79.5" ></text>
</g>
<g >
<title>[dbus-broker] (60,680,285 samples, 0.03%)</title><rect x="198.7" y="2005" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="201.72" y="2015.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,447,232 samples, 0.02%)</title><rect x="200.6" y="2021" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="203.57" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (119,195,929 samples, 0.06%)</title><rect x="81.3" y="1605" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.26" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (9,497,438,482 samples, 5.10%)</title><rect x="36.7" y="1813" width="60.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.72" y="1823.5" >[Disco..</text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="1093" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (195,291,512 samples, 0.10%)</title><rect x="84.7" y="1429" width="1.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="87.74" y="1439.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1173" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="229" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.49" y="239.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,649,783 samples, 0.01%)</title><rect x="71.2" y="1317" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="74.19" y="1327.5" ></text>
</g>
<g >
<title>[[i915]] (16,737,938 samples, 0.01%)</title><rect x="205.9" y="1797" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.91" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,552,570 samples, 0.01%)</title><rect x="721.5" y="1829" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="724.53" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="831.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="399.5" ></text>
</g>
<g >
<title>execute_command_internal (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1861" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="431.5" ></text>
</g>
<g >
<title>[[anon:v8]] (145,203,838 samples, 0.08%)</title><rect x="88.7" y="1333" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="91.66" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1045" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.31" y="1055.5" ></text>
</g>
<g >
<title>swapper (72,601,602,676 samples, 39.01%)</title><rect x="727.9" y="2069" width="460.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="730.85" y="2079.5" >swapper</text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="511.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="63.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="885" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="895.5" ></text>
</g>
<g >
<title>[iwctl] (22,418,335 samples, 0.01%)</title><rect x="204.1" y="1861" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="207.06" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (26,474,007 samples, 0.01%)</title><rect x="195.9" y="1269" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.87" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="1087.5" ></text>
</g>
<g >
<title>[[i915]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1797" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="208.38" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (31,789,922 samples, 0.02%)</title><rect x="95.8" y="1381" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="159.5" ></text>
</g>
<g >
<title>execute_command_internal (123,363,191 samples, 0.07%)</title><rect x="187.4" y="1589" width="0.8" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,812,325 samples, 0.01%)</title><rect x="206.6" y="2021" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.63" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (28,576,348 samples, 0.02%)</title><rect x="89.0" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.98" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="805" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="815.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (255,880,992 samples, 0.14%)</title><rect x="82.0" y="1621" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="709" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="719.5" ></text>
</g>
<g >
<title>[Discord] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="437" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.44" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,628,767 samples, 0.01%)</title><rect x="187.6" y="1349" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="190.65" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="197" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="207.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1925" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1935.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,856,771 samples, 0.03%)</title><rect x="726.5" y="2053" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.50" y="2063.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="751.5" ></text>
</g>
<g >
<title>[Discord] (1,485,333,192 samples, 0.80%)</title><rect x="100.6" y="1765" width="9.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="103.58" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="607.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="719.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1605" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="79.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1237" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1247.5" ></text>
</g>
<g >
<title>_Fork (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1861" width="0.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1192.01" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (177,099,913 samples, 0.10%)</title><rect x="82.5" y="1525" width="1.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.52" y="1535.5" ></text>
</g>
<g >
<title>v8::Function::Call (26,834,998 samples, 0.01%)</title><rect x="80.6" y="1573" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="83.61" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1893" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="421" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="431.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1845" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1141" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1151.5" ></text>
</g>
<g >
<title>[bash] (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1445" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.05" y="1455.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="965" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,460,341 samples, 0.02%)</title><rect x="176.8" y="1765" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.75" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (56,158,072 samples, 0.03%)</title><rect x="85.2" y="1365" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="88.18" y="1375.5" ></text>
</g>
<g >
<title>_start (124,935,227 samples, 0.07%)</title><rect x="199.3" y="2053" width="0.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="202.32" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1605" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1989" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1999.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1509" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="911.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="703.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="847.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="693" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="703.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1301" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="997" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="1007.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1045" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="1055.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,999,450 samples, 0.02%)</title><rect x="110.3" y="1813" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.31" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (695,816,235 samples, 0.37%)</title><rect x="31.3" y="565" width="4.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,359,698 samples, 0.02%)</title><rect x="108.1" y="1285" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="111.13" y="1295.5" ></text>
</g>
<g >
<title>execute_command_internal (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1893" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="210.11" y="1903.5" ></text>
</g>
<g >
<title>[bash] (456,759,298 samples, 0.25%)</title><rect x="187.1" y="1829" width="2.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.11" y="1839.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789,860 samples, 0.01%)</title><rect x="203.9" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="206.87" y="1935.5" ></text>
</g>
<g >
<title>[bash] (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1525" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="1061" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="325" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="335.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="277" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="287.5" ></text>
</g>
<g >
<title>[Discord] (58,696,870 samples, 0.03%)</title><rect x="32.7" y="197" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="207.5" ></text>
</g>
<g >
<title>GL_CompileShader (28,953,606 samples, 0.02%)</title><rect x="107.1" y="1269" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="110.06" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="63.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (162,361,618 samples, 0.09%)</title><rect x="82.6" y="1461" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="85.61" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1669" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="1957" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="1967.5" ></text>
</g>
<g >
<title>execute_command (377,811,304 samples, 0.20%)</title><rect x="187.4" y="1637" width="2.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="190.41" y="1647.5" ></text>
</g>
<g >
<title>syscall (18,211,991 samples, 0.01%)</title><rect x="165.7" y="1765" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="168.74" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1167.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,573,412 samples, 0.01%)</title><rect x="64.7" y="917" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="67.68" y="927.5" ></text>
</g>
<g >
<title>[Discord] (162,873,019 samples, 0.09%)</title><rect x="161.3" y="1557" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="164.31" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="517" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="527.5" ></text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="1941" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="1951.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1189" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="805" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="815.5" ></text>
</g>
<g >
<title>[Discord] (897,843,356 samples, 0.48%)</title><rect x="83.9" y="1621" width="5.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1631.5" ></text>
</g>
<g >
<title>[[anon:v8]] (827,167,466 samples, 0.44%)</title><rect x="30.4" y="837" width="5.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="847.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (88,205,441 samples, 0.05%)</title><rect x="208.7" y="1925" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="211.71" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1253" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="255.5" ></text>
</g>
<g >
<title>[Discord] (705,347,345 samples, 0.38%)</title><rect x="17.9" y="1845" width="4.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.89" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="911.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (46,964,847 samples, 0.03%)</title><rect x="23.5" y="1909" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="26.50" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="863.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="703.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,055,511 samples, 0.04%)</title><rect x="163.2" y="1733" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="166.17" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="581" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,145,651 samples, 0.02%)</title><rect x="190.2" y="1877" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.16" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="95.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="405" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="415.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1333" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,842,126 samples, 0.01%)</title><rect x="726.0" y="1701" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.02" y="1711.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="645" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="655.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="549" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="559.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (50,856,771 samples, 0.03%)</title><rect x="726.5" y="2005" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.50" y="2015.5" ></text>
</g>
<g >
<title>[[anon:v8]] (864,878,453 samples, 0.46%)</title><rect x="84.1" y="1509" width="5.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="87.10" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="885" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="895.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1525" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1535.5" ></text>
</g>
<g >
<title>[[anon:v8]] (555,347,110 samples, 0.30%)</title><rect x="32.2" y="357" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="35.17" y="367.5" ></text>
</g>
<g >
<title>[Discord] (241,121,806 samples, 0.13%)</title><rect x="106.0" y="1349" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="108.99" y="1359.5" ></text>
</g>
<g >
<title>[libc.so.6] (50,427,132 samples, 0.03%)</title><rect x="13.8" y="1285" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="16.82" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (53,086,904 samples, 0.03%)</title><rect x="98.7" y="1461" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.72" y="1471.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast (33,142,247 samples, 0.02%)</title><rect x="92.5" y="1077" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="95.54" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (648,771,143 samples, 0.35%)</title><rect x="60.4" y="1157" width="4.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="63.44" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="277" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="287.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="453" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="463.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="85" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1237" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1247.5" ></text>
</g>
<g >
<title>[spectrwm] (46,756,423 samples, 0.03%)</title><rect x="727.3" y="2053" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="730.28" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,142,247 samples, 0.02%)</title><rect x="92.5" y="1061" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="95.54" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1445" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (62,081,789 samples, 0.03%)</title><rect x="94.6" y="1365" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="97.56" y="1375.5" ></text>
</g>
<g >
<title>operator delete[] (29,914,812 samples, 0.02%)</title><rect x="94.8" y="1349" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="97.76" y="1359.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1573" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1583.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1791.5" ></text>
</g>
<g >
<title>_Fork (54,084,316 samples, 0.03%)</title><rect x="189.4" y="1269" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="192.38" y="1279.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (16,796,898 samples, 0.01%)</title><rect x="201.3" y="949" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.29" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1893" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (185,026,591 samples, 0.10%)</title><rect x="95.5" y="1717" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (34,412,178 samples, 0.02%)</title><rect x="26.8" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.82" y="767.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="303.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,706,433 samples, 0.02%)</title><rect x="73.5" y="1045" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.53" y="1055.5" ></text>
</g>
<g >
<title>loader_dri3_swap_buffers_msc (108,494,531 samples, 0.06%)</title><rect x="101.9" y="1461" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="104.92" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="863.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="831.5" ></text>
</g>
<g >
<title>command_substitute (29,968,529 samples, 0.02%)</title><rect x="199.6" y="709" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="202.60" y="719.5" ></text>
</g>
<g >
<title>[Discord] (173,997,938 samples, 0.09%)</title><rect x="13.1" y="1461" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="16.08" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="501" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="511.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="165" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="175.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (28,437,790 samples, 0.02%)</title><rect x="201.4" y="1685" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.40" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,104,864 samples, 0.01%)</title><rect x="36.2" y="1925" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.17" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="357" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="367.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="709" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="719.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1301" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.84" y="1311.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1653" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (183,063,656 samples, 0.10%)</title><rect x="15.8" y="1829" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="18.83" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (17,640,914 samples, 0.01%)</title><rect x="205.0" y="1733" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="208.05" y="1743.5" ></text>
</g>
<g >
<title>[Discord] (32,629,392 samples, 0.02%)</title><rect x="93.5" y="1301" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.54" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1381" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1525" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,107,673 samples, 0.03%)</title><rect x="110.2" y="1861" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.24" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="319.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1909" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="181" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="191.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="213" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="223.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (40,234,158 samples, 0.02%)</title><rect x="201.4" y="1749" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.40" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1301" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (4,446,966,837 samples, 2.39%)</title><rect x="50.3" y="1557" width="28.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="53.33" y="1567.5" >[..</text>
</g>
<g >
<title>[Discord] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.62" y="383.5" ></text>
</g>
<g >
<title>[Discord] (82,369,417 samples, 0.04%)</title><rect x="86.2" y="1365" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="89.18" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="463.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="853" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="863.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1253" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1263.5" ></text>
</g>
<g >
<title>[Discord] (34,037,464 samples, 0.02%)</title><rect x="66.1" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="69.07" y="911.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="767.5" ></text>
</g>
<g >
<title>execute_command_internal (86,858,819 samples, 0.05%)</title><rect x="199.4" y="1509" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="293" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1333" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="943.5" ></text>
</g>
<g >
<title>Discord:disk$0 (16,756,784 samples, 0.01%)</title><rect x="23.2" y="2069" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="26.21" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (44,058,002 samples, 0.02%)</title><rect x="179.5" y="1589" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.50" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="309" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.46" y="319.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,336,214 samples, 0.02%)</title><rect x="66.3" y="965" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="69.28" y="975.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="735.5" ></text>
</g>
<g >
<title>[[anon:v8]] (27,035,557 samples, 0.01%)</title><rect x="31.6" y="101" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.62" y="111.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (29,890,851 samples, 0.02%)</title><rect x="105.0" y="1365" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="108.01" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.95" y="1647.5" ></text>
</g>
<g >
<title>dbus-broker (60,680,285 samples, 0.03%)</title><rect x="198.7" y="2069" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="201.72" y="2079.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,912,171 samples, 0.02%)</title><rect x="80.1" y="1589" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.06" y="1599.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (97,858,890 samples, 0.05%)</title><rect x="109.1" y="1061" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.07" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="677" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="687.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="213" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="223.5" ></text>
</g>
<g >
<title>[[anon:v8]] (108,951,070 samples, 0.06%)</title><rect x="76.3" y="1397" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.31" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="191.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1397" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1919.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1989" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1999.5" >[Discord]</text>
</g>
<g >
<title>[[anon:v8]] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.34" y="1167.5" ></text>
</g>
<g >
<title>[Discord] (137,959,103 samples, 0.07%)</title><rect x="87.5" y="1381" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.48" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,320,413 samples, 0.01%)</title><rect x="81.1" y="1381" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="84.13" y="1391.5" ></text>
</g>
<g >
<title>cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate (46,558,498 samples, 0.03%)</title><rect x="81.0" y="1621" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="83.97" y="1631.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1125" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1135.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="975.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1669" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1679.5" ></text>
</g>
<g >
<title>[[anon:v8]] (837,200,998 samples, 0.45%)</title><rect x="65.2" y="1029" width="5.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="68.20" y="1039.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="357" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="2037" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.69" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="1877" width="73.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.55" y="1887.5" >[Discord]</text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="933" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="943.5" ></text>
</g>
<g >
<title>execute_command (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1317" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.43" y="1327.5" ></text>
</g>
<g >
<title>[unknown] (28,922,843 samples, 0.02%)</title><rect x="196.5" y="1397" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.48" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="1893" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (29,630,519 samples, 0.02%)</title><rect x="92.3" y="1029" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.35" y="1039.5" ></text>
</g>
<g >
<title>[unknown] (32,304,510 samples, 0.02%)</title><rect x="195.8" y="1349" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="198.83" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="693" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="703.5" ></text>
</g>
<g >
<title>[Discord] (113,817,289 samples, 0.06%)</title><rect x="74.0" y="1365" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="76.96" y="1375.5" ></text>
</g>
<g >
<title>[[anon:v8]] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1285" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.16" y="1295.5" ></text>
</g>
<g >
<title>[[anon:v8]] (28,942,929 samples, 0.02%)</title><rect x="76.8" y="1077" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.82" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="693" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="703.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="309" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="319.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="911.5" ></text>
</g>
<g >
<title>[Discord] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.92" y="319.5" ></text>
</g>
<g >
<title>[libc.so.6] (97,856,470 samples, 0.05%)</title><rect x="1189.0" y="2021" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.99" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="511.5" ></text>
</g>
<g >
<title>[Discord] (29,993,560 samples, 0.02%)</title><rect x="93.9" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.95" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (422,978,382 samples, 0.23%)</title><rect x="19.4" y="1749" width="2.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="22.38" y="1759.5" ></text>
</g>
<g >
<title>[[anon:v8]] (52,936,736 samples, 0.03%)</title><rect x="75.8" y="1349" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.78" y="1359.5" ></text>
</g>
<g >
<title>[libc.so.6] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1941" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="201.87" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1477" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="1109" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="1119.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="949" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1653" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (28,361,106 samples, 0.02%)</title><rect x="71.8" y="997" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.77" y="1007.5" ></text>
</g>
<g >
<title>[Discord] (150,154,711 samples, 0.08%)</title><rect x="177.2" y="1925" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.25" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="911.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,006,037 samples, 0.02%)</title><rect x="73.2" y="1253" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.24" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,700,283 samples, 0.01%)</title><rect x="75.7" y="1237" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="78.66" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="613" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="623.5" ></text>
</g>
<g >
<title>[Discord] (30,842,680 samples, 0.02%)</title><rect x="93.8" y="1317" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="96.75" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (28,151,673 samples, 0.02%)</title><rect x="71.4" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="991.5" ></text>
</g>
<g >
<title>[Discord] (42,662,647 samples, 0.02%)</title><rect x="87.2" y="1381" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="90.21" y="1391.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="143.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="661" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="671.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="1189" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (25,451,392 samples, 0.01%)</title><rect x="76.3" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.31" y="1215.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,215,390,439 samples, 0.65%)</title><rect x="28.0" y="1221" width="7.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.98" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="453" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,865,406 samples, 0.01%)</title><rect x="98.9" y="965" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="101.89" y="975.5" ></text>
</g>
<g >
<title>execute_command_internal (75,369,697 samples, 0.04%)</title><rect x="199.4" y="1205" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.43" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (480,998,486 samples, 0.26%)</title><rect x="11.6" y="1845" width="3.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="14.63" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (47,660,713 samples, 0.03%)</title><rect x="165.5" y="1781" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="168.55" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="869" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="879.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="117" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="127.5" ></text>
</g>
<g >
<title>[Discord] (32,962,742 samples, 0.02%)</title><rect x="28.9" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.91" y="47.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="367.5" ></text>
</g>
<g >
<title>[Discord] (60,407,762 samples, 0.03%)</title><rect x="174.5" y="1845" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.49" y="1855.5" ></text>
</g>
<g >
<title>command_substitute (20,568,466 samples, 0.01%)</title><rect x="199.4" y="981" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="202.43" y="991.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="181" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="191.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="655.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="293" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="303.5" ></text>
</g>
<g >
<title>[Discord] (3,291,738,517 samples, 1.77%)</title><rect x="55.2" y="1445" width="20.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="58.24" y="1455.5" ></text>
</g>
<g >
<title>execute_command_internal (80,252,865 samples, 0.04%)</title><rect x="188.5" y="1541" width="0.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="191.54" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="229" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,514,512 samples, 0.01%)</title><rect x="205.9" y="2037" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.91" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (224,754,021 samples, 0.12%)</title><rect x="178.9" y="1781" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.92" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="677" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="687.5" ></text>
</g>
<g >
<title>[unknown] (911,650,519 samples, 0.49%)</title><rect x="168.4" y="1861" width="5.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="171.36" y="1871.5" ></text>
</g>
<g >
<title>v8::Function::Call (26,227,785 samples, 0.01%)</title><rect x="75.0" y="1413" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.99" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (55,191,395 samples, 0.03%)</title><rect x="97.9" y="1301" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.95" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="207.5" ></text>
</g>
<g >
<title>parse_and_execute (25,813,577 samples, 0.01%)</title><rect x="187.8" y="1397" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="190.82" y="1407.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1077" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219,370,978 samples, 0.12%)</title><rect x="190.5" y="1765" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="193.50" y="1775.5" ></text>
</g>
<g >
<title>v8::Function::Call (95,032,790 samples, 0.05%)</title><rect x="77.7" y="1525" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="80.74" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="357" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="367.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (21,339,652 samples, 0.01%)</title><rect x="107.5" y="1285" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="110.52" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="389" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="399.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1653" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1663.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="117" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="127.5" ></text>
</g>
<g >
<title>[tmux] (58,209,330 samples, 0.03%)</title><rect x="1188.4" y="2037" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.42" y="2047.5" ></text>
</g>
<g >
<title>[spectrwm] (46,756,423 samples, 0.03%)</title><rect x="727.3" y="2005" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="730.28" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1727.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (92,165,215 samples, 0.05%)</title><rect x="106.3" y="1237" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.32" y="1247.5" ></text>
</g>
<g >
<title>[Discord] (44,247,601 samples, 0.02%)</title><rect x="98.8" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="101.77" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,328,954 samples, 0.01%)</title><rect x="77.6" y="1509" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="80.58" y="1519.5" ></text>
</g>
<g >
<title>[Discord] (68,701,117 samples, 0.04%)</title><rect x="63.7" y="405" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.69" y="415.5" ></text>
</g>
<g >
<title>[Discord] (208,280,055 samples, 0.11%)</title><rect x="174.1" y="1957" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="177.14" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (34,283,081 samples, 0.02%)</title><rect x="63.7" y="213" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.75" y="223.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="767.5" ></text>
</g>
<g >
<title>[libc.so.6] (90,541,185 samples, 0.05%)</title><rect x="176.4" y="1861" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="179.36" y="1871.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1797" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1807.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="863.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="719.5" ></text>
</g>
<g >
<title>[Discord] (20,467,815 samples, 0.01%)</title><rect x="28.6" y="949" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.57" y="959.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,482,518 samples, 0.01%)</title><rect x="22.5" y="1877" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.49" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (28,874,827 samples, 0.02%)</title><rect x="90.0" y="1493" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.96" y="1503.5" ></text>
</g>
<g >
<title>pkey_set (29,558,094 samples, 0.02%)</title><rect x="173.9" y="1829" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="176.95" y="1839.5" ></text>
</g>
<g >
<title>DeliverEventsToWindow (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1877" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="184.13" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="773" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="783.5" ></text>
</g>
<g >
<title>default_tty_job_signals (26,080,798 samples, 0.01%)</title><rect x="188.3" y="1365" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="191.34" y="1375.5" ></text>
</g>
<g >
<title>execute_command_internal (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1093" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (972,489,700 samples, 0.52%)</title><rect x="192.4" y="2005" width="6.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="2015.5" ></text>
</g>
<g >
<title>uv_open_osfhandle (25,178,506 samples, 0.01%)</title><rect x="164.0" y="1765" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="167.02" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="149" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.65" y="159.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="1221" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="293" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="303.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (22,209,276 samples, 0.01%)</title><rect x="201.4" y="1669" width="0.2" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="204.44" y="1679.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,753,064 samples, 0.01%)</title><rect x="1189.9" y="1909" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.87" y="1919.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="869" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="879.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (95,917,224 samples, 0.05%)</title><rect x="1189.0" y="1845" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1192.01" y="1855.5" ></text>
</g>
<g >
<title>[Discord] (31,834,792 samples, 0.02%)</title><rect x="28.0" y="37" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="47.5" ></text>
</g>
<g >
<title>[Discord] (76,378,931 samples, 0.04%)</title><rect x="97.8" y="1397" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.84" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (129,690,519 samples, 0.07%)</title><rect x="720.6" y="1877" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="723.64" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1461" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.58" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="421" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="431.5" ></text>
</g>
<g >
<title>[unknown] (73,103,764 samples, 0.04%)</title><rect x="196.9" y="1589" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="199.89" y="1599.5" ></text>
</g>
<g >
<title>execute_command (54,801,231 samples, 0.03%)</title><rect x="199.6" y="1173" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="1183.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,617,794,281 samples, 0.87%)</title><rect x="25.4" y="1861" width="10.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.43" y="1871.5" ></text>
</g>
<g >
<title>execute_command_internal (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1365" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="190.41" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1157" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1167.5" ></text>
</g>
<g >
<title>l_main_run (89,834,214 samples, 0.05%)</title><rect x="204.1" y="1973" width="0.5" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="207.06" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,632,522 samples, 0.02%)</title><rect x="109.5" y="1013" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.48" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (198,903,406 samples, 0.11%)</title><rect x="106.3" y="1333" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="109.26" y="1343.5" ></text>
</g>
<g >
<title>execute_command_internal (49,812,476 samples, 0.03%)</title><rect x="188.2" y="1413" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="191.23" y="1423.5" ></text>
</g>
<g >
<title>[libc.so.6] (482,222,205 samples, 0.26%)</title><rect x="187.1" y="2021" width="3.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="190.11" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,570,289 samples, 0.01%)</title><rect x="165.6" y="1717" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="168.61" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="309" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1301" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="271.5" ></text>
</g>
<g >
<title>[Discord] (31,803,459 samples, 0.02%)</title><rect x="68.0" y="901" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.99" y="911.5" ></text>
</g>
<g >
<title>[Discord] (29,364,559 samples, 0.02%)</title><rect x="32.7" y="133" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="143.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1365" width="0.7" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="112.00" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,810,361 samples, 0.01%)</title><rect x="188.7" y="1317" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="191.65" y="1327.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="511.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,305,504 samples, 0.02%)</title><rect x="94.1" y="1333" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.14" y="1343.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="543.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="853" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="863.5" ></text>
</g>
<g >
<title>[bash] (36,548,231 samples, 0.02%)</title><rect x="187.4" y="1477" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.41" y="1487.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="53" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="63.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1093" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1103.5" ></text>
</g>
<g >
<title>parse_and_execute (49,812,476 samples, 0.03%)</title><rect x="188.2" y="1461" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="191.23" y="1471.5" ></text>
</g>
<g >
<title>[Discord] (284,127,608 samples, 0.15%)</title><rect x="178.7" y="1829" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="181.66" y="1839.5" ></text>
</g>
<g >
<title>[[anon:v8]] (53,814,357 samples, 0.03%)</title><rect x="96.3" y="1637" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.33" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="1061" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="1071.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="501" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="511.5" ></text>
</g>
<g >
<title>[bash] (106,641,229 samples, 0.06%)</title><rect x="189.1" y="1349" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="192.09" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (26,671,291 samples, 0.01%)</title><rect x="23.0" y="1941" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="26.04" y="1951.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (88,205,441 samples, 0.05%)</title><rect x="208.7" y="1941" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="211.71" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (119,308,433 samples, 0.06%)</title><rect x="97.7" y="1493" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="100.68" y="1503.5" ></text>
</g>
<g >
<title>command_substitute (113,470,614 samples, 0.06%)</title><rect x="189.1" y="1397" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="192.05" y="1407.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1269" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.75" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="207.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="1269" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1077" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="709" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="719.5" ></text>
</g>
<g >
<title>[[anon:v8]] (889,930,961 samples, 0.48%)</title><rect x="30.0" y="885" width="5.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.05" y="895.5" ></text>
</g>
<g >
<title>[Discord] (9,032,885,222 samples, 4.85%)</title><rect x="110.9" y="1893" width="57.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="113.93" y="1903.5" >[Disco..</text>
</g>
<g >
<title>[libc.so.6] (28,153,827 samples, 0.02%)</title><rect x="1188.5" y="1861" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.52" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,597,589 samples, 0.13%)</title><rect x="202.3" y="1973" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="205.29" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="101" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="111.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="885" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="895.5" ></text>
</g>
<g >
<title>[Discord] (29,190,694 samples, 0.02%)</title><rect x="25.7" y="773" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.65" y="783.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="677" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="687.5" ></text>
</g>
<g >
<title>[[anon:v8]] (79,981,398 samples, 0.04%)</title><rect x="75.2" y="1349" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.15" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1077" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,606,201 samples, 0.02%)</title><rect x="207.7" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="210.72" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,436,279 samples, 0.01%)</title><rect x="176.8" y="1701" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="179.81" y="1711.5" ></text>
</g>
<g >
<title>[Discord] (41,219,878 samples, 0.02%)</title><rect x="81.6" y="1397" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.62" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,766,899 samples, 0.01%)</title><rect x="199.1" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="202.10" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (30,641,090 samples, 0.02%)</title><rect x="25.8" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.84" y="479.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="965" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="975.5" ></text>
</g>
<g >
<title>[bash] (43,740,325 samples, 0.02%)</title><rect x="188.2" y="1397" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="191.23" y="1407.5" ></text>
</g>
<g >
<title>[Discord] (34,407,202 samples, 0.02%)</title><rect x="30.0" y="645" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.05" y="655.5" ></text>
</g>
<g >
<title>[Discord] (848,811,094 samples, 0.46%)</title><rect x="17.2" y="1973" width="5.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="20.23" y="1983.5" ></text>
</g>
<g >
<title>execute_command (53,160,619 samples, 0.03%)</title><rect x="207.1" y="1877" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="210.11" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (75,342,968 samples, 0.04%)</title><rect x="179.4" y="1637" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="182.39" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (131,212,234 samples, 0.07%)</title><rect x="95.5" y="1589" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.49" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="101" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="111.5" ></text>
</g>
<g >
<title>[Discord] (267,165,430 samples, 0.14%)</title><rect x="20.2" y="1669" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="23.16" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (2,659,301,452 samples, 1.43%)</title><rect x="56.7" y="1365" width="16.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="59.67" y="1375.5" ></text>
</g>
<g >
<title>[unknown] (2,166,971,599 samples, 1.16%)</title><rect x="1174.5" y="2005" width="13.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1177.45" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,825,948 samples, 0.02%)</title><rect x="198.9" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.87" y="1919.5" ></text>
</g>
<g >
<title>pthread_once (16,628,455 samples, 0.01%)</title><rect x="726.8" y="1973" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="729.82" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (70,029,244 samples, 0.04%)</title><rect x="91.0" y="1221" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="94.03" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1845" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="1941" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="1951.5" ></text>
</g>
<g >
<title>[libgallium-25.1.3-arch1.3.so] (99,812,030 samples, 0.05%)</title><rect x="102.0" y="1397" width="0.6" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="104.98" y="1407.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,590,449,413 samples, 6.23%)</title><rect x="36.6" y="2021" width="73.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="39.55" y="2031.5" >[libc.so..</text>
</g>
<g >
<title>[unknown] (41,549,320 samples, 0.02%)</title><rect x="205.0" y="1861" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="207.97" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,407,755 samples, 0.06%)</title><rect x="109.0" y="1285" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="112.00" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="901" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="911.5" ></text>
</g>
<g >
<title>[Discord] (18,308,291 samples, 0.01%)</title><rect x="89.2" y="1157" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="92.16" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1541" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1551.5" ></text>
</g>
<g >
<title>[intel_drv.so] (51,494,844 samples, 0.03%)</title><rect x="181.3" y="1941" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="184.27" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="741" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="751.5" ></text>
</g>
<g >
<title>[Discord] (389,212,988 samples, 0.21%)</title><rect x="62.0" y="1013" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="64.99" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (50,818,001 samples, 0.03%)</title><rect x="95.8" y="1525" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="98.81" y="1535.5" ></text>
</g>
<g >
<title>[Discord] (28,734,795 samples, 0.02%)</title><rect x="27.8" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.80" y="639.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="469" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="479.5" ></text>
</g>
<g >
<title>[Discord] (48,320,532 samples, 0.03%)</title><rect x="22.7" y="1893" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.73" y="1903.5" ></text>
</g>
<g >
<title>ThreadPoolSingl (233,418,787 samples, 0.13%)</title><rect x="175.5" y="2069" width="1.4" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="178.47" y="2079.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="53" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="28.43" y="63.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="469" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="479.5" ></text>
</g>
<g >
<title>__libc_start_main (80,546,551,638 samples, 43.28%)</title><rect x="210.7" y="2037" width="510.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="213.74" y="2047.5" >__libc_start_main</text>
</g>
<g >
<title>execute_command_internal (54,801,231 samples, 0.03%)</title><rect x="199.6" y="1189" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.56" y="1199.5" ></text>
</g>
<g >
<title>epoll_wait (60,959,024 samples, 0.03%)</title><rect x="175.0" y="1893" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="177.99" y="1903.5" ></text>
</g>
<g >
<title>[[anon:v8]] (35,698,299 samples, 0.02%)</title><rect x="25.2" y="133" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="28.20" y="143.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1365" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1375.5" ></text>
</g>
<g >
<title>[Discord] (35,399,814 samples, 0.02%)</title><rect x="33.1" y="149" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.12" y="159.5" ></text>
</g>
<g >
<title>[Discord] (29,402,894 samples, 0.02%)</title><rect x="75.5" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.47" y="655.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="479.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="1253" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="1263.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (72,912,739 samples, 0.04%)</title><rect x="201.3" y="1893" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (29,855,261 samples, 0.02%)</title><rect x="69.1" y="789" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.08" y="799.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,422,408 samples, 0.02%)</title><rect x="30.9" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.92" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,148,527 samples, 0.01%)</title><rect x="186.6" y="1893" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="189.64" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (58,696,870 samples, 0.03%)</title><rect x="32.7" y="165" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.74" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,107,492 samples, 0.04%)</title><rect x="208.8" y="1861" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="211.79" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (40,985,965 samples, 0.02%)</title><rect x="209.3" y="1813" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="212.31" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,471,647 samples, 0.01%)</title><rect x="22.9" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.93" y="1679.5" ></text>
</g>
<g >
<title>[Discord] (32,215,116 samples, 0.02%)</title><rect x="26.2" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.23" y="79.5" ></text>
</g>
<g >
<title>[Discord] (222,736,412 samples, 0.12%)</title><rect x="71.4" y="1269" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="74.44" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="597" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="607.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (26,138,111 samples, 0.01%)</title><rect x="726.7" y="1957" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="729.65" y="1967.5" ></text>
</g>
<g >
<title>[Discord] (33,299,554 samples, 0.02%)</title><rect x="27.0" y="437" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.04" y="447.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,677,854 samples, 0.01%)</title><rect x="210.4" y="1637" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.35" y="1647.5" ></text>
</g>
<g >
<title>[Discord] (22,957,321 samples, 0.01%)</title><rect x="82.0" y="1445" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="85.02" y="1455.5" ></text>
</g>
<g >
<title>[Discord] (29,011,396 samples, 0.02%)</title><rect x="68.9" y="677" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="71.90" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,206,482 samples, 0.02%)</title><rect x="74.7" y="1413" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="77.72" y="1423.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="981" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,848,804 samples, 0.02%)</title><rect x="167.9" y="1669" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="170.93" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1941" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="201.56" y="1951.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="821" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="831.5" ></text>
</g>
<g >
<title>[[anon:v8]] (707,883,069 samples, 0.38%)</title><rect x="31.2" y="613" width="4.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.20" y="623.5" ></text>
</g>
<g >
<title>[Discord] (85,510,385 samples, 0.05%)</title><rect x="175.8" y="1845" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="178.81" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,315,755 samples, 0.01%)</title><rect x="14.3" y="1557" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="17.34" y="1567.5" ></text>
</g>
<g >
<title>[Discord] (34,269,570 samples, 0.02%)</title><rect x="29.5" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.49" y="95.5" ></text>
</g>
<g >
<title>[Discord] (21,385,345 samples, 0.01%)</title><rect x="31.5" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.49" y="63.5" ></text>
</g>
<g >
<title>[Discord] (29,416,432 samples, 0.02%)</title><rect x="26.4" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.43" y="479.5" ></text>
</g>
<g >
<title>[[i915]] (32,306,715 samples, 0.02%)</title><rect x="42.3" y="1221" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="45.35" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (62,142,747 samples, 0.03%)</title><rect x="69.5" y="757" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="72.46" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,007,485 samples, 0.02%)</title><rect x="79.8" y="1349" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="82.75" y="1359.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="805" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="815.5" ></text>
</g>
<g >
<title>[[anon:v8]] (252,584,895 samples, 0.14%)</title><rect x="195.1" y="1605" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="198.06" y="1615.5" ></text>
</g>
<g >
<title>[Discord] (64,399,393 samples, 0.03%)</title><rect x="33.3" y="149" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="36.34" y="159.5" ></text>
</g>
<g >
<title>pa_pdispatch_run (33,882,194 samples, 0.02%)</title><rect x="210.4" y="1861" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="213.35" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (954,523,963 samples, 0.51%)</title><rect x="192.4" y="1877" width="6.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="195.38" y="1887.5" ></text>
</g>
<g >
<title>[Discord] (65,693,005 samples, 0.04%)</title><rect x="28.0" y="69" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.98" y="79.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="293" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="303.5" ></text>
</g>
<g >
<title>[Discord] (31,754,787 samples, 0.02%)</title><rect x="27.6" y="725" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.60" y="735.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="917" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="927.5" ></text>
</g>
<g >
<title>[Discord] (40,298,763 samples, 0.02%)</title><rect x="30.7" y="341" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.66" y="351.5" ></text>
</g>
<g >
<title>[Discord] (121,975,923 samples, 0.07%)</title><rect x="177.4" y="1781" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="180.42" y="1791.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="853" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="863.5" ></text>
</g>
<g >
<title>[Discord] (26,372,281 samples, 0.01%)</title><rect x="28.4" y="629" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.40" y="639.5" ></text>
</g>
<g >
<title>[Discord] (20,670,582 samples, 0.01%)</title><rect x="81.9" y="1205" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="84.89" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (58,393,741 samples, 0.03%)</title><rect x="35.8" y="2021" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="38.80" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (649,329,776 samples, 0.35%)</title><rect x="18.1" y="1797" width="4.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="21.11" y="1807.5" ></text>
</g>
<g >
<title>__libc_start_main (219,370,978 samples, 0.12%)</title><rect x="190.5" y="2037" width="1.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="193.50" y="2047.5" ></text>
</g>
<g >
<title>[Discord] (29,624,191 samples, 0.02%)</title><rect x="32.0" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.98" y="255.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,215,390,439 samples, 0.65%)</title><rect x="28.0" y="1205" width="7.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.98" y="1215.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,628,455 samples, 0.01%)</title><rect x="726.8" y="2005" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.82" y="2015.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (265,221,991 samples, 0.14%)</title><rect x="207.6" y="2021" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="210.63" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (59,174,239 samples, 0.03%)</title><rect x="192.0" y="2005" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="195.01" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (21,513,987 samples, 0.01%)</title><rect x="107.3" y="1173" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="110.31" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (32,964,903 samples, 0.02%)</title><rect x="83.9" y="1573" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="86.89" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (80,055,511 samples, 0.04%)</title><rect x="163.2" y="1701" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="166.17" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (76,290,742 samples, 0.04%)</title><rect x="205.4" y="2037" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="208.38" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (1,123,325,153 samples, 0.60%)</title><rect x="28.6" y="1189" width="7.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="31.57" y="1199.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="501" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="511.5" ></text>
</g>
<g >
<title>[Discord] (18,276,552 samples, 0.01%)</title><rect x="76.0" y="1301" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="79.00" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (222,412,618 samples, 0.12%)</title><rect x="63.0" y="741" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.05" y="751.5" ></text>
</g>
<g >
<title>[Discord] (33,871,067 samples, 0.02%)</title><rect x="27.2" y="1013" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1023.5" ></text>
</g>
<g >
<title>[Discord] (27,746,210 samples, 0.01%)</title><rect x="88.5" y="1285" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="91.49" y="1295.5" ></text>
</g>
<g >
<title>[Discord] (29,888,524 samples, 0.02%)</title><rect x="78.9" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="81.94" y="1215.5" ></text>
</g>
<g >
<title>make_child (54,084,316 samples, 0.03%)</title><rect x="189.4" y="1301" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="192.38" y="1311.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1077" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1087.5" ></text>
</g>
<g >
<title>[Discord] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1685" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="25.77" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,752,758 samples, 0.01%)</title><rect x="36.4" y="1861" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.37" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,041,103 samples, 0.01%)</title><rect x="727.4" y="1925" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="730.37" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,413,794 samples, 0.01%)</title><rect x="96.8" y="1749" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="99.79" y="1759.5" ></text>
</g>
<g >
<title>[Discord] (76,075,751 samples, 0.04%)</title><rect x="92.3" y="1429" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="95.26" y="1439.5" ></text>
</g>
<g >
<title>[libgtk-4.so.1.1800.6] (22,567,935 samples, 0.01%)</title><rect x="201.3" y="1525" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="204.25" y="1535.5" ></text>
</g>
<g >
<title>__clone (916,420,204 samples, 0.49%)</title><rect x="168.3" y="2053" width="5.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="171.33" y="2063.5" ></text>
</g>
<g >
<title>pulseaudio (73,680,852 samples, 0.04%)</title><rect x="721.5" y="2069" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="724.48" y="2079.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="165" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="175.5" ></text>
</g>
<g >
<title>[Discord] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="229" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="34.28" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,386,606 samples, 0.01%)</title><rect x="198.0" y="1669" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.95" y="1679.5" ></text>
</g>
<g >
<title>[libc.so.6] (25,247,819 samples, 0.01%)</title><rect x="1188.3" y="1893" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.26" y="1903.5" ></text>
</g>
<g >
<title>[Discord] (28,895,118 samples, 0.02%)</title><rect x="29.9" y="773" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.86" y="783.5" ></text>
</g>
<g >
<title>[libevent_core-2.1.so.7.0.1] (32,116,529 samples, 0.02%)</title><rect x="1188.8" y="2053" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1191.79" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (26,337,169 samples, 0.01%)</title><rect x="87.3" y="1157" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.31" y="1167.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1765" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="184.13" y="1775.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="847.5" ></text>
</g>
<g >
<title>[Discord] (20,482,184 samples, 0.01%)</title><rect x="75.3" y="1205" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="78.34" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (875,276,134 samples, 0.47%)</title><rect x="10.1" y="2021" width="5.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="13.13" y="2031.5" ></text>
</g>
<g >
<title>[Discord] (31,534,169 samples, 0.02%)</title><rect x="26.6" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.62" y="543.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,788,577 samples, 0.02%)</title><rect x="89.6" y="1141" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="92.58" y="1151.5" ></text>
</g>
<g >
<title>glob64 (58,209,330 samples, 0.03%)</title><rect x="1188.4" y="2005" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1191.42" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="1157" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="1167.5" ></text>
</g>
<g >
<title>[Xorg] (18,077,320 samples, 0.01%)</title><rect x="181.1" y="1813" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="184.13" y="1823.5" ></text>
</g>
<g >
<title>[[anon:v8]] (30,955,872 samples, 0.02%)</title><rect x="96.1" y="1573" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="99.13" y="1583.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,881,426 samples, 0.01%)</title><rect x="35.7" y="1989" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.69" y="1999.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (88,205,441 samples, 0.05%)</title><rect x="208.7" y="1957" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="211.71" y="1967.5" ></text>
</g>
<g >
<title>[bash] (20,568,466 samples, 0.01%)</title><rect x="199.4" y="1045" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="202.43" y="1055.5" ></text>
</g>
<g >
<title>[[anon:v8]] (24,040,683 samples, 0.01%)</title><rect x="73.8" y="1221" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.75" y="1231.5" ></text>
</g>
<g >
<title>[Discord] (178,221,068 samples, 0.10%)</title><rect x="24.3" y="1573" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="1583.5" ></text>
</g>
<g >
<title>[[anon:v8]] (63,987,898 samples, 0.03%)</title><rect x="78.7" y="1269" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="81.72" y="1279.5" ></text>
</g>
<g >
<title>[Discord] (142,522,769 samples, 0.08%)</title><rect x="24.3" y="629" width="0.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="27.30" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,069,955 samples, 0.02%)</title><rect x="99.9" y="1701" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="102.87" y="1711.5" ></text>
</g>
<g >
<title>[libGLESv2.so] (56,930,848 samples, 0.03%)</title><rect x="106.5" y="1093" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="109.48" y="1103.5" ></text>
</g>
<g >
<title>[Discord] (28,159,861 samples, 0.02%)</title><rect x="29.1" y="565" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.12" y="575.5" ></text>
</g>
<g >
<title>execute_command_internal (105,246,541 samples, 0.06%)</title><rect x="199.3" y="1925" width="0.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="202.34" y="1935.5" ></text>
</g>
<g >
<title>[Discord] (28,356,293 samples, 0.02%)</title><rect x="30.3" y="565" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="33.26" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,065,912 samples, 0.01%)</title><rect x="197.8" y="1605" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="200.84" y="1615.5" ></text>
</g>
<g >
<title>ksoftirqd/4 (76,290,742 samples, 0.04%)</title><rect x="205.4" y="2069" width="0.5" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="208.38" y="2079.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,053,990 samples, 0.02%)</title><rect x="206.8" y="1909" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="209.81" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,799,457 samples, 0.01%)</title><rect x="198.6" y="1781" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="201.56" y="1791.5" ></text>
</g>
<g >
<title>_dl_catch_exception (88,205,441 samples, 0.05%)</title><rect x="208.7" y="1973" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="211.71" y="1983.5" ></text>
</g>
<g >
<title>[Discord] (25,916,099 samples, 0.01%)</title><rect x="32.6" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="35.58" y="63.5" ></text>
</g>
<g >
<title>[[anon:v8]] (33,019,079 samples, 0.02%)</title><rect x="31.3" y="261" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="34.28" y="271.5" ></text>
</g>
<g >
<title>[Discord] (363,517,921 samples, 0.20%)</title><rect x="62.2" y="917" width="2.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="65.15" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (17,705,973 samples, 0.01%)</title><rect x="200.5" y="1941" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="203.45" y="1951.5" ></text>
</g>
<g >
<title>[rg] (16,625,314 samples, 0.01%)</title><rect x="725.9" y="1717" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="728.92" y="1727.5" ></text>
</g>
<g >
<title>[Discord] (55,415,241 samples, 0.03%)</title><rect x="27.2" y="1205" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="30.25" y="1215.5" ></text>
</g>
<g >
<title>[Discord] (30,207,241 samples, 0.02%)</title><rect x="29.3" y="837" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.30" y="847.5" ></text>
</g>
<g >
<title>main (482,222,205 samples, 0.26%)</title><rect x="187.1" y="2005" width="3.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="190.11" y="2015.5" ></text>
</g>
<g >
<title>[Discord] (138,156,415 samples, 0.07%)</title><rect x="63.5" y="533" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="66.45" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="1973" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.17" y="1983.5" ></text>
</g>
<g >
<title>[libprotocol-native.so] (25,777,105 samples, 0.01%)</title><rect x="721.5" y="1925" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="724.48" y="1935.5" ></text>
</g>
<g >
<title>[sudo] (27,688,256 samples, 0.01%)</title><rect x="727.7" y="2053" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="730.68" y="2063.5" ></text>
</g>
<g >
<title>[[anon:v8]] (194,854,553 samples, 0.10%)</title><rect x="69.3" y="981" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.27" y="991.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,441,411 samples, 0.01%)</title><rect x="22.8" y="1541" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.77" y="1551.5" ></text>
</g>
<g >
<title>[Discord] (34,646,648 samples, 0.02%)</title><rect x="25.4" y="645" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="28.43" y="655.5" ></text>
</g>
<g >
<title>[nvidia_drv.so] (62,805,951 samples, 0.03%)</title><rect x="110.2" y="2037" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="113.17" y="2047.5" ></text>
</g>
<g >
<title>execute_command (36,341,997 samples, 0.02%)</title><rect x="199.6" y="1077" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="202.56" y="1087.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,223,672 samples, 0.02%)</title><rect x="179.9" y="1637" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="182.87" y="1647.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,057,668 samples, 0.01%)</title><rect x="80.1" y="1493" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="83.14" y="1503.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,770,215 samples, 0.02%)</title><rect x="30.4" y="709" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="33.44" y="719.5" ></text>
</g>
<g >
<title>[Discord] (31,143,138 samples, 0.02%)</title><rect x="26.0" y="357" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="29.03" y="367.5" ></text>
</g>
<g >
<title>[Discord] (134,728,126 samples, 0.07%)</title><rect x="84.9" y="1413" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="87.85" y="1423.5" ></text>
</g>
<g >
<title>recvmsg (18,104,864 samples, 0.01%)</title><rect x="36.2" y="2037" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="39.17" y="2047.5" ></text>
</g>
<g >
<title>[[anon:v8]] (21,544,174 samples, 0.01%)</title><rect x="27.5" y="1173" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="30.46" y="1183.5" ></text>
</g>
<g >
<title>[Discord] (50,032,756 samples, 0.03%)</title><rect x="96.4" y="1589" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="99.35" y="1599.5" ></text>
</g>
<g >
<title>[Discord] (29,441,912 samples, 0.02%)</title><rect x="65.9" y="517" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="68.88" y="527.5" ></text>
</g>
<g >
<title>[Discord] (24,392,354 samples, 0.01%)</title><rect x="29.7" y="645" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="32.71" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (666,086,487 samples, 0.36%)</title><rect x="1170.1" y="1861" width="4.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.06" y="1871.5" ></text>
</g>
<g >
<title>[[anon:v8]] (34,336,214 samples, 0.02%)</title><rect x="66.3" y="981" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="69.28" y="991.5" ></text>
</g>
<g >
<title>[Discord] (34,039,491 samples, 0.02%)</title><rect x="28.7" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="31.70" y="95.5" ></text>
</g>
</g>
</svg>