summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
-rw-r--r--README.md8
-rw-r--r--assets/ior-by-count-flamegraph.svg7591
3 files changed, 486 insertions, 7121 deletions
diff --git a/Makefile b/Makefile
index 99c2210..33d3b21 100644
--- a/Makefile
+++ b/Makefile
@@ -36,16 +36,16 @@ world: clean generate all
.PHONY: flames
flames:
- perl ~/git/FlameGraph/flamegraph.pl ior-by-path-count-flamegraph.collapsed \
+ inferno-flamegraph < ior-by-path-count-flamegraph.collapsed \
--title "I/O Syscall Count" --nametype Path --hash \
> ior-by-path-count-flamegraph.svg; \
- perl ~/git/FlameGraph/flamegraph.pl ior-by-path-duration-flamegraph.collapsed \
+ inferno-flamegraph < ior-by-path-duration-flamegraph.collapsed \
--title "I/O Syscall Durations" --nametype Path --hash --countname Nanoseconds \
> ior-by-path-duration-flamegraph.svg; \
- perl ~/git/FlameGraph/flamegraph.pl ior-by-syscall-count-flamegraph.collapsed \
+ inferno-flamegraph < ior-by-syscall-count-flamegraph.collapsed \
--title "I/O Syscall Count" --nametype Path --hash \
> ior-by-syscall-count-flamegraph.svg; \
- perl ~/git/FlameGraph/flamegraph.pl ior-by-syscall-duration-flamegraph.collapsed \
+ inferno-flamegraph < ior-by-syscall-duration-flamegraph.collapsed \
--title "I/O Syscall Durations" --nametype Path --hash --countname Nanoseconds \
> ior-by-syscall-duration-flamegraph.svg; \
diff --git a/README.md b/README.md
index 6ba7db5..f8d17cd 100644
--- a/README.md
+++ b/README.md
@@ -42,3 +42,11 @@ make
sudo cp -v ./libelf/libelf.a /usr/lib64/
```
+## Inferno Flamegraphs
+
+We are using Inferno Flamegraphs: https://github.com/jonhoo/inferno
+
+```sh
+cargo install inferno
+```
+
diff --git a/assets/ior-by-count-flamegraph.svg b/assets/ior-by-count-flamegraph.svg
index a565939..d5b4d05 100644
--- a/assets/ior-by-count-flamegraph.svg
+++ b/assets/ior-by-count-flamegraph.svg
@@ -1,7134 +1,491 @@
-<?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="262" onload="init(evt)" viewBox="0 0 1200 262" 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;
+<?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="342" onload="init(evt)" viewBox="0 0 1200 342" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
+text { font-family:monospace; font-size:12px }
+#title { text-anchor:middle; font-size:17px; }
+#matched { text-anchor:end; }
+#search { text-anchor:end; opacity:0.1; cursor:pointer; }
+#search:hover, #search.show { opacity:1; }
+#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
+#unzoom { cursor:pointer; }
+#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
+.hide { display:none; }
+.parent { opacity:0.5; }
+</style><script type="text/ecmascript"><![CDATA[
+ var nametype = 'Path';
+ var fontsize = 12;
+ var fontwidth = 0.59;
+ var xpad = 10;
+ var inverted = false;
+ var searchcolor = 'rgb(230,0,230)';
+ var fluiddrawing = true;
+ var truncate_text_right = false;
+ ]]><![CDATA["use strict";
+var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
+function init(evt) {
+ details = document.getElementById("details").firstChild;
+ searchbtn = document.getElementById("search");
+ unzoombtn = document.getElementById("unzoom");
+ matchedtxt = document.getElementById("matched");
+ svg = document.getElementsByTagName("svg")[0];
+ frames = document.getElementById("frames");
+ known_font_width = get_monospace_width(frames);
+ total_samples = parseInt(frames.attributes.total_samples.value);
+ searching = 0;
- // 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);
- }
+ // Use GET parameters to restore a flamegraph's state.
+ var restore_state = function() {
+ var params = get_params();
+ if (params.x && params.y)
+ zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
+ if (params.s)
+ search(params.s);
+ };
- // 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;
- }
+ if (fluiddrawing) {
+ // Make width dynamic so the SVG fits its parent's width.
+ svg.removeAttribute("width");
+ // Edge requires us to have a viewBox that gets updated with size changes.
+ var isEdge = /Edge\/\d./i.test(navigator.userAgent);
+ if (!isEdge) {
+ svg.removeAttribute("viewBox");
+ }
+ var update_for_width_change = function() {
+ if (isEdge) {
+ svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
+ }
- // 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)
+ // Keep consistent padding on left and right of frames container.
+ frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
- // mouse-over for info
- // show
- window.addEventListener("mouseover", function(e) {
- var target = find_group(e.target);
- if (target) details.nodeValue = "Path " + g_to_text(target);
- }, false)
+ // Text truncation needs to be adjusted for the current width.
+ update_text_for_elements(frames.children);
- // clear
- window.addEventListener("mouseout", function(e) {
- var target = find_group(e.target);
- if (target) details.nodeValue = ' ';
- }, false)
+ // Keep search elements at a fixed distance from right edge.
+ var svgWidth = svg.width.baseVal.value;
+ searchbtn.attributes.x.value = svgWidth - xpad;
+ matchedtxt.attributes.x.value = svgWidth - xpad;
+ };
+ window.addEventListener('resize', function() {
+ update_for_width_change();
+ });
+ // This needs to be done asynchronously for Safari to work.
+ setTimeout(function() {
+ unzoom();
+ update_for_width_change();
+ restore_state();
+ }, 0);
+ } else {
+ restore_state();
+ }
+}
+// event listeners
+window.addEventListener("click", function(e) {
+ var target = find_group(e.target);
+ if (target) {
+ if (target.nodeName == "a") {
+ if (e.ctrlKey === false) return;
+ e.preventDefault();
+ }
+ if (target.classList.contains("parent")) unzoom();
+ zoom(target);
- // 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)
+ // set parameters for zoom state
+ var el = target.querySelector("rect");
+ if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
+ var params = get_params()
+ params.x = el.attributes["fg:x"].value;
+ params.y = el.attributes.y.value;
+ history.replaceState(null, null, parse_params(params));
+ }
+ }
+ else if (e.target.id == "unzoom") {
+ unzoom();
- // 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;
+ // remove zoom state
+ var params = get_params();
+ if (params.x) delete params.x;
+ if (params.y) delete params.y;
+ history.replaceState(null, null, parse_params(params));
+ }
+ else if (e.target.id == "search") search_prompt();
+}, false)
+// mouse-over for info
+// show
+window.addEventListener("mouseover", function(e) {
+ var target = find_group(e.target);
+ if (target) details.nodeValue = nametype + " " + g_to_text(target);
+}, false)
+// clear
+window.addEventListener("mouseout", function(e) {
+ var target = find_group(e.target);
+ if (target) details.nodeValue = ' ';
+}, false)
+// ctrl-F for search
+window.addEventListener("keydown",function (e) {
+ if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
+ e.preventDefault();
+ search_prompt();
+ }
+}, false)
+// functions
+function get_params() {
+ var params = {};
+ var paramsarr = window.location.search.substr(1).split('&');
+ for (var i = 0; i < paramsarr.length; ++i) {
+ var tmp = paramsarr[i].split("=");
+ if (!tmp[0] || !tmp[1]) continue;
+ params[tmp[0]] = decodeURIComponent(tmp[1]);
+ }
+ return params;
+}
+function parse_params(params) {
+ var uri = "?";
+ for (var key in params) {
+ uri += key + '=' + encodeURIComponent(params[key]) + '&';
+ }
+ if (uri.slice(-1) == "&")
+ uri = uri.substring(0, uri.length - 1);
+ if (uri == '?')
+ uri = window.location.href.split('?')[0];
+ return uri;
+}
+function find_child(node, selector) {
+ var children = node.querySelectorAll(selector);
+ if (children.length) return children[0];
+ return;
+}
+function find_group(node) {
+ var parent = node.parentElement;
+ if (!parent) return;
+ if (parent.id == "frames") return node;
+ return find_group(parent);
+}
+function orig_save(e, attr, val) {
+ if (e.attributes["fg:orig_" + attr] != undefined) return;
+ if (e.attributes[attr] == undefined) return;
+ if (val == undefined) val = e.attributes[attr].value;
+ e.setAttribute("fg:orig_" + attr, val);
+}
+function orig_load(e, attr) {
+ if (e.attributes["fg:orig_"+attr] == undefined) return;
+ e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
+ e.removeAttribute("fg:orig_" + attr);
+}
+function g_to_text(e) {
+ var text = find_child(e, "title").firstChild.nodeValue;
+ return (text)
+}
+function g_to_func(e) {
+ var func = g_to_text(e);
+ // if there's any manipulation we want to do to the function
+ // name before it's searched, do it here before returning.
+ return (func);
+}
+function get_monospace_width(frames) {
+ // Given the id="frames" element, return the width of text characters if
+ // this is a monospace font, otherwise return 0.
+ text = find_child(frames.children[0], "text");
+ originalContent = text.textContent;
+ text.textContent = "!";
+ bangWidth = text.getComputedTextLength();
+ text.textContent = "W";
+ wWidth = text.getComputedTextLength();
+ text.textContent = originalContent;
+ if (bangWidth === wWidth) {
+ return bangWidth;
+ } else {
+ return 0;
+ }
+}
+function update_text_for_elements(elements) {
+ // In order to render quickly in the browser, you want to do one pass of
+ // reading attributes, and one pass of mutating attributes. See
+ // https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
- // Smaller than this size won't fit anything
- if (w < 2 * 12 * 0.59) {
- t.textContent = "";
- return;
- }
+ // Fall back to inefficient calculation, if we're variable-width font.
+ // TODO This should be optimized somehow too.
+ if (known_font_width === 0) {
+ for (var i = 0; i < elements.length; i++) {
+ update_text(elements[i]);
+ }
+ 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;
+ var textElemNewAttributes = [];
+ for (var i = 0; i < elements.length; i++) {
+ var e = elements[i];
+ var r = find_child(e, "rect");
+ var t = find_child(e, "text");
+ var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
+ var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
+ var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
- // 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 = "";
- }
+ // Smaller than this size won't fit anything
+ if (w < 2 * known_font_width) {
+ textElemNewAttributes.push([newX, ""]);
+ continue;
+ }
- // 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;
- }
- }
+ // Fit in full text width
+ if (txt.length * known_font_width < w) {
+ textElemNewAttributes.push([newX, txt]);
+ continue;
+ }
- 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;
+ var substringLength = Math.floor(w / known_font_width) - 2;
+ if (truncate_text_right) {
+ // Truncate the right side of the text.
+ textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
+ continue;
+ } else {
+ // Truncate the left side of the text.
+ textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
+ continue;
+ }
+ }
- // XXX: Workaround for JavaScript float issues (fix me)
- var fudge = 0.0001;
+ console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
- unzoombtn.classList.remove("hide");
+ // Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
+ for (var i = 0; i < elements.length; i++) {
+ var e = elements[i];
+ var values = textElemNewAttributes[i];
+ var t = find_child(e, "text");
+ t.attributes.x.value = values[0];
+ t.textContent = values[1];
+ }
+}
- 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();
+function update_text(e) {
+ var r = find_child(e, "rect");
+ var t = find_child(e, "text");
+ var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
+ var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
+ t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
- // 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));
- }
+ // Smaller than this size won't fit anything
+ if (w < 2 * fontsize * fontwidth) {
+ t.textContent = "";
+ return;
+ }
+ t.textContent = txt;
+ // Fit in full text width
+ if (t.getComputedTextLength() < w)
+ return;
+ if (truncate_text_right) {
+ // Truncate the right side of the text.
+ for (var x = txt.length - 2; x > 0; x--) {
+ if (t.getSubStringLength(0, x + 2) <= w) {
+ t.textContent = txt.substring(0, x) + "..";
+ return;
+ }
+ }
+ } else {
+ // Truncate the left side of the text.
+ for (var x = 2; x < txt.length; x++) {
+ if (t.getSubStringLength(x - 2, txt.length) <= w) {
+ t.textContent = ".." + txt.substring(x, txt.length);
+ return;
+ }
+ }
+ }
+ t.textContent = "";
+}
+// zoom
+function zoom_reset(e) {
+ if (e.tagName == "rect") {
+ e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
+ e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
+ }
+ if (e.childNodes == undefined) return;
+ for(var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_reset(c[i]);
+ }
+}
+function zoom_child(e, x, zoomed_width_samples) {
+ if (e.tagName == "text") {
+ var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
+ e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
+ } else if (e.tagName == "rect") {
+ e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
+ e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
+ }
+ if (e.childNodes == undefined) return;
+ for(var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_child(c[i], x, zoomed_width_samples);
+ }
+}
+function zoom_parent(e) {
+ if (e.attributes) {
+ if (e.attributes.x != undefined) {
+ e.attributes.x.value = "0.0%";
+ }
+ if (e.attributes.width != undefined) {
+ e.attributes.width.value = "100.0%";
+ }
+ }
+ if (e.childNodes == undefined) return;
+ for(var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_parent(c[i]);
+ }
+}
+function zoom(node) {
+ var attr = find_child(node, "rect").attributes;
+ var width = parseInt(attr["fg:w"].value);
+ var xmin = parseInt(attr["fg:x"].value);
+ var xmax = xmin + width;
+ var ymin = parseFloat(attr.y.value);
+ unzoombtn.classList.remove("hide");
+ var el = frames.children;
+ var to_update_text = [];
+ for (var i = 0; i < el.length; i++) {
+ var e = el[i];
+ var a = find_child(e, "rect").attributes;
+ var ex = parseInt(a["fg:x"].value);
+ var ew = parseInt(a["fg:w"].value);
+ // Is it an ancestor
+ if (!inverted) {
+ var upstack = parseFloat(a.y.value) > ymin;
+ } else {
+ var upstack = parseFloat(a.y.value) < ymin;
+ }
+ if (upstack) {
+ // Direct ancestor
+ if (ex <= xmin && (ex+ew) >= xmax) {
+ e.classList.add("parent");
+ zoom_parent(e);
+ to_update_text.push(e);
+ }
+ // not in current path
+ else
+ e.classList.add("hide");
+ }
+ // Children maybe
+ else {
+ // no common path
+ if (ex < xmin || ex >= xmax) {
+ e.classList.add("hide");
+ }
+ else {
+ zoom_child(e, xmin, width);
+ to_update_text.push(e);
+ }
+ }
+ }
+ update_text_for_elements(to_update_text);
+}
+function unzoom() {
+ unzoombtn.classList.add("hide");
+ var el = frames.children;
+ for(var i = 0; i < el.length; i++) {
+ el[i].classList.remove("parent");
+ el[i].classList.remove("hide");
+ zoom_reset(el[i]);
+ }
+ update_text_for_elements(el);
+}
+// search
+function reset_search() {
+ var el = document.querySelectorAll("#frames rect");
+ for (var i = 0; i < el.length; i++) {
+ orig_load(el[i], "fill")
+ }
+ var params = get_params();
+ delete params.s;
+ history.replaceState(null, null, parse_params(params));
+}
+function search_prompt() {
+ if (!searching) {
+ var term = prompt("Enter a search term (regexp " +
+ "allowed, eg: ^ext4_)", "");
+ if (term != null) {
+ search(term)
+ }
+ } else {
+ reset_search();
+ searching = 0;
+ searchbtn.classList.remove("show");
+ searchbtn.firstChild.nodeValue = "Search"
+ matchedtxt.classList.add("hide");
+ matchedtxt.firstChild.nodeValue = ""
+ }
+}
+function search(term) {
+ var re = new RegExp(term);
+ var el = frames.children;
+ var matches = new Object();
+ var maxwidth = 0;
+ for (var i = 0; i < el.length; i++) {
+ var e = el[i];
+ // Skip over frames which are either not visible, or below the zoomed-to frame
+ if (e.classList.contains("hide") || e.classList.contains("parent")) {
+ continue;
+ }
+ var func = g_to_func(e);
+ var rect = find_child(e, "rect");
+ if (func == null || rect == null)
+ continue;
+ // Save max width. Only works as we have a root frame
+ var w = parseInt(rect.attributes["fg:w"].value);
+ if (w > maxwidth)
+ maxwidth = w;
+ if (func.match(re)) {
+ // highlight
+ var x = parseInt(rect.attributes["fg:x"].value);
+ orig_save(rect, "fill");
+ rect.attributes.fill.value = searchcolor;
+ // remember matches
+ if (matches[x] == undefined) {
+ matches[x] = w;
+ } else {
+ if (w > matches[x]) {
+ // overwrite with parent
+ matches[x] = w;
+ }
+ }
+ searching = 1;
+ }
+ }
+ if (!searching)
+ return;
+ var params = get_params();
+ params.s = term;
+ history.replaceState(null, null, parse_params(params));
- // 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="262.0" fill="url(#background)" />
-<text id="title" x="600.00" y="24" >I/O Syscall Count</text>
-<text id="details" x="10.00" y="245" > </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="245" > </text>
-<g id="frames">
-<g >
-<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="385.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="388.23" y="111.5" ></text>
-</g>
-<g >
-<title>/24.08 (116 samples, 0.01%)</title><rect x="1165.6" y="101" width="0.1" height="15.0" fill="rgb(233,130,30)" rx="2" ry="2" />
-<text x="1168.56" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (136 samples, 0.01%)</title><rect x="853.2" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="856.23" y="95.5" ></text>
-</g>
-<g >
-<title>/fd (148 samples, 0.01%)</title><rect x="509.8" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="512.78" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (1,106 samples, 0.09%)</title><rect x="874.4" y="133" width="1.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="877.41" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (245 samples, 0.02%)</title><rect x="722.9" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="725.91" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (356 samples, 0.03%)</title><rect x="849.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="852.67" y="111.5" ></text>
-</g>
-<g >
-<title>/a1 (287 samples, 0.02%)</title><rect x="373.7" y="117" width="0.3" height="15.0" fill="rgb(221,125,18)" rx="2" ry="2" />
-<text x="376.71" y="127.5" ></text>
-</g>
-<g >
-<title>/9b (240 samples, 0.02%)</title><rect x="372.4" y="117" width="0.2" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" />
-<text x="375.37" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (435 samples, 0.04%)</title><rect x="449.5" y="181" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="452.48" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="374.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="377.88" y="111.5" ></text>
-</g>
-<g >
-<title>/telemetry (1,842 samples, 0.15%)</title><rect x="405.5" y="133" width="1.8" height="15.0" fill="rgb(243,127,42)" rx="2" ry="2" />
-<text x="408.47" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (2,472 samples, 0.20%)</title><rect x="633.2" y="165" width="2.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="636.22" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="830.9" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="833.93" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (263 samples, 0.02%)</title><rect x="368.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="371.14" y="111.5" ></text>
-</g>
-<g >
-<title>/05 (283 samples, 0.02%)</title><rect x="337.2" y="117" width="0.2" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" />
-<text x="340.17" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="359.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="362.01" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (411 samples, 0.03%)</title><rect x="972.2" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="975.21" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (108 samples, 0.01%)</title><rect x="270.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="273.71" y="159.5" ></text>
-</g>
-<g >
-<title>/fd (264 samples, 0.02%)</title><rect x="506.2" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="509.19" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (2,411 samples, 0.20%)</title><rect x="835.8" y="165" width="2.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="838.78" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (139 samples, 0.01%)</title><rect x="841.5" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="844.52" y="143.5" ></text>
-</g>
-<g >
-<title>/0f (303 samples, 0.02%)</title><rect x="339.7" y="117" width="0.3" height="15.0" fill="rgb(239,134,37)" rx="2" ry="2" />
-<text x="342.68" y="127.5" ></text>
-</g>
-<g >
-<title>/fe (248 samples, 0.02%)</title><rect x="395.3" y="117" width="0.2" height="15.0" fill="rgb(242,142,41)" rx="2" ry="2" />
-<text x="398.30" y="127.5" ></text>
-</g>
-<g >
-<title>/cpu (220 samples, 0.02%)</title><rect x="765.9" y="149" width="0.2" height="15.0" fill="rgb(238,161,36)" rx="2" ry="2" />
-<text x="768.92" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (276 samples, 0.02%)</title><rect x="768.4" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="771.38" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (228 samples, 0.02%)</title><rect x="385.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="388.95" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (1,874 samples, 0.15%)</title><rect x="322.5" y="133" width="1.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="325.50" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (201 samples, 0.02%)</title><rect x="1153.7" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1156.65" y="111.5" ></text>
-</g>
-<g >
-<title>/1c (259 samples, 0.02%)</title><rect x="342.8" y="117" width="0.2" height="15.0" fill="rgb(226,139,23)" rx="2" ry="2" />
-<text x="345.78" y="127.5" ></text>
-</g>
-<g >
-<title>/user.slice (65,871 samples, 5.40%)</title><rect x="768.4" y="149" width="63.7" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" />
-<text x="771.38" y="159.5" >/user...</text>
-</g>
-<g >
-<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="821.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="824.44" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (161 samples, 0.01%)</title><rect x="516.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="519.90" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (120 samples, 0.01%)</title><rect x="478.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="481.71" y="159.5" ></text>
-</g>
-<g >
-<title>/1d (239 samples, 0.02%)</title><rect x="343.0" y="117" width="0.3" height="15.0" fill="rgb(241,135,40)" rx="2" ry="2" />
-<text x="346.03" y="127.5" ></text>
-</g>
-<g >
-<title>/5.9 (437 samples, 0.04%)</title><rect x="996.8" y="149" width="0.4" height="15.0" fill="rgb(237,96,35)" rx="2" ry="2" />
-<text x="999.76" y="159.5" ></text>
-</g>
-<g >
-<title>/02 (240 samples, 0.02%)</title><rect x="336.5" y="117" width="0.2" height="15.0" fill="rgb(242,147,41)" rx="2" ry="2" />
-<text x="339.49" y="127.5" ></text>
-</g>
-<g >
-<title>/flatpak (5,162 samples, 0.42%)</title><rect x="410.0" y="133" width="5.0" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" />
-<text x="412.97" y="143.5" ></text>
-</g>
-<g >
-<title>/org.kde.Platform.Locale (136 samples, 0.01%)</title><rect x="272.0" y="181" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="274.97" y="191.5" ></text>
-</g>
-<g >
-<title>/23.08 (172 samples, 0.01%)</title><rect x="1162.0" y="101" width="0.1" height="15.0" fill="rgb(233,134,30)" rx="2" ry="2" />
-<text x="1164.98" y="111.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.freedesktop.problems.applet.slice (1,776 samples, 0.15%)</title><rect x="781.9" y="85" width="1.8" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="784.94" y="95.5" ></text>
-</g>
-<g >
-<title>/252750 (439 samples, 0.04%)</title><rect x="539.6" y="181" width="0.4" height="15.0" fill="rgb(226,127,23)" rx="2" ry="2" />
-<text x="542.60" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (899 samples, 0.07%)</title><rect x="744.6" y="165" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="747.63" y="175.5" ></text>
-</g>
-<g >
-<title>/user-0.slice (1,702 samples, 0.14%)</title><rect x="768.4" y="133" width="1.6" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" />
-<text x="771.38" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (229 samples, 0.02%)</title><rect x="380.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="383.29" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="815.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="818.19" y="79.5" ></text>
-</g>
-<g >
-<title>/gconv (316 samples, 0.03%)</title><rect x="841.1" y="165" width="0.3" height="15.0" fill="rgb(238,144,37)" rx="2" ry="2" />
-<text x="844.14" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (129 samples, 0.01%)</title><rect x="440.3" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="443.32" y="175.5" ></text>
-</g>
-<g >
-<title>/repodata (20,620 samples, 1.69%)</title><rect x="1109.5" y="101" width="19.9" height="15.0" fill="rgb(235,137,33)" rx="2" ry="2" />
-<text x="1112.50" y="111.5" ></text>
-</g>
-<g >
-<title>/dnf (13,724 samples, 1.12%)</title><rect x="1136.7" y="165" width="13.2" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" />
-<text x="1139.65" y="175.5" ></text>
-</g>
-<g >
-<title>/bin (6,742 samples, 0.55%)</title><rect x="832.7" y="181" width="6.5" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="835.71" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (815 samples, 0.07%)</title><rect x="968.0" y="149" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="970.97" y="159.5" ></text>
-</g>
-<g >
-<title>/systemd-hostnamed.service (140 samples, 0.01%)</title><rect x="766.5" y="133" width="0.1" height="15.0" fill="rgb(246,145,46)" rx="2" ry="2" />
-<text x="769.46" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="812.1" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="815.07" y="79.5" ></text>
-</g>
-<g >
-<title>/d1 (265 samples, 0.02%)</title><rect x="384.8" y="117" width="0.2" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" />
-<text x="387.75" y="127.5" ></text>
-</g>
-<g >
-<title>/5023 (164 samples, 0.01%)</title><rect x="722.3" y="181" width="0.2" height="15.0" fill="rgb(246,128,45)" rx="2" ry="2" />
-<text x="725.35" y="191.5" ></text>
-</g>
-<g >
-<title>/c2 (223 samples, 0.02%)</title><rect x="381.3" y="117" width="0.2" height="15.0" fill="rgb(247,167,46)" rx="2" ry="2" />
-<text x="384.29" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (204 samples, 0.02%)</title><rect x="390.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="393.53" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (137 samples, 0.01%)</title><rect x="1171.0" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1173.99" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="798.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="801.13" y="79.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.Screencast.slice (1,741 samples, 0.14%)</title><rect x="812.6" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="815.62" y="95.5" ></text>
-</g>
-<g >
-<title>/f2 (243 samples, 0.02%)</title><rect x="392.6" y="117" width="0.2" height="15.0" fill="rgb(244,152,42)" rx="2" ry="2" />
-<text x="395.61" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (20,169 samples, 1.65%)</title><rect x="450.6" y="149" width="19.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="453.62" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="361.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="364.57" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (244 samples, 0.02%)</title><rect x="497.4" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="500.44" y="175.5" ></text>
-</g>
-<g >
-<title>/1656149 (113 samples, 0.01%)</title><rect x="517.7" y="181" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
-<text x="520.72" y="191.5" ></text>
-</g>
-<g >
-<title>/41 (222 samples, 0.02%)</title><rect x="351.3" y="117" width="0.2" height="15.0" fill="rgb(222,130,19)" rx="2" ry="2" />
-<text x="354.29" y="127.5" ></text>
-</g>
-<g >
-<title>/queries (1,326 samples, 0.11%)</title><rect x="842.0" y="133" width="1.3" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
-<text x="844.99" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="391.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="394.93" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (2,472 samples, 0.20%)</title><rect x="633.2" y="149" width="2.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="636.22" y="159.5" ></text>
-</g>
-<g >
-<title>/6f (256 samples, 0.02%)</title><rect x="362.0" y="117" width="0.2" height="15.0" fill="rgb(232,104,30)" rx="2" ry="2" />
-<text x="365.00" y="127.5" ></text>
-</g>
-<g >
-<title>/x86_64 (172 samples, 0.01%)</title><rect x="1165.2" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1168.21" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (203 samples, 0.02%)</title><rect x="346.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="349.22" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="770.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="773.29" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (574 samples, 0.05%)</title><rect x="781.4" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="784.39" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (569 samples, 0.05%)</title><rect x="779.7" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="782.67" y="79.5" ></text>
-</g>
-<g >
-<title>/icons (961 samples, 0.08%)</title><rect x="321.5" y="133" width="1.0" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" />
-<text x="324.54" y="143.5" ></text>
-</g>
-<g >
-<title>/functions (421 samples, 0.03%)</title><rect x="996.8" y="133" width="0.4" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" />
-<text x="999.76" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (289 samples, 0.02%)</title><rect x="350.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="353.54" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (132 samples, 0.01%)</title><rect x="514.2" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="517.25" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="853.0" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="855.95" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="827.1" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="830.12" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="367.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="369.96" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="379.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="382.62" y="111.5" ></text>
-</g>
-<g >
-<title>/6018 (8,181 samples, 0.67%)</title><rect x="725.9" y="181" width="8.0" height="15.0" fill="rgb(239,123,37)" rx="2" ry="2" />
-<text x="728.94" y="191.5" ></text>
-</g>
-<g >
-<title>/1532717 (354 samples, 0.03%)</title><rect x="499.2" y="181" width="0.4" height="15.0" fill="rgb(235,132,34)" rx="2" ry="2" />
-<text x="502.24" y="191.5" ></text>
-</g>
-<g >
-<title>/4744 (116 samples, 0.01%)</title><rect x="718.8" y="181" width="0.2" height="15.0" fill="rgb(237,111,36)" rx="2" ry="2" />
-<text x="721.84" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (136 samples, 0.01%)</title><rect x="1176.0" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1178.96" y="143.5" ></text>
-</g>
-<g >
-<title>/appstream (212 samples, 0.02%)</title><rect x="1153.4" y="149" width="0.2" height="15.0" fill="rgb(225,115,23)" rx="2" ry="2" />
-<text x="1156.44" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (107 samples, 0.01%)</title><rect x="260.2" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="263.15" y="191.5" ></text>
-</g>
-<g >
-<title>/23.08 (150 samples, 0.01%)</title><rect x="1165.4" y="101" width="0.2" height="15.0" fill="rgb(233,134,30)" rx="2" ry="2" />
-<text x="1168.41" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (891 samples, 0.07%)</title><rect x="745.8" y="181" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="748.82" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (189 samples, 0.02%)</title><rect x="1170.8" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1173.81" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (282 samples, 0.02%)</title><rect x="363.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="366.93" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (104 samples, 0.01%)</title><rect x="443.1" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="446.08" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (201 samples, 0.02%)</title><rect x="1153.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1156.85" y="111.5" ></text>
-</g>
-<g >
-<title>/4d (186 samples, 0.02%)</title><rect x="354.0" y="117" width="0.2" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" />
-<text x="357.02" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (178 samples, 0.01%)</title><rect x="378.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="381.79" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (283 samples, 0.02%)</title><rect x="796.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="799.43" y="79.5" ></text>
-</g>
-<g >
-<title>/x86_64 (242 samples, 0.02%)</title><rect x="1169.7" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1172.66" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (348 samples, 0.03%)</title><rect x="435.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="438.60" y="127.5" ></text>
-</g>
-<g >
-<title>/gopls (64,648 samples, 5.30%)</title><rect x="336.0" y="149" width="62.5" height="15.0" fill="rgb(233,144,31)" rx="2" ry="2" />
-<text x="339.03" y="159.5" >/gopls</text>
-</g>
-<g >
-<title>syscall`enter_pread64 (10,437 samples, 0.86%)</title><rect x="1138.0" y="149" width="10.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1141.00" y="159.5" ></text>
-</g>
-<g >
-<title>/.task (254 samples, 0.02%)</title><rect x="432.8" y="165" width="0.3" height="15.0" fill="rgb(236,138,34)" rx="2" ry="2" />
-<text x="435.84" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (1,809 samples, 0.15%)</title><rect x="258.3" y="181" width="1.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="261.33" y="191.5" ></text>
-</g>
-<g >
-<title>/0b (198 samples, 0.02%)</title><rect x="338.7" y="117" width="0.2" height="15.0" fill="rgb(228,147,26)" rx="2" ry="2" />
-<text x="341.66" y="127.5" ></text>
-</g>
-<g >
-<title>/bits (119 samples, 0.01%)</title><rect x="854.3" y="117" width="0.1" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" />
-<text x="857.30" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="343.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="346.71" y="111.5" ></text>
-</g>
-<g >
-<title>/site-packages (319 samples, 0.03%)</title><rect x="872.9" y="149" width="0.3" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" />
-<text x="875.94" y="159.5" ></text>
-</g>
-<g >
-<title>dev (38,470 samples, 3.15%)</title><rect x="272.6" y="197" width="37.2" height="15.0" fill="rgb(236,187,34)" rx="2" ry="2" />
-<text x="275.60" y="207.5" >dev</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="348.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="351.49" y="111.5" ></text>
-</g>
-<g >
-<title>/profile.d (302 samples, 0.02%)</title><rect x="311.8" y="181" width="0.3" height="15.0" fill="rgb(249,144,48)" rx="2" ry="2" />
-<text x="314.84" y="191.5" ></text>
-</g>
-<g >
-<title>usr (170,671 samples, 13.99%)</title><rect x="832.7" y="197" width="165.0" height="15.0" fill="rgb(236,129,34)" rx="2" ry="2" />
-<text x="835.71" y="207.5" >usr</text>
-</g>
-<g >
-<title>/org.gnome.Platform.Locale (293 samples, 0.02%)</title><rect x="1166.5" y="133" width="0.3" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1169.50" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="368.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="371.67" y="111.5" ></text>
-</g>
-<g >
-<title>/runtime (9,225 samples, 0.76%)</title><rect x="859.0" y="133" width="8.9" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="862.00" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (720 samples, 0.06%)</title><rect x="294.2" y="165" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="297.16" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (136 samples, 0.01%)</title><rect x="272.0" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="274.97" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (135 samples, 0.01%)</title><rect x="840.9" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="843.89" y="159.5" ></text>
-</g>
-<g >
-<title>/f3 (199 samples, 0.02%)</title><rect x="392.8" y="117" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="395.84" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (569 samples, 0.05%)</title><rect x="800.1" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="803.11" y="79.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.21\x2dorg.a11y.atspi.Registry.slice (1,739 samples, 0.14%)</title><rect x="770.0" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="773.02" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="807.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="810.77" y="79.5" ></text>
-</g>
-<g >
-<title>/2d (211 samples, 0.02%)</title><rect x="346.7" y="117" width="0.2" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
-<text x="349.66" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (131 samples, 0.01%)</title><rect x="479.1" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="482.07" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (582 samples, 0.05%)</title><rect x="1136.8" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1139.76" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (125 samples, 0.01%)</title><rect x="439.7" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="442.71" y="175.5" ></text>
-</g>
-<g >
-<title>/68 (224 samples, 0.02%)</title><rect x="360.3" y="117" width="0.3" height="15.0" fill="rgb(225,97,22)" rx="2" ry="2" />
-<text x="363.33" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="767.8" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="770.81" y="143.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dcom.intel.dleyna\x5cx2drenderer.slice (1,776 samples, 0.15%)</title><rect x="773.4" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="776.41" y="95.5" ></text>
-</g>
-<g >
-<title>/Unsplash (126 samples, 0.01%)</title><rect x="407.7" y="117" width="0.2" height="15.0" fill="rgb(241,127,40)" rx="2" ry="2" />
-<text x="410.75" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (244 samples, 0.02%)</title><rect x="498.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="501.19" y="175.5" ></text>
-</g>
-<g >
-<title>/.ruby-lsp (117 samples, 0.01%)</title><rect x="436.8" y="133" width="0.1" height="15.0" fill="rgb(246,144,45)" rx="2" ry="2" />
-<text x="439.79" y="143.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Nautilus.slice (1,768 samples, 0.14%)</title><rect x="797.3" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="800.25" y="95.5" ></text>
-</g>
-<g >
-<title>/2e (235 samples, 0.02%)</title><rect x="346.9" y="117" width="0.2" height="15.0" fill="rgb(238,127,37)" rx="2" ry="2" />
-<text x="349.86" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (315 samples, 0.03%)</title><rect x="855.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="858.64" y="127.5" ></text>
-</g>
-<g >
-<title>/repodata (98,940 samples, 8.11%)</title><rect x="1013.0" y="101" width="95.6" height="15.0" fill="rgb(235,137,33)" rx="2" ry="2" />
-<text x="1015.97" y="111.5" >/repodata</text>
-</g>
-<g >
-<title>syscall`enter_io_uring_enter (1,601 samples, 0.13%)</title><rect x="43.1" y="181" width="1.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="46.11" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (153 samples, 0.01%)</title><rect x="722.3" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="725.35" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="783.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="786.66" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (3,316 samples, 0.27%)</title><rect x="427.0" y="117" width="3.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="430.04" y="127.5" ></text>
-</g>
-<g >
-<title>/ea (249 samples, 0.02%)</title><rect x="390.7" y="117" width="0.3" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" />
-<text x="393.72" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (7,484 samples, 0.61%)</title><rect x="35.9" y="181" width="7.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="38.87" y="191.5" ></text>
-</g>
-<g >
-<title>/python3.13 (1,435 samples, 0.12%)</title><rect x="844.2" y="165" width="1.4" height="15.0" fill="rgb(240,160,39)" rx="2" ry="2" />
-<text x="847.22" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="788.2" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="791.23" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="787.4" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="790.37" y="79.5" ></text>
-</g>
-<g >
-<title>/07 (254 samples, 0.02%)</title><rect x="337.7" y="117" width="0.2" height="15.0" fill="rgb(234,131,32)" rx="2" ry="2" />
-<text x="340.69" y="127.5" ></text>
-</g>
-<g >
-<title>/applications (1,270 samples, 0.10%)</title><rect x="1153.7" y="117" width="1.2" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" />
-<text x="1156.65" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="774.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="777.29" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (13,695 samples, 1.12%)</title><rect x="619.4" y="149" width="13.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="622.42" y="159.5" ></text>
-</g>
-<g >
-<title>/b5 (225 samples, 0.02%)</title><rect x="378.4" y="117" width="0.2" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" />
-<text x="381.37" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (265 samples, 0.02%)</title><rect x="357.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="360.53" y="111.5" ></text>
-</g>
-<g >
-<title>internalgenerated (264 samples, 0.02%)</title><rect x="443.8" y="197" width="0.2" height="15.0" fill="rgb(247,164,46)" rx="2" ry="2" />
-<text x="446.76" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="775.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="778.67" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (135 samples, 0.01%)</title><rect x="434.8" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="437.84" y="95.5" ></text>
-</g>
-<g >
-<title>/92 (269 samples, 0.02%)</title><rect x="370.2" y="117" width="0.3" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" />
-<text x="373.24" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="784.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="787.22" y="79.5" ></text>
-</g>
-<g >
-<title>/85 (212 samples, 0.02%)</title><rect x="367.2" y="117" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
-<text x="370.20" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="772.9" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="775.86" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="774.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="776.97" y="79.5" ></text>
-</g>
-<g >
-<title>/ssh (124 samples, 0.01%)</title><rect x="312.2" y="181" width="0.1" height="15.0" fill="rgb(237,126,35)" rx="2" ry="2" />
-<text x="315.22" y="191.5" ></text>
-</g>
-<g >
-<title>bin (136 samples, 0.01%)</title><rect x="267.7" y="197" width="0.2" height="15.0" fill="rgb(247,129,46)" rx="2" ry="2" />
-<text x="270.72" y="207.5" ></text>
-</g>
-<g >
-<title>/01 (243 samples, 0.02%)</title><rect x="336.3" y="117" width="0.2" height="15.0" fill="rgb(227,150,24)" rx="2" ry="2" />
-<text x="339.25" y="127.5" ></text>
-</g>
-<g >
-<title>/app (125 samples, 0.01%)</title><rect x="1159.8" y="85" width="0.1" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" />
-<text x="1162.78" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (164 samples, 0.01%)</title><rect x="442.1" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="445.09" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (337 samples, 0.03%)</title><rect x="804.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="807.61" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (141 samples, 0.01%)</title><rect x="1174.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1177.78" y="159.5" ></text>
-</g>
-<g >
-<title>/256811 (25,144 samples, 2.06%)</title><rect x="540.1" y="181" width="24.3" height="15.0" fill="rgb(228,127,25)" rx="2" ry="2" />
-<text x="543.06" y="191.5" >/..</text>
-</g>
-<g >
-<title>/goexperiment (805 samples, 0.07%)</title><rect x="849.6" y="117" width="0.8" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
-<text x="852.58" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (1,013 samples, 0.08%)</title><rect x="854.7" y="117" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="857.66" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.freedesktop.portal.IBus.slice (1,775 samples, 0.15%)</title><rect x="780.2" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="783.22" y="95.5" ></text>
-</g>
-<g >
-<title>/f0 (227 samples, 0.02%)</title><rect x="392.1" y="117" width="0.3" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" />
-<text x="395.14" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="346.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="349.00" y="111.5" ></text>
-</g>
-<g >
-<title>/08 (247 samples, 0.02%)</title><rect x="337.9" y="117" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
-<text x="340.94" y="127.5" ></text>
-</g>
-<g >
-<title>/bytealg (574 samples, 0.05%)</title><rect x="848.1" y="117" width="0.5" height="15.0" fill="rgb(239,120,37)" rx="2" ry="2" />
-<text x="851.09" y="127.5" ></text>
-</g>
-<g >
-<title>/fedora-41-x86_64 (98,986 samples, 8.11%)</title><rect x="1013.0" y="117" width="95.7" height="15.0" fill="rgb(232,142,30)" rx="2" ry="2" />
-<text x="1015.97" y="127.5" >/fedora-41-..</text>
-</g>
-<g >
-<title>/gvfs (118 samples, 0.01%)</title><rect x="841.9" y="165" width="0.1" height="15.0" fill="rgb(236,121,34)" rx="2" ry="2" />
-<text x="844.86" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (584 samples, 0.05%)</title><rect x="511.1" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="514.07" y="159.5" ></text>
-</g>
-<g >
-<title>/PNP0A08:00 (147 samples, 0.01%)</title><rect x="765.8" y="133" width="0.1" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" />
-<text x="768.78" y="143.5" ></text>
-</g>
-<g >
-<title>refsremotes (1,190 samples, 0.10%)</title><rect x="760.1" y="197" width="1.2" height="15.0" fill="rgb(238,168,36)" rx="2" ry="2" />
-<text x="763.11" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (138 samples, 0.01%)</title><rect x="873.6" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="876.60" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (123 samples, 0.01%)</title><rect x="515.5" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="518.46" y="175.5" ></text>
-</g>
-<g >
-<title>/c3 (258 samples, 0.02%)</title><rect x="381.5" y="117" width="0.3" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" />
-<text x="384.50" y="127.5" ></text>
-</g>
-<g >
-<title>/5.15-24.08 (110 samples, 0.01%)</title><rect x="1169.0" y="101" width="0.1" height="15.0" fill="rgb(233,96,30)" rx="2" ry="2" />
-<text x="1171.95" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="344.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="347.87" y="111.5" ></text>
-</g>
-<g >
-<title>/4602 (118 samples, 0.01%)</title><rect x="718.7" y="181" width="0.1" height="15.0" fill="rgb(246,114,45)" rx="2" ry="2" />
-<text x="721.68" y="191.5" ></text>
-</g>
-<g >
-<title>/PNP0C09:00 (147 samples, 0.01%)</title><rect x="765.8" y="101" width="0.1" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" />
-<text x="768.78" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (228 samples, 0.02%)</title><rect x="347.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="350.79" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (535 samples, 0.04%)</title><rect x="869.6" y="117" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="872.62" y="127.5" ></text>
-</g>
-<g >
-<title>/runtime (343 samples, 0.03%)</title><rect x="832.7" y="165" width="0.4" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="835.73" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="830.6" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="833.61" y="95.5" ></text>
-</g>
-<g >
-<title>/go (1,866 samples, 0.15%)</title><rect x="405.5" y="149" width="1.8" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
-<text x="408.47" y="159.5" ></text>
-</g>
-<g >
-<title>/8d (249 samples, 0.02%)</title><rect x="369.1" y="117" width="0.3" height="15.0" fill="rgb(246,156,45)" rx="2" ry="2" />
-<text x="372.14" y="127.5" ></text>
-</g>
-<g >
-<title>/95 (207 samples, 0.02%)</title><rect x="371.0" y="117" width="0.2" height="15.0" fill="rgb(239,147,38)" rx="2" ry="2" />
-<text x="373.99" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (141 samples, 0.01%)</title><rect x="478.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="481.54" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (142 samples, 0.01%)</title><rect x="718.3" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="721.33" y="175.5" ></text>
-</g>
-<g >
-<title>/users (291 samples, 0.02%)</title><rect x="762.4" y="165" width="0.3" height="15.0" fill="rgb(238,116,36)" rx="2" ry="2" />
-<text x="765.38" y="175.5" ></text>
-</g>
-<g >
-<title>/99 (263 samples, 0.02%)</title><rect x="371.9" y="117" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" />
-<text x="374.88" y="127.5" ></text>
-</g>
-<g >
-<title>/self (7,593 samples, 0.62%)</title><rect x="738.2" y="181" width="7.3" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" />
-<text x="741.16" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="363.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="365.98" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (198 samples, 0.02%)</title><rect x="338.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="341.66" y="111.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.Notifications.slice (1,767 samples, 0.14%)</title><rect x="810.9" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="813.91" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (281 samples, 0.02%)</title><rect x="802.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="805.64" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (189 samples, 0.02%)</title><rect x="843.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="846.49" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (771 samples, 0.06%)</title><rect x="335.3" y="133" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="338.28" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (182 samples, 0.01%)</title><rect x="857.9" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="860.86" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (310 samples, 0.03%)</title><rect x="974.1" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="977.14" y="143.5" ></text>
-</g>
-<g >
-<title>/1655698 (1,128 samples, 0.09%)</title><rect x="512.4" y="181" width="1.1" height="15.0" fill="rgb(238,129,36)" rx="2" ry="2" />
-<text x="515.38" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (312 samples, 0.03%)</title><rect x="506.9" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="509.89" y="175.5" ></text>
-</g>
-<g >
-<title>/37 (233 samples, 0.02%)</title><rect x="348.9" y="117" width="0.2" height="15.0" fill="rgb(230,116,28)" rx="2" ry="2" />
-<text x="351.92" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (777 samples, 0.06%)</title><rect x="314.1" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="317.06" y="191.5" ></text>
-</g>
-<g >
-<title>/tracker3 (6,526 samples, 0.53%)</title><rect x="398.7" y="149" width="6.3" height="15.0" fill="rgb(245,124,44)" rx="2" ry="2" />
-<text x="401.68" y="159.5" ></text>
-</g>
-<g >
-<title>/b8 (202 samples, 0.02%)</title><rect x="379.0" y="117" width="0.2" height="15.0" fill="rgb(225,97,22)" rx="2" ry="2" />
-<text x="381.96" y="127.5" ></text>
-</g>
-<g >
-<title>/1656481 (280 samples, 0.02%)</title><rect x="527.6" y="181" width="0.2" height="15.0" fill="rgb(235,129,33)" rx="2" ry="2" />
-<text x="530.56" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="388.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="391.12" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (678 samples, 0.06%)</title><rect x="51.3" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="54.31" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (126 samples, 0.01%)</title><rect x="839.1" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="842.10" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (621 samples, 0.05%)</title><rect x="827.7" y="85" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="830.74" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_io_uring_enter (193 samples, 0.02%)</title><rect x="1131.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1134.07" y="159.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.Locale (127 samples, 0.01%)</title><rect x="270.8" y="181" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="273.81" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (245 samples, 0.02%)</title><rect x="358.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="361.77" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (238 samples, 0.02%)</title><rect x="362.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="365.25" y="111.5" ></text>
-</g>
-<g >
-<title>/ca (271 samples, 0.02%)</title><rect x="383.1" y="117" width="0.2" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" />
-<text x="386.08" y="127.5" ></text>
-</g>
-<g >
-<title>deployruntime (2,784 samples, 0.23%)</title><rect x="269.9" y="197" width="2.7" height="15.0" fill="rgb(236,207,34)" rx="2" ry="2" />
-<text x="272.91" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (152 samples, 0.01%)</title><rect x="871.5" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="874.52" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (335 samples, 0.03%)</title><rect x="772.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="775.26" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (338 samples, 0.03%)</title><rect x="780.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="783.78" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (174 samples, 0.01%)</title><rect x="497.7" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="500.67" y="175.5" ></text>
-</g>
-<g >
-<title>/4787 (2,933 samples, 0.24%)</title><rect x="719.1" y="181" width="2.9" height="15.0" fill="rgb(240,111,38)" rx="2" ry="2" />
-<text x="722.14" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="381.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="384.05" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_unlinkat (128 samples, 0.01%)</title><rect x="120.8" y="181" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="123.84" y="191.5" ></text>
-</g>
-<g >
-<title>/errors (105 samples, 0.01%)</title><rect x="847.0" y="133" width="0.1" height="15.0" fill="rgb(239,144,38)" rx="2" ry="2" />
-<text x="850.04" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (280 samples, 0.02%)</title><rect x="527.6" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="530.56" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (132 samples, 0.01%)</title><rect x="764.0" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="766.96" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="365.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="368.31" y="111.5" ></text>
-</g>
-<g >
-<title>/a5 (248 samples, 0.02%)</title><rect x="374.6" y="117" width="0.3" height="15.0" fill="rgb(232,112,29)" rx="2" ry="2" />
-<text x="377.64" y="127.5" ></text>
-</g>
-<g >
-<title>/idb (676 samples, 0.06%)</title><rect x="415.3" y="69" width="0.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
-<text x="418.33" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="360.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="363.33" y="111.5" ></text>
-</g>
-<g >
-<title>/db (235 samples, 0.02%)</title><rect x="387.2" y="117" width="0.2" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" />
-<text x="390.16" y="127.5" ></text>
-</g>
-<g >
-<title>/.aws (126 samples, 0.01%)</title><rect x="321.0" y="165" width="0.2" height="15.0" fill="rgb(235,160,33)" rx="2" ry="2" />
-<text x="324.05" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (25,133 samples, 2.06%)</title><rect x="540.1" y="149" width="24.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="543.06" y="159.5" >s..</text>
-</g>
-<g >
-<title>/61 (245 samples, 0.02%)</title><rect x="358.8" y="117" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" />
-<text x="361.77" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (592 samples, 0.05%)</title><rect x="1131.3" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1134.26" y="159.5" ></text>
-</g>
-<g >
-<title>/fd (4,932 samples, 0.40%)</title><rect x="519.0" y="165" width="4.8" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="521.98" y="175.5" ></text>
-</g>
-<g >
-<title>/debug (250 samples, 0.02%)</title><rect x="832.2" y="165" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
-<text x="835.15" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (20,527 samples, 1.68%)</title><rect x="1109.6" y="85" width="19.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1112.59" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (281 samples, 0.02%)</title><rect x="361.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="364.30" y="111.5" ></text>
-</g>
-<g >
-<title>/d8 (231 samples, 0.02%)</title><rect x="386.4" y="117" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
-<text x="389.41" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (275 samples, 0.02%)</title><rect x="438.8" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="441.83" y="159.5" ></text>
-</g>
-<g >
-<title>/1647032 (790 samples, 0.06%)</title><rect x="509.0" y="181" width="0.8" height="15.0" fill="rgb(247,129,46)" rx="2" ry="2" />
-<text x="512.01" y="191.5" ></text>
-</g>
-<g >
-<title>/.cache (86,856 samples, 7.12%)</title><rect x="321.2" y="165" width="84.0" height="15.0" fill="rgb(245,154,44)" rx="2" ry="2" />
-<text x="324.17" y="175.5" >/.cache</text>
-</g>
-<g >
-<title>syscall`enter_newfstat (1,292 samples, 0.11%)</title><rect x="445.3" y="181" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="448.27" y="191.5" ></text>
-</g>
-<g >
-<title>/f6 (244 samples, 0.02%)</title><rect x="393.5" y="117" width="0.2" height="15.0" fill="rgb(237,139,35)" rx="2" ry="2" />
-<text x="396.50" y="127.5" ></text>
-</g>
-<g >
-<title>/1652716 (115 samples, 0.01%)</title><rect x="510.1" y="181" width="0.1" height="15.0" fill="rgb(237,129,35)" rx="2" ry="2" />
-<text x="513.07" y="191.5" ></text>
-</g>
-<g >
-<title>/11 (234 samples, 0.02%)</title><rect x="340.2" y="117" width="0.2" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" />
-<text x="343.17" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="822.9" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="825.87" y="79.5" ></text>
-</g>
-<g >
-<title>/helix (467 samples, 0.04%)</title><rect x="407.3" y="149" width="0.4" height="15.0" fill="rgb(248,132,47)" rx="2" ry="2" />
-<text x="410.28" y="159.5" ></text>
-</g>
-<g >
-<title>/2a (805 samples, 0.07%)</title><rect x="325.6" y="133" width="0.8" height="15.0" fill="rgb(228,140,25)" rx="2" ry="2" />
-<text x="328.60" y="143.5" ></text>
-</g>
-<g >
-<title>/fb (201 samples, 0.02%)</title><rect x="394.6" y="117" width="0.2" height="15.0" fill="rgb(230,152,27)" rx="2" ry="2" />
-<text x="397.65" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="367.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="370.93" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (114 samples, 0.01%)</title><rect x="405.5" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="408.47" y="111.5" ></text>
-</g>
-<g >
-<title>/24.08 (175 samples, 0.01%)</title><rect x="1162.1" y="101" width="0.2" height="15.0" fill="rgb(233,130,30)" rx="2" ry="2" />
-<text x="1165.15" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (285 samples, 0.02%)</title><rect x="778.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="781.80" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (348 samples, 0.03%)</title><rect x="1174.3" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1177.30" y="159.5" ></text>
-</g>
-<g >
-<title>/7f (236 samples, 0.02%)</title><rect x="365.7" y="117" width="0.3" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" />
-<text x="368.75" y="127.5" ></text>
-</g>
-<g >
-<title>/da (276 samples, 0.02%)</title><rect x="386.9" y="117" width="0.3" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
-<text x="389.89" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (163 samples, 0.01%)</title><rect x="511.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="514.69" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (112 samples, 0.01%)</title><rect x="765.2" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="768.17" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (245 samples, 0.02%)</title><rect x="388.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="391.84" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (191 samples, 0.02%)</title><rect x="995.5" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="998.51" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="825.7" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="828.71" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (142 samples, 0.01%)</title><rect x="354.2" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="357.20" y="111.5" ></text>
-</g>
-<g >
-<title>/15 (248 samples, 0.02%)</title><rect x="341.1" y="117" width="0.3" height="15.0" fill="rgb(236,132,34)" rx="2" ry="2" />
-<text x="344.12" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (303 samples, 0.02%)</title><rect x="339.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="342.68" y="111.5" ></text>
-</g>
-<g >
-<title>/49 (273 samples, 0.02%)</title><rect x="353.1" y="117" width="0.2" height="15.0" fill="rgb(226,104,23)" rx="2" ry="2" />
-<text x="356.06" y="127.5" ></text>
-</g>
-<g >
-<title>/72 (291 samples, 0.02%)</title><rect x="362.7" y="117" width="0.3" height="15.0" fill="rgb(247,167,46)" rx="2" ry="2" />
-<text x="365.69" y="127.5" ></text>
-</g>
-<g >
-<title>/c1 (248 samples, 0.02%)</title><rect x="381.0" y="117" width="0.3" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" />
-<text x="384.05" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (285 samples, 0.02%)</title><rect x="436.5" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="439.48" y="127.5" ></text>
-</g>
-<g >
-<title>/53 (228 samples, 0.02%)</title><rect x="355.4" y="117" width="0.2" height="15.0" fill="rgb(235,118,33)" rx="2" ry="2" />
-<text x="358.35" y="127.5" ></text>
-</g>
-<g >
-<title>/syscall (2,066 samples, 0.17%)</title><rect x="869.5" y="133" width="2.0" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" />
-<text x="872.49" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="794.2" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="797.16" y="79.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dio.github.celluloid_player.Celluloid.slice (1,774 samples, 0.15%)</title><rect x="776.8" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="779.80" y="95.5" ></text>
-</g>
-<g >
-<title>/__pycache__ (424 samples, 0.03%)</title><rect x="844.2" y="149" width="0.4" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" />
-<text x="847.22" y="159.5" ></text>
-</g>
-<g >
-<title>/2b (203 samples, 0.02%)</title><rect x="346.2" y="117" width="0.2" height="15.0" fill="rgb(226,137,23)" rx="2" ry="2" />
-<text x="349.22" y="127.5" ></text>
-</g>
-<g >
-<title>/1488 (397 samples, 0.03%)</title><rect x="497.1" y="181" width="0.3" height="15.0" fill="rgb(240,135,39)" rx="2" ry="2" />
-<text x="500.06" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (488 samples, 0.04%)</title><rect x="471.9" y="165" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="474.93" y="175.5" ></text>
-</g>
-<g >
-<title>/c7 (204 samples, 0.02%)</title><rect x="382.5" y="117" width="0.2" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
-<text x="385.46" y="127.5" ></text>
-</g>
-<g >
-<title>/1656332 (2,806 samples, 0.23%)</title><rect x="524.3" y="181" width="2.7" height="15.0" fill="rgb(245,129,44)" rx="2" ry="2" />
-<text x="527.29" y="191.5" ></text>
-</g>
-<g >
-<title>/x86_64 (142 samples, 0.01%)</title><rect x="272.1" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="275.10" y="175.5" ></text>
-</g>
-<g >
-<title>/a0 (213 samples, 0.02%)</title><rect x="373.5" y="117" width="0.2" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" />
-<text x="376.50" y="127.5" ></text>
-</g>
-<g >
-<title>/dnf (350 samples, 0.03%)</title><rect x="310.2" y="181" width="0.4" height="15.0" fill="rgb(248,162,48)" rx="2" ry="2" />
-<text x="313.22" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (212 samples, 0.02%)</title><rect x="373.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="376.50" y="111.5" ></text>
-</g>
-<g >
-<title>/fedora (300 samples, 0.02%)</title><rect x="760.1" y="181" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
-<text x="763.11" y="191.5" ></text>
-</g>
-<g >
-<title>/BAT0 (496 samples, 0.04%)</title><rect x="765.2" y="149" width="0.5" height="15.0" fill="rgb(229,157,27)" rx="2" ry="2" />
-<text x="768.17" y="159.5" ></text>
-</g>
-<g >
-<title>/localauthority (180 samples, 0.01%)</title><rect x="311.6" y="165" width="0.2" height="15.0" fill="rgb(240,118,38)" rx="2" ry="2" />
-<text x="314.63" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (120 samples, 0.01%)</title><rect x="270.9" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="273.94" y="175.5" ></text>
-</g>
-<g >
-<title>/org.gnome.Platform (197 samples, 0.02%)</title><rect x="271.7" y="181" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="274.66" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (367 samples, 0.03%)</title><rect x="816.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="819.57" y="79.5" ></text>
-</g>
-<g >
-<title>/fd (132 samples, 0.01%)</title><rect x="514.1" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="517.11" y="175.5" ></text>
-</g>
-<g >
-<title>/46 (223 samples, 0.02%)</title><rect x="352.4" y="117" width="0.2" height="15.0" fill="rgb(231,114,29)" rx="2" ry="2" />
-<text x="355.39" y="127.5" ></text>
-</g>
-<g >
-<title>/ab (219 samples, 0.02%)</title><rect x="376.1" y="117" width="0.2" height="15.0" fill="rgb(223,122,20)" rx="2" ry="2" />
-<text x="379.06" y="127.5" ></text>
-</g>
-<g >
-<title>/icons (190 samples, 0.02%)</title><rect x="1153.5" y="85" width="0.1" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" />
-<text x="1156.46" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (218 samples, 0.02%)</title><rect x="528.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="531.14" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="351.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="354.04" y="111.5" ></text>
-</g>
-<g >
-<title>/12 (253 samples, 0.02%)</title><rect x="340.4" y="117" width="0.2" height="15.0" fill="rgb(241,142,40)" rx="2" ry="2" />
-<text x="343.40" y="127.5" ></text>
-</g>
-<g >
-<title>/commit-graphs (122 samples, 0.01%)</title><rect x="255.8" y="165" width="0.1" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
-<text x="258.79" y="175.5" ></text>
-</g>
-<g >
-<title>/kvm (242 samples, 0.02%)</title><rect x="832.2" y="149" width="0.2" height="15.0" fill="rgb(222,101,19)" rx="2" ry="2" />
-<text x="835.15" y="159.5" ></text>
-</g>
-<g >
-<title>/en_GB (183 samples, 0.01%)</title><rect x="994.4" y="149" width="0.1" height="15.0" fill="rgb(231,157,29)" rx="2" ry="2" />
-<text x="997.37" y="159.5" ></text>
-</g>
-<g >
-<title>/x86_64 (112 samples, 0.01%)</title><rect x="1166.2" y="117" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1169.22" y="127.5" ></text>
-</g>
-<g >
-<title>/org.gnome.Platform (270 samples, 0.02%)</title><rect x="1166.8" y="133" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="1169.78" y="143.5" ></text>
-</g>
-<g >
-<title>/e8 (236 samples, 0.02%)</title><rect x="390.3" y="117" width="0.2" height="15.0" fill="rgb(234,138,32)" rx="2" ry="2" />
-<text x="393.30" y="127.5" ></text>
-</g>
-<g >
-<title>/1b (230 samples, 0.02%)</title><rect x="342.6" y="117" width="0.2" height="15.0" fill="rgb(227,142,25)" rx="2" ry="2" />
-<text x="345.56" y="127.5" ></text>
-</g>
-<g >
-<title>/BraveSoftware (619 samples, 0.05%)</title><rect x="433.1" y="101" width="0.6" height="15.0" fill="rgb(248,154,47)" rx="2" ry="2" />
-<text x="436.08" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="345.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="348.12" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (9,166 samples, 0.75%)</title><rect x="416.2" y="117" width="8.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="419.24" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (284 samples, 0.02%)</title><rect x="795.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="798.84" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (215 samples, 0.02%)</title><rect x="359.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="362.23" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="793.1" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="796.05" y="79.5" ></text>
-</g>
-<g >
-<title>/user@1001.service (63,942 samples, 5.24%)</title><rect x="770.0" y="117" width="61.9" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" />
-<text x="773.02" y="127.5" >/user@..</text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="829.2" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="832.23" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (208 samples, 0.02%)</title><rect x="340.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="342.97" y="111.5" ></text>
-</g>
-<g >
-<title>/83 (250 samples, 0.02%)</title><rect x="366.7" y="117" width="0.3" height="15.0" fill="rgb(244,159,43)" rx="2" ry="2" />
-<text x="369.72" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (286 samples, 0.02%)</title><rect x="801.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="804.53" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (105 samples, 0.01%)</title><rect x="415.1" y="37" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="418.10" y="47.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="825.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="828.11" y="79.5" ></text>
-</g>
-<g >
-<title>/6.7 (119 samples, 0.01%)</title><rect x="1169.8" y="101" width="0.1" height="15.0" fill="rgb(239,91,38)" rx="2" ry="2" />
-<text x="1172.77" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (205 samples, 0.02%)</title><rect x="515.1" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="518.13" y="175.5" ></text>
-</g>
-<g >
-<title>/fontconfig (402 samples, 0.03%)</title><rect x="846.2" y="165" width="0.4" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="849.23" y="175.5" ></text>
-</g>
-<g >
-<title>/dd (249 samples, 0.02%)</title><rect x="387.6" y="117" width="0.3" height="15.0" fill="rgb(246,156,45)" rx="2" ry="2" />
-<text x="390.62" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pwrite64 (1,744 samples, 0.14%)</title><rect x="1148.1" y="149" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1151.09" y="159.5" ></text>
-</g>
-<g >
-<title>/1640421 (152 samples, 0.01%)</title><rect x="508.7" y="181" width="0.1" height="15.0" fill="rgb(229,129,27)" rx="2" ry="2" />
-<text x="511.68" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="792.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="795.45" y="79.5" ></text>
-</g>
-<g >
-<title>/local (4,091 samples, 0.34%)</title><rect x="962.5" y="181" width="4.0" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" />
-<text x="965.52" y="191.5" ></text>
-</g>
-<g >
-<title>.gitrefs (501 samples, 0.04%)</title><rect x="256.5" y="197" width="0.5" height="15.0" fill="rgb(239,132,37)" rx="2" ry="2" />
-<text x="259.50" y="207.5" ></text>
-</g>
-<g >
-<title>/remotes (170 samples, 0.01%)</title><rect x="256.7" y="181" width="0.2" height="15.0" fill="rgb(238,137,36)" rx="2" ry="2" />
-<text x="259.73" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (2,595 samples, 0.21%)</title><rect x="479.8" y="149" width="2.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="482.83" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (280 samples, 0.02%)</title><rect x="342.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="345.06" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (727 samples, 0.06%)</title><rect x="856.9" y="117" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="859.86" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="816.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="819.02" y="79.5" ></text>
-</g>
-<g >
-<title>/22 (223 samples, 0.02%)</title><rect x="344.2" y="117" width="0.2" height="15.0" fill="rgb(240,137,39)" rx="2" ry="2" />
-<text x="347.20" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="813.8" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="816.76" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="395.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="398.07" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (124 samples, 0.01%)</title><rect x="1153.0" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1155.96" y="143.5" ></text>
-</g>
-<g >
-<title>/rules.d (270 samples, 0.02%)</title><rect x="961.9" y="149" width="0.3" height="15.0" fill="rgb(247,124,47)" rx="2" ry="2" />
-<text x="964.93" y="159.5" ></text>
-</g>
-<g >
-<title>/cache (402 samples, 0.03%)</title><rect x="846.2" y="149" width="0.4" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" />
-<text x="849.23" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (225 samples, 0.02%)</title><rect x="385.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="388.01" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="792.2" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="795.17" y="79.5" ></text>
-</g>
-<g >
-<title>/refs (572 samples, 0.05%)</title><rect x="434.6" y="117" width="0.6" height="15.0" fill="rgb(239,137,37)" rx="2" ry="2" />
-<text x="437.62" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (360 samples, 0.03%)</title><rect x="471.3" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="474.35" y="175.5" ></text>
-</g>
-<g >
-<title>/1637219 (718 samples, 0.06%)</title><rect x="506.2" y="181" width="0.7" height="15.0" fill="rgb(235,129,34)" rx="2" ry="2" />
-<text x="509.19" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (105 samples, 0.01%)</title><rect x="718.8" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="721.84" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (409 samples, 0.03%)</title><rect x="450.1" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="453.08" y="175.5" ></text>
-</g>
-<g >
-<title>/1655774 (206 samples, 0.02%)</title><rect x="515.1" y="181" width="0.2" height="15.0" fill="rgb(246,129,45)" rx="2" ry="2" />
-<text x="518.13" y="191.5" ></text>
-</g>
-<g >
-<title>/ec (220 samples, 0.02%)</title><rect x="391.2" y="117" width="0.2" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" />
-<text x="394.22" y="127.5" ></text>
-</g>
-<g >
-<title>/54 (217 samples, 0.02%)</title><rect x="355.6" y="117" width="0.2" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" />
-<text x="358.57" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Photos.slice (1,748 samples, 0.14%)</title><rect x="802.4" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="805.36" y="95.5" ></text>
-</g>
-<g >
-<title>/2 (1,418 samples, 0.12%)</title><rect x="564.6" y="181" width="1.4" height="15.0" fill="rgb(251,127,50)" rx="2" ry="2" />
-<text x="567.61" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (214 samples, 0.02%)</title><rect x="851.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="854.48" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (521 samples, 0.04%)</title><rect x="735.4" y="165" width="0.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="738.44" y="175.5" ></text>
-</g>
-<g >
-<title>runtimeorg.freedesktop.Platform.GL.default (176 samples, 0.01%)</title><rect x="763.5" y="197" width="0.2" height="15.0" fill="rgb(228,156,25)" rx="2" ry="2" />
-<text x="766.50" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="789.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="792.32" y="79.5" ></text>
-</g>
-<g >
-<title>/34 (216 samples, 0.02%)</title><rect x="348.3" y="117" width="0.2" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" />
-<text x="351.28" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (611 samples, 0.05%)</title><rect x="320.3" y="181" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="323.30" y="191.5" ></text>
-</g>
-<g >
-<title>/c0 (301 samples, 0.02%)</title><rect x="380.8" y="117" width="0.2" height="15.0" fill="rgb(233,173,31)" rx="2" ry="2" />
-<text x="383.76" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="787.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="790.09" y="79.5" ></text>
-</g>
-<g >
-<title>/aa (187 samples, 0.02%)</title><rect x="375.9" y="117" width="0.2" height="15.0" fill="rgb(225,125,22)" rx="2" ry="2" />
-<text x="378.88" y="127.5" ></text>
-</g>
-<g >
-<title>/app (235 samples, 0.02%)</title><rect x="760.4" y="165" width="0.2" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" />
-<text x="763.40" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (146 samples, 0.01%)</title><rect x="508.5" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="511.54" y="175.5" ></text>
-</g>
-<g >
-<title>/org.kde.Platform.Locale (196 samples, 0.02%)</title><rect x="1169.2" y="133" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1172.21" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (247 samples, 0.02%)</title><rect x="337.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="340.94" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (392 samples, 0.03%)</title><rect x="508.0" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="510.99" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="811.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="814.19" y="79.5" ></text>
-</g>
-<g >
-<title>/45 (105 samples, 0.01%)</title><rect x="1166.8" y="101" width="0.1" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" />
-<text x="1169.78" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (257 samples, 0.02%)</title><rect x="340.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="343.64" y="111.5" ></text>
-</g>
-<g >
-<title>/2c478f68 (64,639 samples, 5.30%)</title><rect x="336.0" y="133" width="62.5" height="15.0" fill="rgb(229,134,26)" rx="2" ry="2" />
-<text x="339.03" y="143.5" >/2c478..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (201 samples, 0.02%)</title><rect x="352.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="354.99" y="111.5" ></text>
-</g>
-<g >
-<title>/tracker3-miners (332 samples, 0.03%)</title><rect x="996.4" y="165" width="0.3" height="15.0" fill="rgb(238,124,36)" rx="2" ry="2" />
-<text x="999.39" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="782.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="785.82" y="79.5" ></text>
-</g>
-<g >
-<title>deployapp (1,719 samples, 0.14%)</title><rect x="268.2" y="197" width="1.7" height="15.0" fill="rgb(248,207,47)" rx="2" ry="2" />
-<text x="271.24" y="207.5" ></text>
-</g>
-<g >
-<title>/e4 (242 samples, 0.02%)</title><rect x="389.4" y="117" width="0.2" height="15.0" fill="rgb(241,150,40)" rx="2" ry="2" />
-<text x="392.36" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (9,537 samples, 0.78%)</title><rect x="530.1" y="165" width="9.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="533.10" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (194 samples, 0.02%)</title><rect x="528.8" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="531.77" y="175.5" ></text>
-</g>
-<g >
-<title>/13136 (641 samples, 0.05%)</title><rect x="472.8" y="181" width="0.6" height="15.0" fill="rgb(239,139,38)" rx="2" ry="2" />
-<text x="475.78" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (1,078 samples, 0.09%)</title><rect x="397.0" y="117" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="399.99" y="127.5" ></text>
-</g>
-<g >
-<title>/4333 (13,706 samples, 1.12%)</title><rect x="619.4" y="181" width="13.3" height="15.0" fill="rgb(243,123,42)" rx="2" ry="2" />
-<text x="622.42" y="191.5" ></text>
-</g>
-<g >
-<title>/d2 (225 samples, 0.02%)</title><rect x="385.0" y="117" width="0.2" height="15.0" fill="rgb(246,162,45)" rx="2" ry="2" />
-<text x="388.01" y="127.5" ></text>
-</g>
-<g >
-<title>/27 (234 samples, 0.02%)</title><rect x="345.3" y="117" width="0.3" height="15.0" fill="rgb(232,121,29)" rx="2" ry="2" />
-<text x="348.35" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (220 samples, 0.02%)</title><rect x="345.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="348.57" y="111.5" ></text>
-</g>
-<g >
-<title>/91 (196 samples, 0.02%)</title><rect x="370.1" y="117" width="0.1" height="15.0" fill="rgb(229,160,26)" rx="2" ry="2" />
-<text x="373.05" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="806.3" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="809.33" y="79.5" ></text>
-</g>
-<g >
-<title>/fd (218 samples, 0.02%)</title><rect x="528.1" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="531.14" y="175.5" ></text>
-</g>
-<g >
-<title>/org.kde.PlatformTheme.QGnomePlatform (125 samples, 0.01%)</title><rect x="1169.5" y="133" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="1172.53" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (571 samples, 0.05%)</title><rect x="798.4" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="801.41" y="79.5" ></text>
-</g>
-<g >
-<title>/user-1001.slice (64,058 samples, 5.25%)</title><rect x="770.0" y="133" width="62.0" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" />
-<text x="773.02" y="143.5" >/user-..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="375.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="378.36" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (285 samples, 0.02%)</title><rect x="809.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="812.48" y="79.5" ></text>
-</g>
-<g >
-<title>/5a (269 samples, 0.02%)</title><rect x="357.1" y="117" width="0.2" height="15.0" fill="rgb(225,125,22)" rx="2" ry="2" />
-<text x="360.06" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (297 samples, 0.02%)</title><rect x="529.5" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="532.52" y="175.5" ></text>
-</g>
-<g >
-<title>/e0 (269 samples, 0.02%)</title><rect x="388.3" y="117" width="0.3" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" />
-<text x="391.33" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (209 samples, 0.02%)</title><rect x="967.8" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="970.76" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (621 samples, 0.05%)</title><rect x="415.4" y="53" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="418.39" y="63.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (194 samples, 0.02%)</title><rect x="738.9" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="741.90" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (571 samples, 0.05%)</title><rect x="300.4" y="165" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="303.42" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (128 samples, 0.01%)</title><rect x="271.3" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="274.26" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (212 samples, 0.02%)</title><rect x="367.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="370.20" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (87,326 samples, 7.16%)</title><rect x="876.4" y="133" width="84.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="879.44" y="143.5" >syscall`e..</text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="779.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="782.40" y="79.5" ></text>
-</g>
-<g >
-<title>/8f (230 samples, 0.02%)</title><rect x="369.6" y="117" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="372.62" y="127.5" ></text>
-</g>
-<g >
-<title>/internal (768 samples, 0.06%)</title><rect x="437.0" y="133" width="0.7" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" />
-<text x="440.00" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (256 samples, 0.02%)</title><rect x="370.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="373.74" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="770.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="773.89" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (264 samples, 0.02%)</title><rect x="506.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="509.19" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (168 samples, 0.01%)</title><rect x="472.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="475.54" y="159.5" ></text>
-</g>
-<g >
-<title>/com.belmoussaoui.ReadItLater.Locale (118 samples, 0.01%)</title><rect x="1160.5" y="133" width="0.1" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" />
-<text x="1163.49" y="143.5" ></text>
-</g>
-<g >
-<title>/8e (244 samples, 0.02%)</title><rect x="369.4" y="117" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" />
-<text x="372.39" y="127.5" ></text>
-</g>
-<g >
-<title>/src (26,545 samples, 2.18%)</title><rect x="846.7" y="149" width="25.7" height="15.0" fill="rgb(230,129,27)" rx="2" ry="2" />
-<text x="849.73" y="159.5" >/..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="377.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="380.71" y="111.5" ></text>
-</g>
-<g >
-<title>/BAT0 (147 samples, 0.01%)</title><rect x="765.8" y="53" width="0.1" height="15.0" fill="rgb(229,157,27)" rx="2" ry="2" />
-<text x="768.78" y="63.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="781.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="784.11" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newstat (168 samples, 0.01%)</title><rect x="748.7" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="751.67" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,314 samples, 0.11%)</title><rect x="564.7" y="165" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="567.71" y="175.5" ></text>
-</g>
-<g >
-<title>/f8 (236 samples, 0.02%)</title><rect x="394.0" y="117" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
-<text x="396.96" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (485 samples, 0.04%)</title><rect x="313.6" y="181" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="316.59" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (117 samples, 0.01%)</title><rect x="962.3" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="965.25" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (280 samples, 0.02%)</title><rect x="517.1" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="520.08" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="828.6" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="831.63" y="95.5" ></text>
-</g>
-<g >
-<title>/fd (250 samples, 0.02%)</title><rect x="499.6" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="502.59" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="770.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="773.57" y="79.5" ></text>
-</g>
-<g >
-<title>/25 (262 samples, 0.02%)</title><rect x="344.9" y="117" width="0.2" height="15.0" fill="rgb(235,127,33)" rx="2" ry="2" />
-<text x="347.87" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="781.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="784.94" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (5,901 samples, 0.48%)</title><rect x="500.5" y="149" width="5.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="503.45" y="159.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.NautilusPreviewer.slice (1,752 samples, 0.14%)</title><rect x="799.0" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="801.96" y="95.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dapp.drey.Dialect.SearchProvider.slice (1,768 samples, 0.14%)</title><rect x="771.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="774.70" y="95.5" ></text>
-</g>
-<g >
-<title>/3d (217 samples, 0.02%)</title><rect x="350.3" y="117" width="0.2" height="15.0" fill="rgb(239,125,38)" rx="2" ry="2" />
-<text x="353.33" y="127.5" ></text>
-</g>
-<g >
-<title>/x86_64 (718 samples, 0.06%)</title><rect x="1161.8" y="117" width="0.7" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1164.82" y="127.5" ></text>
-</g>
-<g >
-<title>/4a (245 samples, 0.02%)</title><rect x="353.3" y="117" width="0.3" height="15.0" fill="rgb(226,130,23)" rx="2" ry="2" />
-<text x="356.33" y="127.5" ></text>
-</g>
-<g >
-<title>/x86_64 (126 samples, 0.01%)</title><rect x="271.9" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="274.85" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="386.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="389.41" y="111.5" ></text>
-</g>
-<g >
-<title>/7c (192 samples, 0.02%)</title><rect x="365.1" y="117" width="0.2" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" />
-<text x="368.13" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (350 samples, 0.03%)</title><rect x="507.6" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="510.62" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="353.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="356.56" y="111.5" ></text>
-</g>
-<g >
-<title>/systemd (1,530 samples, 0.13%)</title><rect x="761.4" y="181" width="1.5" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" />
-<text x="764.40" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="344.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="347.65" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (1,542 samples, 0.13%)</title><rect x="333.7" y="133" width="1.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="336.72" y="143.5" ></text>
-</g>
-<g >
-<title>/93 (246 samples, 0.02%)</title><rect x="370.5" y="117" width="0.2" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" />
-<text x="373.50" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (131 samples, 0.01%)</title><rect x="498.9" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="501.93" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (569 samples, 0.05%)</title><rect x="509.0" y="165" width="0.6" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="512.01" y="175.5" ></text>
-</g>
-<g >
-<title>/60 (231 samples, 0.02%)</title><rect x="358.5" y="117" width="0.3" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" />
-<text x="361.55" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="353.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="356.33" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="789.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="792.05" y="79.5" ></text>
-</g>
-<g >
-<title>/6b (275 samples, 0.02%)</title><rect x="361.0" y="117" width="0.3" height="15.0" fill="rgb(222,117,19)" rx="2" ry="2" />
-<text x="364.03" y="127.5" ></text>
-</g>
-<g >
-<title>/variety (594 samples, 0.05%)</title><rect x="407.7" y="149" width="0.6" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" />
-<text x="410.73" y="159.5" ></text>
-</g>
-<g >
-<title>/gnome-software (2,879 samples, 0.24%)</title><rect x="321.5" y="149" width="2.8" height="15.0" fill="rgb(248,147,47)" rx="2" ry="2" />
-<text x="324.53" y="159.5" ></text>
-</g>
-<g >
-<title>lib64 (6,088 samples, 0.50%)</title><rect x="444.0" y="197" width="5.9" height="15.0" fill="rgb(239,129,37)" rx="2" ry="2" />
-<text x="447.02" y="207.5" ></text>
-</g>
-<g >
-<title>/7d (219 samples, 0.02%)</title><rect x="365.3" y="117" width="0.2" height="15.0" fill="rgb(247,161,46)" rx="2" ry="2" />
-<text x="368.31" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (620 samples, 0.05%)</title><rect x="972.9" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="975.94" y="143.5" ></text>
-</g>
-<g >
-<title>/flathub (333 samples, 0.03%)</title><rect x="1160.1" y="101" width="0.3" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" />
-<text x="1163.12" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="804.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="807.33" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="800.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="803.66" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="797.3" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="800.25" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (137 samples, 0.01%)</title><rect x="439.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="442.14" y="159.5" ></text>
-</g>
-<g >
-<title>/4212 (54,490 samples, 4.47%)</title><rect x="566.6" y="181" width="52.7" height="15.0" fill="rgb(248,127,47)" rx="2" ry="2" />
-<text x="569.58" y="191.5" >/4212</text>
-</g>
-<g >
-<title>/scripts (110 samples, 0.01%)</title><rect x="439.5" y="165" width="0.1" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" />
-<text x="442.50" y="175.5" ></text>
-</g>
-<g >
-<title>/runtime (14,155 samples, 1.16%)</title><rect x="1160.5" y="149" width="13.7" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="1163.49" y="159.5" ></text>
-</g>
-<g >
-<title>/x86_64 (168 samples, 0.01%)</title><rect x="1169.2" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1172.21" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (285 samples, 0.02%)</title><rect x="800.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="803.93" y="79.5" ></text>
-</g>
-<g >
-<title>/dri (23,011 samples, 1.89%)</title><rect x="272.6" y="181" width="22.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="275.60" y="191.5" >/..</text>
-</g>
-<g >
-<title>/f7 (230 samples, 0.02%)</title><rect x="393.7" y="117" width="0.3" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" />
-<text x="396.73" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (558 samples, 0.05%)</title><rect x="817.2" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="820.20" y="79.5" ></text>
-</g>
-<g >
-<title>/289122 (119 samples, 0.01%)</title><rect x="564.5" y="181" width="0.1" height="15.0" fill="rgb(247,117,46)" rx="2" ry="2" />
-<text x="567.46" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (241 samples, 0.02%)</title><rect x="387.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="390.39" y="111.5" ></text>
-</g>
-<g >
-<title>/syscall (148 samples, 0.01%)</title><rect x="852.4" y="101" width="0.1" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" />
-<text x="855.37" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (132 samples, 0.01%)</title><rect x="514.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="517.25" y="159.5" ></text>
-</g>
-<g >
-<title>/fd (331 samples, 0.03%)</title><rect x="499.2" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="502.24" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="349.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="352.15" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (192 samples, 0.02%)</title><rect x="993.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="996.23" y="159.5" ></text>
-</g>
-<g >
-<title>/runtime (1,355 samples, 0.11%)</title><rect x="842.0" y="149" width="1.3" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="844.98" y="159.5" ></text>
-</g>
-<g >
-<title>/6d (230 samples, 0.02%)</title><rect x="361.6" y="117" width="0.2" height="15.0" fill="rgb(236,110,34)" rx="2" ry="2" />
-<text x="364.57" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="370.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="373.50" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (189 samples, 0.02%)</title><rect x="845.4" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="848.41" y="159.5" ></text>
-</g>
-<g >
-<title>/51 (250 samples, 0.02%)</title><rect x="354.9" y="117" width="0.2" height="15.0" fill="rgb(221,125,18)" rx="2" ry="2" />
-<text x="357.87" y="127.5" ></text>
-</g>
-<g >
-<title>/LC_MESSAGES (181 samples, 0.01%)</title><rect x="994.4" y="133" width="0.1" height="15.0" fill="rgb(238,100,37)" rx="2" ry="2" />
-<text x="997.37" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (210 samples, 0.02%)</title><rect x="346.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="349.66" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (145 samples, 0.01%)</title><rect x="508.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="511.39" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (823 samples, 0.07%)</title><rect x="1135.8" y="149" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1138.85" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (207 samples, 0.02%)</title><rect x="378.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="381.59" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (176 samples, 0.01%)</title><rect x="300.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="303.25" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (192 samples, 0.02%)</title><rect x="365.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="368.13" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (216 samples, 0.02%)</title><rect x="348.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="351.28" y="111.5" ></text>
-</g>
-<g >
-<title>/os (1,768 samples, 0.14%)</title><rect x="856.7" y="133" width="1.7" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" />
-<text x="859.68" y="143.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.BrowserConnector.slice (1,776 samples, 0.15%)</title><rect x="783.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="786.66" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="394.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="397.42" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (338 samples, 0.03%)</title><rect x="262.9" y="181" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="265.93" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (836 samples, 0.07%)</title><rect x="302.4" y="181" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="305.35" y="191.5" ></text>
-</g>
-<g >
-<title>runtimeorg.kde.Platform.Locale (113 samples, 0.01%)</title><rect x="764.5" y="197" width="0.1" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" />
-<text x="767.46" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (283 samples, 0.02%)</title><rect x="816.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="819.92" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (278 samples, 0.02%)</title><rect x="438.4" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="441.38" y="143.5" ></text>
-</g>
-<g >
-<title>/metainfo (308 samples, 0.03%)</title><rect x="994.8" y="165" width="0.3" height="15.0" fill="rgb(248,107,47)" rx="2" ry="2" />
-<text x="997.84" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (320 samples, 0.03%)</title><rect x="961.0" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="964.05" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (276 samples, 0.02%)</title><rect x="768.6" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="771.64" y="95.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform (153 samples, 0.01%)</title><rect x="1166.2" y="133" width="0.2" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="1169.22" y="143.5" ></text>
-</g>
-<g >
-<title>/2.4.1 (159 samples, 0.01%)</title><rect x="1166.0" y="101" width="0.2" height="15.0" fill="rgb(234,111,32)" rx="2" ry="2" />
-<text x="1169.01" y="111.5" ></text>
-</g>
-<g >
-<title>/81 (266 samples, 0.02%)</title><rect x="366.2" y="117" width="0.3" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" />
-<text x="369.22" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (409 samples, 0.03%)</title><rect x="450.1" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="453.08" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (222 samples, 0.02%)</title><rect x="351.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="354.29" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (304 samples, 0.02%)</title><rect x="873.9" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="876.87" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (245 samples, 0.02%)</title><rect x="518.4" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="521.45" y="159.5" ></text>
-</g>
-<g >
-<title>/metadata (120,833 samples, 9.90%)</title><rect x="1012.6" y="133" width="116.9" height="15.0" fill="rgb(235,107,33)" rx="2" ry="2" />
-<text x="1015.64" y="143.5" >/metadata</text>
-</g>
-<g >
-<title>/runtime (426 samples, 0.03%)</title><rect x="407.3" y="133" width="0.4" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="410.28" y="143.5" ></text>
-</g>
-<g >
-<title>/57 (282 samples, 0.02%)</title><rect x="356.3" y="117" width="0.3" height="15.0" fill="rgb(228,106,26)" rx="2" ry="2" />
-<text x="359.32" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (194 samples, 0.02%)</title><rect x="528.8" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="531.77" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (6,175 samples, 0.51%)</title><rect x="45.3" y="181" width="6.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="48.34" y="191.5" ></text>
-</g>
-<g >
-<title>/54 (1,518 samples, 0.12%)</title><rect x="722.9" y="181" width="1.5" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" />
-<text x="725.91" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (404 samples, 0.03%)</title><rect x="507.2" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="510.22" y="175.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.ScreenSaver.slice (1,777 samples, 0.15%)</title><rect x="804.1" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="807.05" y="95.5" ></text>
-</g>
-<g >
-<title>/localauthority (180 samples, 0.01%)</title><rect x="1175.1" y="149" width="0.2" height="15.0" fill="rgb(240,118,38)" rx="2" ry="2" />
-<text x="1178.08" y="159.5" ></text>
-</g>
-<g >
-<title>/PNP0C0A:00 (147 samples, 0.01%)</title><rect x="765.8" y="85" width="0.1" height="15.0" fill="rgb(229,139,27)" rx="2" ry="2" />
-<text x="768.78" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (233 samples, 0.02%)</title><rect x="348.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="351.92" y="111.5" ></text>
-</g>
-<g >
-<title>/x86_64 (142 samples, 0.01%)</title><rect x="271.1" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="274.12" y="175.5" ></text>
-</g>
-<g >
-<title>/1450 (189 samples, 0.02%)</title><rect x="479.5" y="181" width="0.2" height="15.0" fill="rgb(228,135,25)" rx="2" ry="2" />
-<text x="482.53" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (147 samples, 0.01%)</title><rect x="527.4" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="530.42" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (125 samples, 0.01%)</title><rect x="1152.5" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1155.48" y="143.5" ></text>
-</g>
-<g >
-<title>/kernel (378 samples, 0.03%)</title><rect x="832.2" y="181" width="0.3" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" />
-<text x="835.15" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="343.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="346.50" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="358.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="361.33" y="111.5" ></text>
-</g>
-<g >
-<title>/36 (214 samples, 0.02%)</title><rect x="348.7" y="117" width="0.2" height="15.0" fill="rgb(232,119,30)" rx="2" ry="2" />
-<text x="351.71" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (665 samples, 0.05%)</title><rect x="736.4" y="165" width="0.6" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="739.37" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="783.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="786.94" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (466 samples, 0.04%)</title><rect x="447.8" y="181" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="450.77" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="807.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="810.49" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (332 samples, 0.03%)</title><rect x="767.2" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="770.20" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="788.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="791.77" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (198 samples, 0.02%)</title><rect x="392.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="395.84" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (429 samples, 0.04%)</title><rect x="539.6" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="542.60" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="344.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="347.42" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (255 samples, 0.02%)</title><rect x="256.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="259.19" y="175.5" ></text>
-</g>
-<g >
-<title>/golangci-lint (855 samples, 0.07%)</title><rect x="335.2" y="149" width="0.8" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" />
-<text x="338.21" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="375.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="378.12" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (183 samples, 0.01%)</title><rect x="406.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="409.53" y="111.5" ></text>
-</g>
-<g >
-<title>/python3.13 (355 samples, 0.03%)</title><rect x="872.9" y="165" width="0.4" height="15.0" fill="rgb(240,160,39)" rx="2" ry="2" />
-<text x="875.94" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (311 samples, 0.03%)</title><rect x="827.4" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="830.44" y="95.5" ></text>
-</g>
-<g >
-<title>/6a (274 samples, 0.02%)</title><rect x="360.8" y="117" width="0.2" height="15.0" fill="rgb(224,120,21)" rx="2" ry="2" />
-<text x="363.77" y="127.5" ></text>
-</g>
-<g >
-<title>/snap (135 samples, 0.01%)</title><rect x="1175.5" y="149" width="0.1" height="15.0" fill="rgb(240,142,38)" rx="2" ry="2" />
-<text x="1178.47" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (105 samples, 0.01%)</title><rect x="1153.5" y="53" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1156.55" y="63.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (286 samples, 0.02%)</title><rect x="301.0" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="303.99" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="785.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="788.38" y="79.5" ></text>
-</g>
-<g >
-<title>/a3 (215 samples, 0.02%)</title><rect x="374.2" y="117" width="0.2" height="15.0" fill="rgb(235,118,33)" rx="2" ry="2" />
-<text x="377.20" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (214 samples, 0.02%)</title><rect x="369.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="372.84" y="111.5" ></text>
-</g>
-<g >
-<title>/f4 (235 samples, 0.02%)</title><rect x="393.0" y="117" width="0.3" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" />
-<text x="396.03" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="384.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="387.54" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="336.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="339.03" y="111.5" ></text>
-</g>
-<g >
-<title>/de (266 samples, 0.02%)</title><rect x="387.9" y="117" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" />
-<text x="390.86" y="127.5" ></text>
-</g>
-<g >
-<title>/pki (195 samples, 0.02%)</title><rect x="311.4" y="181" width="0.2" height="15.0" fill="rgb(234,128,32)" rx="2" ry="2" />
-<text x="314.44" y="191.5" ></text>
-</g>
-<g >
-<title>/rpm (1,037 samples, 0.08%)</title><rect x="873.3" y="165" width="1.0" height="15.0" fill="rgb(232,140,30)" rx="2" ry="2" />
-<text x="876.28" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (309 samples, 0.03%)</title><rect x="857.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="860.56" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (132 samples, 0.01%)</title><rect x="514.1" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="517.11" y="159.5" ></text>
-</g>
-<g >
-<title>/6e (212 samples, 0.02%)</title><rect x="361.8" y="117" width="0.2" height="15.0" fill="rgb(234,107,32)" rx="2" ry="2" />
-<text x="364.79" y="127.5" ></text>
-</g>
-<g >
-<title>/flatpak (25,974 samples, 2.13%)</title><rect x="1149.9" y="165" width="25.1" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" />
-<text x="1152.93" y="175.5" >/..</text>
-</g>
-<g >
-<title>.git (581 samples, 0.05%)</title><rect x="254.8" y="197" width="0.6" height="15.0" fill="rgb(233,132,30)" rx="2" ry="2" />
-<text x="257.83" y="207.5" ></text>
-</g>
-<g >
-<title>/c8 (235 samples, 0.02%)</title><rect x="382.7" y="117" width="0.2" height="15.0" fill="rgb(236,148,35)" rx="2" ry="2" />
-<text x="385.65" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (874 samples, 0.07%)</title><rect x="1131.8" y="149" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1134.83" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (215 samples, 0.02%)</title><rect x="352.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="355.18" y="111.5" ></text>
-</g>
-<g >
-<title>/fonts (889 samples, 0.07%)</title><rect x="310.6" y="181" width="0.8" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" />
-<text x="313.57" y="191.5" ></text>
-</g>
-<g >
-<title>/click (126 samples, 0.01%)</title><rect x="873.0" y="133" width="0.1" height="15.0" fill="rgb(236,173,34)" rx="2" ry="2" />
-<text x="875.96" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (2,793 samples, 0.23%)</title><rect x="524.3" y="149" width="2.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="527.29" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="345.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="348.35" y="111.5" ></text>
-</g>
-<g >
-<title>/app (3,631 samples, 0.30%)</title><rect x="1149.9" y="149" width="3.5" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" />
-<text x="1152.93" y="159.5" ></text>
-</g>
-<g >
-<title>/bin (112 samples, 0.01%)</title><rect x="409.8" y="149" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="412.78" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="337.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="340.45" y="111.5" ></text>
-</g>
-<g >
-<title>/gi (200 samples, 0.02%)</title><rect x="845.1" y="133" width="0.2" height="15.0" fill="rgb(234,124,32)" rx="2" ry="2" />
-<text x="848.11" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (291 samples, 0.02%)</title><rect x="766.6" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="769.63" y="143.5" ></text>
-</g>
-<g >
-<title>/1379 (142 samples, 0.01%)</title><rect x="479.1" y="181" width="0.1" height="15.0" fill="rgb(240,139,39)" rx="2" ry="2" />
-<text x="482.07" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (191 samples, 0.02%)</title><rect x="372.9" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="375.86" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="771.2" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="774.16" y="79.5" ></text>
-</g>
-<g >
-<title>/exports (244 samples, 0.02%)</title><rect x="410.0" y="117" width="0.2" height="15.0" fill="rgb(235,163,33)" rx="2" ry="2" />
-<text x="412.97" y="127.5" ></text>
-</g>
-<g >
-<title>/git (5,634 samples, 0.46%)</title><rect x="433.8" y="165" width="5.5" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" />
-<text x="436.82" y="175.5" ></text>
-</g>
-<g >
-<title>/1656150 (145 samples, 0.01%)</title><rect x="517.8" y="181" width="0.2" height="15.0" fill="rgb(230,129,28)" rx="2" ry="2" />
-<text x="520.83" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (104 samples, 0.01%)</title><rect x="847.2" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="850.16" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (131 samples, 0.01%)</title><rect x="479.1" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="482.07" y="175.5" ></text>
-</g>
-<g >
-<title>/7341 (964 samples, 0.08%)</title><rect x="736.4" y="181" width="0.9" height="15.0" fill="rgb(228,164,25)" rx="2" ry="2" />
-<text x="739.37" y="191.5" ></text>
-</g>
-<g >
-<title>/math (2,463 samples, 0.20%)</title><rect x="854.3" y="133" width="2.4" height="15.0" fill="rgb(240,120,39)" rx="2" ry="2" />
-<text x="857.30" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (166 samples, 0.01%)</title><rect x="997.6" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1000.55" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (208 samples, 0.02%)</title><rect x="347.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="350.59" y="111.5" ></text>
-</g>
-<g >
-<title>/x86_64 (144 samples, 0.01%)</title><rect x="764.1" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="767.13" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (265 samples, 0.02%)</title><rect x="366.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="369.22" y="111.5" ></text>
-</g>
-<g >
-<title>var (198,801 samples, 16.29%)</title><rect x="997.8" y="197" width="192.2" height="15.0" fill="rgb(231,101,28)" rx="2" ry="2" />
-<text x="1000.76" y="207.5" >var</text>
-</g>
-<g >
-<title>syscall`enter_close (137 samples, 0.01%)</title><rect x="1170.3" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1173.28" y="143.5" ></text>
-</g>
-<g >
-<title>/idb (242 samples, 0.02%)</title><rect x="415.1" y="69" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
-<text x="418.10" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (256 samples, 0.02%)</title><rect x="362.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="365.00" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (288 samples, 0.02%)</title><rect x="381.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="384.94" y="111.5" ></text>
-</g>
-<g >
-<title>/89 (263 samples, 0.02%)</title><rect x="368.1" y="117" width="0.3" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" />
-<text x="371.14" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="813.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="816.17" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (636 samples, 0.05%)</title><rect x="974.4" y="133" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="977.44" y="143.5" ></text>
-</g>
-<g >
-<title>/bin (115 samples, 0.01%)</title><rect x="405.2" y="149" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="408.15" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="350.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="353.82" y="111.5" ></text>
-</g>
-<g >
-<title>/goarch (265 samples, 0.02%)</title><rect x="849.2" y="117" width="0.3" height="15.0" fill="rgb(243,144,42)" rx="2" ry="2" />
-<text x="852.23" y="127.5" ></text>
-</g>
-<g >
-<title>/24.08extra (182 samples, 0.01%)</title><rect x="1162.3" y="101" width="0.2" height="15.0" fill="rgb(232,130,30)" rx="2" ry="2" />
-<text x="1165.32" y="111.5" ></text>
-</g>
-<g >
-<title>/x86_64 (127 samples, 0.01%)</title><rect x="270.8" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="273.81" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (159 samples, 0.01%)</title><rect x="738.2" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="741.16" y="175.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Shell.CalendarServer.slice (1,768 samples, 0.14%)</title><rect x="809.2" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="812.21" y="95.5" ></text>
-</g>
-<g >
-<title>/x86_64 (235 samples, 0.02%)</title><rect x="1169.0" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1171.95" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="808.0" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="811.04" y="79.5" ></text>
-</g>
-<g >
-<title>/82 (250 samples, 0.02%)</title><rect x="366.5" y="117" width="0.2" height="15.0" fill="rgb(246,162,45)" rx="2" ry="2" />
-<text x="369.48" y="127.5" ></text>
-</g>
-<g >
-<title>/1593751 (109 samples, 0.01%)</title><rect x="500.1" y="181" width="0.1" height="15.0" fill="rgb(224,132,21)" rx="2" ry="2" />
-<text x="503.10" y="191.5" ></text>
-</g>
-<g >
-<title>/56 (256 samples, 0.02%)</title><rect x="724.4" y="181" width="0.3" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" />
-<text x="727.41" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (297 samples, 0.02%)</title><rect x="389.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="392.07" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (581 samples, 0.05%)</title><rect x="513.5" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="516.49" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (272 samples, 0.02%)</title><rect x="852.7" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="855.69" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (574 samples, 0.05%)</title><rect x="829.5" y="85" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="832.51" y="95.5" ></text>
-</g>
-<g >
-<title>/52 (253 samples, 0.02%)</title><rect x="355.1" y="117" width="0.3" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" />
-<text x="358.11" y="127.5" ></text>
-</g>
-<g >
-<title>/fonts (19,051 samples, 1.56%)</title><rect x="975.1" y="165" width="18.4" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" />
-<text x="978.08" y="175.5" ></text>
-</g>
-<g >
-<title>/bin (211 samples, 0.02%)</title><rect x="439.3" y="149" width="0.2" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="442.27" y="159.5" ></text>
-</g>
-<g >
-<title>/dev.bragefuglseth.Keypunch.Locale (124 samples, 0.01%)</title><rect x="1160.8" y="133" width="0.1" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" />
-<text x="1163.76" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (331 samples, 0.03%)</title><rect x="799.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="802.51" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (260 samples, 0.02%)</title><rect x="384.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="387.04" y="111.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.mozilla.firefox.SearchProvider.slice (1,765 samples, 0.14%)</title><rect x="817.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="820.74" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (231 samples, 0.02%)</title><rect x="358.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="361.55" y="111.5" ></text>
-</g>
-<g >
-<title>/tmp (2,119 samples, 0.17%)</title><rect x="1187.9" y="181" width="2.0" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" />
-<text x="1190.90" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="824.0" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="827.01" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (205 samples, 0.02%)</title><rect x="515.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="518.13" y="159.5" ></text>
-</g>
-<g >
-<title>/ef (226 samples, 0.02%)</title><rect x="391.9" y="117" width="0.2" height="15.0" fill="rgb(241,144,40)" rx="2" ry="2" />
-<text x="394.93" y="127.5" ></text>
-</g>
-<g >
-<title>/e9 (204 samples, 0.02%)</title><rect x="390.5" y="117" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" />
-<text x="393.53" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (429 samples, 0.04%)</title><rect x="539.6" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="542.60" y="159.5" ></text>
-</g>
-<g >
-<title>/syscall (836 samples, 0.07%)</title><rect x="852.6" y="117" width="0.8" height="15.0" fill="rgb(230,145,28)" rx="2" ry="2" />
-<text x="855.58" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (138 samples, 0.01%)</title><rect x="965.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="968.80" y="159.5" ></text>
-</g>
-<g >
-<title>/fs (68,076 samples, 5.58%)</title><rect x="766.3" y="181" width="65.9" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" />
-<text x="769.32" y="191.5" >/fs</text>
-</g>
-<g >
-<title>/config (619 samples, 0.05%)</title><rect x="433.1" y="117" width="0.6" height="15.0" fill="rgb(239,164,37)" rx="2" ry="2" />
-<text x="436.08" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="809.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="812.76" y="79.5" ></text>
-</g>
-<g >
-<title>/d5 (288 samples, 0.02%)</title><rect x="385.7" y="117" width="0.2" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
-<text x="388.67" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (237 samples, 0.02%)</title><rect x="372.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="375.14" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="780.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="783.22" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (180 samples, 0.01%)</title><rect x="762.0" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="765.03" y="159.5" ></text>
-</g>
-<g >
-<title>/d7 (246 samples, 0.02%)</title><rect x="386.2" y="117" width="0.2" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" />
-<text x="389.17" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (237 samples, 0.02%)</title><rect x="363.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="366.21" y="111.5" ></text>
-</g>
-<g >
-<title>/.config (4,475 samples, 0.37%)</title><rect x="405.3" y="165" width="4.3" height="15.0" fill="rgb(239,154,37)" rx="2" ry="2" />
-<text x="408.27" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (149 samples, 0.01%)</title><rect x="529.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="532.23" y="175.5" ></text>
-</g>
-<g >
-<title>/1319536 (3,863 samples, 0.32%)</title><rect x="474.8" y="181" width="3.7" height="15.0" fill="rgb(236,139,35)" rx="2" ry="2" />
-<text x="477.80" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (280 samples, 0.02%)</title><rect x="527.6" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="530.56" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="818.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="821.01" y="79.5" ></text>
-</g>
-<g >
-<title>/4511 (2,483 samples, 0.20%)</title><rect x="633.2" y="181" width="2.4" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
-<text x="636.22" y="191.5" ></text>
-</g>
-<g >
-<title>/queries (342 samples, 0.03%)</title><rect x="832.7" y="149" width="0.4" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
-<text x="835.73" y="159.5" ></text>
-</g>
-<g >
-<title>/session.slice (1,739 samples, 0.14%)</title><rect x="830.1" y="101" width="1.6" height="15.0" fill="rgb(246,132,46)" rx="2" ry="2" />
-<text x="833.06" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (10,386 samples, 0.85%)</title><rect x="1176.1" y="133" width="10.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1179.11" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (247 samples, 0.02%)</title><rect x="734.0" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="736.97" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="389.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="392.60" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (1,020 samples, 0.08%)</title><rect x="396.0" y="117" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="399.00" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (98,866 samples, 8.10%)</title><rect x="1013.0" y="85" width="95.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1016.04" y="95.5" >syscall`ent..</text>
-</g>
-<g >
-<title>/x86_64 (218 samples, 0.02%)</title><rect x="271.4" y="165" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="274.45" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (312 samples, 0.03%)</title><rect x="506.9" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="509.89" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (253 samples, 0.02%)</title><rect x="388.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="391.59" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (575 samples, 0.05%)</title><rect x="778.0" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="780.96" y="79.5" ></text>
-</g>
-<g >
-<title>/go-build (11,263 samples, 0.92%)</title><rect x="324.3" y="149" width="10.9" height="15.0" fill="rgb(238,144,37)" rx="2" ry="2" />
-<text x="327.32" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (186 samples, 0.02%)</title><rect x="354.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="357.02" y="111.5" ></text>
-</g>
-<g >
-<title>/cd (218 samples, 0.02%)</title><rect x="383.8" y="117" width="0.2" height="15.0" fill="rgb(247,161,46)" rx="2" ry="2" />
-<text x="386.83" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="366.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="369.48" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (5,531 samples, 0.45%)</title><rect x="294.9" y="165" width="5.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="297.85" y="175.5" ></text>
-</g>
-<g >
-<title>/atomic (370 samples, 0.03%)</title><rect x="852.0" y="101" width="0.3" height="15.0" fill="rgb(232,102,29)" rx="2" ry="2" />
-<text x="854.98" y="111.5" ></text>
-</g>
-<g >
-<title>/storage (918 samples, 0.08%)</title><rect x="415.1" y="117" width="0.9" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
-<text x="418.10" y="127.5" ></text>
-</g>
-<g >
-<title>/udev (139 samples, 0.01%)</title><rect x="762.9" y="181" width="0.1" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" />
-<text x="765.88" y="191.5" ></text>
-</g>
-<g >
-<title>/app-ghostty-transient-256811.scope (1,776 samples, 0.15%)</title><rect x="819.4" y="85" width="1.8" height="15.0" fill="rgb(248,115,48)" rx="2" ry="2" />
-<text x="822.44" y="95.5" ></text>
-</g>
-<g >
-<title>/lib (120,121 samples, 9.84%)</title><rect x="846.2" y="181" width="116.2" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" />
-<text x="849.21" y="191.5" >/lib</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="376.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="379.27" y="111.5" ></text>
-</g>
-<g >
-<title>/devices (554 samples, 0.05%)</title><rect x="765.8" y="181" width="0.5" height="15.0" fill="rgb(242,152,40)" rx="2" ry="2" />
-<text x="768.78" y="191.5" ></text>
-</g>
-<g >
-<title>/info (171 samples, 0.01%)</title><rect x="434.2" y="101" width="0.2" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" />
-<text x="437.19" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="359.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="362.88" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (274 samples, 0.02%)</title><rect x="311.1" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="314.10" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="341.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="344.36" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (137 samples, 0.01%)</title><rect x="517.8" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="520.83" y="159.5" ></text>
-</g>
-<g >
-<title>/4c (248 samples, 0.02%)</title><rect x="353.8" y="117" width="0.2" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" />
-<text x="356.78" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="363.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="366.44" y="111.5" ></text>
-</g>
-<g >
-<title>runtimeorg.freedesktop.Platform (132 samples, 0.01%)</title><rect x="764.0" y="197" width="0.1" height="15.0" fill="rgb(232,156,30)" rx="2" ry="2" />
-<text x="766.96" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="391.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="393.96" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (224 samples, 0.02%)</title><rect x="435.9" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="438.94" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (376 samples, 0.03%)</title><rect x="725.6" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="728.58" y="175.5" ></text>
-</g>
-<g >
-<title>/4927 (249 samples, 0.02%)</title><rect x="722.1" y="181" width="0.2" height="15.0" fill="rgb(233,104,31)" rx="2" ry="2" />
-<text x="725.09" y="191.5" ></text>
-</g>
-<g >
-<title>/user@0.service (1,702 samples, 0.14%)</title><rect x="768.4" y="117" width="1.6" height="15.0" fill="rgb(246,116,46)" rx="2" ry="2" />
-<text x="771.38" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (310 samples, 0.03%)</title><rect x="973.5" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="976.54" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="394.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="397.18" y="111.5" ></text>
-</g>
-<g >
-<title>/tracker-miners-3.0 (270 samples, 0.02%)</title><rect x="845.7" y="165" width="0.3" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="848.71" y="175.5" ></text>
-</g>
-<g >
-<title>/share (31,798 samples, 2.61%)</title><rect x="966.7" y="181" width="30.8" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
-<text x="969.71" y="191.5" >/s..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="354.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="357.87" y="111.5" ></text>
-</g>
-<g >
-<title>/pkg (108 samples, 0.01%)</title><rect x="846.6" y="149" width="0.1" height="15.0" fill="rgb(238,128,36)" rx="2" ry="2" />
-<text x="849.62" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="342.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="345.33" y="111.5" ></text>
-</g>
-<g >
-<title>/9f (221 samples, 0.02%)</title><rect x="373.3" y="117" width="0.2" height="15.0" fill="rgb(241,144,40)" rx="2" ry="2" />
-<text x="376.29" y="127.5" ></text>
-</g>
-<g >
-<title>/fontconfig (2,215 samples, 0.18%)</title><rect x="972.9" y="165" width="2.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="975.94" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (85,237 samples, 6.98%)</title><rect x="635.6" y="149" width="82.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="638.62" y="159.5" >syscall`e..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (291 samples, 0.02%)</title><rect x="362.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="365.69" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (276 samples, 0.02%)</title><rect x="386.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="389.89" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (108 samples, 0.01%)</title><rect x="564.5" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="567.46" y="159.5" ></text>
-</g>
-<g >
-<title>/c5 (288 samples, 0.02%)</title><rect x="381.9" y="117" width="0.3" height="15.0" fill="rgb(242,157,40)" rx="2" ry="2" />
-<text x="384.94" y="127.5" ></text>
-</g>
-<g >
-<title>.gitobjects (1,072 samples, 0.09%)</title><rect x="255.5" y="197" width="1.0" height="15.0" fill="rgb(237,132,35)" rx="2" ry="2" />
-<text x="258.46" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (267 samples, 0.02%)</title><rect x="372.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="375.60" y="111.5" ></text>
-</g>
-<g >
-<title>/tls (119 samples, 0.01%)</title><rect x="311.5" y="165" width="0.1" height="15.0" fill="rgb(230,143,28)" rx="2" ry="2" />
-<text x="314.52" y="175.5" ></text>
-</g>
-<g >
-<title>/1090 (105 samples, 0.01%)</title><rect x="470.4" y="181" width="0.1" height="15.0" fill="rgb(238,148,37)" rx="2" ry="2" />
-<text x="473.44" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="365.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="368.75" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="393.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="396.03" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="773.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="776.69" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (271 samples, 0.02%)</title><rect x="386.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="389.63" y="111.5" ></text>
-</g>
-<g >
-<title>/eb (260 samples, 0.02%)</title><rect x="391.0" y="117" width="0.2" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" />
-<text x="393.96" y="127.5" ></text>
-</g>
-<g >
-<title>/1655582 (163 samples, 0.01%)</title><rect x="511.7" y="181" width="0.1" height="15.0" fill="rgb(250,129,49)" rx="2" ry="2" />
-<text x="514.69" y="191.5" ></text>
-</g>
-<g >
-<title>/.git (3,051 samples, 0.25%)</title><rect x="433.8" y="133" width="3.0" height="15.0" fill="rgb(233,141,30)" rx="2" ry="2" />
-<text x="436.84" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (308 samples, 0.03%)</title><rect x="994.8" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="997.84" y="159.5" ></text>
-</g>
-<g >
-<title>/ba (223 samples, 0.02%)</title><rect x="379.4" y="117" width="0.2" height="15.0" fill="rgb(224,120,21)" rx="2" ry="2" />
-<text x="382.41" y="127.5" ></text>
-</g>
-<g >
-<title>/c4 (196 samples, 0.02%)</title><rect x="381.8" y="117" width="0.1" height="15.0" fill="rgb(243,161,42)" rx="2" ry="2" />
-<text x="384.75" y="127.5" ></text>
-</g>
-<g >
-<title>/b7 (178 samples, 0.01%)</title><rect x="378.8" y="117" width="0.2" height="15.0" fill="rgb(227,100,24)" rx="2" ry="2" />
-<text x="381.79" y="127.5" ></text>
-</g>
-<g >
-<title>/50 (240 samples, 0.02%)</title><rect x="354.6" y="117" width="0.3" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" />
-<text x="357.64" y="127.5" ></text>
-</g>
-<g >
-<title>/dc (241 samples, 0.02%)</title><rect x="387.4" y="117" width="0.2" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" />
-<text x="390.39" y="127.5" ></text>
-</g>
-<g >
-<title>/451c975916dc4536919a44482a914925 (10,652 samples, 0.87%)</title><rect x="1175.9" y="149" width="10.3" height="15.0" fill="rgb(236,117,35)" rx="2" ry="2" />
-<text x="1178.92" y="159.5" ></text>
-</g>
-<g >
-<title>/commit-graphs (136 samples, 0.01%)</title><rect x="434.2" y="85" width="0.1" height="15.0" fill="rgb(238,164,36)" rx="2" ry="2" />
-<text x="437.19" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (207 samples, 0.02%)</title><rect x="383.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="386.62" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (194 samples, 0.02%)</title><rect x="364.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="367.41" y="111.5" ></text>
-</g>
-<g >
-<title>/desktop (140 samples, 0.01%)</title><rect x="1175.3" y="149" width="0.2" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" />
-<text x="1178.33" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="797.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="800.53" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="779.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="782.07" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (117 samples, 0.01%)</title><rect x="994.7" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="997.72" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (959 samples, 0.08%)</title><rect x="308.8" y="181" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="311.82" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (378 samples, 0.03%)</title><rect x="843.9" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="846.85" y="159.5" ></text>
-</g>
-<g >
-<title>/x86_64 (190 samples, 0.02%)</title><rect x="1153.5" y="117" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1156.46" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (138 samples, 0.01%)</title><rect x="853.6" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="856.57" y="127.5" ></text>
-</g>
-<g >
-<title>/org.fedoraproject.Platform.VAAPI.Intel (131 samples, 0.01%)</title><rect x="1161.6" y="133" width="0.1" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" />
-<text x="1164.57" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="356.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="359.83" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (202 samples, 0.02%)</title><rect x="739.1" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="742.09" y="175.5" ></text>
-</g>
-<g >
-<title>/filepathlite (137 samples, 0.01%)</title><rect x="849.1" y="117" width="0.1" height="15.0" fill="rgb(240,129,38)" rx="2" ry="2" />
-<text x="852.07" y="127.5" ></text>
-</g>
-<g >
-<title>/0a (262 samples, 0.02%)</title><rect x="338.4" y="117" width="0.3" height="15.0" fill="rgb(230,150,28)" rx="2" ry="2" />
-<text x="341.41" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (224 samples, 0.02%)</title><rect x="858.5" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="861.51" y="127.5" ></text>
-</g>
-<g >
-<title>/extract-modules (230 samples, 0.02%)</title><rect x="845.7" y="149" width="0.2" height="15.0" fill="rgb(244,163,43)" rx="2" ry="2" />
-<text x="848.71" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (176 samples, 0.01%)</title><rect x="1175.6" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1178.60" y="143.5" ></text>
-</g>
-<g >
-<title>/heads (372 samples, 0.03%)</title><rect x="434.6" y="101" width="0.4" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" />
-<text x="437.62" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (1,276 samples, 0.10%)</title><rect x="1129.8" y="149" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1132.81" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (227 samples, 0.02%)</title><rect x="392.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="395.14" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (2,595 samples, 0.21%)</title><rect x="479.8" y="165" width="2.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="482.83" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (521 samples, 0.04%)</title><rect x="735.4" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="738.44" y="159.5" ></text>
-</g>
-<g >
-<title>/bin (130 samples, 0.01%)</title><rect x="1175.5" y="133" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="1178.47" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (144 samples, 0.01%)</title><rect x="847.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="850.84" y="111.5" ></text>
-</g>
-<g >
-<title>/search-providers (210 samples, 0.02%)</title><rect x="993.6" y="149" width="0.2" height="15.0" fill="rgb(238,132,36)" rx="2" ry="2" />
-<text x="996.55" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (454 samples, 0.04%)</title><rect x="442.3" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="445.27" y="175.5" ></text>
-</g>
-<g >
-<title>/d4 (236 samples, 0.02%)</title><rect x="385.4" y="117" width="0.3" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" />
-<text x="388.44" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (248 samples, 0.02%)</title><rect x="1153.2" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1156.20" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (270 samples, 0.02%)</title><rect x="961.9" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="964.93" y="143.5" ></text>
-</g>
-<g >
-<title>/ksm (111 samples, 0.01%)</title><rect x="832.4" y="149" width="0.1" height="15.0" fill="rgb(226,111,23)" rx="2" ry="2" />
-<text x="835.39" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,196 samples, 0.10%)</title><rect x="991.8" y="133" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="994.81" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="366.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="369.72" y="111.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.ffmpeg-full (124 samples, 0.01%)</title><rect x="1165.8" y="133" width="0.1" height="15.0" fill="rgb(224,149,21)" rx="2" ry="2" />
-<text x="1168.75" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (184 samples, 0.02%)</title><rect x="1137.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1140.76" y="159.5" ></text>
-</g>
-<g >
-<title>/a8 (251 samples, 0.02%)</title><rect x="375.4" y="117" width="0.2" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" />
-<text x="378.36" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="360.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="363.12" y="111.5" ></text>
-</g>
-<g >
-<title>/2a (222 samples, 0.02%)</title><rect x="346.0" y="117" width="0.2" height="15.0" fill="rgb(228,140,25)" rx="2" ry="2" />
-<text x="349.00" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="363.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="366.69" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (277 samples, 0.02%)</title><rect x="348.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="351.01" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (218 samples, 0.02%)</title><rect x="510.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="513.51" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (133 samples, 0.01%)</title><rect x="869.5" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="872.49" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (633 samples, 0.05%)</title><rect x="995.8" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="998.77" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (164 samples, 0.01%)</title><rect x="510.9" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="513.89" y="175.5" ></text>
-</g>
-<g >
-<title>/1040413 (229 samples, 0.02%)</title><rect x="470.2" y="181" width="0.2" height="15.0" fill="rgb(244,148,43)" rx="2" ry="2" />
-<text x="473.17" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (220 samples, 0.02%)</title><rect x="336.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="339.72" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="822.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="825.04" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (129 samples, 0.01%)</title><rect x="1174.6" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1177.65" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="371.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="374.19" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (199 samples, 0.02%)</title><rect x="724.5" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="727.47" y="175.5" ></text>
-</g>
-<g >
-<title>/app-ghostty-transient-7266.scope (1,772 samples, 0.15%)</title><rect x="821.2" y="85" width="1.7" height="15.0" fill="rgb(248,115,48)" rx="2" ry="2" />
-<text x="824.16" y="95.5" ></text>
-</g>
-<g >
-<title>/PackageKit (7,217 samples, 0.59%)</title><rect x="1129.7" y="165" width="6.9" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" />
-<text x="1132.66" y="175.5" ></text>
-</g>
-<g >
-<title>/6118 (532 samples, 0.04%)</title><rect x="735.4" y="181" width="0.6" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" />
-<text x="738.44" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (240 samples, 0.02%)</title><rect x="515.6" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="518.63" y="159.5" ></text>
-</g>
-<g >
-<title>/dev.geopjr.Calligraphy.Locale (183 samples, 0.01%)</title><rect x="1160.9" y="133" width="0.2" height="15.0" fill="rgb(242,152,41)" rx="2" ry="2" />
-<text x="1163.88" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (215 samples, 0.02%)</title><rect x="374.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="377.20" y="111.5" ></text>
-</g>
-<g >
-<title>run (1,970 samples, 0.16%)</title><rect x="761.3" y="197" width="1.9" height="15.0" fill="rgb(243,156,41)" rx="2" ry="2" />
-<text x="764.27" y="207.5" ></text>
-</g>
-<g >
-<title>/slices (183 samples, 0.01%)</title><rect x="867.9" y="133" width="0.2" height="15.0" fill="rgb(242,148,40)" rx="2" ry="2" />
-<text x="870.92" y="143.5" ></text>
-</g>
-<g >
-<title>/7b (259 samples, 0.02%)</title><rect x="364.9" y="117" width="0.2" height="15.0" fill="rgb(233,167,31)" rx="2" ry="2" />
-<text x="367.88" y="127.5" ></text>
-</g>
-<g >
-<title>/info (176 samples, 0.01%)</title><rect x="433.9" y="117" width="0.1" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" />
-<text x="436.86" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (219 samples, 0.02%)</title><rect x="376.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="379.06" y="111.5" ></text>
-</g>
-<g >
-<title>/61 (148 samples, 0.01%)</title><rect x="736.0" y="181" width="0.1" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" />
-<text x="738.98" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (492 samples, 0.04%)</title><rect x="735.0" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="737.97" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="785.9" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="788.93" y="79.5" ></text>
-</g>
-<g >
-<title>/a9 (289 samples, 0.02%)</title><rect x="375.6" y="117" width="0.3" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" />
-<text x="378.60" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="360.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="363.55" y="111.5" ></text>
-</g>
-<g >
-<title>/3a (276 samples, 0.02%)</title><rect x="349.6" y="117" width="0.2" height="15.0" fill="rgb(227,135,24)" rx="2" ry="2" />
-<text x="352.57" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (276 samples, 0.02%)</title><rect x="769.2" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="772.22" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (204 samples, 0.02%)</title><rect x="382.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="385.46" y="111.5" ></text>
-</g>
-<g >
-<title>/share (5,296 samples, 0.43%)</title><rect x="409.9" y="149" width="5.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
-<text x="412.93" y="159.5" ></text>
-</g>
-<g >
-<title>/go (235 samples, 0.02%)</title><rect x="439.3" y="165" width="0.2" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
-<text x="442.27" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (229 samples, 0.02%)</title><rect x="371.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="374.66" y="111.5" ></text>
-</g>
-<g >
-<title>/2.2.0 (134 samples, 0.01%)</title><rect x="1165.9" y="101" width="0.1" height="15.0" fill="rgb(237,111,35)" rx="2" ry="2" />
-<text x="1168.87" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (788 samples, 0.06%)</title><rect x="1186.2" y="165" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1189.24" y="175.5" ></text>
-</g>
-<g >
-<title>/local (1,583 samples, 0.13%)</title><rect x="405.5" y="117" width="1.5" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" />
-<text x="408.47" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (287 samples, 0.02%)</title><rect x="367.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="370.65" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="810.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="813.08" y="79.5" ></text>
-</g>
-<g >
-<title>/org.telegram.desktop.webview (118 samples, 0.01%)</title><rect x="1170.0" y="133" width="0.1" height="15.0" fill="rgb(230,149,28)" rx="2" ry="2" />
-<text x="1173.03" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,014 samples, 0.08%)</title><rect x="838.1" y="165" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="841.12" y="175.5" ></text>
-</g>
-<g >
-<title>/bytes (129 samples, 0.01%)</title><rect x="846.7" y="133" width="0.2" height="15.0" fill="rgb(238,120,36)" rx="2" ry="2" />
-<text x="849.73" y="143.5" ></text>
-</g>
-<g >
-<title>/b0 (235 samples, 0.02%)</title><rect x="377.2" y="117" width="0.3" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" />
-<text x="380.24" y="127.5" ></text>
-</g>
-<g >
-<title>/macros.d (718 samples, 0.06%)</title><rect x="873.5" y="149" width="0.7" height="15.0" fill="rgb(247,120,47)" rx="2" ry="2" />
-<text x="876.46" y="159.5" ></text>
-</g>
-<g >
-<title>/fontconfig (344 samples, 0.03%)</title><rect x="321.2" y="149" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="324.20" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="341.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="344.12" y="111.5" ></text>
-</g>
-<g >
-<title>/race (105 samples, 0.01%)</title><rect x="851.7" y="117" width="0.1" height="15.0" fill="rgb(252,150,52)" rx="2" ry="2" />
-<text x="854.73" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (185 samples, 0.02%)</title><rect x="856.7" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="859.68" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (238 samples, 0.02%)</title><rect x="722.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="725.09" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="808.4" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="811.37" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (135 samples, 0.01%)</title><rect x="765.3" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="768.28" y="143.5" ></text>
-</g>
-<g >
-<title>/35 (231 samples, 0.02%)</title><rect x="348.5" y="117" width="0.2" height="15.0" fill="rgb(234,122,32)" rx="2" ry="2" />
-<text x="351.49" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (131 samples, 0.01%)</title><rect x="972.7" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="975.74" y="159.5" ></text>
-</g>
-<g >
-<title>/9e (258 samples, 0.02%)</title><rect x="373.0" y="117" width="0.3" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" />
-<text x="376.04" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (9,537 samples, 0.78%)</title><rect x="530.1" y="149" width="9.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="533.10" y="159.5" ></text>
-</g>
-<g >
-<title>/fileattrs (190 samples, 0.02%)</title><rect x="873.3" y="149" width="0.2" height="15.0" fill="rgb(236,129,34)" rx="2" ry="2" />
-<text x="876.28" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (900 samples, 0.07%)</title><rect x="748.8" y="181" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="751.83" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="340.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="343.17" y="111.5" ></text>
-</g>
-<g >
-<title>/ee (261 samples, 0.02%)</title><rect x="391.7" y="117" width="0.2" height="15.0" fill="rgb(243,147,42)" rx="2" ry="2" />
-<text x="394.67" y="127.5" ></text>
-</g>
-<g >
-<title>/t (689 samples, 0.06%)</title><rect x="995.7" y="149" width="0.7" height="15.0" fill="rgb(238,127,37)" rx="2" ry="2" />
-<text x="998.72" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (269 samples, 0.02%)</title><rect x="388.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="391.33" y="111.5" ></text>
-</g>
-<g >
-<title>/0c (284 samples, 0.02%)</title><rect x="338.9" y="117" width="0.2" height="15.0" fill="rgb(227,144,24)" rx="2" ry="2" />
-<text x="341.86" y="127.5" ></text>
-</g>
-<g >
-<title>/d6 (228 samples, 0.02%)</title><rect x="385.9" y="117" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="388.95" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="777.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="780.36" y="79.5" ></text>
-</g>
-<g >
-<title>/b4e2d2792a39744a823c8f43ec4ae5d3dc0d113fd4669933325cf0dab9b03790 (104 samples, 0.01%)</title><rect x="1162.2" y="85" width="0.1" height="15.0" fill="rgb(233,110,31)" rx="2" ry="2" />
-<text x="1165.15" y="95.5" ></text>
-</g>
-<g >
-<title>/chacha8rand (117 samples, 0.01%)</title><rect x="848.7" y="117" width="0.1" height="15.0" fill="rgb(254,148,54)" rx="2" ry="2" />
-<text x="851.70" y="127.5" ></text>
-</g>
-<g >
-<title>/1655791 (124 samples, 0.01%)</title><rect x="515.5" y="181" width="0.1" height="15.0" fill="rgb(232,129,29)" rx="2" ry="2" />
-<text x="518.46" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="809.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="812.21" y="79.5" ></text>
-</g>
-<g >
-<title>/1640116 (153 samples, 0.01%)</title><rect x="508.4" y="181" width="0.1" height="15.0" fill="rgb(241,129,40)" rx="2" ry="2" />
-<text x="511.38" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="793.3" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="796.33" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (282 samples, 0.02%)</title><rect x="356.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="359.32" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (245 samples, 0.02%)</title><rect x="518.4" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="521.45" y="175.5" ></text>
-</g>
-<g >
-<title>/en_GB.UTF-8 (116 samples, 0.01%)</title><rect x="994.2" y="149" width="0.1" height="15.0" fill="rgb(236,157,34)" rx="2" ry="2" />
-<text x="997.18" y="159.5" ></text>
-</g>
-<g >
-<title>/48 (260 samples, 0.02%)</title><rect x="352.8" y="117" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
-<text x="355.81" y="127.5" ></text>
-</g>
-<g >
-<title>/flamegraph (306 samples, 0.03%)</title><rect x="437.1" y="117" width="0.3" height="15.0" fill="rgb(245,158,44)" rx="2" ry="2" />
-<text x="440.11" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (311 samples, 0.03%)</title><rect x="826.5" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="829.51" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (4,911 samples, 0.40%)</title><rect x="314.8" y="181" width="4.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="317.81" y="191.5" ></text>
-</g>
-<g >
-<title>/id (140 samples, 0.01%)</title><rect x="766.2" y="133" width="0.1" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
-<text x="769.16" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (192 samples, 0.02%)</title><rect x="869.1" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="872.12" y="127.5" ></text>
-</g>
-<g >
-<title>/b3 (224 samples, 0.02%)</title><rect x="377.9" y="117" width="0.2" height="15.0" fill="rgb(234,113,32)" rx="2" ry="2" />
-<text x="380.93" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="813.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="816.49" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (108 samples, 0.01%)</title><rect x="851.4" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="854.37" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (196 samples, 0.02%)</title><rect x="370.1" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="373.05" y="111.5" ></text>
-</g>
-<g >
-<title>/45 (215 samples, 0.02%)</title><rect x="352.2" y="117" width="0.2" height="15.0" fill="rgb(233,117,31)" rx="2" ry="2" />
-<text x="355.18" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_execve (231 samples, 0.02%)</title><rect x="835.4" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="838.38" y="175.5" ></text>
-</g>
-<g >
-<title>runtimeorg.gnome.Platform (124 samples, 0.01%)</title><rect x="764.3" y="197" width="0.1" height="15.0" fill="rgb(232,156,30)" rx="2" ry="2" />
-<text x="767.27" y="207.5" ></text>
-</g>
-<g >
-<title>/00 (224 samples, 0.02%)</title><rect x="336.0" y="117" width="0.3" height="15.0" fill="rgb(228,153,26)" rx="2" ry="2" />
-<text x="339.03" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="796.7" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="799.71" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (435 samples, 0.04%)</title><rect x="511.9" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="514.88" y="159.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Settings.SearchProvider.slice (1,776 samples, 0.15%)</title><rect x="807.5" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="810.49" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (291 samples, 0.02%)</title><rect x="847.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="850.42" y="111.5" ></text>
-</g>
-<g >
-<title>/mm (116 samples, 0.01%)</title><rect x="832.4" y="165" width="0.1" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" />
-<text x="835.39" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (138 samples, 0.01%)</title><rect x="873.5" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="876.46" y="143.5" ></text>
-</g>
-<g >
-<title>/58 (250 samples, 0.02%)</title><rect x="356.6" y="117" width="0.2" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" />
-<text x="359.59" y="127.5" ></text>
-</g>
-<g >
-<title>/1498492 (142 samples, 0.01%)</title><rect x="498.9" y="181" width="0.2" height="15.0" fill="rgb(250,135,49)" rx="2" ry="2" />
-<text x="501.93" y="191.5" ></text>
-</g>
-<g >
-<title>/16 (242 samples, 0.02%)</title><rect x="341.4" y="117" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" />
-<text x="344.36" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="831.2" y="85" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="834.20" y="95.5" ></text>
-</g>
-<g >
-<title>/site-packages (250 samples, 0.02%)</title><rect x="845.1" y="149" width="0.2" height="15.0" fill="rgb(239,119,37)" rx="2" ry="2" />
-<text x="848.10" y="159.5" ></text>
-</g>
-<g >
-<title>/59 (234 samples, 0.02%)</title><rect x="356.8" y="117" width="0.3" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" />
-<text x="359.83" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (330 samples, 0.03%)</title><rect x="823.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="826.42" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="786.5" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="789.54" y="79.5" ></text>
-</g>
-<g >
-<title>/udev (270 samples, 0.02%)</title><rect x="961.9" y="165" width="0.3" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" />
-<text x="964.93" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (214 samples, 0.02%)</title><rect x="348.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="351.71" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (170 samples, 0.01%)</title><rect x="407.1" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="410.09" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (237 samples, 0.02%)</title><rect x="394.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="397.84" y="111.5" ></text>
-</g>
-<g >
-<title>/ac (144 samples, 0.01%)</title><rect x="330.5" y="133" width="0.1" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" />
-<text x="333.47" y="143.5" ></text>
-</g>
-<g >
-<title>/6.7 (117 samples, 0.01%)</title><rect x="1169.1" y="101" width="0.1" height="15.0" fill="rgb(239,91,38)" rx="2" ry="2" />
-<text x="1172.06" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="811.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="814.79" y="79.5" ></text>
-</g>
-<g >
-<title>/8c (225 samples, 0.02%)</title><rect x="368.9" y="117" width="0.2" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" />
-<text x="371.93" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (109 samples, 0.01%)</title><rect x="738.4" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="741.42" y="159.5" ></text>
-</g>
-<g >
-<title>/1f (217 samples, 0.02%)</title><rect x="343.5" y="117" width="0.2" height="15.0" fill="rgb(238,129,36)" rx="2" ry="2" />
-<text x="346.50" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (1,238 samples, 0.10%)</title><rect x="473.5" y="165" width="1.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="476.49" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (5,901 samples, 0.48%)</title><rect x="500.5" y="165" width="5.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="503.45" y="175.5" ></text>
-</g>
-<g >
-<title>/strconv (531 samples, 0.04%)</title><rect x="868.1" y="133" width="0.5" height="15.0" fill="rgb(238,122,37)" rx="2" ry="2" />
-<text x="871.10" y="143.5" ></text>
-</g>
-<g >
-<title>/com.bitwarden.desktop.Locale (134 samples, 0.01%)</title><rect x="1160.6" y="133" width="0.1" height="15.0" fill="rgb(242,164,41)" rx="2" ry="2" />
-<text x="1163.61" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (244 samples, 0.02%)</title><rect x="471.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="474.69" y="175.5" ></text>
-</g>
-<g >
-<title>/PackageKit (136,230 samples, 11.16%)</title><rect x="997.8" y="165" width="131.7" height="15.0" fill="rgb(235,155,33)" rx="2" ry="2" />
-<text x="1000.76" y="175.5" >/PackageKit</text>
-</g>
-<g >
-<title>syscall`enter_openat (296 samples, 0.02%)</title><rect x="767.5" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="770.52" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (217 samples, 0.02%)</title><rect x="432.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="435.87" y="159.5" ></text>
-</g>
-<g >
-<title>/5b (217 samples, 0.02%)</title><rect x="357.3" y="117" width="0.2" height="15.0" fill="rgb(223,122,20)" rx="2" ry="2" />
-<text x="360.32" y="127.5" ></text>
-</g>
-<g >
-<title>all (1,220,309 samples, 100%)</title><rect x="10.0" y="213" width="1180.0" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" />
-<text x="13.00" y="223.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (243 samples, 0.02%)</title><rect x="392.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="395.61" y="111.5" ></text>
-</g>
-<g >
-<title>/pack (526 samples, 0.04%)</title><rect x="255.9" y="181" width="0.5" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" />
-<text x="258.93" y="191.5" ></text>
-</g>
-<g >
-<title>/heads (267 samples, 0.02%)</title><rect x="1159.8" y="117" width="0.2" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" />
-<text x="1162.78" y="127.5" ></text>
-</g>
-<g >
-<title>/mount-rootfs (239 samples, 0.02%)</title><rect x="761.5" y="165" width="0.2" height="15.0" fill="rgb(237,113,35)" rx="2" ry="2" />
-<text x="764.50" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="377.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="380.24" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (251 samples, 0.02%)</title><rect x="336.9" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="339.93" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (1,564 samples, 0.13%)</title><rect x="1133.4" y="149" width="1.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1136.37" y="159.5" ></text>
-</g>
-<g >
-<title>/x86_64 (276 samples, 0.02%)</title><rect x="1165.4" y="117" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1168.41" y="127.5" ></text>
-</g>
-<g >
-<title>/2f (250 samples, 0.02%)</title><rect x="347.1" y="117" width="0.2" height="15.0" fill="rgb(237,124,35)" rx="2" ry="2" />
-<text x="350.09" y="127.5" ></text>
-</g>
-<g >
-<title>/ad (250 samples, 0.02%)</title><rect x="376.5" y="117" width="0.2" height="15.0" fill="rgb(237,115,35)" rx="2" ry="2" />
-<text x="379.50" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="795.6" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="798.57" y="79.5" ></text>
-</g>
-<g >
-<title>/x86_64 (197 samples, 0.02%)</title><rect x="271.7" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="274.66" y="175.5" ></text>
-</g>
-<g >
-<title>/1461865 (2,666 samples, 0.22%)</title><rect x="479.8" y="181" width="2.6" height="15.0" fill="rgb(233,135,31)" rx="2" ry="2" />
-<text x="482.83" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="819.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="822.72" y="79.5" ></text>
-</g>
-<g >
-<title>/fd (178 samples, 0.01%)</title><rect x="479.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="482.53" y="175.5" ></text>
-</g>
-<g >
-<title>/e7 (268 samples, 0.02%)</title><rect x="390.0" y="117" width="0.3" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" />
-<text x="393.04" y="127.5" ></text>
-</g>
-<g >
-<title>/ior (4,985 samples, 0.41%)</title><rect x="433.8" y="149" width="4.9" height="15.0" fill="rgb(240,134,39)" rx="2" ry="2" />
-<text x="436.84" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (123 samples, 0.01%)</title><rect x="515.5" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="518.46" y="159.5" ></text>
-</g>
-<g >
-<title>/41 (136,228 samples, 11.16%)</title><rect x="997.8" y="149" width="131.7" height="15.0" fill="rgb(222,130,19)" rx="2" ry="2" />
-<text x="1000.76" y="159.5" >/41</text>
-</g>
-<g >
-<title>/1655491 (584 samples, 0.05%)</title><rect x="511.1" y="181" width="0.5" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" />
-<text x="514.07" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (105 samples, 0.01%)</title><rect x="718.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="721.84" y="159.5" ></text>
-</g>
-<g >
-<title>/43 (234 samples, 0.02%)</title><rect x="351.8" y="117" width="0.2" height="15.0" fill="rgb(236,123,34)" rx="2" ry="2" />
-<text x="354.76" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="821.2" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="824.16" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="393.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="396.26" y="111.5" ></text>
-</g>
-<g >
-<title>/40 (262 samples, 0.02%)</title><rect x="351.0" y="117" width="0.3" height="15.0" fill="rgb(224,133,21)" rx="2" ry="2" />
-<text x="354.04" y="127.5" ></text>
-</g>
-<g >
-<title>/kernel (169 samples, 0.01%)</title><rect x="745.6" y="165" width="0.1" height="15.0" fill="rgb(237,117,35)" rx="2" ry="2" />
-<text x="748.57" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (287 samples, 0.02%)</title><rect x="373.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="376.71" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="391.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="394.43" y="111.5" ></text>
-</g>
-<g >
-<title>/9c (507 samples, 0.04%)</title><rect x="329.6" y="133" width="0.5" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" />
-<text x="332.62" y="143.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.VAAPI.Intel (120 samples, 0.01%)</title><rect x="270.9" y="181" width="0.2" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" />
-<text x="273.94" y="191.5" ></text>
-</g>
-<g >
-<title>/io (447 samples, 0.04%)</title><rect x="853.8" y="133" width="0.4" height="15.0" fill="rgb(238,134,37)" rx="2" ry="2" />
-<text x="856.77" y="143.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.VAAPI.Intel (311 samples, 0.03%)</title><rect x="1165.4" y="133" width="0.3" height="15.0" fill="rgb(233,149,31)" rx="2" ry="2" />
-<text x="1168.41" y="143.5" ></text>
-</g>
-<g >
-<title>/21 (261 samples, 0.02%)</title><rect x="344.0" y="117" width="0.2" height="15.0" fill="rgb(225,140,22)" rx="2" ry="2" />
-<text x="346.95" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (1,988 samples, 0.16%)</title><rect x="425.1" y="117" width="1.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="428.12" y="127.5" ></text>
-</g>
-<g >
-<title>/lib (47,850 samples, 3.92%)</title><rect x="1129.6" y="181" width="46.3" height="15.0" fill="rgb(234,99,32)" rx="2" ry="2" />
-<text x="1132.63" y="191.5" >/lib</text>
-</g>
-<g >
-<title>/e5 (217 samples, 0.02%)</title><rect x="389.6" y="117" width="0.2" height="15.0" fill="rgb(239,147,38)" rx="2" ry="2" />
-<text x="392.60" y="127.5" ></text>
-</g>
-<g >
-<title>/be (229 samples, 0.02%)</title><rect x="380.3" y="117" width="0.2" height="15.0" fill="rgb(234,107,32)" rx="2" ry="2" />
-<text x="383.29" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (321 samples, 0.03%)</title><rect x="339.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="342.13" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (132 samples, 0.01%)</title><rect x="1174.2" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1177.17" y="159.5" ></text>
-</g>
-<g >
-<title>/102161 (20,180 samples, 1.65%)</title><rect x="450.6" y="181" width="19.5" height="15.0" fill="rgb(227,148,24)" rx="2" ry="2" />
-<text x="453.62" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="353.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="356.78" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (231 samples, 0.02%)</title><rect x="406.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="409.28" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="349.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="352.84" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (219 samples, 0.02%)</title><rect x="470.2" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="473.17" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="344.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="347.20" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (239 samples, 0.02%)</title><rect x="343.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="346.26" y="111.5" ></text>
-</g>
-<g >
-<title>/libexec (160 samples, 0.01%)</title><rect x="962.4" y="181" width="0.1" height="15.0" fill="rgb(237,99,35)" rx="2" ry="2" />
-<text x="965.37" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (144 samples, 0.01%)</title><rect x="508.7" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="511.69" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (125 samples, 0.01%)</title><rect x="529.1" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="532.11" y="175.5" ></text>
-</g>
-<g >
-<title>/42 (270 samples, 0.02%)</title><rect x="351.5" y="117" width="0.3" height="15.0" fill="rgb(238,127,36)" rx="2" ry="2" />
-<text x="354.50" y="127.5" ></text>
-</g>
-<g >
-<title>/1655395 (229 samples, 0.02%)</title><rect x="510.5" y="181" width="0.2" height="15.0" fill="rgb(245,129,44)" rx="2" ry="2" />
-<text x="513.51" y="191.5" ></text>
-</g>
-<g >
-<title>/xml (224 samples, 0.02%)</title><rect x="995.5" y="149" width="0.2" height="15.0" fill="rgb(230,120,27)" rx="2" ry="2" />
-<text x="998.49" y="159.5" ></text>
-</g>
-<g >
-<title>/1656475 (148 samples, 0.01%)</title><rect x="527.4" y="181" width="0.2" height="15.0" fill="rgb(246,129,46)" rx="2" ry="2" />
-<text x="530.42" y="191.5" ></text>
-</g>
-<g >
-<title>/x86_64 (257 samples, 0.02%)</title><rect x="1166.5" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1169.50" y="127.5" ></text>
-</g>
-<g >
-<title>/sys (309 samples, 0.03%)</title><rect x="745.5" y="181" width="0.3" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" />
-<text x="748.50" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (246 samples, 0.02%)</title><rect x="723.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="726.67" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (189 samples, 0.02%)</title><rect x="725.4" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="728.39" y="175.5" ></text>
-</g>
-<g >
-<title>/4b (222 samples, 0.02%)</title><rect x="353.6" y="117" width="0.2" height="15.0" fill="rgb(224,127,21)" rx="2" ry="2" />
-<text x="356.56" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (249 samples, 0.02%)</title><rect x="369.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="372.14" y="111.5" ></text>
-</g>
-<g >
-<title>/org.fedoraproject.Platform.Locale (119 samples, 0.01%)</title><rect x="1161.5" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1164.45" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (265 samples, 0.02%)</title><rect x="384.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="387.75" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (10,792 samples, 0.88%)</title><rect x="25.4" y="181" width="10.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="28.39" y="191.5" ></text>
-</g>
-<g >
-<title>/pkgconfig (182 samples, 0.01%)</title><rect x="995.2" y="165" width="0.2" height="15.0" fill="rgb(239,128,37)" rx="2" ry="2" />
-<text x="998.18" y="175.5" ></text>
-</g>
-<g >
-<title>/input (5,531 samples, 0.45%)</title><rect x="294.9" y="181" width="5.3" height="15.0" fill="rgb(234,137,31)" rx="2" ry="2" />
-<text x="297.85" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="772.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="775.58" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pwrite64 (1,062 samples, 0.09%)</title><rect x="1188.9" y="165" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1191.92" y="175.5" ></text>
-</g>
-<g >
-<title>/19 (280 samples, 0.02%)</title><rect x="342.1" y="117" width="0.2" height="15.0" fill="rgb(229,119,27)" rx="2" ry="2" />
-<text x="345.06" y="127.5" ></text>
-</g>
-<g >
-<title>/sss (212 samples, 0.02%)</title><rect x="1175.6" y="165" width="0.2" height="15.0" fill="rgb(235,126,34)" rx="2" ry="2" />
-<text x="1178.60" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (108 samples, 0.01%)</title><rect x="564.5" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="567.46" y="175.5" ></text>
-</g>
-<g >
-<title>/67 (221 samples, 0.02%)</title><rect x="360.1" y="117" width="0.2" height="15.0" fill="rgb(227,100,24)" rx="2" ry="2" />
-<text x="363.12" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (207 samples, 0.02%)</title><rect x="965.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="968.94" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (4,126 samples, 0.34%)</title><rect x="304.8" y="181" width="4.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="307.83" y="191.5" ></text>
-</g>
-<g >
-<title>/0e (244 samples, 0.02%)</title><rect x="339.4" y="117" width="0.3" height="15.0" fill="rgb(241,137,39)" rx="2" ry="2" />
-<text x="342.44" y="127.5" ></text>
-</g>
-<g >
-<title>/org.kde.WaylandDecoration.QAdwaitaDecorations (277 samples, 0.02%)</title><rect x="1169.7" y="133" width="0.2" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" />
-<text x="1172.66" y="143.5" ></text>
-</g>
-<g >
-<title>/active (190 samples, 0.02%)</title><rect x="1153.5" y="101" width="0.1" height="15.0" fill="rgb(238,118,36)" rx="2" ry="2" />
-<text x="1156.46" y="111.5" ></text>
-</g>
-<g >
-<title>/62 (236 samples, 0.02%)</title><rect x="359.0" y="117" width="0.2" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" />
-<text x="362.01" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="791.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="794.01" y="79.5" ></text>
-</g>
-<g >
-<title>/polkit-1 (217 samples, 0.02%)</title><rect x="311.6" y="181" width="0.2" height="15.0" fill="rgb(232,154,30)" rx="2" ry="2" />
-<text x="314.63" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (337 samples, 0.03%)</title><rect x="792.7" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="795.72" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (1,238 samples, 0.10%)</title><rect x="473.5" y="149" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="476.49" y="159.5" ></text>
-</g>
-<g >
-<title>/queries (421 samples, 0.03%)</title><rect x="407.3" y="117" width="0.4" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
-<text x="410.28" y="127.5" ></text>
-</g>
-<g >
-<title>/runtime (655 samples, 0.05%)</title><rect x="760.6" y="165" width="0.7" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="763.62" y="175.5" ></text>
-</g>
-<g >
-<title>/org.telegram.desktop.webview.Locale (110 samples, 0.01%)</title><rect x="1169.9" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1172.93" y="143.5" ></text>
-</g>
-<g >
-<title>/modules (327 samples, 0.03%)</title><rect x="841.4" y="149" width="0.4" height="15.0" fill="rgb(244,113,43)" rx="2" ry="2" />
-<text x="844.45" y="159.5" ></text>
-</g>
-<g >
-<title>/e1 (253 samples, 0.02%)</title><rect x="388.6" y="117" width="0.2" height="15.0" fill="rgb(229,160,26)" rx="2" ry="2" />
-<text x="391.59" y="127.5" ></text>
-</g>
-<g >
-<title>home (126,149 samples, 10.34%)</title><rect x="321.0" y="197" width="122.0" height="15.0" fill="rgb(240,189,38)" rx="2" ry="2" />
-<text x="324.03" y="207.5" >home</text>
-</g>
-<g >
-<title>/73 (246 samples, 0.02%)</title><rect x="363.0" y="117" width="0.2" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" />
-<text x="365.98" y="127.5" ></text>
-</g>
-<g >
-<title>/a7 (242 samples, 0.02%)</title><rect x="375.1" y="117" width="0.3" height="15.0" fill="rgb(228,106,26)" rx="2" ry="2" />
-<text x="378.12" y="127.5" ></text>
-</g>
-<g >
-<title>/locale (314 samples, 0.03%)</title><rect x="872.6" y="165" width="0.3" height="15.0" fill="rgb(242,118,41)" rx="2" ry="2" />
-<text x="875.63" y="175.5" ></text>
-</g>
-<g >
-<title>/ae (272 samples, 0.02%)</title><rect x="376.7" y="117" width="0.3" height="15.0" fill="rgb(235,112,33)" rx="2" ry="2" />
-<text x="379.74" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="362.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="365.48" y="111.5" ></text>
-</g>
-<g >
-<title>/1640373 (154 samples, 0.01%)</title><rect x="508.5" y="181" width="0.2" height="15.0" fill="rgb(251,129,50)" rx="2" ry="2" />
-<text x="511.53" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="354.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="357.64" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (228 samples, 0.02%)</title><rect x="355.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="358.35" y="111.5" ></text>
-</g>
-<g >
-<title>/df (223 samples, 0.02%)</title><rect x="388.1" y="117" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="391.12" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (136 samples, 0.01%)</title><rect x="872.2" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="875.20" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (569 samples, 0.05%)</title><rect x="509.0" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="512.01" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (127 samples, 0.01%)</title><rect x="841.0" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="844.02" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (879 samples, 0.07%)</title><rect x="859.3" y="117" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="862.28" y="127.5" ></text>
-</g>
-<g >
-<title>/tmux-spawn-fac5a323-c44b-4e5c-967a-c8fe8dfdee71.scope (150 samples, 0.01%)</title><rect x="826.4" y="85" width="0.1" height="15.0" fill="rgb(248,140,48)" rx="2" ry="2" />
-<text x="829.37" y="95.5" ></text>
-</g>
-<g >
-<title>/atomic (162 samples, 0.01%)</title><rect x="868.9" y="117" width="0.2" height="15.0" fill="rgb(232,102,29)" rx="2" ry="2" />
-<text x="871.91" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="785.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="788.65" y="79.5" ></text>
-</g>
-<g >
-<title>/44 (201 samples, 0.02%)</title><rect x="352.0" y="117" width="0.2" height="15.0" fill="rgb(235,120,33)" rx="2" ry="2" />
-<text x="354.99" y="127.5" ></text>
-</g>
-<g >
-<title>/a2 (221 samples, 0.02%)</title><rect x="374.0" y="117" width="0.2" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" />
-<text x="376.99" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (270 samples, 0.02%)</title><rect x="383.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="386.08" y="111.5" ></text>
-</g>
-<g >
-<title>/1319468 (1,249 samples, 0.10%)</title><rect x="473.5" y="181" width="1.2" height="15.0" fill="rgb(230,139,28)" rx="2" ry="2" />
-<text x="476.49" y="191.5" ></text>
-</g>
-<g >
-<title>/bin (1,790 samples, 0.15%)</title><rect x="962.5" y="165" width="1.8" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="965.52" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (111 samples, 0.01%)</title><rect x="964.0" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="967.02" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="382.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="385.65" y="111.5" ></text>
-</g>
-<g >
-<title>/poll (994 samples, 0.08%)</title><rect x="850.7" y="117" width="1.0" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" />
-<text x="853.72" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (584 samples, 0.05%)</title><rect x="511.1" y="165" width="0.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="514.07" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (253 samples, 0.02%)</title><rect x="340.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="343.40" y="111.5" ></text>
-</g>
-<g >
-<title>/pkgconfig (947 samples, 0.08%)</title><rect x="843.3" y="165" width="0.9" height="15.0" fill="rgb(239,128,37)" rx="2" ry="2" />
-<text x="846.30" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (328 samples, 0.03%)</title><rect x="796.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="799.12" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (148 samples, 0.01%)</title><rect x="853.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="856.81" y="111.5" ></text>
-</g>
-<g >
-<title>/LNXSYBUS:00 (147 samples, 0.01%)</title><rect x="765.8" y="149" width="0.1" height="15.0" fill="rgb(229,104,27)" rx="2" ry="2" />
-<text x="768.78" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="828.3" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="831.35" y="95.5" ></text>
-</g>
-<g >
-<title>/5e (303 samples, 0.02%)</title><rect x="358.0" y="117" width="0.3" height="15.0" fill="rgb(235,112,33)" rx="2" ry="2" />
-<text x="361.04" y="127.5" ></text>
-</g>
-<g >
-<title>/cf (264 samples, 0.02%)</title><rect x="384.3" y="117" width="0.2" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" />
-<text x="387.29" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (1,721 samples, 0.14%)</title><rect x="482.4" y="149" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="485.43" y="159.5" ></text>
-</g>
-<g >
-<title>/64x64 (105 samples, 0.01%)</title><rect x="1153.5" y="69" width="0.1" height="15.0" fill="rgb(240,110,39)" rx="2" ry="2" />
-<text x="1156.55" y="79.5" ></text>
-</g>
-<g >
-<title>/70 (238 samples, 0.02%)</title><rect x="362.2" y="117" width="0.3" height="15.0" fill="rgb(233,173,31)" rx="2" ry="2" />
-<text x="365.25" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="339.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="342.44" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="352.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="355.39" y="111.5" ></text>
-</g>
-<g >
-<title>/task (546 samples, 0.04%)</title><rect x="472.8" y="165" width="0.5" height="15.0" fill="rgb(236,140,34)" rx="2" ry="2" />
-<text x="475.78" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (196 samples, 0.02%)</title><rect x="848.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="851.14" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (175 samples, 0.01%)</title><rect x="329.7" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="332.67" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (120 samples, 0.01%)</title><rect x="478.7" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="481.71" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (225 samples, 0.02%)</title><rect x="378.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="381.37" y="111.5" ></text>
-</g>
-<g >
-<title>/29 (226 samples, 0.02%)</title><rect x="345.8" y="117" width="0.2" height="15.0" fill="rgb(228,114,25)" rx="2" ry="2" />
-<text x="348.79" y="127.5" ></text>
-</g>
-<g >
-<title>/e6 (241 samples, 0.02%)</title><rect x="389.8" y="117" width="0.2" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" />
-<text x="392.81" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="793.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="796.89" y="79.5" ></text>
-</g>
-<g >
-<title>/google-noto-vf (18,455 samples, 1.51%)</title><rect x="975.1" y="149" width="17.9" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
-<text x="978.12" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (251 samples, 0.02%)</title><rect x="406.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="409.71" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (280 samples, 0.02%)</title><rect x="816.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="819.30" y="79.5" ></text>
-</g>
-<g >
-<title>/7a (293 samples, 0.02%)</title><rect x="364.6" y="117" width="0.3" height="15.0" fill="rgb(235,170,33)" rx="2" ry="2" />
-<text x="367.59" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="338.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="341.18" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (212 samples, 0.02%)</title><rect x="361.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="364.79" y="111.5" ></text>
-</g>
-<g >
-<title>/c9 (209 samples, 0.02%)</title><rect x="382.9" y="117" width="0.2" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" />
-<text x="385.88" y="127.5" ></text>
-</g>
-<g >
-<title>/87 (287 samples, 0.02%)</title><rect x="367.6" y="117" width="0.3" height="15.0" fill="rgb(237,146,35)" rx="2" ry="2" />
-<text x="370.65" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (372 samples, 0.03%)</title><rect x="1152.6" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1155.60" y="143.5" ></text>
-</g>
-<g >
-<title>/9a (237 samples, 0.02%)</title><rect x="372.1" y="117" width="0.3" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" />
-<text x="375.14" y="127.5" ></text>
-</g>
-<g >
-<title>/1637367 (767 samples, 0.06%)</title><rect x="507.6" y="181" width="0.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
-<text x="510.62" y="191.5" ></text>
-</g>
-<g >
-<title>/x86_64 (316 samples, 0.03%)</title><rect x="1165.9" y="117" width="0.3" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1168.87" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (310 samples, 0.03%)</title><rect x="973.8" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="976.84" y="143.5" ></text>
-</g>
-<g >
-<title>/chrome (676 samples, 0.06%)</title><rect x="415.3" y="85" width="0.7" height="15.0" fill="rgb(240,148,38)" rx="2" ry="2" />
-<text x="418.33" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="359.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="362.65" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (238 samples, 0.02%)</title><rect x="722.1" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="725.09" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="786.3" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="789.26" y="79.5" ></text>
-</g>
-<g >
-<title>/13103 (179 samples, 0.01%)</title><rect x="472.5" y="181" width="0.2" height="15.0" fill="rgb(248,139,47)" rx="2" ry="2" />
-<text x="475.54" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (131 samples, 0.01%)</title><rect x="498.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="501.93" y="159.5" ></text>
-</g>
-<g >
-<title>/153593 (261 samples, 0.02%)</title><rect x="499.6" y="181" width="0.2" height="15.0" fill="rgb(247,132,46)" rx="2" ry="2" />
-<text x="502.59" y="191.5" ></text>
-</g>
-<g >
-<title>/77 (282 samples, 0.02%)</title><rect x="363.9" y="117" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
-<text x="366.93" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="773.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="776.41" y="79.5" ></text>
-</g>
-<g >
-<title>/855779566tedgsaSrto.files (145 samples, 0.01%)</title><rect x="415.1" y="53" width="0.1" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" />
-<text x="418.10" y="63.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (153 samples, 0.01%)</title><rect x="529.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="532.37" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="784.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="787.54" y="79.5" ></text>
-</g>
-<g >
-<title>/1479 (13,349 samples, 1.09%)</title><rect x="484.1" y="181" width="12.9" height="15.0" fill="rgb(240,135,38)" rx="2" ry="2" />
-<text x="487.12" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (581 samples, 0.05%)</title><rect x="513.5" y="165" width="0.6" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="516.49" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (209 samples, 0.02%)</title><rect x="382.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="385.88" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (263 samples, 0.02%)</title><rect x="355.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="358.78" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="814.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="817.59" y="79.5" ></text>
-</g>
-<g >
-<title>/1655459 (164 samples, 0.01%)</title><rect x="510.9" y="181" width="0.1" height="15.0" fill="rgb(230,129,27)" rx="2" ry="2" />
-<text x="513.89" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (439 samples, 0.04%)</title><rect x="850.8" y="101" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="853.83" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (2,334 samples, 0.19%)</title><rect x="833.1" y="165" width="2.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="836.06" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (347 samples, 0.03%)</title><rect x="996.8" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="999.81" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (574 samples, 0.05%)</title><rect x="822.3" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="825.32" y="79.5" ></text>
-</g>
-<g >
-<title>/locale (946 samples, 0.08%)</title><rect x="993.9" y="165" width="0.9" height="15.0" fill="rgb(242,118,41)" rx="2" ry="2" />
-<text x="996.92" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="794.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="797.75" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (614 samples, 0.05%)</title><rect x="262.3" y="181" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="265.34" y="191.5" ></text>
-</g>
-<g >
-<title>/deploy (267 samples, 0.02%)</title><rect x="1159.8" y="101" width="0.2" height="15.0" fill="rgb(252,152,51)" rx="2" ry="2" />
-<text x="1162.78" y="111.5" ></text>
-</g>
-<g >
-<title>/ff (223 samples, 0.02%)</title><rect x="395.5" y="117" width="0.3" height="15.0" fill="rgb(240,139,39)" rx="2" ry="2" />
-<text x="398.54" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (286 samples, 0.02%)</title><rect x="871.2" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="874.21" y="127.5" ></text>
-</g>
-<g >
-<title>/strings (310 samples, 0.03%)</title><rect x="868.6" y="133" width="0.3" height="15.0" fill="rgb(240,122,39)" rx="2" ry="2" />
-<text x="871.61" y="143.5" ></text>
-</g>
-<g >
-<title>/x86_64 (124 samples, 0.01%)</title><rect x="272.3" y="165" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="275.29" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (201 samples, 0.02%)</title><rect x="1154.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1157.04" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (220 samples, 0.02%)</title><rect x="391.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="394.22" y="111.5" ></text>
-</g>
-<g >
-<title>/app.slice (1,702 samples, 0.14%)</title><rect x="768.4" y="101" width="1.6" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="771.38" y="111.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dcom.redhat.imsettings.slice (1,729 samples, 0.14%)</title><rect x="775.1" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="778.13" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (303 samples, 0.02%)</title><rect x="358.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="361.04" y="111.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.evince.Daemon.slice (1,770 samples, 0.15%)</title><rect x="816.0" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="819.02" y="95.5" ></text>
-</g>
-<g >
-<title>/1a (240 samples, 0.02%)</title><rect x="342.3" y="117" width="0.3" height="15.0" fill="rgb(229,145,27)" rx="2" ry="2" />
-<text x="345.33" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (169 samples, 0.01%)</title><rect x="966.6" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="969.55" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (5,224 samples, 0.43%)</title><rect x="739.6" y="165" width="5.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="742.56" y="175.5" ></text>
-</g>
-<g >
-<title>/exports (1,442 samples, 0.12%)</title><rect x="1153.6" y="149" width="1.4" height="15.0" fill="rgb(235,163,33)" rx="2" ry="2" />
-<text x="1156.65" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="364.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="367.88" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="788.0" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="790.96" y="79.5" ></text>
-</g>
-<g >
-<title>/org.kde.Platform (128 samples, 0.01%)</title><rect x="1169.4" y="133" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="1172.40" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (137 samples, 0.01%)</title><rect x="517.8" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="520.83" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="770.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="773.02" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (187 samples, 0.02%)</title><rect x="375.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="378.88" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (239 samples, 0.02%)</title><rect x="868.2" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="871.16" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (147 samples, 0.01%)</title><rect x="527.4" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="530.42" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="810.4" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="813.36" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (241 samples, 0.02%)</title><rect x="374.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="377.41" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="776.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="778.99" y="79.5" ></text>
-</g>
-<g >
-<title>/ac14a7c1d57ff6de1ec07ddc1606a45a0c660e003df507769f73e0444e08ae8e (109 samples, 0.01%)</title><rect x="1162.3" y="85" width="0.1" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" />
-<text x="1165.32" y="95.5" ></text>
-</g>
-<g >
-<title>/Downloaded (173 samples, 0.01%)</title><rect x="407.7" y="133" width="0.2" height="15.0" fill="rgb(250,154,49)" rx="2" ry="2" />
-<text x="410.73" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (8,170 samples, 0.67%)</title><rect x="725.9" y="165" width="7.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="728.94" y="175.5" ></text>
-</g>
-<g >
-<title>/irq (164 samples, 0.01%)</title><rect x="737.9" y="181" width="0.1" height="15.0" fill="rgb(239,124,37)" rx="2" ry="2" />
-<text x="740.87" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (127 samples, 0.01%)</title><rect x="964.1" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="967.13" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (255 samples, 0.02%)</title><rect x="395.8" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="398.75" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (124 samples, 0.01%)</title><rect x="996.6" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="999.58" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (233 samples, 0.02%)</title><rect x="341.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="344.83" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (163 samples, 0.01%)</title><rect x="511.7" y="165" width="0.1" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="514.69" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (25,133 samples, 2.06%)</title><rect x="540.1" y="165" width="24.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="543.06" y="175.5" >/fd</text>
-</g>
-<g >
-<title>/bf (259 samples, 0.02%)</title><rect x="380.5" y="117" width="0.3" height="15.0" fill="rgb(232,104,30)" rx="2" ry="2" />
-<text x="383.51" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="336.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="339.49" y="111.5" ></text>
-</g>
-<g >
-<title>/org.kde.KStyle.Adwaita (126 samples, 0.01%)</title><rect x="271.9" y="181" width="0.1" height="15.0" fill="rgb(229,149,27)" rx="2" ry="2" />
-<text x="274.85" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (122 samples, 0.01%)</title><rect x="868.5" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="871.49" y="127.5" ></text>
-</g>
-<g >
-<title>/unix (767 samples, 0.06%)</title><rect x="852.6" y="101" width="0.8" height="15.0" fill="rgb(247,132,46)" rx="2" ry="2" />
-<text x="855.62" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (572 samples, 0.05%)</title><rect x="801.8" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="804.81" y="79.5" ></text>
-</g>
-<g >
-<title>/1 (1,077 samples, 0.09%)</title><rect x="528.8" y="181" width="1.0" height="15.0" fill="rgb(232,133,30)" rx="2" ry="2" />
-<text x="531.77" y="191.5" ></text>
-</g>
-<g >
-<title>/unicode (255 samples, 0.02%)</title><rect x="871.9" y="133" width="0.2" height="15.0" fill="rgb(250,132,49)" rx="2" ry="2" />
-<text x="874.85" y="143.5" ></text>
-</g>
-<g >
-<title>/share (290 samples, 0.02%)</title><rect x="966.1" y="165" width="0.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
-<text x="969.14" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (1,721 samples, 0.14%)</title><rect x="482.4" y="165" width="1.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="485.43" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="804.1" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="807.05" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (665 samples, 0.05%)</title><rect x="736.4" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="739.37" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="821.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="824.71" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (1,257 samples, 0.10%)</title><rect x="444.0" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="447.05" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (565 samples, 0.05%)</title><rect x="795.0" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="798.02" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (177 samples, 0.01%)</title><rect x="848.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="851.33" y="111.5" ></text>
-</g>
-<g >
-<title>/app (210 samples, 0.02%)</title><rect x="760.1" y="165" width="0.2" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" />
-<text x="763.11" y="175.5" ></text>
-</g>
-<g >
-<title>/d9 (271 samples, 0.02%)</title><rect x="386.6" y="117" width="0.3" height="15.0" fill="rgb(234,139,31)" rx="2" ry="2" />
-<text x="389.63" y="127.5" ></text>
-</g>
-<g >
-<title>/LNXSYSTM:00 (147 samples, 0.01%)</title><rect x="765.8" y="165" width="0.1" height="15.0" fill="rgb(229,104,27)" rx="2" ry="2" />
-<text x="768.78" y="175.5" ></text>
-</g>
-<g >
-<title>/e3 (297 samples, 0.02%)</title><rect x="389.1" y="117" width="0.3" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" />
-<text x="392.07" y="127.5" ></text>
-</g>
-<g >
-<title>/bc (235 samples, 0.02%)</title><rect x="379.8" y="117" width="0.3" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" />
-<text x="382.83" y="127.5" ></text>
-</g>
-<g >
-<title>/cpu (209 samples, 0.02%)</title><rect x="848.9" y="117" width="0.2" height="15.0" fill="rgb(238,161,36)" rx="2" ry="2" />
-<text x="851.87" y="127.5" ></text>
-</g>
-<g >
-<title>/org.gnome.Decibels.Locale (131 samples, 0.01%)</title><rect x="1166.4" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1169.37" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (552 samples, 0.05%)</title><rect x="769.5" y="85" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="772.49" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (490 samples, 0.04%)</title><rect x="723.9" y="165" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="726.91" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (350 samples, 0.03%)</title><rect x="507.6" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="510.62" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (3,150 samples, 0.26%)</title><rect x="1171.1" y="133" width="3.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1174.13" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (243 samples, 0.02%)</title><rect x="336.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="339.25" y="111.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dio.github.kotatogram.slice (1,766 samples, 0.14%)</title><rect x="778.5" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="781.52" y="95.5" ></text>
-</g>
-<g >
-<title>/pts (1,975 samples, 0.16%)</title><rect x="300.2" y="181" width="1.9" height="15.0" fill="rgb(236,138,35)" rx="2" ry="2" />
-<text x="303.20" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (54,360 samples, 4.45%)</title><rect x="566.6" y="149" width="52.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="569.58" y="159.5" >sysca..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (126 samples, 0.01%)</title><rect x="851.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="854.25" y="111.5" ></text>
-</g>
-<g >
-<title>/org.fedoraproject.Platform.GL.default (164 samples, 0.01%)</title><rect x="1161.3" y="133" width="0.1" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" />
-<text x="1164.29" y="143.5" ></text>
-</g>
-<g >
-<title>/f1 (250 samples, 0.02%)</title><rect x="392.4" y="117" width="0.2" height="15.0" fill="rgb(228,155,25)" rx="2" ry="2" />
-<text x="395.36" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (264 samples, 0.02%)</title><rect x="384.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="387.29" y="111.5" ></text>
-</g>
-<g >
-<title>/sysimage (90,511 samples, 7.42%)</title><rect x="874.3" y="165" width="87.5" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" />
-<text x="877.28" y="175.5" >/sysimage</text>
-</g>
-<g >
-<title>syscall`enter_ioctl (284 samples, 0.02%)</title><rect x="799.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="802.24" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (386 samples, 0.03%)</title><rect x="497.1" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="500.06" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (255 samples, 0.02%)</title><rect x="398.3" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="401.28" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (643 samples, 0.05%)</title><rect x="1132.7" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1135.68" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (642 samples, 0.05%)</title><rect x="875.6" y="133" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="878.58" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (168 samples, 0.01%)</title><rect x="472.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="475.54" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (365 samples, 0.03%)</title><rect x="858.0" y="117" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="861.04" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (291 samples, 0.02%)</title><rect x="356.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="359.04" y="111.5" ></text>
-</g>
-<g >
-<title>/148 (1,510 samples, 0.12%)</title><rect x="497.4" y="181" width="1.5" height="15.0" fill="rgb(235,135,33)" rx="2" ry="2" />
-<text x="500.44" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="778.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="781.52" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (611 samples, 0.05%)</title><rect x="44.7" y="181" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="47.66" y="191.5" ></text>
-</g>
-<g >
-<title>/flathub (890 samples, 0.07%)</title><rect x="760.4" y="181" width="0.9" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" />
-<text x="763.40" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (196 samples, 0.02%)</title><rect x="381.8" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="384.75" y="111.5" ></text>
-</g>
-<g >
-<title>/1797 (229 samples, 0.02%)</title><rect x="528.1" y="181" width="0.3" height="15.0" fill="rgb(239,126,37)" rx="2" ry="2" />
-<text x="531.14" y="191.5" ></text>
-</g>
-<g >
-<title>/fdinfo (406 samples, 0.03%)</title><rect x="738.3" y="165" width="0.4" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" />
-<text x="741.31" y="175.5" ></text>
-</g>
-<g >
-<title>/69 (224 samples, 0.02%)</title><rect x="360.6" y="117" width="0.2" height="15.0" fill="rgb(224,94,21)" rx="2" ry="2" />
-<text x="363.55" y="127.5" ></text>
-</g>
-<g >
-<title>/runtime (136 samples, 0.01%)</title><rect x="1159.9" y="85" width="0.1" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="1162.90" y="95.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Geary.slice (1,741 samples, 0.14%)</title><rect x="793.9" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="796.89" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="365.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="368.53" y="111.5" ></text>
-</g>
-<g >
-<title>/sbin (1,899 samples, 0.16%)</title><rect x="964.3" y="165" width="1.8" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" />
-<text x="967.30" y="175.5" ></text>
-</g>
-<g >
-<title>/swcatalog (297 samples, 0.02%)</title><rect x="995.4" y="165" width="0.3" height="15.0" fill="rgb(248,113,48)" rx="2" ry="2" />
-<text x="998.43" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="777.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="780.08" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (17,201 samples, 1.41%)</title><rect x="975.1" y="133" width="16.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="978.14" y="143.5" ></text>
-</g>
-<g >
-<title>/virtual (162 samples, 0.01%)</title><rect x="766.2" y="165" width="0.1" height="15.0" fill="rgb(224,104,21)" rx="2" ry="2" />
-<text x="769.16" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (241 samples, 0.02%)</title><rect x="389.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="392.81" y="111.5" ></text>
-</g>
-<g >
-<title>/f41 (123 samples, 0.01%)</title><rect x="1161.3" y="101" width="0.1" height="15.0" fill="rgb(226,145,23)" rx="2" ry="2" />
-<text x="1164.29" y="111.5" ></text>
-</g>
-<g >
-<title>/88 (223 samples, 0.02%)</title><rect x="367.9" y="117" width="0.2" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
-<text x="370.93" y="127.5" ></text>
-</g>
-<g >
-<title>/system.slice (2,076 samples, 0.17%)</title><rect x="766.4" y="149" width="2.0" height="15.0" fill="rgb(246,145,46)" rx="2" ry="2" />
-<text x="769.37" y="159.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.openh264 (142 samples, 0.01%)</title><rect x="271.1" y="181" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="274.12" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (126 samples, 0.01%)</title><rect x="255.3" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="258.26" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="818.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="821.61" y="79.5" ></text>
-</g>
-<g >
-<title>internalflamegraph (129 samples, 0.01%)</title><rect x="443.6" y="197" width="0.2" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" />
-<text x="446.64" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (177 samples, 0.01%)</title><rect x="256.0" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="259.02" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="344.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="346.95" y="111.5" ></text>
-</g>
-<g >
-<title>/journal (104 samples, 0.01%)</title><rect x="761.4" y="165" width="0.1" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" />
-<text x="764.40" y="175.5" ></text>
-</g>
-<g >
-<title>/sys (217 samples, 0.02%)</title><rect x="859.0" y="101" width="0.3" height="15.0" fill="rgb(241,145,40)" rx="2" ry="2" />
-<text x="862.05" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (2,922 samples, 0.24%)</title><rect x="719.1" y="165" width="2.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="722.14" y="175.5" ></text>
-</g>
-<g >
-<title>/snapd (275 samples, 0.02%)</title><rect x="1175.3" y="165" width="0.3" height="15.0" fill="rgb(252,142,51)" rx="2" ry="2" />
-<text x="1178.33" y="175.5" ></text>
-</g>
-<g >
-<title>/extension (4,883 samples, 0.40%)</title><rect x="410.2" y="117" width="4.7" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" />
-<text x="413.20" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="342.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="345.78" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (240 samples, 0.02%)</title><rect x="372.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="375.37" y="111.5" ></text>
-</g>
-<g >
-<title>/24 (222 samples, 0.02%)</title><rect x="344.7" y="117" width="0.2" height="15.0" fill="rgb(237,130,35)" rx="2" ry="2" />
-<text x="347.65" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="357.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="360.32" y="111.5" ></text>
-</g>
-<g >
-<title>/app-git\x2dmaintenance.slice (1,740 samples, 0.14%)</title><rect x="822.9" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="825.87" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (258 samples, 0.02%)</title><rect x="373.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="376.04" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (301 samples, 0.02%)</title><rect x="312.5" y="181" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="315.55" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (667 samples, 0.05%)</title><rect x="1154.2" y="101" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1157.23" y="111.5" ></text>
-</g>
-<g >
-<title>/data (118 samples, 0.01%)</title><rect x="762.9" y="165" width="0.1" height="15.0" fill="rgb(235,165,33)" rx="2" ry="2" />
-<text x="765.88" y="175.5" ></text>
-</g>
-<g >
-<title>/13 (257 samples, 0.02%)</title><rect x="340.6" y="117" width="0.3" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" />
-<text x="343.64" y="127.5" ></text>
-</g>
-<g >
-<title>/icons (123 samples, 0.01%)</title><rect x="993.8" y="165" width="0.1" height="15.0" fill="rgb(244,134,43)" rx="2" ry="2" />
-<text x="996.81" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (207 samples, 0.02%)</title><rect x="371.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="373.99" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (116 samples, 0.01%)</title><rect x="725.0" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="728.05" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (60,561 samples, 4.96%)</title><rect x="58.6" y="181" width="58.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="61.65" y="191.5" >syscal..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (268 samples, 0.02%)</title><rect x="357.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="360.06" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (301 samples, 0.02%)</title><rect x="380.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="383.76" y="111.5" ></text>
-</g>
-<g >
-<title>/bb (219 samples, 0.02%)</title><rect x="379.6" y="117" width="0.2" height="15.0" fill="rgb(222,117,19)" rx="2" ry="2" />
-<text x="382.62" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (308 samples, 0.03%)</title><rect x="325.6" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="328.63" y="127.5" ></text>
-</g>
-<g >
-<title>/4388 (194 samples, 0.02%)</title><rect x="632.9" y="181" width="0.2" height="15.0" fill="rgb(241,123,39)" rx="2" ry="2" />
-<text x="635.93" y="191.5" ></text>
-</g>
-<g >
-<title>/20 (255 samples, 0.02%)</title><rect x="343.7" y="117" width="0.3" height="15.0" fill="rgb(226,143,23)" rx="2" ry="2" />
-<text x="346.71" y="127.5" ></text>
-</g>
-<g >
-<title>/gnome-shell (230 samples, 0.02%)</title><rect x="993.6" y="165" width="0.2" height="15.0" fill="rgb(227,147,24)" rx="2" ry="2" />
-<text x="996.55" y="175.5" ></text>
-</g>
-<g >
-<title>/cache (136,348 samples, 11.17%)</title><rect x="997.8" y="181" width="131.8" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" />
-<text x="1000.76" y="191.5" >/cache</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (283 samples, 0.02%)</title><rect x="337.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="340.17" y="111.5" ></text>
-</g>
-<g >
-<title>/weave (242 samples, 0.02%)</title><rect x="416.0" y="117" width="0.2" height="15.0" fill="rgb(243,112,42)" rx="2" ry="2" />
-<text x="418.99" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (360 samples, 0.03%)</title><rect x="734.4" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="737.38" y="175.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Identity.slice (1,741 samples, 0.14%)</title><rect x="795.6" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="798.57" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (284 samples, 0.02%)</title><rect x="338.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="341.86" y="111.5" ></text>
-</g>
-<g >
-<title>/d3 (221 samples, 0.02%)</title><rect x="385.2" y="117" width="0.2" height="15.0" fill="rgb(244,159,43)" rx="2" ry="2" />
-<text x="388.23" y="127.5" ></text>
-</g>
-<g >
-<title>/fc (237 samples, 0.02%)</title><rect x="394.8" y="117" width="0.3" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" />
-<text x="397.84" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="820.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="823.32" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="387.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="390.16" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (242 samples, 0.02%)</title><rect x="389.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="392.36" y="111.5" ></text>
-</g>
-<g >
-<title>/terminfo (689 samples, 0.06%)</title><rect x="995.7" y="165" width="0.7" height="15.0" fill="rgb(248,127,47)" rx="2" ry="2" />
-<text x="998.72" y="175.5" ></text>
-</g>
-<g >
-<title>/80 (254 samples, 0.02%)</title><rect x="366.0" y="117" width="0.2" height="15.0" fill="rgb(232,168,30)" rx="2" ry="2" />
-<text x="368.98" y="127.5" ></text>
-</g>
-<g >
-<title>/power_supply (604 samples, 0.05%)</title><rect x="765.1" y="165" width="0.6" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" />
-<text x="768.14" y="175.5" ></text>
-</g>
-<g >
-<title>/cc (207 samples, 0.02%)</title><rect x="383.6" y="117" width="0.2" height="15.0" fill="rgb(231,164,29)" rx="2" ry="2" />
-<text x="386.62" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (314 samples, 0.03%)</title><rect x="746.8" y="181" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="749.75" y="191.5" ></text>
-</g>
-<g >
-<title>/47 (211 samples, 0.02%)</title><rect x="352.6" y="117" width="0.2" height="15.0" fill="rgb(229,111,27)" rx="2" ry="2" />
-<text x="355.61" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="391.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="394.67" y="111.5" ></text>
-</g>
-<g >
-<title>/30 (270 samples, 0.02%)</title><rect x="347.3" y="117" width="0.3" height="15.0" fill="rgb(225,138,22)" rx="2" ry="2" />
-<text x="350.33" y="127.5" ></text>
-</g>
-<g >
-<title>. (253,185 samples, 20.75%)</title><rect x="10.0" y="197" width="244.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
-<text x="13.00" y="207.5" >.</text>
-</g>
-<g >
-<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="790.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="793.73" y="79.5" ></text>
-</g>
-<g >
-<title>/14 (238 samples, 0.02%)</title><rect x="340.9" y="117" width="0.2" height="15.0" fill="rgb(238,135,36)" rx="2" ry="2" />
-<text x="343.89" y="127.5" ></text>
-</g>
-<g >
-<title>/8b (262 samples, 0.02%)</title><rect x="368.7" y="117" width="0.2" height="15.0" fill="rgb(232,162,30)" rx="2" ry="2" />
-<text x="371.67" y="127.5" ></text>
-</g>
-<g >
-<title>/firefox (18,103 samples, 1.48%)</title><rect x="415.1" y="149" width="17.5" height="15.0" fill="rgb(249,129,49)" rx="2" ry="2" />
-<text x="418.09" y="159.5" ></text>
-</g>
-<g >
-<title>/b6 (207 samples, 0.02%)</title><rect x="378.6" y="117" width="0.2" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" />
-<text x="381.59" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="782.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="785.50" y="79.5" ></text>
-</g>
-<g >
-<title>/78 (214 samples, 0.02%)</title><rect x="364.2" y="117" width="0.2" height="15.0" fill="rgb(236,148,35)" rx="2" ry="2" />
-<text x="367.20" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (415 samples, 0.03%)</title><rect x="961.4" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="964.36" y="143.5" ></text>
-</g>
-<g >
-<title>/games (116 samples, 0.01%)</title><rect x="839.2" y="181" width="0.1" height="15.0" fill="rgb(243,150,42)" rx="2" ry="2" />
-<text x="842.23" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="817.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="820.74" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (272 samples, 0.02%)</title><rect x="376.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="379.74" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="805.2" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="808.21" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="379.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="382.15" y="111.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.GL.default (753 samples, 0.06%)</title><rect x="1161.8" y="133" width="0.7" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" />
-<text x="1164.82" y="143.5" ></text>
-</g>
-<g >
-<title>etc (11,324 samples, 0.93%)</title><rect x="310.0" y="197" width="10.9" height="15.0" fill="rgb(229,182,26)" rx="2" ry="2" />
-<text x="312.97" y="207.5" ></text>
-</g>
-<g >
-<title>/importlib (163 samples, 0.01%)</title><rect x="844.7" y="149" width="0.2" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" />
-<text x="847.70" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="766.9" y="133" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="769.92" y="143.5" ></text>
-</g>
-<g >
-<title>/remotes (432 samples, 0.04%)</title><rect x="1160.0" y="117" width="0.5" height="15.0" fill="rgb(238,137,36)" rx="2" ry="2" />
-<text x="1163.04" y="127.5" ></text>
-</g>
-<g >
-<title>/fd (54,360 samples, 4.45%)</title><rect x="566.6" y="165" width="52.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="569.58" y="175.5" >/fd</text>
-</g>
-<g >
-<title>syscall`enter_pread64 (6,258 samples, 0.51%)</title><rect x="398.8" y="117" width="6.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="401.83" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (484 samples, 0.04%)</title><rect x="748.2" y="181" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="751.20" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (1,293 samples, 0.11%)</title><rect x="446.5" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="449.52" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (379 samples, 0.03%)</title><rect x="332.2" y="117" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="335.24" y="127.5" ></text>
-</g>
-<g >
-<title>/b2 (226 samples, 0.02%)</title><rect x="377.7" y="117" width="0.2" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" />
-<text x="380.71" y="127.5" ></text>
-</g>
-<g >
-<title>sbin (115 samples, 0.01%)</title><rect x="764.9" y="197" width="0.1" height="15.0" fill="rgb(247,110,46)" rx="2" ry="2" />
-<text x="767.88" y="207.5" ></text>
-</g>
-<g >
-<title>/conf.d (830 samples, 0.07%)</title><rect x="310.6" y="165" width="0.8" height="15.0" fill="rgb(248,164,47)" rx="2" ry="2" />
-<text x="313.57" y="175.5" ></text>
-</g>
-<g >
-<title>/extension (4,889 samples, 0.40%)</title><rect x="1155.0" y="149" width="4.8" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" />
-<text x="1158.04" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (140 samples, 0.01%)</title><rect x="759.9" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="762.88" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (13,695 samples, 1.12%)</title><rect x="619.4" y="165" width="13.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="622.42" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (573 samples, 0.05%)</title><rect x="791.6" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="794.61" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (132 samples, 0.01%)</title><rect x="514.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="517.37" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="379.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="382.41" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (331 samples, 0.03%)</title><rect x="436.2" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="439.16" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (258 samples, 0.02%)</title><rect x="381.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="384.50" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="830.3" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="833.34" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (1,748 samples, 0.14%)</title><rect x="863.5" y="117" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="866.51" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="814.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="817.86" y="79.5" ></text>
-</g>
-<g >
-<title>/7e (230 samples, 0.02%)</title><rect x="365.5" y="117" width="0.2" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" />
-<text x="368.53" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Screenshot.slice (1,776 samples, 0.15%)</title><rect x="805.8" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="808.77" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (134 samples, 0.01%)</title><rect x="871.1" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="874.08" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (190 samples, 0.02%)</title><rect x="442.7" y="181" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="445.75" y="191.5" ></text>
-</g>
-<g >
-<title>/85 (115 samples, 0.01%)</title><rect x="737.5" y="181" width="0.1" height="15.0" fill="rgb(240,152,39)" rx="2" ry="2" />
-<text x="740.51" y="191.5" ></text>
-</g>
-<g >
-<title>/log (12,014 samples, 0.98%)</title><rect x="1175.9" y="181" width="11.6" height="15.0" fill="rgb(248,118,48)" rx="2" ry="2" />
-<text x="1178.90" y="191.5" ></text>
-</g>
-<g >
-<title>internalc (242 samples, 0.02%)</title><rect x="443.2" y="197" width="0.2" height="15.0" fill="rgb(228,164,26)" rx="2" ry="2" />
-<text x="446.21" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (284 samples, 0.02%)</title><rect x="799.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="802.83" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (286 samples, 0.02%)</title><rect x="772.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="774.98" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (108 samples, 0.01%)</title><rect x="438.2" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="441.22" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (216 samples, 0.02%)</title><rect x="359.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="362.44" y="111.5" ></text>
-</g>
-<g >
-<title>/1656216 (246 samples, 0.02%)</title><rect x="518.4" y="181" width="0.3" height="15.0" fill="rgb(241,129,39)" rx="2" ry="2" />
-<text x="521.45" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (1,428 samples, 0.12%)</title><rect x="997.8" y="117" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1000.84" y="127.5" ></text>
-</g>
-<g >
-<title>/1655614 (435 samples, 0.04%)</title><rect x="511.9" y="181" width="0.4" height="15.0" fill="rgb(241,129,40)" rx="2" ry="2" />
-<text x="514.88" y="191.5" ></text>
-</g>
-<g >
-<title>/background.slice (1,773 samples, 0.15%)</title><rect x="828.3" y="101" width="1.8" height="15.0" fill="rgb(246,120,46)" rx="2" ry="2" />
-<text x="831.35" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (238 samples, 0.02%)</title><rect x="340.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="343.89" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (149 samples, 0.01%)</title><rect x="632.9" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="635.94" y="175.5" ></text>
-</g>
-<g >
-<title>/desktop-directories (254 samples, 0.02%)</title><rect x="972.6" y="165" width="0.3" height="15.0" fill="rgb(237,152,36)" rx="2" ry="2" />
-<text x="975.62" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (767 samples, 0.06%)</title><rect x="319.6" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="322.56" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (174 samples, 0.01%)</title><rect x="734.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="737.21" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (202 samples, 0.02%)</title><rect x="379.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="381.96" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (112 samples, 0.01%)</title><rect x="310.3" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="313.33" y="175.5" ></text>
-</g>
-<g >
-<title>/helix (1,362 samples, 0.11%)</title><rect x="842.0" y="165" width="1.3" height="15.0" fill="rgb(248,132,47)" rx="2" ry="2" />
-<text x="844.98" y="175.5" ></text>
-</g>
-<g >
-<title>/e3 (848 samples, 0.07%)</title><rect x="332.2" y="133" width="0.8" height="15.0" fill="rgb(243,154,42)" rx="2" ry="2" />
-<text x="335.15" y="143.5" ></text>
-</g>
-<g >
-<title>/Brave-Browser (619 samples, 0.05%)</title><rect x="433.1" y="85" width="0.6" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" />
-<text x="436.08" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (191 samples, 0.02%)</title><rect x="843.7" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="846.67" y="159.5" ></text>
-</g>
-<g >
-<title>/3c (266 samples, 0.02%)</title><rect x="350.1" y="117" width="0.2" height="15.0" fill="rgb(223,128,20)" rx="2" ry="2" />
-<text x="353.07" y="127.5" ></text>
-</g>
-<g >
-<title>/share (1,438 samples, 0.12%)</title><rect x="1153.7" y="133" width="1.3" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
-<text x="1156.65" y="143.5" ></text>
-</g>
-<g >
-<title>/golang (26,877 samples, 2.20%)</title><rect x="846.6" y="165" width="26.0" height="15.0" fill="rgb(249,144,48)" rx="2" ry="2" />
-<text x="849.62" y="175.5" >/..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="371.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="374.88" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (186 samples, 0.02%)</title><rect x="876.2" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="879.20" y="143.5" ></text>
-</g>
-<g >
-<title>/1655713 (133 samples, 0.01%)</title><rect x="514.1" y="181" width="0.1" height="15.0" fill="rgb(242,129,41)" rx="2" ry="2" />
-<text x="517.11" y="191.5" ></text>
-</g>
-<g >
-<title>/96 (248 samples, 0.02%)</title><rect x="371.2" y="117" width="0.2" height="15.0" fill="rgb(238,144,36)" rx="2" ry="2" />
-<text x="374.19" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (279 samples, 0.02%)</title><rect x="775.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="778.40" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (558 samples, 0.05%)</title><rect x="776.3" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="779.26" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (274 samples, 0.02%)</title><rect x="360.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="363.77" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="346.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="349.86" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="337.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="340.69" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="823.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="826.74" y="79.5" ></text>
-</g>
-<g >
-<title>/4imrokjd.default-release-1736024643281 (18,097 samples, 1.48%)</title><rect x="415.1" y="133" width="17.5" height="15.0" fill="rgb(236,104,35)" rx="2" ry="2" />
-<text x="418.09" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="783.1" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="786.10" y="79.5" ></text>
-</g>
-<g >
-<title>/76 (246 samples, 0.02%)</title><rect x="363.7" y="117" width="0.2" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" />
-<text x="366.69" y="127.5" ></text>
-</g>
-<g >
-<title>/90 (214 samples, 0.02%)</title><rect x="369.8" y="117" width="0.3" height="15.0" fill="rgb(231,163,28)" rx="2" ry="2" />
-<text x="372.84" y="127.5" ></text>
-</g>
-<g >
-<title>/19 (130 samples, 0.01%)</title><rect x="528.6" y="181" width="0.2" height="15.0" fill="rgb(229,119,27)" rx="2" ry="2" />
-<text x="531.65" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="366.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="368.98" y="111.5" ></text>
-</g>
-<g >
-<title>.ruby-lsp (118 samples, 0.01%)</title><rect x="257.0" y="197" width="0.1" height="15.0" fill="rgb(246,132,45)" rx="2" ry="2" />
-<text x="260.00" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (402 samples, 0.03%)</title><rect x="303.2" y="181" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="306.16" y="191.5" ></text>
-</g>
-<g >
-<title>proc (320,578 samples, 26.27%)</title><rect x="450.0" y="197" width="310.0" height="15.0" fill="rgb(234,184,31)" rx="2" ry="2" />
-<text x="453.02" y="207.5" >proc</text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (4,932 samples, 0.40%)</title><rect x="519.0" y="149" width="4.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="521.98" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (109 samples, 0.01%)</title><rect x="738.6" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="741.60" y="159.5" ></text>
-</g>
-<g >
-<title>/5d (261 samples, 0.02%)</title><rect x="357.8" y="117" width="0.2" height="15.0" fill="rgb(237,115,35)" rx="2" ry="2" />
-<text x="360.79" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (246 samples, 0.02%)</title><rect x="386.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="389.17" y="111.5" ></text>
-</g>
-<g >
-<title>runtimeorg.gnome.Platform.Locale (144 samples, 0.01%)</title><rect x="764.1" y="197" width="0.2" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" />
-<text x="767.13" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (288 samples, 0.02%)</title><rect x="385.7" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="388.67" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (138 samples, 0.01%)</title><rect x="873.7" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="876.73" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (2,144 samples, 0.18%)</title><rect x="260.3" y="181" width="2.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="263.26" y="191.5" ></text>
-</g>
-<g >
-<title>/28 (220 samples, 0.02%)</title><rect x="345.6" y="117" width="0.2" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
-<text x="348.57" y="127.5" ></text>
-</g>
-<g >
-<title>/17 (247 samples, 0.02%)</title><rect x="341.6" y="117" width="0.2" height="15.0" fill="rgb(233,126,30)" rx="2" ry="2" />
-<text x="344.59" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="815.5" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="818.47" y="79.5" ></text>
-</g>
-<g >
-<title>/1319610 (131 samples, 0.01%)</title><rect x="478.7" y="181" width="0.1" height="15.0" fill="rgb(231,139,29)" rx="2" ry="2" />
-<text x="481.71" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (174 samples, 0.01%)</title><rect x="471.2" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="474.18" y="175.5" ></text>
-</g>
-<g >
-<title>/9d (191 samples, 0.02%)</title><rect x="372.9" y="117" width="0.1" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" />
-<text x="375.86" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (467 samples, 0.04%)</title><rect x="325.9" y="117" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="328.93" y="127.5" ></text>
-</g>
-<g >
-<title> (8,467 samples, 0.69%)</title><rect x="258.3" y="197" width="8.2" height="15.0" fill="rgb(255,230,55)" rx="2" ry="2" />
-<text x="261.31" y="207.5" ></text>
-</g>
-<g >
-<title>/125 (1,510 samples, 0.12%)</title><rect x="470.9" y="181" width="1.5" height="15.0" fill="rgb(242,142,41)" rx="2" ry="2" />
-<text x="473.94" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (244 samples, 0.02%)</title><rect x="470.9" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="473.94" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (211 samples, 0.02%)</title><rect x="352.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="355.61" y="111.5" ></text>
-</g>
-<g >
-<title>/38 (232 samples, 0.02%)</title><rect x="349.1" y="117" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
-<text x="352.15" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="825.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="828.43" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (619 samples, 0.05%)</title><rect x="1135.2" y="149" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1138.21" y="159.5" ></text>
-</g>
-<g >
-<title>/.cargo (121 samples, 0.01%)</title><rect x="405.2" y="165" width="0.1" height="15.0" fill="rgb(244,154,43)" rx="2" ry="2" />
-<text x="408.15" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (205 samples, 0.02%)</title><rect x="408.1" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="411.06" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="810.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="813.91" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (22,291 samples, 1.83%)</title><rect x="272.6" y="165" width="21.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="275.60" y="175.5" >s..</text>
-</g>
-<g >
-<title>/5c (265 samples, 0.02%)</title><rect x="357.5" y="117" width="0.3" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" />
-<text x="360.53" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (540 samples, 0.04%)</title><rect x="310.6" y="149" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="313.57" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="806.9" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="809.93" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (13,743 samples, 1.13%)</title><rect x="999.4" y="117" width="13.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1002.35" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (10,509 samples, 0.86%)</title><rect x="749.7" y="181" width="10.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="752.71" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (284 samples, 0.02%)</title><rect x="799.0" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="801.96" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,209 samples, 0.10%)</title><rect x="408.4" y="149" width="1.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="411.42" y="159.5" ></text>
-</g>
-<g >
-<title>/refs (729 samples, 0.06%)</title><rect x="1159.8" y="133" width="0.7" height="15.0" fill="rgb(239,137,37)" rx="2" ry="2" />
-<text x="1162.78" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="776.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="779.80" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (124 samples, 0.01%)</title><rect x="1153.1" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1156.08" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (231 samples, 0.02%)</title><rect x="765.4" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="768.41" y="143.5" ></text>
-</g>
-<g >
-<title>/6032 (111 samples, 0.01%)</title><rect x="733.9" y="181" width="0.1" height="15.0" fill="rgb(247,123,46)" rx="2" ry="2" />
-<text x="736.86" y="191.5" ></text>
-</g>
-<g >
-<title>sys (69,823 samples, 5.72%)</title><rect x="765.0" y="197" width="67.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
-<text x="768.00" y="207.5" >sys</text>
-</g>
-<g >
-<title>syscall`enter_close (284 samples, 0.02%)</title><rect x="802.4" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="805.36" y="79.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.clocks.slice (1,776 samples, 0.15%)</title><rect x="814.3" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="817.31" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (1,023 samples, 0.08%)</title><rect x="968.8" y="149" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="971.75" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="347.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="350.09" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="806.7" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="809.65" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,933 samples, 0.16%)</title><rect x="866.1" y="117" width="1.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="869.05" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (148 samples, 0.01%)</title><rect x="509.8" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="512.78" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="806.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="809.05" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (229 samples, 0.02%)</title><rect x="393.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="396.73" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (1,023 samples, 0.08%)</title><rect x="966.8" y="149" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="969.78" y="159.5" ></text>
-</g>
-<g >
-<title>/56 (291 samples, 0.02%)</title><rect x="356.0" y="117" width="0.3" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" />
-<text x="359.04" y="127.5" ></text>
-</g>
-<g >
-<title>/app-gnome\x2dsession\x2dmanager.slice (1,766 samples, 0.14%)</title><rect x="824.6" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="827.56" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (219 samples, 0.02%)</title><rect x="470.2" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="473.17" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (176 samples, 0.01%)</title><rect x="850.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="853.19" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (250 samples, 0.02%)</title><rect x="499.6" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="502.59" y="159.5" ></text>
-</g>
-<g >
-<title>/extract-rules (310 samples, 0.03%)</title><rect x="996.4" y="149" width="0.3" height="15.0" fill="rgb(244,163,43)" rx="2" ry="2" />
-<text x="999.40" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (149 samples, 0.01%)</title><rect x="632.9" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="635.94" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (3,493 samples, 0.29%)</title><rect x="860.1" y="117" width="3.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="863.13" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (226 samples, 0.02%)</title><rect x="345.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="348.79" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="820.6" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="823.60" y="79.5" ></text>
-</g>
-<g >
-<title>/e2 (245 samples, 0.02%)</title><rect x="388.8" y="117" width="0.3" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" />
-<text x="391.84" y="127.5" ></text>
-</g>
-<g >
-<title>/wallpaper (319 samples, 0.03%)</title><rect x="407.9" y="133" width="0.4" height="15.0" fill="rgb(243,125,41)" rx="2" ry="2" />
-<text x="410.95" y="143.5" ></text>
-</g>
-<g >
-<title>/74 (237 samples, 0.02%)</title><rect x="363.2" y="117" width="0.2" height="15.0" fill="rgb(243,161,42)" rx="2" ry="2" />
-<text x="366.21" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (286 samples, 0.02%)</title><rect x="824.6" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="827.56" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (276 samples, 0.02%)</title><rect x="349.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="352.57" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (283 samples, 0.02%)</title><rect x="812.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="815.90" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (178 samples, 0.01%)</title><rect x="479.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="482.53" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (335 samples, 0.03%)</title><rect x="818.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="821.29" y="79.5" ></text>
-</g>
-<g >
-<title>/share (141 samples, 0.01%)</title><rect x="410.0" y="101" width="0.1" height="15.0" fill="rgb(248,122,47)" rx="2" ry="2" />
-<text x="412.97" y="111.5" ></text>
-</g>
-<g >
-<title>/reflectlite (150 samples, 0.01%)</title><rect x="851.8" y="117" width="0.2" height="15.0" fill="rgb(240,137,38)" rx="2" ry="2" />
-<text x="854.84" y="127.5" ></text>
-</g>
-<g >
-<title>/d0 (219 samples, 0.02%)</title><rect x="384.5" y="117" width="0.3" height="15.0" fill="rgb(232,168,30)" rx="2" ry="2" />
-<text x="387.54" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (261 samples, 0.02%)</title><rect x="357.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="360.79" y="111.5" ></text>
-</g>
-<g >
-<title>/8a (287 samples, 0.02%)</title><rect x="368.4" y="117" width="0.3" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
-<text x="371.40" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Calendar.slice (1,739 samples, 0.14%)</title><rect x="787.1" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="790.09" y="95.5" ></text>
-</g>
-<g >
-<title>/org.videolan.VLC.Locale (121 samples, 0.01%)</title><rect x="1170.2" y="133" width="0.1" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1173.15" y="143.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.Locale (207 samples, 0.02%)</title><rect x="1165.2" y="133" width="0.2" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="1168.21" y="143.5" ></text>
-</g>
-<g >
-<title>/ac (235 samples, 0.02%)</title><rect x="376.3" y="117" width="0.2" height="15.0" fill="rgb(221,118,18)" rx="2" ry="2" />
-<text x="379.27" y="127.5" ></text>
-</g>
-<g >
-<title>/13 (108 samples, 0.01%)</title><rect x="479.3" y="181" width="0.1" height="15.0" fill="rgb(240,139,38)" rx="2" ry="2" />
-<text x="482.31" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="794.4" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="797.43" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (1,187 samples, 0.10%)</title><rect x="747.1" y="181" width="1.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="750.06" y="191.5" ></text>
-</g>
-<g >
-<title>/git (117 samples, 0.01%)</title><rect x="405.4" y="149" width="0.1" height="15.0" fill="rgb(233,124,30)" rx="2" ry="2" />
-<text x="408.36" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (435 samples, 0.04%)</title><rect x="506.5" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="509.46" y="175.5" ></text>
-</g>
-<g >
-<title>/runtime (585 samples, 0.05%)</title><rect x="852.0" y="117" width="0.5" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="854.98" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (931 samples, 0.08%)</title><rect x="321.5" y="117" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="324.54" y="127.5" ></text>
-</g>
-<g >
-<title>/io.github.seadve.Kooha.Locale (134 samples, 0.01%)</title><rect x="1161.1" y="133" width="0.1" height="15.0" fill="rgb(242,134,41)" rx="2" ry="2" />
-<text x="1164.07" y="143.5" ></text>
-</g>
-<g >
-<title>/conf.avail (2,187 samples, 0.18%)</title><rect x="972.9" y="149" width="2.2" height="15.0" fill="rgb(233,164,31)" rx="2" ry="2" />
-<text x="975.94" y="159.5" ></text>
-</g>
-<g >
-<title>/86 (254 samples, 0.02%)</title><rect x="367.4" y="117" width="0.2" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="370.40" y="127.5" ></text>
-</g>
-<g >
-<title>/journal (10,664 samples, 0.87%)</title><rect x="1175.9" y="165" width="10.3" height="15.0" fill="rgb(229,128,27)" rx="2" ry="2" />
-<text x="1178.92" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="369.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="372.62" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (284 samples, 0.02%)</title><rect x="824.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="827.83" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (196 samples, 0.02%)</title><rect x="1187.5" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1190.54" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (329 samples, 0.03%)</title><rect x="787.6" y="69" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="790.64" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (141 samples, 0.01%)</title><rect x="478.5" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="481.54" y="159.5" ></text>
-</g>
-<g >
-<title>/org.kde.Platform (142 samples, 0.01%)</title><rect x="272.1" y="181" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="275.10" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (218 samples, 0.02%)</title><rect x="510.5" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="513.51" y="175.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform (128 samples, 0.01%)</title><rect x="271.3" y="181" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
-<text x="274.26" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (125 samples, 0.01%)</title><rect x="117.2" y="181" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="120.21" y="191.5" ></text>
-</g>
-<g >
-<title>/1319541 (151 samples, 0.01%)</title><rect x="478.5" y="181" width="0.2" height="15.0" fill="rgb(227,139,24)" rx="2" ry="2" />
-<text x="481.54" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (566 samples, 0.05%)</title><rect x="803.5" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="806.50" y="79.5" ></text>
-</g>
-<g >
-<title>/60 (1,520 samples, 0.12%)</title><rect x="734.0" y="181" width="1.4" height="15.0" fill="rgb(222,123,19)" rx="2" ry="2" />
-<text x="736.97" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="376.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="379.50" y="111.5" ></text>
-</g>
-<g >
-<title>/23 (242 samples, 0.02%)</title><rect x="344.4" y="117" width="0.3" height="15.0" fill="rgb(238,134,37)" rx="2" ry="2" />
-<text x="347.42" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (154 samples, 0.01%)</title><rect x="1187.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1190.74" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (124 samples, 0.01%)</title><rect x="764.3" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="767.27" y="191.5" ></text>
-</g>
-<g >
-<title>/ssh_config.d (104 samples, 0.01%)</title><rect x="312.2" y="165" width="0.1" height="15.0" fill="rgb(247,126,47)" rx="2" ry="2" />
-<text x="315.22" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="820.0" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="823.00" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (108 samples, 0.01%)</title><rect x="437.8" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="440.80" y="143.5" ></text>
-</g>
-<g >
-<title>/mc (176 samples, 0.01%)</title><rect x="1175.6" y="149" width="0.2" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" />
-<text x="1178.60" y="159.5" ></text>
-</g>
-<g >
-<title>/flathub (190 samples, 0.02%)</title><rect x="1153.5" y="133" width="0.1" height="15.0" fill="rgb(227,158,25)" rx="2" ry="2" />
-<text x="1156.46" y="143.5" ></text>
-</g>
-<g >
-<title>/0d (321 samples, 0.03%)</title><rect x="339.1" y="117" width="0.3" height="15.0" fill="rgb(242,140,41)" rx="2" ry="2" />
-<text x="342.13" y="127.5" ></text>
-</g>
-<g >
-<title>/systemd (125 samples, 0.01%)</title><rect x="961.8" y="165" width="0.1" height="15.0" fill="rgb(240,145,39)" rx="2" ry="2" />
-<text x="964.81" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (3,852 samples, 0.32%)</title><rect x="474.8" y="165" width="3.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="477.80" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="790.5" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="793.46" y="79.5" ></text>
-</g>
-<g >
-<title>/x86_64 (227 samples, 0.02%)</title><rect x="1166.8" y="117" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1169.78" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (282 samples, 0.02%)</title><rect x="823.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="826.15" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="374.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="377.64" y="111.5" ></text>
-</g>
-<g >
-<title>/default (242 samples, 0.02%)</title><rect x="415.1" y="101" width="0.2" height="15.0" fill="rgb(228,152,25)" rx="2" ry="2" />
-<text x="418.10" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (267 samples, 0.02%)</title><rect x="390.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="393.04" y="111.5" ></text>
-</g>
-<g >
-<title>/.mozilla (18,103 samples, 1.48%)</title><rect x="415.1" y="165" width="17.5" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" />
-<text x="418.09" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (235 samples, 0.02%)</title><rect x="379.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="382.83" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="378.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="381.14" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (244 samples, 0.02%)</title><rect x="725.2" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="728.16" y="175.5" ></text>
-</g>
-<g >
-<title>/4e (142 samples, 0.01%)</title><rect x="354.2" y="117" width="0.1" height="15.0" fill="rgb(236,117,34)" rx="2" ry="2" />
-<text x="357.20" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (1,487 samples, 0.12%)</title><rect x="964.3" y="149" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="967.31" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="385.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="388.44" y="111.5" ></text>
-</g>
-<g >
-<title>/240240 (9,547 samples, 0.78%)</title><rect x="530.1" y="181" width="9.2" height="15.0" fill="rgb(230,130,28)" rx="2" ry="2" />
-<text x="533.10" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (138,433 samples, 11.34%)</title><rect x="121.0" y="181" width="133.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="123.97" y="191.5" >syscall`enter_wr..</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (269 samples, 0.02%)</title><rect x="370.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="373.24" y="111.5" ></text>
-</g>
-<g >
-<title>/updates-41-x86_64 (20,666 samples, 1.69%)</title><rect x="1109.5" y="117" width="20.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
-<text x="1112.50" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (271 samples, 0.02%)</title><rect x="440.1" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="443.06" y="175.5" ></text>
-</g>
-<g >
-<title>/org.gnome.Platform.Locale (218 samples, 0.02%)</title><rect x="271.4" y="181" width="0.3" height="15.0" fill="rgb(242,149,41)" rx="2" ry="2" />
-<text x="274.45" y="191.5" ></text>
-</g>
-<g >
-<title>/101990 (420 samples, 0.03%)</title><rect x="450.1" y="181" width="0.4" height="15.0" fill="rgb(232,148,30)" rx="2" ry="2" />
-<text x="453.08" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (282 samples, 0.02%)</title><rect x="830.1" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="833.06" y="95.5" ></text>
-</g>
-<g >
-<title>/encoding (112 samples, 0.01%)</title><rect x="846.9" y="133" width="0.1" height="15.0" fill="rgb(243,157,42)" rx="2" ry="2" />
-<text x="849.93" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (235 samples, 0.02%)</title><rect x="395.1" y="117" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="398.07" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (1,485 samples, 0.12%)</title><rect x="962.5" y="149" width="1.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="965.53" y="159.5" ></text>
-</g>
-<g >
-<title>/fd (386 samples, 0.03%)</title><rect x="497.1" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="500.06" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (126 samples, 0.01%)</title><rect x="437.6" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="440.56" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="380.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="383.06" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="350.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="353.33" y="111.5" ></text>
-</g>
-<g >
-<title>/06 (255 samples, 0.02%)</title><rect x="337.4" y="117" width="0.3" height="15.0" fill="rgb(235,134,34)" rx="2" ry="2" />
-<text x="340.45" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (191 samples, 0.02%)</title><rect x="739.4" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="742.38" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="392.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="395.36" y="111.5" ></text>
-</g>
-<g >
-<title>/internal (6,640 samples, 0.54%)</title><rect x="847.4" y="133" width="6.4" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" />
-<text x="850.35" y="143.5" ></text>
-</g>
-<g >
-<title>/1655964 (161 samples, 0.01%)</title><rect x="516.9" y="181" width="0.2" height="15.0" fill="rgb(234,129,32)" rx="2" ry="2" />
-<text x="519.90" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (364 samples, 0.03%)</title><rect x="723.3" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="726.32" y="175.5" ></text>
-</g>
-<g >
-<title>/b9 (262 samples, 0.02%)</title><rect x="379.2" y="117" width="0.2" height="15.0" fill="rgb(224,94,21)" rx="2" ry="2" />
-<text x="382.15" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (247 samples, 0.02%)</title><rect x="341.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="344.59" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pwrite64 (169 samples, 0.01%)</title><rect x="960.9" y="133" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="963.89" y="143.5" ></text>
-</g>
-<g >
-<title>/18 (233 samples, 0.02%)</title><rect x="341.8" y="117" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
-<text x="344.83" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (880 samples, 0.07%)</title><rect x="865.2" y="117" width="0.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="868.20" y="127.5" ></text>
-</g>
-<g >
-<title>/1655997 (280 samples, 0.02%)</title><rect x="517.1" y="181" width="0.3" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
-<text x="520.08" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (333 samples, 0.03%)</title><rect x="811.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="814.47" y="79.5" ></text>
-</g>
-<g >
-<title>/com.brave.Browser (619 samples, 0.05%)</title><rect x="433.1" y="133" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
-<text x="436.08" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (287 samples, 0.02%)</title><rect x="368.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="371.40" y="111.5" ></text>
-</g>
-<g >
-<title>/26 (232 samples, 0.02%)</title><rect x="345.1" y="117" width="0.2" height="15.0" fill="rgb(233,124,31)" rx="2" ry="2" />
-<text x="348.12" y="127.5" ></text>
-</g>
-<g >
-<title>/af (238 samples, 0.02%)</title><rect x="377.0" y="117" width="0.2" height="15.0" fill="rgb(233,109,31)" rx="2" ry="2" />
-<text x="380.01" y="127.5" ></text>
-</g>
-<g >
-<title>/04 (251 samples, 0.02%)</title><rect x="336.9" y="117" width="0.3" height="15.0" fill="rgb(239,140,37)" rx="2" ry="2" />
-<text x="339.93" y="127.5" ></text>
-</g>
-<g >
-<title>/79 (194 samples, 0.02%)</title><rect x="364.4" y="117" width="0.2" height="15.0" fill="rgb(235,145,33)" rx="2" ry="2" />
-<text x="367.41" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (153 samples, 0.01%)</title><rect x="529.0" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="531.96" y="175.5" ></text>
-</g>
-<g >
-<title>/1655711 (637 samples, 0.05%)</title><rect x="513.5" y="181" width="0.6" height="15.0" fill="rgb(228,129,26)" rx="2" ry="2" />
-<text x="516.49" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (218 samples, 0.02%)</title><rect x="383.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="386.83" y="111.5" ></text>
-</g>
-<g >
-<title>/x86_64 (128 samples, 0.01%)</title><rect x="1161.3" y="117" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="1164.29" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (144 samples, 0.01%)</title><rect x="868.6" y="117" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="871.64" y="127.5" ></text>
-</g>
-<g >
-<title>/shm (235 samples, 0.02%)</title><rect x="302.1" y="181" width="0.2" height="15.0" fill="rgb(228,122,26)" rx="2" ry="2" />
-<text x="305.11" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (975 samples, 0.08%)</title><rect x="870.1" y="117" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="873.13" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (570 samples, 0.05%)</title><rect x="818.9" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="821.89" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (223 samples, 0.02%)</title><rect x="381.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="384.29" y="111.5" ></text>
-</g>
-<g >
-<title>/71 (226 samples, 0.02%)</title><rect x="362.5" y="117" width="0.2" height="15.0" fill="rgb(231,170,29)" rx="2" ry="2" />
-<text x="365.48" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="390.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="393.30" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (1,292 samples, 0.11%)</title><rect x="303.5" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="306.55" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="374.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="376.99" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (718 samples, 0.06%)</title><rect x="312.8" y="181" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="315.84" y="191.5" ></text>
-</g>
-<g >
-<title>/Default (577 samples, 0.05%)</title><rect x="433.1" y="69" width="0.5" height="15.0" fill="rgb(228,147,25)" rx="2" ry="2" />
-<text x="436.08" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (3,852 samples, 0.32%)</title><rect x="474.8" y="149" width="3.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="477.80" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (287 samples, 0.02%)</title><rect x="771.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="774.70" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (269 samples, 0.02%)</title><rect x="351.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="354.50" y="111.5" ></text>
-</g>
-<g >
-<title>/66 (246 samples, 0.02%)</title><rect x="359.9" y="117" width="0.2" height="15.0" fill="rgb(229,104,26)" rx="2" ry="2" />
-<text x="362.88" y="127.5" ></text>
-</g>
-<g >
-<title>/applications (6,039 samples, 0.49%)</title><rect x="966.8" y="165" width="5.8" height="15.0" fill="rgb(244,115,43)" rx="2" ry="2" />
-<text x="969.77" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (259 samples, 0.02%)</title><rect x="380.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="383.51" y="111.5" ></text>
-</g>
-<g >
-<title>/dmi (141 samples, 0.01%)</title><rect x="766.2" y="149" width="0.1" height="15.0" fill="rgb(232,165,30)" rx="2" ry="2" />
-<text x="769.16" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="804.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="807.93" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (210 samples, 0.02%)</title><rect x="349.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="352.37" y="111.5" ></text>
-</g>
-<g >
-<title>/1637076 (5,912 samples, 0.48%)</title><rect x="500.5" y="181" width="5.7" height="15.0" fill="rgb(248,129,47)" rx="2" ry="2" />
-<text x="503.45" y="191.5" ></text>
-</g>
-<g >
-<title>/10 (208 samples, 0.02%)</title><rect x="340.0" y="117" width="0.2" height="15.0" fill="rgb(227,148,25)" rx="2" ry="2" />
-<text x="342.97" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (1,778 samples, 0.15%)</title><rect x="263.3" y="181" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="266.26" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,698 samples, 0.14%)</title><rect x="440.4" y="165" width="1.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="443.44" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (280 samples, 0.02%)</title><rect x="517.1" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="520.08" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (1,101 samples, 0.09%)</title><rect x="512.4" y="149" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="515.38" y="159.5" ></text>
-</g>
-<g >
-<title>/zsh (580 samples, 0.05%)</title><rect x="996.8" y="165" width="0.5" height="15.0" fill="rgb(241,146,39)" rx="2" ry="2" />
-<text x="999.76" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (225 samples, 0.02%)</title><rect x="368.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="371.93" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="369.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="372.39" y="111.5" ></text>
-</g>
-<g >
-<title>/fd (85,237 samples, 6.98%)</title><rect x="635.6" y="165" width="82.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="638.62" y="175.5" >/fd</text>
-</g>
-<g >
-<title>/1656246 (5,099 samples, 0.42%)</title><rect x="519.0" y="181" width="4.9" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
-<text x="521.98" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (2,554 samples, 0.21%)</title><rect x="969.7" y="149" width="2.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="972.74" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (106 samples, 0.01%)</title><rect x="850.7" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="853.72" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (1,309 samples, 0.11%)</title><rect x="448.2" y="181" width="1.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="451.22" y="191.5" ></text>
-</g>
-<g >
-<title>/1647041 (153 samples, 0.01%)</title><rect x="509.8" y="181" width="0.1" height="15.0" fill="rgb(230,129,28)" rx="2" ry="2" />
-<text x="512.78" y="191.5" ></text>
-</g>
-<g >
-<title>/site-functions (126 samples, 0.01%)</title><rect x="997.2" y="149" width="0.1" height="15.0" fill="rgb(244,119,43)" rx="2" ry="2" />
-<text x="1000.18" y="159.5" ></text>
-</g>
-<g >
-<title>/b1 (255 samples, 0.02%)</title><rect x="377.5" y="117" width="0.2" height="15.0" fill="rgb(220,120,17)" rx="2" ry="2" />
-<text x="380.46" y="127.5" ></text>
-</g>
-<g >
-<title>/cgroup (68,035 samples, 5.58%)</title><rect x="766.3" y="165" width="65.8" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" />
-<text x="769.32" y="175.5" >/cgroup</text>
-</g>
-<g >
-<title>/55 (263 samples, 0.02%)</title><rect x="355.8" y="117" width="0.2" height="15.0" fill="rgb(232,112,29)" rx="2" ry="2" />
-<text x="358.78" y="127.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.openh264 (358 samples, 0.03%)</title><rect x="1165.9" y="133" width="0.3" height="15.0" fill="rgb(239,149,37)" rx="2" ry="2" />
-<text x="1168.87" y="143.5" ></text>
-</g>
-<g >
-<title>/.var (627 samples, 0.05%)</title><rect x="433.1" y="165" width="0.6" height="15.0" fill="rgb(231,131,28)" rx="2" ry="2" />
-<text x="436.08" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (2,377 samples, 0.19%)</title><rect x="430.3" y="117" width="2.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="433.26" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.OnlineAccounts.slice (1,763 samples, 0.14%)</title><rect x="800.7" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="803.66" y="95.5" ></text>
-</g>
-<g >
-<title>/75 (255 samples, 0.02%)</title><rect x="363.4" y="117" width="0.3" height="15.0" fill="rgb(242,157,40)" rx="2" ry="2" />
-<text x="366.44" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (6,854 samples, 0.56%)</title><rect x="52.0" y="181" width="6.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="54.97" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (224 samples, 0.02%)</title><rect x="377.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="380.93" y="111.5" ></text>
-</g>
-<g >
-<title>/5f (221 samples, 0.02%)</title><rect x="358.3" y="117" width="0.2" height="15.0" fill="rgb(233,109,31)" rx="2" ry="2" />
-<text x="361.33" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (1,401 samples, 0.11%)</title><rect x="265.1" y="181" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="268.14" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (249 samples, 0.02%)</title><rect x="387.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="390.62" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_access (1,484 samples, 0.12%)</title><rect x="839.4" y="149" width="1.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="842.37" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (717 samples, 0.06%)</title><rect x="405.6" y="101" width="0.7" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="408.58" y="111.5" ></text>
-</g>
-<g >
-<title>/info (138 samples, 0.01%)</title><rect x="255.8" y="181" width="0.1" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" />
-<text x="258.79" y="191.5" ></text>
-</g>
-<g >
-<title>/9c (267 samples, 0.02%)</title><rect x="372.6" y="117" width="0.3" height="15.0" fill="rgb(229,154,26)" rx="2" ry="2" />
-<text x="375.60" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="797.8" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="800.81" y="79.5" ></text>
-</g>
-<g >
-<title>/39 (211 samples, 0.02%)</title><rect x="349.4" y="117" width="0.2" height="15.0" fill="rgb(227,109,24)" rx="2" ry="2" />
-<text x="352.37" y="127.5" ></text>
-</g>
-<g >
-<title>/4781 (110 samples, 0.01%)</title><rect x="719.0" y="181" width="0.1" height="15.0" fill="rgb(233,111,31)" rx="2" ry="2" />
-<text x="721.96" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_lseek (173 samples, 0.01%)</title><rect x="723.1" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="726.15" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (271 samples, 0.02%)</title><rect x="270.6" y="165" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="273.55" y="175.5" ></text>
-</g>
-<g >
-<title>/97 (244 samples, 0.02%)</title><rect x="371.4" y="117" width="0.3" height="15.0" fill="rgb(236,141,34)" rx="2" ry="2" />
-<text x="374.43" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (564 samples, 0.05%)</title><rect x="789.9" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="792.91" y="79.5" ></text>
-</g>
-<g >
-<title>/bin (104 samples, 0.01%)</title><rect x="432.6" y="149" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="435.60" y="159.5" ></text>
-</g>
-<g >
-<title>/heads (172 samples, 0.01%)</title><rect x="256.5" y="181" width="0.2" height="15.0" fill="rgb(244,132,43)" rx="2" ry="2" />
-<text x="259.50" y="191.5" ></text>
-</g>
-<g >
-<title>/4f (309 samples, 0.03%)</title><rect x="354.3" y="117" width="0.3" height="15.0" fill="rgb(235,114,33)" rx="2" ry="2" />
-<text x="357.34" y="127.5" ></text>
-</g>
-<g >
-<title>/ccache (1,837 samples, 0.15%)</title><rect x="839.4" y="165" width="1.7" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" />
-<text x="842.37" y="175.5" ></text>
-</g>
-<g >
-<title>/2c (251 samples, 0.02%)</title><rect x="346.4" y="117" width="0.3" height="15.0" fill="rgb(225,134,22)" rx="2" ry="2" />
-<text x="349.42" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="377.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="380.46" y="111.5" ></text>
-</g>
-<g >
-<title>/fmt (223 samples, 0.02%)</title><rect x="847.1" y="133" width="0.3" height="15.0" fill="rgb(229,155,26)" rx="2" ry="2" />
-<text x="850.14" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_getdents64 (414 samples, 0.03%)</title><rect x="1170.4" y="133" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1173.41" y="143.5" ></text>
-</g>
-<g >
-<title>/objects (579 samples, 0.05%)</title><rect x="434.0" y="117" width="0.6" height="15.0" fill="rgb(237,162,35)" rx="2" ry="2" />
-<text x="437.03" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (283 samples, 0.02%)</title><rect x="812.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="815.62" y="79.5" ></text>
-</g>
-<g >
-<title>/app.slice (60,319 samples, 4.94%)</title><rect x="770.0" y="101" width="58.3" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="773.02" y="111.5" >/app.s..</text>
-</g>
-<g >
-<title>/hawkey (15,391 samples, 1.26%)</title><rect x="997.8" y="133" width="14.8" height="15.0" fill="rgb(243,145,42)" rx="2" ry="2" />
-<text x="1000.76" y="143.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (189 samples, 0.02%)</title><rect x="724.9" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="727.86" y="175.5" ></text>
-</g>
-<g >
-<title>/cb (289 samples, 0.02%)</title><rect x="383.3" y="117" width="0.3" height="15.0" fill="rgb(233,167,31)" rx="2" ry="2" />
-<text x="386.35" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (282 samples, 0.02%)</title><rect x="789.6" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="792.64" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (186 samples, 0.02%)</title><rect x="435.3" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="438.26" y="127.5" ></text>
-</g>
-<g >
-<title>/4521 (85,671 samples, 7.02%)</title><rect x="635.6" y="181" width="82.9" height="15.0" fill="rgb(229,117,26)" rx="2" ry="2" />
-<text x="638.62" y="191.5" >/4521</text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Calculator.SearchProvider.slice (1,776 samples, 0.15%)</title><rect x="785.4" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="788.38" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (334 samples, 0.03%)</title><rect x="801.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="804.21" y="79.5" ></text>
-</g>
-<g >
-<title>/x86_64 (113 samples, 0.01%)</title><rect x="764.5" y="181" width="0.1" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="767.46" y="191.5" ></text>
-</g>
-<g >
-<title>/5.15-24.08 (113 samples, 0.01%)</title><rect x="1169.7" y="101" width="0.1" height="15.0" fill="rgb(233,96,30)" rx="2" ry="2" />
-<text x="1172.66" y="111.5" ></text>
-</g>
-<g >
-<title>/23.08-extra (158 samples, 0.01%)</title><rect x="1161.8" y="101" width="0.2" height="15.0" fill="rgb(232,134,30)" rx="2" ry="2" />
-<text x="1164.83" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (248 samples, 0.02%)</title><rect x="395.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="398.30" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (488 samples, 0.04%)</title><rect x="498.4" y="165" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="501.43" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (168 samples, 0.01%)</title><rect x="255.0" y="181" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="258.02" y="191.5" ></text>
-</g>
-<g >
-<title>/3f (221 samples, 0.02%)</title><rect x="350.8" y="117" width="0.2" height="15.0" fill="rgb(236,119,34)" rx="2" ry="2" />
-<text x="353.82" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (249 samples, 0.02%)</title><rect x="390.7" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="393.72" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (232 samples, 0.02%)</title><rect x="438.0" y="133" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="441.00" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (2,793 samples, 0.23%)</title><rect x="524.3" y="165" width="2.7" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="527.29" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (247 samples, 0.02%)</title><rect x="734.7" y="165" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="737.73" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (20,169 samples, 1.65%)</title><rect x="450.6" y="165" width="19.5" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="453.62" y="175.5" ></text>
-</g>
-<g >
-<title>/bin (135 samples, 0.01%)</title><rect x="433.7" y="165" width="0.1" height="15.0" fill="rgb(247,94,46)" rx="2" ry="2" />
-<text x="436.69" y="175.5" ></text>
-</g>
-<g >
-<title>/1e (239 samples, 0.02%)</title><rect x="343.3" y="117" width="0.2" height="15.0" fill="rgb(240,132,38)" rx="2" ry="2" />
-<text x="346.26" y="127.5" ></text>
-</g>
-<g >
-<title>/3e (289 samples, 0.02%)</title><rect x="350.5" y="117" width="0.3" height="15.0" fill="rgb(237,122,36)" rx="2" ry="2" />
-<text x="353.54" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (289 samples, 0.02%)</title><rect x="375.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="378.60" y="111.5" ></text>
-</g>
-<g >
-<title>/device:1b (147 samples, 0.01%)</title><rect x="765.8" y="117" width="0.1" height="15.0" fill="rgb(228,152,25)" rx="2" ry="2" />
-<text x="768.78" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (135 samples, 0.01%)</title><rect x="841.3" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="844.32" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (126 samples, 0.01%)</title><rect x="1174.9" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1177.92" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="791.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="794.34" y="79.5" ></text>
-</g>
-<g >
-<title>/fd (435 samples, 0.04%)</title><rect x="511.9" y="165" width="0.4" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="514.88" y="175.5" ></text>
-</g>
-<g >
-<title>/lib64 (7,110 samples, 0.58%)</title><rect x="839.3" y="181" width="6.9" height="15.0" fill="rgb(239,99,37)" rx="2" ry="2" />
-<text x="842.34" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="814.3" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="817.31" y="79.5" ></text>
-</g>
-<g >
-<title>/fa (231 samples, 0.02%)</title><rect x="394.4" y="117" width="0.2" height="15.0" fill="rgb(231,155,29)" rx="2" ry="2" />
-<text x="397.42" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (262 samples, 0.02%)</title><rect x="338.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="341.41" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (189 samples, 0.02%)</title><rect x="843.3" y="149" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="846.30" y="159.5" ></text>
-</g>
-<g >
-<title>/moz-extension+++38ae2600-8ac6-4c43-a481-a2a6ff8f036b (242 samples, 0.02%)</title><rect x="415.1" y="85" width="0.2" height="15.0" fill="rgb(228,113,25)" rx="2" ry="2" />
-<text x="418.10" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (1,034 samples, 0.08%)</title><rect x="1187.9" y="165" width="1.0" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1190.92" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="373.3" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="376.29" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (266 samples, 0.02%)</title><rect x="350.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="353.07" y="111.5" ></text>
-</g>
-<g >
-<title>/84 (244 samples, 0.02%)</title><rect x="367.0" y="117" width="0.2" height="15.0" fill="rgb(242,156,41)" rx="2" ry="2" />
-<text x="369.96" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Contacts.SearchProvider.slice (1,770 samples, 0.15%)</title><rect x="790.5" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="793.46" y="95.5" ></text>
-</g>
-<g >
-<title>/c6 (243 samples, 0.02%)</title><rect x="382.2" y="117" width="0.3" height="15.0" fill="rgb(240,154,38)" rx="2" ry="2" />
-<text x="385.22" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (138 samples, 0.01%)</title><rect x="439.9" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="442.92" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="805.8" y="69" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="808.77" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (214 samples, 0.02%)</title><rect x="364.2" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="367.20" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="826.8" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="829.82" y="95.5" ></text>
-</g>
-<g >
-<title>/files (6,456 samples, 0.53%)</title><rect x="398.7" y="133" width="6.2" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" />
-<text x="401.68" y="143.5" ></text>
-</g>
-<g >
-<title>/03 (220 samples, 0.02%)</title><rect x="336.7" y="117" width="0.2" height="15.0" fill="rgb(241,144,39)" rx="2" ry="2" />
-<text x="339.72" y="127.5" ></text>
-</g>
-<g >
-<title>/f9 (248 samples, 0.02%)</title><rect x="394.2" y="117" width="0.2" height="15.0" fill="rgb(231,129,29)" rx="2" ry="2" />
-<text x="397.18" y="127.5" ></text>
-</g>
-<g >
-<title>/runtime (195 samples, 0.02%)</title><rect x="1160.2" y="85" width="0.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
-<text x="1163.21" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (188 samples, 0.02%)</title><rect x="738.7" y="165" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="741.71" y="175.5" ></text>
-</g>
-<g >
-<title>/x86_64 (176 samples, 0.01%)</title><rect x="763.5" y="181" width="0.2" height="15.0" fill="rgb(232,97,30)" rx="2" ry="2" />
-<text x="766.50" y="191.5" ></text>
-</g>
-<g >
-<title>/09 (240 samples, 0.02%)</title><rect x="338.2" y="117" width="0.2" height="15.0" fill="rgb(230,124,28)" rx="2" ry="2" />
-<text x="341.18" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (287 samples, 0.02%)</title><rect x="780.5" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="783.50" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (238 samples, 0.02%)</title><rect x="377.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="380.01" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (239 samples, 0.02%)</title><rect x="343.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="346.03" y="111.5" ></text>
-</g>
-<g >
-<title>/a4 (241 samples, 0.02%)</title><rect x="374.4" y="117" width="0.2" height="15.0" fill="rgb(233,115,31)" rx="2" ry="2" />
-<text x="377.41" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (288 samples, 0.02%)</title><rect x="777.7" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="780.68" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (251 samples, 0.02%)</title><rect x="346.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="349.42" y="111.5" ></text>
-</g>
-<g >
-<title>/31 (208 samples, 0.02%)</title><rect x="347.6" y="117" width="0.2" height="15.0" fill="rgb(223,135,20)" rx="2" ry="2" />
-<text x="350.59" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_ioctl (288 samples, 0.02%)</title><rect x="782.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="785.22" y="79.5" ></text>
-</g>
-<g >
-<title>/sync (598 samples, 0.05%)</title><rect x="868.9" y="133" width="0.6" height="15.0" fill="rgb(238,145,36)" rx="2" ry="2" />
-<text x="871.91" y="143.5" ></text>
-</g>
-<g >
-<title>/a6 (250 samples, 0.02%)</title><rect x="374.9" y="117" width="0.2" height="15.0" fill="rgb(230,109,28)" rx="2" ry="2" />
-<text x="377.88" y="127.5" ></text>
-</g>
-<g >
-<title>/repo (730 samples, 0.06%)</title><rect x="1159.8" y="149" width="0.7" height="15.0" fill="rgb(247,137,46)" rx="2" ry="2" />
-<text x="1162.78" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (290 samples, 0.02%)</title><rect x="329.8" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="332.83" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (260 samples, 0.02%)</title><rect x="352.8" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="355.81" y="111.5" ></text>
-</g>
-<g >
-<title>/class (760 samples, 0.06%)</title><rect x="765.0" y="181" width="0.8" height="15.0" fill="rgb(240,173,38)" rx="2" ry="2" />
-<text x="768.03" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (8,170 samples, 0.67%)</title><rect x="725.9" y="149" width="7.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="728.94" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (250 samples, 0.02%)</title><rect x="356.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="359.59" y="111.5" ></text>
-</g>
-<g >
-<title>internal (183 samples, 0.01%)</title><rect x="443.0" y="197" width="0.2" height="15.0" fill="rgb(229,164,27)" rx="2" ry="2" />
-<text x="446.03" y="207.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (341 samples, 0.03%)</title><rect x="1137.4" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1140.43" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (288 samples, 0.02%)</title><rect x="819.4" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="822.44" y="79.5" ></text>
-</g>
-<g >
-<title>/1655796 (241 samples, 0.02%)</title><rect x="515.6" y="181" width="0.3" height="15.0" fill="rgb(240,129,39)" rx="2" ry="2" />
-<text x="518.63" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (15,761 samples, 1.29%)</title><rect x="10.1" y="181" width="15.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="13.09" y="191.5" ></text>
-</g>
-<g >
-<title>/gio (413 samples, 0.03%)</title><rect x="841.4" y="165" width="0.4" height="15.0" fill="rgb(241,124,40)" rx="2" ry="2" />
-<text x="844.45" y="175.5" ></text>
-</g>
-<g >
-<title>/6c (281 samples, 0.02%)</title><rect x="361.3" y="117" width="0.3" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" />
-<text x="364.30" y="127.5" ></text>
-</g>
-<g >
-<title>/ed (254 samples, 0.02%)</title><rect x="391.4" y="117" width="0.3" height="15.0" fill="rgb(245,150,44)" rx="2" ry="2" />
-<text x="394.43" y="127.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Characters.slice (1,739 samples, 0.14%)</title><rect x="788.8" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="791.77" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (293 samples, 0.02%)</title><rect x="364.6" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="367.59" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (281 samples, 0.02%)</title><rect x="775.1" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="778.13" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pwrite64 (160 samples, 0.01%)</title><rect x="433.5" y="53" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="436.48" y="63.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (252 samples, 0.02%)</title><rect x="355.1" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="358.11" y="111.5" ></text>
-</g>
-<g >
-<title>/run (382 samples, 0.03%)</title><rect x="1187.5" y="181" width="0.4" height="15.0" fill="rgb(243,124,41)" rx="2" ry="2" />
-<text x="1190.52" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_close (254 samples, 0.02%)</title><rect x="854.4" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="857.41" y="127.5" ></text>
-</g>
-<g >
-<title>/.rakubrew (223 samples, 0.02%)</title><rect x="432.6" y="165" width="0.2" height="15.0" fill="rgb(232,144,30)" rx="2" ry="2" />
-<text x="435.60" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_statx (3,590 samples, 0.29%)</title><rect x="117.4" y="181" width="3.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="120.37" y="191.5" ></text>
-</g>
-<g >
-<title>/fd (240 samples, 0.02%)</title><rect x="515.6" y="165" width="0.3" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="518.63" y="175.5" ></text>
-</g>
-<g >
-<title>/bd (232 samples, 0.02%)</title><rect x="380.1" y="117" width="0.2" height="15.0" fill="rgb(236,110,34)" rx="2" ry="2" />
-<text x="383.06" y="127.5" ></text>
-</g>
-<g >
-<title>/65 (240 samples, 0.02%)</title><rect x="359.7" y="117" width="0.2" height="15.0" fill="rgb(231,107,28)" rx="2" ry="2" />
-<text x="362.65" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (243 samples, 0.02%)</title><rect x="382.2" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="385.22" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (255 samples, 0.02%)</title><rect x="398.0" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="401.03" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (284 samples, 0.02%)</title><rect x="803.2" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="806.23" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (139 samples, 0.01%)</title><rect x="858.9" y="117" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="861.86" y="127.5" ></text>
-</g>
-<g >
-<title>/1655715 (264 samples, 0.02%)</title><rect x="514.2" y="181" width="0.3" height="15.0" fill="rgb(239,129,37)" rx="2" ry="2" />
-<text x="517.25" y="191.5" ></text>
-</g>
-<g >
-<title>/shims (104 samples, 0.01%)</title><rect x="432.7" y="149" width="0.1" height="15.0" fill="rgb(229,122,26)" rx="2" ry="2" />
-<text x="435.70" y="159.5" ></text>
-</g>
-<g >
-<title>/system (245 samples, 0.02%)</title><rect x="765.9" y="165" width="0.3" height="15.0" fill="rgb(231,145,29)" rx="2" ry="2" />
-<text x="768.92" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (164 samples, 0.01%)</title><rect x="510.9" y="149" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="513.89" y="159.5" ></text>
-</g>
-<g >
-<title>/sbin (243 samples, 0.02%)</title><rect x="966.5" y="181" width="0.2" height="15.0" fill="rgb(247,142,46)" rx="2" ry="2" />
-<text x="969.48" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (881 samples, 0.07%)</title><rect x="301.3" y="165" width="0.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="304.26" y="175.5" ></text>
-</g>
-<g >
-<title>/fd (1,101 samples, 0.09%)</title><rect x="512.4" y="165" width="1.0" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="515.38" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (336 samples, 0.03%)</title><rect x="828.9" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="831.90" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (309 samples, 0.03%)</title><rect x="354.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="357.34" y="111.5" ></text>
-</g>
-<g >
-<title>/paul (125,817 samples, 10.31%)</title><rect x="321.0" y="181" width="121.7" height="15.0" fill="rgb(232,160,30)" rx="2" ry="2" />
-<text x="324.05" y="191.5" >/paul</text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (230 samples, 0.02%)</title><rect x="342.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="345.56" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="371.4" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="374.43" y="111.5" ></text>
-</g>
-<g >
-<title>/org.freedesktop.Platform.GL.default (271 samples, 0.02%)</title><rect x="270.6" y="181" width="0.2" height="15.0" fill="rgb(228,149,25)" rx="2" ry="2" />
-<text x="273.55" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (201 samples, 0.02%)</title><rect x="394.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="397.65" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="808.6" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="811.65" y="79.5" ></text>
-</g>
-<g >
-<title>/fd (13,339 samples, 1.09%)</title><rect x="484.1" y="165" width="12.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="487.12" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (266 samples, 0.02%)</title><rect x="387.9" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="390.86" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_fcntl (140 samples, 0.01%)</title><rect x="852.0" y="85" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="855.01" y="95.5" ></text>
-</g>
-<g >
-<title>/98 (229 samples, 0.02%)</title><rect x="371.7" y="117" width="0.2" height="15.0" fill="rgb(234,138,32)" rx="2" ry="2" />
-<text x="374.66" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (501 samples, 0.04%)</title><rect x="856.2" y="117" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="859.20" y="127.5" ></text>
-</g>
-<g >
-<title>/app (627 samples, 0.05%)</title><rect x="433.1" y="149" width="0.6" height="15.0" fill="rgb(248,115,47)" rx="2" ry="2" />
-<text x="436.08" y="159.5" ></text>
-</g>
-<g >
-<title>/app-dbus\x2d:1.2\x2dorg.gnome.Epiphany.WebAppProvider.slice (1,777 samples, 0.15%)</title><rect x="792.2" y="85" width="1.7" height="15.0" fill="rgb(246,115,46)" rx="2" ry="2" />
-<text x="795.17" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (236 samples, 0.02%)</title><rect x="394.0" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="396.96" y="111.5" ></text>
-</g>
-<g >
-<title>/32 (228 samples, 0.02%)</title><rect x="347.8" y="117" width="0.2" height="15.0" fill="rgb(239,132,38)" rx="2" ry="2" />
-<text x="350.79" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_openat (255 samples, 0.02%)</title><rect x="855.9" y="117" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="858.95" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (333 samples, 0.03%)</title><rect x="802.9" y="69" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="805.91" y="79.5" ></text>
-</g>
-<g >
-<title>/time (377 samples, 0.03%)</title><rect x="871.5" y="133" width="0.4" height="15.0" fill="rgb(236,114,34)" rx="2" ry="2" />
-<text x="874.49" y="143.5" ></text>
-</g>
-<g >
-<title>/abi (643 samples, 0.05%)</title><rect x="847.4" y="117" width="0.6" height="15.0" fill="rgb(234,122,32)" rx="2" ry="2" />
-<text x="850.35" y="127.5" ></text>
-</g>
-<g >
-<title>/.local (5,491 samples, 0.45%)</title><rect x="409.8" y="165" width="5.3" height="15.0" fill="rgb(229,163,26)" rx="2" ry="2" />
-<text x="412.78" y="175.5" ></text>
-</g>
-<g >
-<title>/power_supply (147 samples, 0.01%)</title><rect x="765.8" y="69" width="0.1" height="15.0" fill="rgb(240,154,39)" rx="2" ry="2" />
-<text x="768.78" y="79.5" ></text>
-</g>
-<g >
-<title>/LC_MESSAGES (114 samples, 0.01%)</title><rect x="994.2" y="133" width="0.1" height="15.0" fill="rgb(238,100,37)" rx="2" ry="2" />
-<text x="997.18" y="143.5" ></text>
-</g>
-<g >
-<title>/5 (1,114 samples, 0.09%)</title><rect x="724.9" y="181" width="1.0" height="15.0" fill="rgb(244,110,43)" rx="2" ry="2" />
-<text x="727.86" y="191.5" ></text>
-</g>
-<g >
-<title>/64 (216 samples, 0.02%)</title><rect x="359.4" y="117" width="0.3" height="15.0" fill="rgb(232,110,30)" rx="2" ry="2" />
-<text x="362.44" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (2,922 samples, 0.24%)</title><rect x="719.1" y="149" width="2.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="722.14" y="159.5" ></text>
-</g>
-<g >
-<title>/33 (277 samples, 0.02%)</title><rect x="348.0" y="117" width="0.3" height="15.0" fill="rgb(237,128,36)" rx="2" ry="2" />
-<text x="351.01" y="127.5" ></text>
-</g>
-<g >
-<title>/permanent (676 samples, 0.06%)</title><rect x="415.3" y="101" width="0.7" height="15.0" fill="rgb(241,147,39)" rx="2" ry="2" />
-<text x="418.33" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (273 samples, 0.02%)</title><rect x="353.1" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="356.06" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (217 samples, 0.02%)</title><rect x="355.6" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="358.57" y="111.5" ></text>
-</g>
-<g >
-<title>/org.kde.KStyle.Adwaita (264 samples, 0.02%)</title><rect x="1169.0" y="133" width="0.2" height="15.0" fill="rgb(229,149,27)" rx="2" ry="2" />
-<text x="1171.95" y="143.5" ></text>
-</g>
-<g >
-<title>/fd (161 samples, 0.01%)</title><rect x="516.9" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="519.90" y="175.5" ></text>
-</g>
-<g >
-<title>/rpm (90,464 samples, 7.41%)</title><rect x="874.3" y="149" width="87.5" height="15.0" fill="rgb(232,140,30)" rx="2" ry="2" />
-<text x="877.28" y="159.5" >/rpm</text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (13,339 samples, 1.09%)</title><rect x="484.1" y="149" width="12.9" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="487.12" y="159.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (117 samples, 0.01%)</title><rect x="849.3" y="101" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="852.32" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (322 samples, 0.03%)</title><rect x="768.9" y="85" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="771.91" y="95.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (289 samples, 0.02%)</title><rect x="383.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="386.35" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstat (360 samples, 0.03%)</title><rect x="497.8" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="500.84" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (275 samples, 0.02%)</title><rect x="361.0" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="364.03" y="111.5" ></text>
-</g>
-<g >
-<title>/1637286 (737 samples, 0.06%)</title><rect x="506.9" y="181" width="0.7" height="15.0" fill="rgb(245,129,44)" rx="2" ry="2" />
-<text x="509.89" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (244 samples, 0.02%)</title><rect x="393.5" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="396.50" y="111.5" ></text>
-</g>
-<g >
-<title>/goos (209 samples, 0.02%)</title><rect x="850.4" y="117" width="0.2" height="15.0" fill="rgb(243,144,41)" rx="2" ry="2" />
-<text x="853.36" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="774.6" y="69" width="0.5" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="777.57" y="79.5" ></text>
-</g>
-<g >
-<title>syscall`enter_read (576 samples, 0.05%)</title><rect x="784.8" y="69" width="0.6" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="787.82" y="79.5" ></text>
-</g>
-<g >
-<title>/3b (242 samples, 0.02%)</title><rect x="349.8" y="117" width="0.3" height="15.0" fill="rgb(225,132,22)" rx="2" ry="2" />
-<text x="352.84" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (254 samples, 0.02%)</title><rect x="367.4" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="370.40" y="111.5" ></text>
-</g>
-<g >
-<title>syscall`enter_readlinkat (331 samples, 0.03%)</title><rect x="499.2" y="149" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="502.24" y="159.5" ></text>
-</g>
-<g >
-<title>/fd (153 samples, 0.01%)</title><rect x="722.3" y="165" width="0.2" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
-<text x="725.35" y="175.5" ></text>
-</g>
-<g >
-<title>/1475 (1,738 samples, 0.14%)</title><rect x="482.4" y="181" width="1.7" height="15.0" fill="rgb(246,135,46)" rx="2" ry="2" />
-<text x="485.43" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (221 samples, 0.02%)</title><rect x="395.5" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="398.54" y="111.5" ></text>
-</g>
-<g >
-<title>/fs (323 samples, 0.03%)</title><rect x="853.8" y="117" width="0.3" height="15.0" fill="rgb(235,136,33)" rx="2" ry="2" />
-<text x="856.77" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_write (121 samples, 0.01%)</title><rect x="1187.4" y="165" width="0.1" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1190.40" y="175.5" ></text>
-</g>
-<g >
-<title>/polkit-1 (217 samples, 0.02%)</title><rect x="1175.1" y="165" width="0.2" height="15.0" fill="rgb(232,154,30)" rx="2" ry="2" />
-<text x="1178.08" y="175.5" ></text>
-</g>
-<g >
-<title>/pack (105 samples, 0.01%)</title><rect x="434.4" y="101" width="0.1" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" />
-<text x="437.36" y="111.5" ></text>
-</g>
-<g >
-<title>/internal (292 samples, 0.02%)</title><rect x="859.0" y="117" width="0.3" height="15.0" fill="rgb(229,137,27)" rx="2" ry="2" />
-<text x="862.00" y="127.5" ></text>
-</g>
-<g >
-<title>/userdb (450 samples, 0.04%)</title><rect x="761.9" y="165" width="0.5" height="15.0" fill="rgb(235,116,33)" rx="2" ry="2" />
-<text x="764.94" y="175.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (234 samples, 0.02%)</title><rect x="351.8" y="101" width="0.2" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="354.76" y="111.5" ></text>
-</g>
-<g >
-<title>/org.kde.WaylandDecoration.QAdwaitaDecorations (124 samples, 0.01%)</title><rect x="272.3" y="181" width="0.1" height="15.0" fill="rgb(244,149,43)" rx="2" ry="2" />
-<text x="275.29" y="191.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pread64 (390 samples, 0.03%)</title><rect x="1187.0" y="165" width="0.4" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1190.02" y="175.5" ></text>
-</g>
-<g >
-<title>/f5 (244 samples, 0.02%)</title><rect x="393.3" y="117" width="0.2" height="15.0" fill="rgb(238,142,37)" rx="2" ry="2" />
-<text x="396.26" y="127.5" ></text>
-</g>
-<g >
-<title>/b4 (232 samples, 0.02%)</title><rect x="378.1" y="117" width="0.3" height="15.0" fill="rgb(232,110,30)" rx="2" ry="2" />
-<text x="381.14" y="127.5" ></text>
-</g>
-<g >
-<title>/94 (256 samples, 0.02%)</title><rect x="370.7" y="117" width="0.3" height="15.0" fill="rgb(241,150,40)" rx="2" ry="2" />
-<text x="373.74" y="127.5" ></text>
-</g>
-<g >
-<title>/ce (260 samples, 0.02%)</title><rect x="384.0" y="117" width="0.3" height="15.0" fill="rgb(245,157,44)" rx="2" ry="2" />
-<text x="387.04" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_pwrite64 (346 samples, 0.03%)</title><rect x="1134.9" y="149" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="1137.88" y="159.5" ></text>
-</g>
-<g >
-<title>/reflect (556 samples, 0.05%)</title><rect x="858.5" y="133" width="0.5" height="15.0" fill="rgb(241,137,39)" rx="2" ry="2" />
-<text x="861.46" y="143.5" ></text>
-</g>
-<g >
-<title>/63 (215 samples, 0.02%)</title><rect x="359.2" y="117" width="0.2" height="15.0" fill="rgb(234,113,32)" rx="2" ry="2" />
-<text x="362.23" y="127.5" ></text>
-</g>
-<g >
-<title>syscall`enter_newfstatat (270 samples, 0.02%)</title><rect x="347.3" y="101" width="0.3" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" />
-<text x="350.33" y="111.5" ></text>
-</g>
-</g>
-</svg>
+ searchbtn.classList.add("show");
+ searchbtn.firstChild.nodeValue = "Reset Search";
+ // calculate percent matched, excluding vertical overlap
+ var count = 0;
+ var lastx = -1;
+ var lastw = 0;
+ var keys = Array();
+ for (k in matches) {
+ if (matches.hasOwnProperty(k))
+ keys.push(k);
+ }
+ // sort the matched frames by their x location
+ // ascending, then width descending
+ keys.sort(function(a, b){
+ return a - b;
+ });
+ // Step through frames saving only the biggest bottom-up frames
+ // thanks to the sort order. This relies on the tree property
+ // where children are always smaller than their parents.
+ for (var k in keys) {
+ var x = parseInt(keys[k]);
+ var w = matches[keys[k]];
+ if (x >= lastx + lastw) {
+ count += w;
+ lastx = x;
+ lastw = w;
+ }
+ }
+ // display matched percent
+ matchedtxt.classList.remove("hide");
+ var pct = 100 * count / maxwidth;
+ if (pct != 100) pct = pct.toFixed(1);
+ matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
+}
+function format_percent(n) {
+ return n.toFixed(4) + "%";
+}
+]]></script><rect x="0" y="0" width="100%" height="342" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">I/O Syscall Count</text><text id="details" fill="rgb(0,0,0)" x="10" y="325.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="325.00"> </text><svg id="frames" x="10" width="1180" total_samples="6618184"><g><title>etc (1,015 samples, 0.02%)</title><rect x="0.0035%" y="261" width="0.0153%" height="15" fill="rgb(229,182,26)" fg:x="229" fg:w="1015"/><text x="0.2535%" y="271.50"></text></g><g><title>home (913 samples, 0.01%)</title><rect x="0.0188%" y="261" width="0.0138%" height="15" fill="rgb(240,189,38)" fg:x="1244" fg:w="913"/><text x="0.2688%" y="271.50"></text></g><g><title>/paul (911 samples, 0.01%)</title><rect x="0.0188%" y="245" width="0.0138%" height="15" fill="rgb(232,160,30)" fg:x="1246" fg:w="911"/><text x="0.2688%" y="255.50"></text></g><g><title>/bin (2,101 samples, 0.03%)</title><rect x="0.0351%" y="245" width="0.0317%" height="15" fill="rgb(247,94,46)" fg:x="2320" fg:w="2101"/><text x="0.2851%" y="255.50"></text></g><g><title>/lib64 (1,318 samples, 0.02%)</title><rect x="0.0669%" y="245" width="0.0199%" height="15" fill="rgb(239,99,37)" fg:x="4426" fg:w="1318"/><text x="0.3169%" y="255.50"></text></g><g><title>/ccache (1,267 samples, 0.02%)</title><rect x="0.0676%" y="229" width="0.0191%" height="15" fill="rgb(245,164,44)" fg:x="4477" fg:w="1267"/><text x="0.3176%" y="239.50"></text></g><g><title>/bin (1,256 samples, 0.02%)</title><rect x="0.0937%" y="229" width="0.0190%" height="15" fill="rgb(247,94,46)" fg:x="6198" fg:w="1256"/><text x="0.3437%" y="239.50"></text></g><g><title>/sbin (1,239 samples, 0.02%)</title><rect x="0.1126%" y="229" width="0.0187%" height="15" fill="rgb(247,142,46)" fg:x="7454" fg:w="1239"/><text x="0.3626%" y="239.50"></text></g><g><title>/local (2,509 samples, 0.04%)</title><rect x="0.0937%" y="245" width="0.0379%" height="15" fill="rgb(229,118,26)" fg:x="6198" fg:w="2509"/><text x="0.3437%" y="255.50"></text></g><g><title>usr (6,658 samples, 0.10%)</title><rect x="0.0349%" y="261" width="0.1006%" height="15" fill="rgb(236,129,34)" fg:x="2310" fg:w="6658"/><text x="0.2849%" y="271.50"></text></g><g><title>syscall`access (9,028 samples, 0.14%)</title><rect x="0.0000%" y="277" width="0.1364%" height="15" fill="rgb(230,164,28)" fg:x="0" fg:w="9028"/><text x="0.2500%" y="287.50"></text></g><g><title> (3,000 samples, 0.05%)</title><rect x="0.1388%" y="261" width="0.0453%" height="15" fill="rgb(255,230,55)" fg:x="9186" fg:w="3000"/><text x="0.3888%" y="271.50"></text></g><g><title>. (213,382 samples, 3.22%)</title><rect x="0.1841%" y="261" width="3.2242%" height="15" fill="rgb(238,153,36)" fg:x="12186" fg:w="213382"/><text x="0.4341%" y="271.50">.</text></g><g><title>deployruntime (1,010 samples, 0.02%)</title><rect x="3.4326%" y="261" width="0.0153%" height="15" fill="rgb(236,207,34)" fg:x="227176" fg:w="1010"/><text x="3.6826%" y="271.50"></text></g><g><title>dev (1,018 samples, 0.02%)</title><rect x="3.4479%" y="261" width="0.0154%" height="15" fill="rgb(236,187,34)" fg:x="228186" fg:w="1018"/><text x="3.6979%" y="271.50"></text></g><g><title>etc (1,797 samples, 0.03%)</title><rect x="3.4635%" y="261" width="0.0272%" height="15" fill="rgb(229,182,26)" fg:x="229222" fg:w="1797"/><text x="3.7135%" y="271.50"></text></g><g><title>/gopls (676 samples, 0.01%)</title><rect x="3.5323%" y="213" width="0.0102%" height="15" fill="rgb(233,144,31)" fg:x="233775" fg:w="676"/><text x="3.7823%" y="223.50"></text></g><g><title>/.cache (3,675 samples, 0.06%)</title><rect x="3.5057%" y="229" width="0.0555%" height="15" fill="rgb(245,154,44)" fg:x="232011" fg:w="3675"/><text x="3.7557%" y="239.50"></text></g><g><title>/index.crates.io-1949cf8c6b5b557f (3,235 samples, 0.05%)</title><rect x="3.5874%" y="181" width="0.0489%" height="15" fill="rgb(248,137,47)" fg:x="237419" fg:w="3235"/><text x="3.8374%" y="191.50"></text></g><g><title>/.cargo (10,992 samples, 0.17%)</title><rect x="3.5612%" y="229" width="0.1661%" height="15" fill="rgb(244,154,43)" fg:x="235686" fg:w="10992"/><text x="3.8112%" y="239.50"></text></g><g><title>/registry (10,939 samples, 0.17%)</title><rect x="3.5620%" y="213" width="0.1653%" height="15" fill="rgb(243,137,42)" fg:x="235739" fg:w="10939"/><text x="3.8120%" y="223.50"></text></g><g><title>/src (10,003 samples, 0.15%)</title><rect x="3.5761%" y="197" width="0.1511%" height="15" fill="rgb(230,129,27)" fg:x="236675" fg:w="10003"/><text x="3.8261%" y="207.50"></text></g><g><title>/index.crates.io-6f17d22bba15001f (6,024 samples, 0.09%)</title><rect x="3.6363%" y="181" width="0.0910%" height="15" fill="rgb(246,137,45)" fg:x="240654" fg:w="6024"/><text x="3.8863%" y="191.50"></text></g><g><title>/google-chrome (766 samples, 0.01%)</title><rect x="3.7357%" y="213" width="0.0116%" height="15" fill="rgb(240,144,38)" fg:x="247235" fg:w="766"/><text x="3.9857%" y="223.50"></text></g><g><title>/.config (1,516 samples, 0.02%)</title><rect x="3.7273%" y="229" width="0.0229%" height="15" fill="rgb(239,154,37)" fg:x="246678" fg:w="1516"/><text x="3.9773%" y="239.50"></text></g><g><title>/python3.12 (835 samples, 0.01%)</title><rect x="3.7587%" y="197" width="0.0126%" height="15" fill="rgb(242,160,41)" fg:x="248755" fg:w="835"/><text x="4.0087%" y="207.50"></text></g><g><title>/site-packages (795 samples, 0.01%)</title><rect x="3.7593%" y="181" width="0.0120%" height="15" fill="rgb(239,119,37)" fg:x="248795" fg:w="795"/><text x="4.0093%" y="191.50"></text></g><g><title>/lib (1,314 samples, 0.02%)</title><rect x="3.7532%" y="213" width="0.0199%" height="15" fill="rgb(234,99,32)" fg:x="248393" fg:w="1314"/><text x="4.0032%" y="223.50"></text></g><g><title>/.cpan (2,605 samples, 0.04%)</title><rect x="3.7740%" y="197" width="0.0394%" height="15" fill="rgb(242,154,41)" fg:x="249771" fg:w="2605"/><text x="4.0240%" y="207.50"></text></g><g><title>/build (2,319 samples, 0.04%)</title><rect x="3.7783%" y="181" width="0.0350%" height="15" fill="rgb(238,94,37)" fg:x="250057" fg:w="2319"/><text x="4.0283%" y="191.50"></text></g><g><title>/components (676 samples, 0.01%)</title><rect x="3.8371%" y="53" width="0.0102%" height="15" fill="rgb(238,164,36)" fg:x="253947" fg:w="676"/><text x="4.0871%" y="63.50"></text></g><g><title>/espressif (1,587 samples, 0.02%)</title><rect x="3.8349%" y="69" width="0.0240%" height="15" fill="rgb(240,141,38)" fg:x="253798" fg:w="1587"/><text x="4.0849%" y="79.50"></text></g><g><title>/hal (2,742 samples, 0.04%)</title><rect x="3.8299%" y="85" width="0.0414%" height="15" fill="rgb(225,145,22)" fg:x="253472" fg:w="2742"/><text x="4.0799%" y="95.50"></text></g><g><title>/lib (1,120 samples, 0.02%)</title><rect x="3.8714%" y="85" width="0.0169%" height="15" fill="rgb(234,99,32)" fg:x="256214" fg:w="1120"/><text x="4.1214%" y="95.50"></text></g><g><title>/tf-a (859 samples, 0.01%)</title><rect x="3.8883%" y="69" width="0.0130%" height="15" fill="rgb(237,124,35)" fg:x="257335" fg:w="859"/><text x="4.1383%" y="79.50"></text></g><g><title>/trusted-firmware-a (835 samples, 0.01%)</title><rect x="3.8887%" y="53" width="0.0126%" height="15" fill="rgb(238,124,36)" fg:x="257359" fg:w="835"/><text x="4.1387%" y="63.50"></text></g><g><title>/modules (5,370 samples, 0.08%)</title><rect x="3.8262%" y="101" width="0.0811%" height="15" fill="rgb(244,113,43)" fg:x="253225" fg:w="5370"/><text x="4.0762%" y="111.50"></text></g><g><title>/tee (1,261 samples, 0.02%)</title><rect x="3.8883%" y="85" width="0.0191%" height="15" fill="rgb(245,127,44)" fg:x="257334" fg:w="1261"/><text x="4.1383%" y="95.50"></text></g><g><title>/boards (915 samples, 0.01%)</title><rect x="3.9132%" y="85" width="0.0138%" height="15" fill="rgb(241,113,39)" fg:x="258985" fg:w="915"/><text x="4.1632%" y="95.50"></text></g><g><title>/zephyr (3,858 samples, 0.06%)</title><rect x="3.9073%" y="101" width="0.0583%" height="15" fill="rgb(242,152,41)" fg:x="258595" fg:w="3858"/><text x="4.1573%" y="111.50"></text></g><g><title>/tests (870 samples, 0.01%)</title><rect x="3.9525%" y="85" width="0.0131%" height="15" fill="rgb(234,127,32)" fg:x="261583" fg:w="870"/><text x="4.2025%" y="95.50"></text></g><g><title>/4e828deff8afa7002fa398da8bf223191b047f15d1d3660bd9cf516f2856d13c (9,727 samples, 0.15%)</title><rect x="3.8254%" y="149" width="0.1470%" height="15" fill="rgb(230,117,28)" fg:x="253175" fg:w="9727"/><text x="4.0754%" y="159.50"></text></g><g><title>/diff (9,727 samples, 0.15%)</title><rect x="3.8254%" y="133" width="0.1470%" height="15" fill="rgb(241,139,40)" fg:x="253175" fg:w="9727"/><text x="4.0754%" y="143.50"></text></g><g><title>/app (9,723 samples, 0.15%)</title><rect x="3.8255%" y="117" width="0.1469%" height="15" fill="rgb(248,115,47)" fg:x="253179" fg:w="9723"/><text x="4.0755%" y="127.50"></text></g><g><title>/latex (956 samples, 0.01%)</title><rect x="4.0289%" y="37" width="0.0144%" height="15" fill="rgb(247,125,46)" fg:x="266642" fg:w="956"/><text x="4.2789%" y="47.50"></text></g><g><title>/texmf-dist (3,102 samples, 0.05%)</title><rect x="3.9969%" y="69" width="0.0469%" height="15" fill="rgb(232,127,30)" fg:x="264521" fg:w="3102"/><text x="4.2469%" y="79.50"></text></g><g><title>/tex (1,333 samples, 0.02%)</title><rect x="4.0236%" y="53" width="0.0201%" height="15" fill="rgb(247,127,46)" fg:x="266290" fg:w="1333"/><text x="4.2736%" y="63.50"></text></g><g><title>/texlive (3,153 samples, 0.05%)</title><rect x="3.9961%" y="85" width="0.0476%" height="15" fill="rgb(238,127,36)" fg:x="264471" fg:w="3153"/><text x="4.2461%" y="95.50"></text></g><g><title>/usr (4,736 samples, 0.07%)</title><rect x="3.9731%" y="117" width="0.0716%" height="15" fill="rgb(236,116,34)" fg:x="262945" fg:w="4736"/><text x="4.2231%" y="127.50"></text></g><g><title>/share (4,395 samples, 0.07%)</title><rect x="3.9782%" y="101" width="0.0664%" height="15" fill="rgb(248,122,47)" fg:x="263286" fg:w="4395"/><text x="4.2282%" y="111.50"></text></g><g><title>/5a9a00229a7638d55aab0c4066256de27ab1c31c2b8bb4204fcd40f5bf0a313f (4,888 samples, 0.07%)</title><rect x="3.9725%" y="149" width="0.0739%" height="15" fill="rgb(243,125,41)" fg:x="262909" fg:w="4888"/><text x="4.2225%" y="159.50"></text></g><g><title>/diff (4,886 samples, 0.07%)</title><rect x="3.9726%" y="133" width="0.0738%" height="15" fill="rgb(241,139,40)" fg:x="262911" fg:w="4886"/><text x="4.2226%" y="143.50"></text></g><g><title>/icons (774 samples, 0.01%)</title><rect x="4.0740%" y="85" width="0.0117%" height="15" fill="rgb(244,134,43)" fg:x="269627" fg:w="774"/><text x="4.3240%" y="95.50"></text></g><g><title>/usr (1,775 samples, 0.03%)</title><rect x="4.0591%" y="117" width="0.0268%" height="15" fill="rgb(236,116,34)" fg:x="268642" fg:w="1775"/><text x="4.3091%" y="127.50"></text></g><g><title>/share (1,143 samples, 0.02%)</title><rect x="4.0687%" y="101" width="0.0173%" height="15" fill="rgb(248,122,47)" fg:x="269274" fg:w="1143"/><text x="4.3187%" y="111.50"></text></g><g><title>/617d1743e673f18b196ac25f5d4c933f3603684be22758a14b790ecd71364396 (1,991 samples, 0.03%)</title><rect x="4.0578%" y="149" width="0.0301%" height="15" fill="rgb(243,120,42)" fg:x="268551" fg:w="1991"/><text x="4.3078%" y="159.50"></text></g><g><title>/diff (1,969 samples, 0.03%)</title><rect x="4.0581%" y="133" width="0.0298%" height="15" fill="rgb(241,139,40)" fg:x="268573" fg:w="1969"/><text x="4.3081%" y="143.50"></text></g><g><title>/usr (905 samples, 0.01%)</title><rect x="4.0978%" y="117" width="0.0137%" height="15" fill="rgb(236,116,34)" fg:x="271201" fg:w="905"/><text x="4.3478%" y="127.50"></text></g><g><title>/7d8051c18df5e406ebf1465860d36ee5fe210074eb144e4509ec278960b6dfce (1,146 samples, 0.02%)</title><rect x="4.0949%" y="149" width="0.0173%" height="15" fill="rgb(249,161,48)" fg:x="271009" fg:w="1146"/><text x="4.3449%" y="159.50"></text></g><g><title>/diff (1,125 samples, 0.02%)</title><rect x="4.0952%" y="133" width="0.0170%" height="15" fill="rgb(241,139,40)" fg:x="271030" fg:w="1125"/><text x="4.3452%" y="143.50"></text></g><g><title>/components (691 samples, 0.01%)</title><rect x="4.1334%" y="53" width="0.0104%" height="15" fill="rgb(238,164,36)" fg:x="273554" fg:w="691"/><text x="4.3834%" y="63.50"></text></g><g><title>/espressif (1,681 samples, 0.03%)</title><rect x="4.1306%" y="69" width="0.0254%" height="15" fill="rgb(240,141,38)" fg:x="273371" fg:w="1681"/><text x="4.3806%" y="79.50"></text></g><g><title>/hal (3,161 samples, 0.05%)</title><rect x="4.1241%" y="85" width="0.0478%" height="15" fill="rgb(225,145,22)" fg:x="272942" fg:w="3161"/><text x="4.3741%" y="95.50"></text></g><g><title>/lib (1,638 samples, 0.02%)</title><rect x="4.1719%" y="85" width="0.0247%" height="15" fill="rgb(234,99,32)" fg:x="276103" fg:w="1638"/><text x="4.4219%" y="95.50"></text></g><g><title>/modules (6,052 samples, 0.09%)</title><rect x="4.1189%" y="101" width="0.0914%" height="15" fill="rgb(244,113,43)" fg:x="272599" fg:w="6052"/><text x="4.3689%" y="111.50"></text></g><g><title>/tee (910 samples, 0.01%)</title><rect x="4.1966%" y="85" width="0.0137%" height="15" fill="rgb(245,127,44)" fg:x="277741" fg:w="910"/><text x="4.4466%" y="95.50"></text></g><g><title>/tf-a (910 samples, 0.01%)</title><rect x="4.1966%" y="69" width="0.0137%" height="15" fill="rgb(237,124,35)" fg:x="277741" fg:w="910"/><text x="4.4466%" y="79.50"></text></g><g><title>/trusted-firmware-a (891 samples, 0.01%)</title><rect x="4.1969%" y="53" width="0.0135%" height="15" fill="rgb(238,124,36)" fg:x="277760" fg:w="891"/><text x="4.4469%" y="63.50"></text></g><g><title>/boards (1,217 samples, 0.02%)</title><rect x="4.2169%" y="85" width="0.0184%" height="15" fill="rgb(241,113,39)" fg:x="279085" fg:w="1217"/><text x="4.4669%" y="95.50"></text></g><g><title>/samples (824 samples, 0.01%)</title><rect x="4.2474%" y="85" width="0.0125%" height="15" fill="rgb(244,145,43)" fg:x="281101" fg:w="824"/><text x="4.4974%" y="95.50"></text></g><g><title>/zephyr (5,229 samples, 0.08%)</title><rect x="4.2104%" y="101" width="0.0790%" height="15" fill="rgb(242,152,41)" fg:x="278651" fg:w="5229"/><text x="4.4604%" y="111.50"></text></g><g><title>/tests (1,386 samples, 0.02%)</title><rect x="4.2685%" y="85" width="0.0209%" height="15" fill="rgb(234,127,32)" fg:x="282494" fg:w="1386"/><text x="4.5185%" y="95.50"></text></g><g><title>/b858795cc6c2167f9780575e2df82e5f83afa805a4392df8f2d3d9687f4184ec (11,759 samples, 0.18%)</title><rect x="4.1180%" y="149" width="0.1777%" height="15" fill="rgb(234,97,32)" fg:x="272539" fg:w="11759"/><text x="4.3680%" y="159.50"></text></g><g><title>/diff (11,759 samples, 0.18%)</title><rect x="4.1180%" y="133" width="0.1777%" height="15" fill="rgb(241,139,40)" fg:x="272539" fg:w="11759"/><text x="4.3680%" y="143.50"></text></g><g><title>/app (11,749 samples, 0.18%)</title><rect x="4.1182%" y="117" width="0.1775%" height="15" fill="rgb(248,115,47)" fg:x="272549" fg:w="11749"/><text x="4.3682%" y="127.50"></text></g><g><title>/e243fb558903b0aef6f650a46857ae06ed17e66315e9673a3fcebbcdf33e4edf (1,095 samples, 0.02%)</title><rect x="4.3042%" y="149" width="0.0165%" height="15" fill="rgb(246,157,46)" fg:x="284862" fg:w="1095"/><text x="4.5542%" y="159.50"></text></g><g><title>/diff (1,095 samples, 0.02%)</title><rect x="4.3042%" y="133" width="0.0165%" height="15" fill="rgb(241,139,40)" fg:x="284862" fg:w="1095"/><text x="4.5542%" y="143.50"></text></g><g><title>/app (1,092 samples, 0.02%)</title><rect x="4.3043%" y="117" width="0.0165%" height="15" fill="rgb(248,115,47)" fg:x="284865" fg:w="1092"/><text x="4.5543%" y="127.50"></text></g><g><title>/node_modules (949 samples, 0.01%)</title><rect x="4.3064%" y="101" width="0.0143%" height="15" fill="rgb(244,164,43)" fg:x="285008" fg:w="949"/><text x="4.5564%" y="111.50"></text></g><g><title>/containers (33,833 samples, 0.51%)</title><rect x="3.8175%" y="197" width="0.5112%" height="15" fill="rgb(238,164,36)" fg:x="252647" fg:w="33833"/><text x="4.0675%" y="207.50"></text></g><g><title>/storage (33,824 samples, 0.51%)</title><rect x="3.8176%" y="181" width="0.5111%" height="15" fill="rgb(248,122,47)" fg:x="252656" fg:w="33824"/><text x="4.0676%" y="191.50"></text></g><g><title>/overlay (33,733 samples, 0.51%)</title><rect x="3.8190%" y="165" width="0.5097%" height="15" fill="rgb(243,136,42)" fg:x="252747" fg:w="33733"/><text x="4.0690%" y="175.50"></text></g><g><title>/facter-4.10.0 (671 samples, 0.01%)</title><rect x="4.3457%" y="149" width="0.0101%" height="15" fill="rgb(238,155,37)" fg:x="287606" fg:w="671"/><text x="4.5957%" y="159.50"></text></g><g><title>/Puppet (932 samples, 0.01%)</title><rect x="4.3990%" y="117" width="0.0141%" height="15" fill="rgb(239,129,38)" fg:x="291133" fg:w="932"/><text x="4.6490%" y="127.50"></text></g><g><title>/puppet-8.10.0 (1,181 samples, 0.02%)</title><rect x="4.3953%" y="149" width="0.0178%" height="15" fill="rgb(238,134,37)" fg:x="290892" fg:w="1181"/><text x="4.6453%" y="159.50"></text></g><g><title>/ri (1,152 samples, 0.02%)</title><rect x="4.3958%" y="133" width="0.0174%" height="15" fill="rgb(234,124,32)" fg:x="290921" fg:w="1152"/><text x="4.6458%" y="143.50"></text></g><g><title>/Cop (665 samples, 0.01%)</title><rect x="4.4475%" y="101" width="0.0100%" height="15" fill="rgb(245,159,44)" fg:x="294342" fg:w="665"/><text x="4.6975%" y="111.50"></text></g><g><title>/rubocop-1.54.2 (904 samples, 0.01%)</title><rect x="4.4442%" y="149" width="0.0137%" height="15" fill="rgb(250,124,49)" fg:x="294127" fg:w="904"/><text x="4.6942%" y="159.50"></text></g><g><title>/ri (898 samples, 0.01%)</title><rect x="4.4443%" y="133" width="0.0136%" height="15" fill="rgb(234,124,32)" fg:x="294133" fg:w="898"/><text x="4.6943%" y="143.50"></text></g><g><title>/RuboCop (865 samples, 0.01%)</title><rect x="4.4448%" y="117" width="0.0131%" height="15" fill="rgb(245,119,44)" fg:x="294166" fg:w="865"/><text x="4.6948%" y="127.50"></text></g><g><title>/rubocop-1.64.1 (707 samples, 0.01%)</title><rect x="4.4579%" y="149" width="0.0107%" height="15" fill="rgb(234,124,32)" fg:x="295031" fg:w="707"/><text x="4.7079%" y="159.50"></text></g><g><title>/ri (696 samples, 0.01%)</title><rect x="4.4581%" y="133" width="0.0105%" height="15" fill="rgb(234,124,32)" fg:x="295042" fg:w="696"/><text x="4.7081%" y="143.50"></text></g><g><title>/RuboCop (684 samples, 0.01%)</title><rect x="4.4582%" y="117" width="0.0103%" height="15" fill="rgb(245,119,44)" fg:x="295054" fg:w="684"/><text x="4.7082%" y="127.50"></text></g><g><title>/rubocop-1.69.1 (828 samples, 0.01%)</title><rect x="4.4686%" y="149" width="0.0125%" height="15" fill="rgb(230,124,28)" fg:x="295738" fg:w="828"/><text x="4.7186%" y="159.50"></text></g><g><title>/ri (821 samples, 0.01%)</title><rect x="4.4687%" y="133" width="0.0124%" height="15" fill="rgb(234,124,32)" fg:x="295745" fg:w="821"/><text x="4.7187%" y="143.50"></text></g><g><title>/RuboCop (799 samples, 0.01%)</title><rect x="4.4690%" y="117" width="0.0121%" height="15" fill="rgb(245,119,44)" fg:x="295767" fg:w="799"/><text x="4.7190%" y="127.50"></text></g><g><title>/doc (11,669 samples, 0.18%)</title><rect x="4.3333%" y="165" width="0.1763%" height="15" fill="rgb(235,159,33)" fg:x="286787" fg:w="11669"/><text x="4.5833%" y="175.50"></text></g><g><title>/gem (15,000 samples, 0.23%)</title><rect x="4.3294%" y="197" width="0.2266%" height="15" fill="rgb(232,137,29)" fg:x="286526" fg:w="15000"/><text x="4.5794%" y="207.50"></text></g><g><title>/ruby (14,994 samples, 0.23%)</title><rect x="4.3295%" y="181" width="0.2266%" height="15" fill="rgb(236,124,34)" fg:x="286532" fg:w="14994"/><text x="4.5795%" y="191.50"></text></g><g><title>/gems (3,022 samples, 0.05%)</title><rect x="4.5104%" y="165" width="0.0457%" height="15" fill="rgb(231,137,29)" fg:x="298504" fg:w="3022"/><text x="4.7604%" y="175.50"></text></g><g><title>/lazy (1,243 samples, 0.02%)</title><rect x="4.5569%" y="181" width="0.0188%" height="15" fill="rgb(251,125,51)" fg:x="301585" fg:w="1243"/><text x="4.8069%" y="191.50"></text></g><g><title>/bundle (937 samples, 0.01%)</title><rect x="4.5844%" y="101" width="0.0142%" height="15" fill="rgb(240,94,39)" fg:x="303404" fg:w="937"/><text x="4.8344%" y="111.50"></text></g><g><title>/ruby (937 samples, 0.01%)</title><rect x="4.5844%" y="85" width="0.0142%" height="15" fill="rgb(236,124,34)" fg:x="303404" fg:w="937"/><text x="4.8344%" y="95.50"></text></g><g><title>/2.7.0 (927 samples, 0.01%)</title><rect x="4.5846%" y="69" width="0.0140%" height="15" fill="rgb(233,111,31)" fg:x="303414" fg:w="927"/><text x="4.8346%" y="79.50"></text></g><g><title>/gems (871 samples, 0.01%)</title><rect x="4.5854%" y="53" width="0.0132%" height="15" fill="rgb(231,137,29)" fg:x="303470" fg:w="871"/><text x="4.8354%" y="63.50"></text></g><g><title>/puppet-editor-services (1,079 samples, 0.02%)</title><rect x="4.5840%" y="149" width="0.0163%" height="15" fill="rgb(242,134,40)" fg:x="303380" fg:w="1079"/><text x="4.8340%" y="159.50"></text></g><g><title>/libexec (1,075 samples, 0.02%)</title><rect x="4.5841%" y="133" width="0.0162%" height="15" fill="rgb(237,99,35)" fg:x="303384" fg:w="1075"/><text x="4.8341%" y="143.50"></text></g><g><title>/vendor (1,065 samples, 0.02%)</title><rect x="4.5842%" y="117" width="0.0161%" height="15" fill="rgb(244,117,43)" fg:x="303394" fg:w="1065"/><text x="4.8342%" y="127.50"></text></g><g><title>/nvim (4,007 samples, 0.06%)</title><rect x="4.5563%" y="197" width="0.0605%" height="15" fill="rgb(225,141,22)" fg:x="301542" fg:w="4007"/><text x="4.8063%" y="207.50"></text></g><g><title>/mason (2,721 samples, 0.04%)</title><rect x="4.5757%" y="181" width="0.0411%" height="15" fill="rgb(249,120,48)" fg:x="302828" fg:w="2721"/><text x="4.8257%" y="191.50"></text></g><g><title>/packages (2,717 samples, 0.04%)</title><rect x="4.5758%" y="165" width="0.0411%" height="15" fill="rgb(239,160,37)" fg:x="302832" fg:w="2717"/><text x="4.8258%" y="175.50"></text></g><g><title>/share (56,104 samples, 0.85%)</title><rect x="3.7730%" y="213" width="0.8477%" height="15" fill="rgb(248,122,47)" fg:x="249707" fg:w="56104"/><text x="4.0230%" y="223.50"></text></g><g><title>/.local (57,598 samples, 0.87%)</title><rect x="3.7522%" y="229" width="0.8703%" height="15" fill="rgb(229,163,26)" fg:x="248325" fg:w="57598"/><text x="4.0022%" y="239.50"></text></g><g><title>/content-v2 (1,591 samples, 0.02%)</title><rect x="4.6269%" y="197" width="0.0240%" height="15" fill="rgb(239,164,38)" fg:x="306217" fg:w="1591"/><text x="4.8769%" y="207.50"></text></g><g><title>/sha512 (1,396 samples, 0.02%)</title><rect x="4.6299%" y="181" width="0.0211%" height="15" fill="rgb(246,122,45)" fg:x="306412" fg:w="1396"/><text x="4.8799%" y="191.50"></text></g><g><title>/.npm (2,520 samples, 0.04%)</title><rect x="4.6248%" y="229" width="0.0381%" height="15" fill="rgb(235,157,33)" fg:x="306075" fg:w="2520"/><text x="4.8748%" y="239.50"></text></g><g><title>/_cacache (2,481 samples, 0.04%)</title><rect x="4.6253%" y="213" width="0.0375%" height="15" fill="rgb(245,128,44)" fg:x="306114" fg:w="2481"/><text x="4.8753%" y="223.50"></text></g><g><title>/index-v5 (787 samples, 0.01%)</title><rect x="4.6509%" y="197" width="0.0119%" height="15" fill="rgb(234,137,32)" fg:x="307808" fg:w="787"/><text x="4.9009%" y="207.50"></text></g><g><title>/org.gnome.Geary (683 samples, 0.01%; +0.00%)</title><rect x="4.7141%" y="197" width="0.0103%" height="15" fill="rgb(255,100,100)" fg:x="311987" fg:w="683"/><text x="4.9641%" y="207.50"></text></g><g><title>/.var (4,056 samples, 0.06%)</title><rect x="4.6684%" y="229" width="0.0613%" height="15" fill="rgb(231,131,28)" fg:x="308966" fg:w="4056"/><text x="4.9184%" y="239.50"></text></g><g><title>/app (3,950 samples, 0.06%)</title><rect x="4.6700%" y="213" width="0.0597%" height="15" fill="rgb(248,115,47)" fg:x="309072" fg:w="3950"/><text x="4.9200%" y="223.50"></text></g><g><title>/data (1,474 samples, 0.02%; +0.00%)</title><rect x="4.7329%" y="165" width="0.0223%" height="15" fill="rgb(255,200,200)" fg:x="313235" fg:w="1474"/><text x="4.9829%" y="175.50"></text></g><g><title>/res (1,044 samples, 0.02%; +0.00%)</title><rect x="4.7394%" y="149" width="0.0158%" height="15" fill="rgb(255,200,200)" fg:x="313665" fg:w="1044"/><text x="4.9894%" y="159.50"></text></g><g><title>/platforms (1,519 samples, 0.02%; +0.00%)</title><rect x="4.7324%" y="197" width="0.0230%" height="15" fill="rgb(255,200,200)" fg:x="313200" fg:w="1519"/><text x="4.9824%" y="207.50"></text></g><g><title>/android-34 (1,499 samples, 0.02%; +0.00%)</title><rect x="4.7327%" y="181" width="0.0226%" height="15" fill="rgb(255,200,200)" fg:x="313220" fg:w="1499"/><text x="4.9827%" y="191.50"></text></g><g><title>/sources (1,041 samples, 0.02%; +0.00%)</title><rect x="4.7554%" y="197" width="0.0157%" height="15" fill="rgb(255,200,200)" fg:x="314719" fg:w="1041"/><text x="5.0054%" y="207.50"></text></g><g><title>/android-34 (1,025 samples, 0.02%; +0.00%)</title><rect x="4.7556%" y="181" width="0.0155%" height="15" fill="rgb(255,200,200)" fg:x="314735" fg:w="1025"/><text x="5.0056%" y="191.50"></text></g><g><title>/Android (2,659 samples, 0.04%; +0.00%)</title><rect x="4.7310%" y="229" width="0.0402%" height="15" fill="rgb(255,200,200)" fg:x="313109" fg:w="2659"/><text x="4.9810%" y="239.50"></text></g><g><title>/Sdk (2,655 samples, 0.04%; +0.00%)</title><rect x="4.7311%" y="213" width="0.0401%" height="15" fill="rgb(255,200,200)" fg:x="313113" fg:w="2655"/><text x="4.9811%" y="223.50"></text></g><g><title>/default (3,311 samples, 0.05%; -0.00%)</title><rect x="4.7793%" y="165" width="0.0500%" height="15" fill="rgb(246,246,255)" fg:x="316306" fg:w="3311"/><text x="5.0293%" y="175.50"></text></g><g><title>/storage (3,736 samples, 0.06%; -0.00%)</title><rect x="4.7737%" y="181" width="0.0565%" height="15" fill="rgb(246,246,255)" fg:x="315931" fg:w="3736"/><text x="5.0237%" y="191.50"></text></g><g><title>/Old Firefox Data (3,770 samples, 0.06%; -0.00%)</title><rect x="4.7732%" y="213" width="0.0570%" height="15" fill="rgb(246,246,255)" fg:x="315898" fg:w="3770"/><text x="5.0232%" y="223.50"></text></g><g><title>/ba7aau89.default-release (3,756 samples, 0.06%; -0.00%)</title><rect x="4.7734%" y="197" width="0.0568%" height="15" fill="rgb(246,246,255)" fg:x="315912" fg:w="3756"/><text x="5.0234%" y="207.50"></text></g><g><title>/Desktop (4,101 samples, 0.06%; +0.00%)</title><rect x="4.7712%" y="229" width="0.0620%" height="15" fill="rgb(255,200,200)" fg:x="315768" fg:w="4101"/><text x="5.0212%" y="239.50"></text></g><g><title>/data (1,970 samples, 0.03%; -0.00%)</title><rect x="4.8527%" y="213" width="0.0298%" height="15" fill="rgb(246,246,255)" fg:x="321161" fg:w="1970"/><text x="5.1027%" y="223.50"></text></g><g><title>/storage (1,915 samples, 0.03%; -0.00%)</title><rect x="4.8535%" y="197" width="0.0289%" height="15" fill="rgb(246,246,255)" fg:x="321216" fg:w="1915"/><text x="5.1035%" y="207.50"></text></g><g><title>/json (1,016 samples, 0.02%; -0.00%)</title><rect x="4.8830%" y="165" width="0.0154%" height="15" fill="rgb(246,246,255)" fg:x="323166" fg:w="1016"/><text x="5.1330%" y="175.50"></text></g><g><title>/cache (3,049 samples, 0.05%; -0.00%)</title><rect x="4.8827%" y="181" width="0.0461%" height="15" fill="rgb(246,246,255)" fg:x="323147" fg:w="3049"/><text x="5.1327%" y="191.50"></text></g><g><title>/thumbnails (2,014 samples, 0.03%; -0.00%)</title><rect x="4.8984%" y="165" width="0.0304%" height="15" fill="rgb(246,246,255)" fg:x="324182" fg:w="2014"/><text x="5.1484%" y="175.50"></text></g><g><title>/docker (5,415 samples, 0.08%; -0.00%)</title><rect x="4.8523%" y="229" width="0.0818%" height="15" fill="rgb(246,246,255)" fg:x="321135" fg:w="5415"/><text x="5.1023%" y="239.50"></text></g><g><title>/photoprism (3,419 samples, 0.05%; -0.00%)</title><rect x="4.8825%" y="213" width="0.0517%" height="15" fill="rgb(246,246,255)" fg:x="323131" fg:w="3419"/><text x="5.1325%" y="223.50"></text></g><g><title>/storage (3,407 samples, 0.05%; -0.00%)</title><rect x="4.8827%" y="197" width="0.0515%" height="15" fill="rgb(246,246,255)" fg:x="323143" fg:w="3407"/><text x="5.1327%" y="207.50"></text></g><g><title>/node_modules (1,113 samples, 0.02%; -0.00%)</title><rect x="4.9561%" y="197" width="0.0168%" height="15" fill="rgb(246,246,255)" fg:x="328004" fg:w="1113"/><text x="5.2061%" y="207.50"></text></g><g><title>/PerlNavigator (1,521 samples, 0.02%; -0.00%)</title><rect x="4.9506%" y="213" width="0.0230%" height="15" fill="rgb(246,246,255)" fg:x="327642" fg:w="1521"/><text x="5.2006%" y="223.50"></text></g><g><title>/node_modules (732 samples, 0.01%; -0.00%)</title><rect x="4.9767%" y="197" width="0.0111%" height="15" fill="rgb(246,246,255)" fg:x="329365" fg:w="732"/><text x="5.2267%" y="207.50"></text></g><g><title>/RakuNavigator (1,045 samples, 0.02%; -0.00%)</title><rect x="4.9736%" y="213" width="0.0158%" height="15" fill="rgb(246,246,255)" fg:x="329163" fg:w="1045"/><text x="5.2236%" y="223.50"></text></g><g><title>/foo.zone-content (924 samples, 0.01%; -0.00%)</title><rect x="5.0084%" y="213" width="0.0140%" height="15" fill="rgb(246,246,255)" fg:x="331468" fg:w="924"/><text x="5.2584%" y="223.50"></text></g><g><title>/grafana (1,049 samples, 0.02%; -0.00%)</title><rect x="5.0502%" y="213" width="0.0159%" height="15" fill="rgb(246,246,255)" fg:x="334233" fg:w="1049"/><text x="5.3002%" y="223.50"></text></g><g><title>/grammars (9,157 samples, 0.14%; -0.00%)</title><rect x="5.0698%" y="181" width="0.1384%" height="15" fill="rgb(246,246,255)" fg:x="335530" fg:w="9157"/><text x="5.3198%" y="191.50"></text></g><g><title>/sources (8,927 samples, 0.13%; -0.00%)</title><rect x="5.0733%" y="165" width="0.1349%" height="15" fill="rgb(246,246,255)" fg:x="335760" fg:w="8927"/><text x="5.3233%" y="175.50"></text></g><g><title>/runtime (9,261 samples, 0.14%; -0.00%)</title><rect x="5.0686%" y="197" width="0.1399%" height="15" fill="rgb(246,246,255)" fg:x="335450" fg:w="9261"/><text x="5.3186%" y="207.50"></text></g><g><title>/helix (9,542 samples, 0.14%; 0.00%)</title><rect x="5.0684%" y="213" width="0.1442%" height="15" fill="rgb(250,250,250)" fg:x="335435" fg:w="9542"/><text x="5.3184%" y="223.50"></text></g><g><title>/Build (723 samples, 0.01%; -0.00%)</title><rect x="5.2226%" y="197" width="0.0109%" height="15" fill="rgb(246,246,255)" fg:x="345640" fg:w="723"/><text x="5.4726%" y="207.50"></text></g><g><title>/ladybird (693 samples, 0.01%; -0.00%)</title><rect x="5.2230%" y="181" width="0.0105%" height="15" fill="rgb(246,246,255)" fg:x="345670" fg:w="693"/><text x="5.4730%" y="191.50"></text></g><g><title>/src (782 samples, 0.01%; -0.00%)</title><rect x="5.2828%" y="117" width="0.0118%" height="15" fill="rgb(246,246,255)" fg:x="349624" fg:w="782"/><text x="5.5328%" y="127.50"></text></g><g><title>/1c27019d33-728a6df320.clean (725 samples, 0.01%; -0.00%)</title><rect x="5.2836%" y="101" width="0.0110%" height="15" fill="rgb(246,246,255)" fg:x="349681" fg:w="725"/><text x="5.5336%" y="111.50"></text></g><g><title>/skia (898 samples, 0.01%; -0.00%)</title><rect x="5.2828%" y="133" width="0.0136%" height="15" fill="rgb(246,246,255)" fg:x="349623" fg:w="898"/><text x="5.5328%" y="143.50"></text></g><g><title>/buildtrees (2,878 samples, 0.04%; -0.00%)</title><rect x="5.2546%" y="149" width="0.0435%" height="15" fill="rgb(246,246,255)" fg:x="347756" fg:w="2878"/><text x="5.5046%" y="159.50"></text></g><g><title>/ports (854 samples, 0.01%; -0.00%)</title><rect x="5.3072%" y="149" width="0.0129%" height="15" fill="rgb(246,246,255)" fg:x="351237" fg:w="854"/><text x="5.5572%" y="159.50"></text></g><g><title>/Toolchain (5,514 samples, 0.08%; -0.00%)</title><rect x="5.2388%" y="197" width="0.0833%" height="15" fill="rgb(246,246,255)" fg:x="346716" fg:w="5514"/><text x="5.4888%" y="207.50"></text></g><g><title>/Tarballs (5,503 samples, 0.08%; -0.00%)</title><rect x="5.2390%" y="181" width="0.0831%" height="15" fill="rgb(246,246,255)" fg:x="346727" fg:w="5503"/><text x="5.4890%" y="191.50"></text></g><g><title>/vcpkg (5,455 samples, 0.08%; -0.00%)</title><rect x="5.2397%" y="165" width="0.0824%" height="15" fill="rgb(246,246,255)" fg:x="346775" fg:w="5455"/><text x="5.4897%" y="175.50"></text></g><g><title>/ladybird (6,924 samples, 0.10%; -0.00%)</title><rect x="5.2213%" y="213" width="0.1046%" height="15" fill="rgb(246,246,255)" fg:x="345554" fg:w="6924"/><text x="5.4713%" y="223.50"></text></g><g><title>/git (29,658 samples, 0.45%; -0.00%)</title><rect x="4.9360%" y="229" width="0.4481%" height="15" fill="rgb(246,246,255)" fg:x="326676" fg:w="29658"/><text x="5.1860%" y="239.50"></text></g><g><title>/cache (10,714 samples, 0.16%; -0.00%)</title><rect x="5.3872%" y="181" width="0.1619%" height="15" fill="rgb(246,246,255)" fg:x="356536" fg:w="10714"/><text x="5.6372%" y="191.50"></text></g><g><title>/vcs (9,518 samples, 0.14%; -0.00%)</title><rect x="5.4053%" y="165" width="0.1438%" height="15" fill="rgb(246,246,255)" fg:x="357732" fg:w="9518"/><text x="5.6553%" y="175.50"></text></g><g><title>/github.com (4,063 samples, 0.06%; -0.00%)</title><rect x="5.5606%" y="181" width="0.0614%" height="15" fill="rgb(246,246,255)" fg:x="368011" fg:w="4063"/><text x="5.8106%" y="191.50"></text></g><g><title>/golang.org (5,121 samples, 0.08%; -0.00%)</title><rect x="5.6242%" y="181" width="0.0774%" height="15" fill="rgb(246,246,255)" fg:x="372218" fg:w="5121"/><text x="5.8742%" y="191.50"></text></g><g><title>/x (5,012 samples, 0.08%; -0.00%)</title><rect x="5.6258%" y="165" width="0.0757%" height="15" fill="rgb(246,246,255)" fg:x="372327" fg:w="5012"/><text x="5.8758%" y="175.50"></text></g><g><title>/honnef.co (761 samples, 0.01%; -0.00%)</title><rect x="5.7044%" y="181" width="0.0115%" height="15" fill="rgb(246,246,255)" fg:x="377528" fg:w="761"/><text x="5.9544%" y="191.50"></text></g><g><title>/go (756 samples, 0.01%; -0.00%)</title><rect x="5.7045%" y="165" width="0.0114%" height="15" fill="rgb(246,246,255)" fg:x="377533" fg:w="756"/><text x="5.9545%" y="175.50"></text></g><g><title>/pkg (22,072 samples, 0.33%; -0.00%)</title><rect x="5.3843%" y="213" width="0.3335%" height="15" fill="rgb(246,246,255)" fg:x="356341" fg:w="22072"/><text x="5.6343%" y="223.50"></text></g><g><title>/mod (22,055 samples, 0.33%; -0.00%)</title><rect x="5.3845%" y="197" width="0.3332%" height="15" fill="rgb(246,246,255)" fg:x="356358" fg:w="22055"/><text x="5.6345%" y="207.50"></text></g><g><title>/go (22,491 samples, 0.34%; -0.00%)</title><rect x="5.3842%" y="229" width="0.3398%" height="15" fill="rgb(246,246,255)" fg:x="356334" fg:w="22491"/><text x="5.6342%" y="239.50"></text></g><g><title>/syncthing (743 samples, 0.01%; -0.00%)</title><rect x="5.7267%" y="229" width="0.0112%" height="15" fill="rgb(246,246,255)" fg:x="379005" fg:w="743"/><text x="5.9767%" y="239.50"></text></g><g><title>home (148,775 samples, 2.25%)</title><rect x="3.4909%" y="261" width="2.2480%" height="15" fill="rgb(240,189,38)" fg:x="231031" fg:w="148775"/><text x="3.7409%" y="271.50">h..</text></g><g><title>/paul (148,704 samples, 2.25%)</title><rect x="3.4919%" y="245" width="2.2469%" height="15" fill="rgb(232,160,30)" fg:x="231102" fg:w="148704"/><text x="3.7419%" y="255.50">/..</text></g><g><title>lib64 (3,631 samples, 0.05%; +0.00%)</title><rect x="5.7399%" y="261" width="0.0549%" height="15" fill="rgb(255,242,242)" fg:x="379875" fg:w="3631"/><text x="5.9899%" y="271.50"></text></g><g><title>proc (28,927 samples, 0.44%; +0.00%)</title><rect x="5.7972%" y="261" width="0.4371%" height="15" fill="rgb(255,242,242)" fg:x="383669" fg:w="28927"/><text x="6.0472%" y="271.50"></text></g><g><title>run (1,473 samples, 0.02%; +0.00%)</title><rect x="6.2386%" y="261" width="0.0223%" height="15" fill="rgb(255,242,242)" fg:x="412883" fg:w="1473"/><text x="6.4886%" y="271.50"></text></g><g><title>/user (1,052 samples, 0.02%; +0.00%)</title><rect x="6.2450%" y="245" width="0.0159%" height="15" fill="rgb(255,242,242)" fg:x="413304" fg:w="1052"/><text x="6.4950%" y="255.50"></text></g><g><title>/1001 (1,033 samples, 0.02%; +0.00%)</title><rect x="6.2453%" y="229" width="0.0156%" height="15" fill="rgb(255,242,242)" fg:x="413323" fg:w="1033"/><text x="6.4953%" y="239.50"></text></g><g><title>/devices (2,358 samples, 0.04%; +0.00%)</title><rect x="6.2806%" y="245" width="0.0356%" height="15" fill="rgb(255,242,242)" fg:x="415659" fg:w="2358"/><text x="6.5306%" y="255.50"></text></g><g><title>/app.slice (4,531 samples, 0.07%; +0.00%)</title><rect x="6.3260%" y="165" width="0.0685%" height="15" fill="rgb(255,242,242)" fg:x="418668" fg:w="4531"/><text x="6.5760%" y="175.50"></text></g><g><title>/cgroup (5,426 samples, 0.08%; +0.00%)</title><rect x="6.3175%" y="229" width="0.0820%" height="15" fill="rgb(255,242,242)" fg:x="418105" fg:w="5426"/><text x="6.5675%" y="239.50"></text></g><g><title>/user.slice (5,158 samples, 0.08%; +0.00%)</title><rect x="6.3216%" y="213" width="0.0779%" height="15" fill="rgb(255,242,242)" fg:x="418373" fg:w="5158"/><text x="6.5716%" y="223.50"></text></g><g><title>/user-1001.slice (4,969 samples, 0.08%; +0.00%)</title><rect x="6.3244%" y="197" width="0.0751%" height="15" fill="rgb(255,242,242)" fg:x="418562" fg:w="4969"/><text x="6.5744%" y="207.50"></text></g><g><title>/user@1001.service (4,933 samples, 0.07%; +0.00%)</title><rect x="6.3250%" y="181" width="0.0745%" height="15" fill="rgb(255,242,242)" fg:x="418598" fg:w="4933"/><text x="6.5750%" y="191.50"></text></g><g><title>/fs (5,466 samples, 0.08%; +0.00%)</title><rect x="6.3170%" y="245" width="0.0826%" height="15" fill="rgb(255,242,242)" fg:x="418072" fg:w="5466"/><text x="6.5670%" y="255.50"></text></g><g><title>/kernel (2,383 samples, 0.04%; +0.00%)</title><rect x="6.3996%" y="245" width="0.0360%" height="15" fill="rgb(255,242,242)" fg:x="423538" fg:w="2383"/><text x="6.6496%" y="255.50"></text></g><g><title>/tracing (1,680 samples, 0.03%; +0.00%)</title><rect x="6.4102%" y="229" width="0.0254%" height="15" fill="rgb(255,242,242)" fg:x="424241" fg:w="1680"/><text x="6.6602%" y="239.50"></text></g><g><title>/events (1,611 samples, 0.02%; +0.00%)</title><rect x="6.4113%" y="213" width="0.0243%" height="15" fill="rgb(255,242,242)" fg:x="424310" fg:w="1611"/><text x="6.6613%" y="223.50"></text></g><g><title>sys (11,376 samples, 0.17%; +0.00%)</title><rect x="6.2742%" y="261" width="0.1719%" height="15" fill="rgb(255,242,242)" fg:x="415236" fg:w="11376"/><text x="6.5242%" y="271.50"></text></g><g><title>/module (691 samples, 0.01%; +0.00%)</title><rect x="6.4356%" y="245" width="0.0104%" height="15" fill="rgb(255,242,242)" fg:x="425921" fg:w="691"/><text x="6.6856%" y="255.50"></text></g><g><title>/cargo-installCAQd8O (2,298 samples, 0.03%; 0.00%)</title><rect x="6.4798%" y="245" width="0.0347%" height="15" fill="rgb(250,250,250)" fg:x="428846" fg:w="2298"/><text x="6.7298%" y="255.50"></text></g><g><title>/release (2,298 samples, 0.03%; +0.00%)</title><rect x="6.4798%" y="229" width="0.0347%" height="15" fill="rgb(255,242,242)" fg:x="428846" fg:w="2298"/><text x="6.7298%" y="239.50"></text></g><g><title>/deps (1,480 samples, 0.02%; +0.00%)</title><rect x="6.4922%" y="213" width="0.0224%" height="15" fill="rgb(255,242,242)" fg:x="429664" fg:w="1480"/><text x="6.7422%" y="223.50"></text></g><g><title>tmp (2,896 samples, 0.04%; +0.00%)</title><rect x="6.4742%" y="261" width="0.0438%" height="15" fill="rgb(255,242,242)" fg:x="428472" fg:w="2896"/><text x="6.7242%" y="271.50"></text></g><g><title>/python3.13 (709 samples, 0.01%; +0.00%)</title><rect x="6.5903%" y="229" width="0.0107%" height="15" fill="rgb(255,242,242)" fg:x="436157" fg:w="709"/><text x="6.8403%" y="239.50"></text></g><g><title>/lib64 (4,524 samples, 0.07%; +0.00%)</title><rect x="6.5436%" y="245" width="0.0684%" height="15" fill="rgb(255,242,242)" fg:x="433069" fg:w="4524"/><text x="6.7936%" y="255.50"></text></g><g><title>/6.12.13-200.fc41.x86_64 (983 samples, 0.01%; +0.00%)</title><rect x="6.6391%" y="213" width="0.0149%" height="15" fill="rgb(255,242,242)" fg:x="439389" fg:w="983"/><text x="6.8891%" y="223.50"></text></g><g><title>/kernel (969 samples, 0.01%; +0.00%)</title><rect x="6.6393%" y="197" width="0.0146%" height="15" fill="rgb(255,242,242)" fg:x="439403" fg:w="969"/><text x="6.8893%" y="207.50"></text></g><g><title>/6.12.15-200.fc41.x86_64 (794 samples, 0.01%; +0.00%)</title><rect x="6.6540%" y="213" width="0.0120%" height="15" fill="rgb(255,242,242)" fg:x="440372" fg:w="794"/><text x="6.9040%" y="223.50"></text></g><g><title>/kernel (780 samples, 0.01%; +0.00%)</title><rect x="6.6542%" y="197" width="0.0118%" height="15" fill="rgb(255,242,242)" fg:x="440386" fg:w="780"/><text x="6.9042%" y="207.50"></text></g><g><title>/6.12.4-200.fc41.x86_64 (678 samples, 0.01%; +0.00%)</title><rect x="6.6660%" y="213" width="0.0102%" height="15" fill="rgb(255,242,242)" fg:x="441166" fg:w="678"/><text x="6.9160%" y="223.50"></text></g><g><title>/kernel (663 samples, 0.01%; +0.00%)</title><rect x="6.6662%" y="197" width="0.0100%" height="15" fill="rgb(255,242,242)" fg:x="441181" fg:w="663"/><text x="6.9162%" y="207.50"></text></g><g><title>/modules (2,495 samples, 0.04%; +0.00%)</title><rect x="6.6388%" y="229" width="0.0377%" height="15" fill="rgb(255,242,242)" fg:x="439369" fg:w="2495"/><text x="6.8888%" y="239.50"></text></g><g><title>/python3.13 (1,942 samples, 0.03%; +0.00%)</title><rect x="6.6860%" y="229" width="0.0293%" height="15" fill="rgb(255,242,242)" fg:x="442493" fg:w="1942"/><text x="6.9360%" y="239.50"></text></g><g><title>/site-packages (1,828 samples, 0.03%; +0.00%)</title><rect x="6.6877%" y="213" width="0.0276%" height="15" fill="rgb(255,242,242)" fg:x="442607" fg:w="1828"/><text x="6.9377%" y="223.50"></text></g><g><title>/rustlib (4,618 samples, 0.07%; 0.00%)</title><rect x="6.7189%" y="229" width="0.0698%" height="15" fill="rgb(250,250,250)" fg:x="444667" fg:w="4618"/><text x="6.9689%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (4,618 samples, 0.07%; +0.00%)</title><rect x="6.7189%" y="213" width="0.0698%" height="15" fill="rgb(255,242,242)" fg:x="444667" fg:w="4618"/><text x="6.9689%" y="223.50"></text></g><g><title>/lib (4,530 samples, 0.07%; +0.00%)</title><rect x="6.7202%" y="197" width="0.0684%" height="15" fill="rgb(255,242,242)" fg:x="444755" fg:w="4530"/><text x="6.9702%" y="207.50"></text></g><g><title>/lib (12,151 samples, 0.18%; 0.00%)</title><rect x="6.6120%" y="245" width="0.1836%" height="15" fill="rgb(250,250,250)" fg:x="437593" fg:w="12151"/><text x="6.8620%" y="255.50"></text></g><g><title>/aws-cli (1,056 samples, 0.02%; 0.00%)</title><rect x="6.7973%" y="229" width="0.0160%" height="15" fill="rgb(250,250,250)" fg:x="449861" fg:w="1056"/><text x="7.0473%" y="239.50"></text></g><g><title>/v2 (1,056 samples, 0.02%; +0.00%)</title><rect x="6.7973%" y="213" width="0.0160%" height="15" fill="rgb(255,242,242)" fg:x="449861" fg:w="1056"/><text x="7.0473%" y="223.50"></text></g><g><title>/2.13.13 (1,053 samples, 0.02%; +0.00%)</title><rect x="6.7974%" y="197" width="0.0159%" height="15" fill="rgb(255,242,242)" fg:x="449864" fg:w="1053"/><text x="7.0474%" y="207.50"></text></g><g><title>/dist (1,048 samples, 0.02%; +0.00%)</title><rect x="6.7975%" y="181" width="0.0158%" height="15" fill="rgb(255,242,242)" fg:x="449869" fg:w="1048"/><text x="7.0475%" y="191.50"></text></g><g><title>/awscli (1,026 samples, 0.02%; +0.00%)</title><rect x="6.7978%" y="165" width="0.0155%" height="15" fill="rgb(255,242,242)" fg:x="449891" fg:w="1026"/><text x="7.0478%" y="175.50"></text></g><g><title>/node_modules (813 samples, 0.01%; +0.00%)</title><rect x="6.8260%" y="181" width="0.0123%" height="15" fill="rgb(255,242,242)" fg:x="451759" fg:w="813"/><text x="7.0760%" y="191.50"></text></g><g><title>/node_modules (1,645 samples, 0.02%; +0.00%)</title><rect x="6.8136%" y="213" width="0.0249%" height="15" fill="rgb(255,242,242)" fg:x="450936" fg:w="1645"/><text x="7.0636%" y="223.50"></text></g><g><title>/thumbsup (925 samples, 0.01%; +0.00%)</title><rect x="6.8245%" y="197" width="0.0140%" height="15" fill="rgb(255,242,242)" fg:x="451656" fg:w="925"/><text x="7.0745%" y="207.50"></text></g><g><title>/lib (1,834 samples, 0.03%; +0.00%)</title><rect x="6.8133%" y="229" width="0.0277%" height="15" fill="rgb(255,242,242)" fg:x="450917" fg:w="1834"/><text x="7.0633%" y="239.50"></text></g><g><title>/local (3,010 samples, 0.05%; +0.00%)</title><rect x="6.7968%" y="245" width="0.0455%" height="15" fill="rgb(255,242,242)" fg:x="449827" fg:w="3010"/><text x="7.0468%" y="255.50"></text></g><g><title>/applications (854 samples, 0.01%; +0.00%)</title><rect x="6.8817%" y="229" width="0.0129%" height="15" fill="rgb(255,242,242)" fg:x="455444" fg:w="854"/><text x="7.1317%" y="239.50"></text></g><g><title>/doc (1,993 samples, 0.03%; +0.00%)</title><rect x="6.8999%" y="229" width="0.0301%" height="15" fill="rgb(255,242,242)" fg:x="456651" fg:w="1993"/><text x="7.1499%" y="239.50"></text></g><g><title>/gems (1,174 samples, 0.02%; +0.00%)</title><rect x="6.9345%" y="213" width="0.0177%" height="15" fill="rgb(255,242,242)" fg:x="458940" fg:w="1174"/><text x="7.1845%" y="223.50"></text></g><g><title>/gems (1,210 samples, 0.02%; +0.00%)</title><rect x="6.9340%" y="229" width="0.0183%" height="15" fill="rgb(255,242,242)" fg:x="458905" fg:w="1210"/><text x="7.1840%" y="239.50"></text></g><g><title>/aws-sdk-go-v2 (1,732 samples, 0.03%; +0.00%)</title><rect x="6.9660%" y="165" width="0.0262%" height="15" fill="rgb(255,242,242)" fg:x="461024" fg:w="1732"/><text x="7.2160%" y="175.50"></text></g><g><title>/service (1,210 samples, 0.02%; +0.00%)</title><rect x="6.9739%" y="149" width="0.0183%" height="15" fill="rgb(255,242,242)" fg:x="461546" fg:w="1210"/><text x="7.2239%" y="159.50"></text></g><g><title>/aws (2,403 samples, 0.04%; +0.00%)</title><rect x="6.9624%" y="181" width="0.0363%" height="15" fill="rgb(255,242,242)" fg:x="460782" fg:w="2403"/><text x="7.2124%" y="191.50"></text></g><g><title>/github.com (4,392 samples, 0.07%; +0.00%)</title><rect x="6.9587%" y="197" width="0.0664%" height="15" fill="rgb(255,242,242)" fg:x="460540" fg:w="4392"/><text x="7.2087%" y="207.50"></text></g><g><title>/google.golang.org (1,212 samples, 0.02%; +0.00%)</title><rect x="7.0357%" y="197" width="0.0183%" height="15" fill="rgb(255,242,242)" fg:x="465636" fg:w="1212"/><text x="7.2857%" y="207.50"></text></g><g><title>/gocode (7,278 samples, 0.11%; +0.00%)</title><rect x="6.9551%" y="229" width="0.1100%" height="15" fill="rgb(255,242,242)" fg:x="460302" fg:w="7278"/><text x="7.2051%" y="239.50"></text></g><g><title>/src (7,268 samples, 0.11%; +0.00%)</title><rect x="6.9553%" y="213" width="0.1098%" height="15" fill="rgb(255,242,242)" fg:x="460312" fg:w="7268"/><text x="7.2053%" y="223.50"></text></g><g><title>/help (1,186 samples, 0.02%; +0.00%)</title><rect x="7.0670%" y="229" width="0.0179%" height="15" fill="rgb(255,242,242)" fg:x="467709" fg:w="1186"/><text x="7.3170%" y="239.50"></text></g><g><title>/icons (743 samples, 0.01%; +0.00%)</title><rect x="7.0855%" y="229" width="0.0112%" height="15" fill="rgb(255,242,242)" fg:x="468932" fg:w="743"/><text x="7.3355%" y="239.50"></text></g><g><title>/licenses (790 samples, 0.01%; +0.00%)</title><rect x="7.0986%" y="229" width="0.0119%" height="15" fill="rgb(255,242,242)" fg:x="469798" fg:w="790"/><text x="7.3486%" y="239.50"></text></g><g><title>/locale (1,300 samples, 0.02%; +0.00%)</title><rect x="7.1105%" y="229" width="0.0196%" height="15" fill="rgb(255,242,242)" fg:x="470588" fg:w="1300"/><text x="7.3605%" y="239.50"></text></g><g><title>/texmf-dist (832 samples, 0.01%; +0.00%)</title><rect x="7.1519%" y="213" width="0.0126%" height="15" fill="rgb(255,242,242)" fg:x="473324" fg:w="832"/><text x="7.4019%" y="223.50"></text></g><g><title>/texlive (842 samples, 0.01%; +0.00%)</title><rect x="7.1518%" y="229" width="0.0127%" height="15" fill="rgb(255,242,242)" fg:x="473318" fg:w="842"/><text x="7.4018%" y="239.50"></text></g><g><title>/share (21,705 samples, 0.33%; +0.00%)</title><rect x="6.8423%" y="245" width="0.3280%" height="15" fill="rgb(255,242,242)" fg:x="452838" fg:w="21705"/><text x="7.0923%" y="255.50"></text></g><g><title>/drivers (881 samples, 0.01%; +0.00%)</title><rect x="7.1815%" y="197" width="0.0133%" height="15" fill="rgb(255,242,242)" fg:x="475288" fg:w="881"/><text x="7.4315%" y="207.50"></text></g><g><title>/6.12.13-200.fc41.x86_64 (2,252 samples, 0.03%; +0.00%)</title><rect x="7.1712%" y="213" width="0.0340%" height="15" fill="rgb(255,242,242)" fg:x="474601" fg:w="2252"/><text x="7.4212%" y="223.50"></text></g><g><title>/drivers (1,035 samples, 0.02%; +0.00%)</title><rect x="7.2166%" y="197" width="0.0156%" height="15" fill="rgb(255,242,242)" fg:x="477605" fg:w="1035"/><text x="7.4666%" y="207.50"></text></g><g><title>/6.12.15-200.fc41.x86_64 (3,011 samples, 0.05%; +0.00%)</title><rect x="7.2052%" y="213" width="0.0455%" height="15" fill="rgb(255,242,242)" fg:x="476853" fg:w="3011"/><text x="7.4552%" y="223.50"></text></g><g><title>/drivers (1,175 samples, 0.02%; +0.00%)</title><rect x="7.2647%" y="197" width="0.0178%" height="15" fill="rgb(255,242,242)" fg:x="480789" fg:w="1175"/><text x="7.5147%" y="207.50"></text></g><g><title>/src (8,129 samples, 0.12%; +0.00%)</title><rect x="7.1703%" y="245" width="0.1228%" height="15" fill="rgb(255,242,242)" fg:x="474543" fg:w="8129"/><text x="7.4203%" y="255.50"></text></g><g><title>/kernels (8,116 samples, 0.12%; +0.00%)</title><rect x="7.1705%" y="229" width="0.1226%" height="15" fill="rgb(255,242,242)" fg:x="474556" fg:w="8116"/><text x="7.4205%" y="239.50"></text></g><g><title>/6.12.4-200.fc41.x86_64 (2,808 samples, 0.04%; +0.00%)</title><rect x="7.2507%" y="213" width="0.0424%" height="15" fill="rgb(255,242,242)" fg:x="479864" fg:w="2808"/><text x="7.5007%" y="223.50"></text></g><g><title>usr (51,393 samples, 0.78%; +0.00%)</title><rect x="6.5181%" y="261" width="0.7765%" height="15" fill="rgb(255,242,242)" fg:x="431379" fg:w="51393"/><text x="6.7681%" y="271.50"></text></g><g><title>/dkms (939 samples, 0.01%; 0.00%)</title><rect x="7.3035%" y="229" width="0.0142%" height="15" fill="rgb(250,250,250)" fg:x="483361" fg:w="939"/><text x="7.5535%" y="239.50"></text></g><g><title>/zfs (939 samples, 0.01%; +0.00%)</title><rect x="7.3035%" y="213" width="0.0142%" height="15" fill="rgb(255,242,242)" fg:x="483361" fg:w="939"/><text x="7.5535%" y="223.50"></text></g><g><title>/2.2.2 (920 samples, 0.01%; +0.00%)</title><rect x="7.3038%" y="197" width="0.0139%" height="15" fill="rgb(255,242,242)" fg:x="483380" fg:w="920"/><text x="7.5538%" y="207.50"></text></g><g><title>/build (905 samples, 0.01%; +0.00%)</title><rect x="7.3040%" y="181" width="0.0137%" height="15" fill="rgb(255,242,242)" fg:x="483395" fg:w="905"/><text x="7.5540%" y="191.50"></text></g><g><title>/locale (1,071 samples, 0.02%; +0.00%)</title><rect x="7.3780%" y="149" width="0.0162%" height="15" fill="rgb(255,242,242)" fg:x="488288" fg:w="1071"/><text x="7.6280%" y="159.50"></text></g><g><title>/org.fedoraproject.Platform-86a7f22289874e9337d71e77b9e18fca3f9cfcb8ccdcc9a5570f494b0acc6d35 (5,003 samples, 0.08%; +0.00%)</title><rect x="7.3268%" y="197" width="0.0756%" height="15" fill="rgb(255,242,242)" fg:x="484904" fg:w="5003"/><text x="7.5768%" y="207.50"></text></g><g><title>/files (4,974 samples, 0.08%; +0.00%)</title><rect x="7.3273%" y="181" width="0.0752%" height="15" fill="rgb(255,242,242)" fg:x="484933" fg:w="4974"/><text x="7.5773%" y="191.50"></text></g><g><title>/share (3,356 samples, 0.05%; +0.00%)</title><rect x="7.3517%" y="165" width="0.0507%" height="15" fill="rgb(255,242,242)" fg:x="486551" fg:w="3356"/><text x="7.6017%" y="175.50"></text></g><g><title>/locale (1,085 samples, 0.02%; +0.00%)</title><rect x="7.4569%" y="149" width="0.0164%" height="15" fill="rgb(255,242,242)" fg:x="493514" fg:w="1085"/><text x="7.7069%" y="159.50"></text></g><g><title>/org.fedoraproject.Platform-f4758bb5b5bb66fde7e19cd3de452b3e25a8212e04bd7ca2f7d6dd6db5384178 (5,104 samples, 0.08%; +0.00%)</title><rect x="7.4024%" y="197" width="0.0771%" height="15" fill="rgb(255,242,242)" fg:x="489907" fg:w="5104"/><text x="7.6524%" y="207.50"></text></g><g><title>/files (5,033 samples, 0.08%; +0.00%)</title><rect x="7.4035%" y="181" width="0.0760%" height="15" fill="rgb(255,242,242)" fg:x="489978" fg:w="5033"/><text x="7.6535%" y="191.50"></text></g><g><title>/share (3,393 samples, 0.05%; +0.00%)</title><rect x="7.4283%" y="165" width="0.0513%" height="15" fill="rgb(255,242,242)" fg:x="491618" fg:w="3393"/><text x="7.6783%" y="175.50"></text></g><g><title>/.removed (11,960 samples, 0.18%; +0.00%)</title><rect x="7.3225%" y="213" width="0.1807%" height="15" fill="rgb(255,242,242)" fg:x="484614" fg:w="11960"/><text x="7.5725%" y="223.50"></text></g><g><title>/org.freedesktop.Platform-7843a03291593f58bfd4583eaa48b65198be8a84ecd1a5885d0d65920d3a22a6 (1,563 samples, 0.02%; +0.00%)</title><rect x="7.4796%" y="197" width="0.0236%" height="15" fill="rgb(255,242,242)" fg:x="495011" fg:w="1563"/><text x="7.7296%" y="207.50"></text></g><g><title>/files (1,471 samples, 0.02%; +0.00%)</title><rect x="7.4809%" y="181" width="0.0222%" height="15" fill="rgb(255,242,242)" fg:x="495103" fg:w="1471"/><text x="7.7309%" y="191.50"></text></g><g><title>/share (682 samples, 0.01%; +0.00%)</title><rect x="7.4929%" y="165" width="0.0103%" height="15" fill="rgb(255,242,242)" fg:x="495892" fg:w="682"/><text x="7.7429%" y="175.50"></text></g><g><title>/icons (1,134 samples, 0.02%; +0.00%)</title><rect x="7.5358%" y="53" width="0.0171%" height="15" fill="rgb(255,242,242)" fg:x="498732" fg:w="1134"/><text x="7.7858%" y="63.50"></text></g><g><title>/extra (1,719 samples, 0.03%; +0.00%)</title><rect x="7.5270%" y="117" width="0.0260%" height="15" fill="rgb(255,242,242)" fg:x="498149" fg:w="1719"/><text x="7.7770%" y="127.50"></text></g><g><title>/squashfs-root (1,705 samples, 0.03%; +0.00%)</title><rect x="7.5272%" y="101" width="0.0258%" height="15" fill="rgb(255,242,242)" fg:x="498163" fg:w="1705"/><text x="7.7772%" y="111.50"></text></g><g><title>/usr (1,632 samples, 0.02%; +0.00%)</title><rect x="7.5283%" y="85" width="0.0247%" height="15" fill="rgb(255,242,242)" fg:x="498236" fg:w="1632"/><text x="7.7783%" y="95.50"></text></g><g><title>/share (1,541 samples, 0.02%; +0.00%)</title><rect x="7.5297%" y="69" width="0.0233%" height="15" fill="rgb(255,242,242)" fg:x="498327" fg:w="1541"/><text x="7.7797%" y="79.50"></text></g><g><title>/com.skype.Client (1,914 samples, 0.03%; +0.00%)</title><rect x="7.5262%" y="197" width="0.0289%" height="15" fill="rgb(255,242,242)" fg:x="498096" fg:w="1914"/><text x="7.7762%" y="207.50"></text></g><g><title>/x86_64 (1,909 samples, 0.03%; +0.00%)</title><rect x="7.5262%" y="181" width="0.0288%" height="15" fill="rgb(255,242,242)" fg:x="498101" fg:w="1909"/><text x="7.7762%" y="191.50"></text></g><g><title>/stable (1,907 samples, 0.03%; +0.00%)</title><rect x="7.5263%" y="165" width="0.0288%" height="15" fill="rgb(255,242,242)" fg:x="498103" fg:w="1907"/><text x="7.7763%" y="175.50"></text></g><g><title>/8d6afef0ebe77e930fc17a7dee513983440a8f4c7fea30f70ed38c8d0ddc5129 (1,905 samples, 0.03%; +0.00%)</title><rect x="7.5263%" y="149" width="0.0288%" height="15" fill="rgb(255,242,242)" fg:x="498105" fg:w="1905"/><text x="7.7763%" y="159.50"></text></g><g><title>/files (1,889 samples, 0.03%; +0.00%)</title><rect x="7.5266%" y="133" width="0.0285%" height="15" fill="rgb(255,242,242)" fg:x="498121" fg:w="1889"/><text x="7.7766%" y="143.50"></text></g><g><title>/org.darktable.Darktable (883 samples, 0.01%; +0.00%)</title><rect x="7.5868%" y="197" width="0.0133%" height="15" fill="rgb(255,242,242)" fg:x="502111" fg:w="883"/><text x="7.8368%" y="207.50"></text></g><g><title>/x86_64 (875 samples, 0.01%; +0.00%)</title><rect x="7.5870%" y="181" width="0.0132%" height="15" fill="rgb(255,242,242)" fg:x="502119" fg:w="875"/><text x="7.8370%" y="191.50"></text></g><g><title>/stable (873 samples, 0.01%; +0.00%)</title><rect x="7.5870%" y="165" width="0.0132%" height="15" fill="rgb(255,242,242)" fg:x="502121" fg:w="873"/><text x="7.8370%" y="175.50"></text></g><g><title>/460566e612e4cc537e53cb26bc8c2f8fc91082984e0527a8511b302b448879f0 (871 samples, 0.01%; +0.00%)</title><rect x="7.5870%" y="149" width="0.0132%" height="15" fill="rgb(255,242,242)" fg:x="502123" fg:w="871"/><text x="7.8370%" y="159.50"></text></g><g><title>/files (836 samples, 0.01%; +0.00%)</title><rect x="7.5875%" y="133" width="0.0126%" height="15" fill="rgb(255,242,242)" fg:x="502158" fg:w="836"/><text x="7.8375%" y="143.50"></text></g><g><title>/org.inkscape.Inkscape (954 samples, 0.01%; +0.00%)</title><rect x="7.6273%" y="197" width="0.0144%" height="15" fill="rgb(255,242,242)" fg:x="504792" fg:w="954"/><text x="7.8773%" y="207.50"></text></g><g><title>/x86_64 (948 samples, 0.01%; 0.00%)</title><rect x="7.6274%" y="181" width="0.0143%" height="15" fill="rgb(250,250,250)" fg:x="504798" fg:w="948"/><text x="7.8774%" y="191.50"></text></g><g><title>/stable (948 samples, 0.01%; +0.00%)</title><rect x="7.6274%" y="165" width="0.0143%" height="15" fill="rgb(255,242,242)" fg:x="504798" fg:w="948"/><text x="7.8774%" y="175.50"></text></g><g><title>/ae598748b4cdc7fb061c1de1dd7c10c9bde28779e94e91e0ce3dfb92aaf894a0 (947 samples, 0.01%; +0.00%)</title><rect x="7.6275%" y="149" width="0.0143%" height="15" fill="rgb(255,242,242)" fg:x="504799" fg:w="947"/><text x="7.8775%" y="159.50"></text></g><g><title>/files (938 samples, 0.01%; +0.00%)</title><rect x="7.6276%" y="133" width="0.0142%" height="15" fill="rgb(255,242,242)" fg:x="504808" fg:w="938"/><text x="7.8776%" y="143.50"></text></g><g><title>/app (10,024 samples, 0.15%; +0.00%)</title><rect x="7.5032%" y="213" width="0.1515%" height="15" fill="rgb(255,242,242)" fg:x="496574" fg:w="10024"/><text x="7.7532%" y="223.50"></text></g><g><title>/objects (688 samples, 0.01%; +0.00%)</title><rect x="7.6597%" y="197" width="0.0104%" height="15" fill="rgb(255,242,242)" fg:x="506934" fg:w="688"/><text x="7.9097%" y="207.50"></text></g><g><title>/repo (1,120 samples, 0.02%; +0.00%)</title><rect x="7.6580%" y="213" width="0.0169%" height="15" fill="rgb(255,242,242)" fg:x="506821" fg:w="1120"/><text x="7.9080%" y="223.50"></text></g><g><title>/icons (754 samples, 0.01%; +0.00%)</title><rect x="7.7210%" y="101" width="0.0114%" height="15" fill="rgb(255,242,242)" fg:x="510987" fg:w="754"/><text x="7.9710%" y="111.50"></text></g><g><title>/locale (1,452 samples, 0.02%; +0.00%)</title><rect x="7.7380%" y="101" width="0.0219%" height="15" fill="rgb(255,242,242)" fg:x="512117" fg:w="1452"/><text x="7.9880%" y="111.50"></text></g><g><title>/a307c5578f3f598ea8fb09c6e859a452a46dc2f76ea108b0461f09cbf44489a4 (5,553 samples, 0.08%; +0.00%)</title><rect x="7.6803%" y="149" width="0.0839%" height="15" fill="rgb(255,242,242)" fg:x="508298" fg:w="5553"/><text x="7.9303%" y="159.50"></text></g><g><title>/files (5,535 samples, 0.08%; +0.00%)</title><rect x="7.6806%" y="133" width="0.0836%" height="15" fill="rgb(255,242,242)" fg:x="508316" fg:w="5535"/><text x="7.9306%" y="143.50"></text></g><g><title>/share (3,843 samples, 0.06%; +0.00%)</title><rect x="7.7062%" y="117" width="0.0581%" height="15" fill="rgb(255,242,242)" fg:x="510008" fg:w="3843"/><text x="7.9562%" y="127.50"></text></g><g><title>/org.fedoraproject.KDE5Platform (5,574 samples, 0.08%; +0.00%)</title><rect x="7.6800%" y="197" width="0.0842%" height="15" fill="rgb(255,242,242)" fg:x="508278" fg:w="5574"/><text x="7.9300%" y="207.50"></text></g><g><title>/x86_64 (5,562 samples, 0.08%; +0.00%)</title><rect x="7.6802%" y="181" width="0.0840%" height="15" fill="rgb(255,242,242)" fg:x="508290" fg:w="5562"/><text x="7.9302%" y="191.50"></text></g><g><title>/f41 (5,558 samples, 0.08%; +0.00%)</title><rect x="7.6803%" y="165" width="0.0840%" height="15" fill="rgb(255,242,242)" fg:x="508294" fg:w="5558"/><text x="7.9303%" y="175.50"></text></g><g><title>/locale (1,013 samples, 0.02%; +0.00%)</title><rect x="7.8196%" y="101" width="0.0153%" height="15" fill="rgb(255,242,242)" fg:x="517513" fg:w="1013"/><text x="8.0696%" y="111.50"></text></g><g><title>/org.fedoraproject.Platform (5,050 samples, 0.08%; 0.00%)</title><rect x="7.7657%" y="197" width="0.0763%" height="15" fill="rgb(250,250,250)" fg:x="513950" fg:w="5050"/><text x="8.0157%" y="207.50"></text></g><g><title>/x86_64 (5,050 samples, 0.08%; +0.00%)</title><rect x="7.7657%" y="181" width="0.0763%" height="15" fill="rgb(255,242,242)" fg:x="513950" fg:w="5050"/><text x="8.0157%" y="191.50"></text></g><g><title>/f41 (5,047 samples, 0.08%; 0.00%)</title><rect x="7.7658%" y="165" width="0.0763%" height="15" fill="rgb(250,250,250)" fg:x="513953" fg:w="5047"/><text x="8.0158%" y="175.50"></text></g><g><title>/ae556c8963ab16733201f7fedbff75e445596a5ca0607901350d25da1e7ec583 (5,046 samples, 0.08%; +0.00%)</title><rect x="7.7658%" y="149" width="0.0762%" height="15" fill="rgb(255,242,242)" fg:x="513954" fg:w="5046"/><text x="8.0158%" y="159.50"></text></g><g><title>/files (5,006 samples, 0.08%; +0.00%)</title><rect x="7.7664%" y="133" width="0.0756%" height="15" fill="rgb(255,242,242)" fg:x="513994" fg:w="5006"/><text x="8.0164%" y="143.50"></text></g><g><title>/share (3,619 samples, 0.05%; +0.00%)</title><rect x="7.7873%" y="117" width="0.0547%" height="15" fill="rgb(255,242,242)" fg:x="515381" fg:w="3619"/><text x="8.0373%" y="127.50"></text></g><g><title>/507806048b865751a58580843c9dd77983fea138f268f1fb442474c9d4c46051 (1,248 samples, 0.02%; +0.00%)</title><rect x="7.8515%" y="149" width="0.0189%" height="15" fill="rgb(255,242,242)" fg:x="519630" fg:w="1248"/><text x="8.1015%" y="159.50"></text></g><g><title>/files (1,232 samples, 0.02%; +0.00%)</title><rect x="7.8518%" y="133" width="0.0186%" height="15" fill="rgb(255,242,242)" fg:x="519646" fg:w="1232"/><text x="8.1018%" y="143.50"></text></g><g><title>/23.08 (1,260 samples, 0.02%; +0.00%)</title><rect x="7.8514%" y="165" width="0.0190%" height="15" fill="rgb(255,242,242)" fg:x="519619" fg:w="1260"/><text x="8.1014%" y="175.50"></text></g><g><title>/org.freedesktop.Platform (2,484 samples, 0.04%; 0.00%)</title><rect x="7.8513%" y="197" width="0.0375%" height="15" fill="rgb(250,250,250)" fg:x="519614" fg:w="2484"/><text x="8.1013%" y="207.50"></text></g><g><title>/x86_64 (2,484 samples, 0.04%; +0.00%)</title><rect x="7.8513%" y="181" width="0.0375%" height="15" fill="rgb(255,242,242)" fg:x="519614" fg:w="2484"/><text x="8.1013%" y="191.50"></text></g><g><title>/24.08 (1,219 samples, 0.02%; +0.00%)</title><rect x="7.8704%" y="165" width="0.0184%" height="15" fill="rgb(255,242,242)" fg:x="520879" fg:w="1219"/><text x="8.1204%" y="175.50"></text></g><g><title>/e19e98535fa3b6876c79434e62c684a0169782c7f3ac57a1daa32c61f09f24e6 (1,193 samples, 0.02%; +0.00%)</title><rect x="7.8708%" y="149" width="0.0180%" height="15" fill="rgb(255,242,242)" fg:x="520905" fg:w="1193"/><text x="8.1208%" y="159.50"></text></g><g><title>/files (1,171 samples, 0.02%; +0.00%)</title><rect x="7.8711%" y="133" width="0.0177%" height="15" fill="rgb(255,242,242)" fg:x="520927" fg:w="1171"/><text x="8.1211%" y="143.50"></text></g><g><title>/lib (1,199 samples, 0.02%; +0.00%)</title><rect x="7.8925%" y="117" width="0.0181%" height="15" fill="rgb(255,242,242)" fg:x="522339" fg:w="1199"/><text x="8.1425%" y="127.50"></text></g><g><title>/547c38809093f20a153446421224c4d197bc8ce24d3c5cdd4bab978bbf9b3c83 (2,305 samples, 0.03%; +0.00%)</title><rect x="7.8905%" y="149" width="0.0348%" height="15" fill="rgb(255,242,242)" fg:x="522209" fg:w="2305"/><text x="8.1405%" y="159.50"></text></g><g><title>/files (2,287 samples, 0.03%; +0.00%)</title><rect x="7.8908%" y="133" width="0.0346%" height="15" fill="rgb(255,242,242)" fg:x="522227" fg:w="2287"/><text x="8.1408%" y="143.50"></text></g><g><title>/share (976 samples, 0.01%; +0.00%)</title><rect x="7.9106%" y="117" width="0.0147%" height="15" fill="rgb(255,242,242)" fg:x="523538" fg:w="976"/><text x="8.1606%" y="127.50"></text></g><g><title>/45 (2,310 samples, 0.03%; +0.00%)</title><rect x="7.8905%" y="165" width="0.0349%" height="15" fill="rgb(255,242,242)" fg:x="522206" fg:w="2310"/><text x="8.1405%" y="175.50"></text></g><g><title>/lib (667 samples, 0.01%; +0.00%)</title><rect x="7.9285%" y="117" width="0.0101%" height="15" fill="rgb(255,242,242)" fg:x="524723" fg:w="667"/><text x="8.1785%" y="127.50"></text></g><g><title>/46 (1,771 samples, 0.03%; +0.00%)</title><rect x="7.9254%" y="165" width="0.0268%" height="15" fill="rgb(255,242,242)" fg:x="524516" fg:w="1771"/><text x="8.1754%" y="175.50"></text></g><g><title>/cfb8e628b58092ca709a7ea19212ee6718294bc34ace6a208d10129c7110ecd1 (1,744 samples, 0.03%; +0.00%)</title><rect x="7.9258%" y="149" width="0.0264%" height="15" fill="rgb(255,242,242)" fg:x="524543" fg:w="1744"/><text x="8.1758%" y="159.50"></text></g><g><title>/files (1,723 samples, 0.03%; +0.00%)</title><rect x="7.9261%" y="133" width="0.0260%" height="15" fill="rgb(255,242,242)" fg:x="524564" fg:w="1723"/><text x="8.1761%" y="143.50"></text></g><g><title>/share (896 samples, 0.01%; +0.00%)</title><rect x="7.9386%" y="117" width="0.0135%" height="15" fill="rgb(255,242,242)" fg:x="525391" fg:w="896"/><text x="8.1886%" y="127.50"></text></g><g><title>/lib (691 samples, 0.01%; +0.00%)</title><rect x="7.9553%" y="117" width="0.0104%" height="15" fill="rgb(255,242,242)" fg:x="526495" fg:w="691"/><text x="8.2053%" y="127.50"></text></g><g><title>/5ff2808fa1d5b7e8ad77cd2b178e1f22f5d196c1ec888324b729d8a1d9e6f372 (1,658 samples, 0.03%; +0.00%)</title><rect x="7.9524%" y="149" width="0.0251%" height="15" fill="rgb(255,242,242)" fg:x="526307" fg:w="1658"/><text x="8.2024%" y="159.50"></text></g><g><title>/files (1,642 samples, 0.02%; +0.00%)</title><rect x="7.9527%" y="133" width="0.0248%" height="15" fill="rgb(255,242,242)" fg:x="526323" fg:w="1642"/><text x="8.2027%" y="143.50"></text></g><g><title>/share (779 samples, 0.01%; +0.00%)</title><rect x="7.9657%" y="117" width="0.0118%" height="15" fill="rgb(255,242,242)" fg:x="527186" fg:w="779"/><text x="8.2157%" y="127.50"></text></g><g><title>/org.gnome.Platform (5,770 samples, 0.09%; 0.00%)</title><rect x="7.8903%" y="197" width="0.0872%" height="15" fill="rgb(250,250,250)" fg:x="522196" fg:w="5770"/><text x="8.1403%" y="207.50"></text></g><g><title>/x86_64 (5,770 samples, 0.09%; +0.00%)</title><rect x="7.8903%" y="181" width="0.0872%" height="15" fill="rgb(255,242,242)" fg:x="522196" fg:w="5770"/><text x="8.1403%" y="191.50"></text></g><g><title>/47 (1,679 samples, 0.03%; +0.00%)</title><rect x="7.9521%" y="165" width="0.0254%" height="15" fill="rgb(255,242,242)" fg:x="526287" fg:w="1679"/><text x="8.2021%" y="175.50"></text></g><g><title>/lib (1,339 samples, 0.02%; +0.00%)</title><rect x="7.9831%" y="117" width="0.0202%" height="15" fill="rgb(255,242,242)" fg:x="528333" fg:w="1339"/><text x="8.2331%" y="127.50"></text></g><g><title>/25b14a26740d8b58b3e27a03dfd3c08cdbdebf58d9ee55222577fe6c9ef1d494 (3,359 samples, 0.05%; +0.00%)</title><rect x="7.9800%" y="149" width="0.0508%" height="15" fill="rgb(255,242,242)" fg:x="528134" fg:w="3359"/><text x="8.2300%" y="159.50"></text></g><g><title>/files (3,348 samples, 0.05%; +0.00%)</title><rect x="7.9802%" y="133" width="0.0506%" height="15" fill="rgb(255,242,242)" fg:x="528145" fg:w="3348"/><text x="8.2302%" y="143.50"></text></g><g><title>/share (1,821 samples, 0.03%; +0.00%)</title><rect x="8.0033%" y="117" width="0.0275%" height="15" fill="rgb(255,242,242)" fg:x="529672" fg:w="1821"/><text x="8.2533%" y="127.50"></text></g><g><title>/5.15-24.08 (3,371 samples, 0.05%; +0.00%)</title><rect x="7.9799%" y="165" width="0.0509%" height="15" fill="rgb(255,242,242)" fg:x="528123" fg:w="3371"/><text x="8.2299%" y="175.50"></text></g><g><title>/4c0aecd4c103a394ba7a3cff247d4744b6bfdc0e54947f748d887841dd57c151 (2,328 samples, 0.04%; +0.00%)</title><rect x="8.0308%" y="149" width="0.0352%" height="15" fill="rgb(255,242,242)" fg:x="531496" fg:w="2328"/><text x="8.2808%" y="159.50"></text></g><g><title>/files (2,308 samples, 0.03%; +0.00%)</title><rect x="8.0311%" y="133" width="0.0349%" height="15" fill="rgb(255,242,242)" fg:x="531516" fg:w="2308"/><text x="8.2811%" y="143.50"></text></g><g><title>/share (1,266 samples, 0.02%; +0.00%)</title><rect x="8.0469%" y="117" width="0.0191%" height="15" fill="rgb(255,242,242)" fg:x="532558" fg:w="1266"/><text x="8.2969%" y="127.50"></text></g><g><title>/org.kde.Platform (5,738 samples, 0.09%; 0.00%)</title><rect x="7.9793%" y="197" width="0.0867%" height="15" fill="rgb(250,250,250)" fg:x="528087" fg:w="5738"/><text x="8.2293%" y="207.50"></text></g><g><title>/x86_64 (5,738 samples, 0.09%; +0.00%)</title><rect x="7.9793%" y="181" width="0.0867%" height="15" fill="rgb(255,242,242)" fg:x="528087" fg:w="5738"/><text x="8.2293%" y="191.50"></text></g><g><title>/6.7 (2,331 samples, 0.04%; +0.00%)</title><rect x="8.0308%" y="165" width="0.0352%" height="15" fill="rgb(255,242,242)" fg:x="531494" fg:w="2331"/><text x="8.2808%" y="175.50"></text></g><g><title>/flatpak (49,627 samples, 0.75%; +0.00%)</title><rect x="7.3186%" y="229" width="0.7499%" height="15" fill="rgb(255,242,242)" fg:x="484356" fg:w="49627"/><text x="7.5686%" y="239.50"></text></g><g><title>/runtime (26,042 samples, 0.39%; +0.00%)</title><rect x="7.6749%" y="213" width="0.3935%" height="15" fill="rgb(255,242,242)" fg:x="507941" fg:w="26042"/><text x="7.9249%" y="223.50"></text></g><g><title>/usr (1,369 samples, 0.02%; +0.00%)</title><rect x="8.0708%" y="165" width="0.0207%" height="15" fill="rgb(255,242,242)" fg:x="534143" fg:w="1369"/><text x="8.3208%" y="175.50"></text></g><g><title>/share (760 samples, 0.01%; +0.00%)</title><rect x="8.0800%" y="149" width="0.0115%" height="15" fill="rgb(255,242,242)" fg:x="534752" fg:w="760"/><text x="8.3300%" y="159.50"></text></g><g><title>/core20 (1,454 samples, 0.02%; +0.00%)</title><rect x="8.0697%" y="197" width="0.0220%" height="15" fill="rgb(255,242,242)" fg:x="534070" fg:w="1454"/><text x="8.3197%" y="207.50"></text></g><g><title>/2434 (1,423 samples, 0.02%; +0.00%)</title><rect x="8.0702%" y="181" width="0.0215%" height="15" fill="rgb(255,242,242)" fg:x="534101" fg:w="1423"/><text x="8.3202%" y="191.50"></text></g><g><title>/snapd (2,952 samples, 0.04%; +0.00%)</title><rect x="8.0694%" y="229" width="0.0446%" height="15" fill="rgb(255,242,242)" fg:x="534049" fg:w="2952"/><text x="8.3194%" y="239.50"></text></g><g><title>/snap (2,935 samples, 0.04%; +0.00%)</title><rect x="8.0697%" y="213" width="0.0443%" height="15" fill="rgb(255,242,242)" fg:x="534066" fg:w="2935"/><text x="8.3197%" y="223.50"></text></g><g><title>/vscode-json-languageserver (1,422 samples, 0.02%; +0.00%)</title><rect x="8.0925%" y="197" width="0.0215%" height="15" fill="rgb(255,242,242)" fg:x="535579" fg:w="1422"/><text x="8.3425%" y="207.50"></text></g><g><title>/464 (1,399 samples, 0.02%; +0.00%)</title><rect x="8.0929%" y="181" width="0.0211%" height="15" fill="rgb(255,242,242)" fg:x="535602" fg:w="1399"/><text x="8.3429%" y="191.50"></text></g><g><title>/lib (53,803 samples, 0.81%; +0.00%)</title><rect x="7.3011%" y="245" width="0.8130%" height="15" fill="rgb(255,242,242)" fg:x="483201" fg:w="53803"/><text x="7.5511%" y="255.50"></text></g><g><title>syscall`close (527,906 samples, 7.98%)</title><rect x="0.1388%" y="277" width="7.9766%" height="15" fill="rgb(230,102,28)" fg:x="9186" fg:w="527906"/><text x="0.3888%" y="287.50">syscall`clo..</text></g><g><title>var (54,320 samples, 0.82%; +0.00%)</title><rect x="7.2946%" y="261" width="0.8208%" height="15" fill="rgb(255,242,242)" fg:x="482772" fg:w="54320"/><text x="7.5446%" y="271.50"></text></g><g><title>usr (1,271 samples, 0.02%; 0.00%)</title><rect x="8.1212%" y="261" width="0.0192%" height="15" fill="rgb(250,250,250)" fg:x="537476" fg:w="1271"/><text x="8.3712%" y="271.50"></text></g><g><title>syscall`execve (1,637 samples, 0.02%; 0.00%)</title><rect x="8.1157%" y="277" width="0.0247%" height="15" fill="rgb(250,250,250)" fg:x="537111" fg:w="1637"/><text x="8.3657%" y="287.50"></text></g><g><title>/brave (872 samples, 0.01%; +0.00%)</title><rect x="8.1407%" y="245" width="0.0132%" height="15" fill="rgb(255,242,242)" fg:x="538769" fg:w="872"/><text x="8.3907%" y="255.50"></text></g><g><title>app (1,423 samples, 0.02%; 0.00%)</title><rect x="8.1407%" y="261" width="0.0215%" height="15" fill="rgb(250,250,250)" fg:x="538769" fg:w="1423"/><text x="8.3907%" y="271.50"></text></g><g><title>syscall`faccessat2 (1,778 samples, 0.03%; 0.00%)</title><rect x="8.1404%" y="277" width="0.0269%" height="15" fill="rgb(250,250,250)" fg:x="538748" fg:w="1778"/><text x="8.3904%" y="287.50"></text></g><g><title>. (395,749 samples, 5.98%; +0.00%)</title><rect x="8.1794%" y="261" width="5.9797%" height="15" fill="rgb(255,242,242)" fg:x="541329" fg:w="395749"/><text x="8.4294%" y="271.50">.</text></g><g><title>dev (1,007 samples, 0.02%; +0.00%)</title><rect x="14.1592%" y="261" width="0.0152%" height="15" fill="rgb(255,242,242)" fg:x="937082" fg:w="1007"/><text x="14.4092%" y="271.50"></text></g><g><title>/gopls (710 samples, 0.01%; +0.00%)</title><rect x="14.2090%" y="213" width="0.0107%" height="15" fill="rgb(255,242,242)" fg:x="940381" fg:w="710"/><text x="14.4590%" y="223.50"></text></g><g><title>/.cache (2,469 samples, 0.04%; +0.00%)</title><rect x="14.1921%" y="229" width="0.0373%" height="15" fill="rgb(255,242,242)" fg:x="939261" fg:w="2469"/><text x="14.4421%" y="239.50"></text></g><g><title>/index.crates.io-1949cf8c6b5b557f (1,014 samples, 0.02%; +0.00%)</title><rect x="14.2450%" y="181" width="0.0153%" height="15" fill="rgb(255,242,242)" fg:x="942758" fg:w="1014"/><text x="14.4950%" y="191.50"></text></g><g><title>/.cargo (5,055 samples, 0.08%; +0.00%)</title><rect x="14.2294%" y="229" width="0.0764%" height="15" fill="rgb(255,242,242)" fg:x="941730" fg:w="5055"/><text x="14.4794%" y="239.50"></text></g><g><title>/registry (4,716 samples, 0.07%; +0.00%)</title><rect x="14.2346%" y="213" width="0.0713%" height="15" fill="rgb(255,242,242)" fg:x="942069" fg:w="4716"/><text x="14.4846%" y="223.50"></text></g><g><title>/src (4,399 samples, 0.07%; +0.00%)</title><rect x="14.2393%" y="197" width="0.0665%" height="15" fill="rgb(255,242,242)" fg:x="942386" fg:w="4399"/><text x="14.4893%" y="207.50"></text></g><g><title>/index.crates.io-6f17d22bba15001f (3,013 samples, 0.05%; +0.00%)</title><rect x="14.2603%" y="181" width="0.0455%" height="15" fill="rgb(255,242,242)" fg:x="943772" fg:w="3013"/><text x="14.5103%" y="191.50"></text></g><g><title>/.config (850 samples, 0.01%; +0.00%)</title><rect x="14.3058%" y="229" width="0.0128%" height="15" fill="rgb(255,242,242)" fg:x="946785" fg:w="850"/><text x="14.5558%" y="239.50"></text></g><g><title>/lib (695 samples, 0.01%; +0.00%)</title><rect x="14.3207%" y="213" width="0.0105%" height="15" fill="rgb(255,242,242)" fg:x="947773" fg:w="695"/><text x="14.5707%" y="223.50"></text></g><g><title>/.cpan (1,268 samples, 0.02%; +0.00%)</title><rect x="14.3321%" y="197" width="0.0192%" height="15" fill="rgb(255,242,242)" fg:x="948523" fg:w="1268"/><text x="14.5821%" y="207.50"></text></g><g><title>/build (1,153 samples, 0.02%; +0.00%)</title><rect x="14.3338%" y="181" width="0.0174%" height="15" fill="rgb(255,242,242)" fg:x="948638" fg:w="1153"/><text x="14.5838%" y="191.50"></text></g><g><title>/espressif (828 samples, 0.01%; +0.00%)</title><rect x="14.3631%" y="69" width="0.0125%" height="15" fill="rgb(255,242,242)" fg:x="950577" fg:w="828"/><text x="14.6131%" y="79.50"></text></g><g><title>/hal (1,457 samples, 0.02%; +0.00%)</title><rect x="14.3600%" y="85" width="0.0220%" height="15" fill="rgb(255,242,242)" fg:x="950368" fg:w="1457"/><text x="14.6100%" y="95.50"></text></g><g><title>/modules (2,713 samples, 0.04%; +0.00%)</title><rect x="14.3579%" y="101" width="0.0410%" height="15" fill="rgb(255,242,242)" fg:x="950231" fg:w="2713"/><text x="14.6079%" y="111.50"></text></g><g><title>/zephyr (2,115 samples, 0.03%; +0.00%)</title><rect x="14.3989%" y="101" width="0.0320%" height="15" fill="rgb(255,242,242)" fg:x="952944" fg:w="2115"/><text x="14.6489%" y="111.50"></text></g><g><title>/4e828deff8afa7002fa398da8bf223191b047f15d1d3660bd9cf516f2856d13c (5,115 samples, 0.08%; 0.00%)</title><rect x="14.3571%" y="149" width="0.0773%" height="15" fill="rgb(250,250,250)" fg:x="950179" fg:w="5115"/><text x="14.6071%" y="159.50"></text></g><g><title>/diff (5,115 samples, 0.08%; +0.00%)</title><rect x="14.3571%" y="133" width="0.0773%" height="15" fill="rgb(255,242,242)" fg:x="950179" fg:w="5115"/><text x="14.6071%" y="143.50"></text></g><g><title>/app (5,110 samples, 0.08%; +0.00%)</title><rect x="14.3572%" y="117" width="0.0772%" height="15" fill="rgb(255,242,242)" fg:x="950184" fg:w="5110"/><text x="14.6072%" y="127.50"></text></g><g><title>/texlive (1,806 samples, 0.03%; +0.00%)</title><rect x="14.4471%" y="85" width="0.0273%" height="15" fill="rgb(255,242,242)" fg:x="956138" fg:w="1806"/><text x="14.6971%" y="95.50"></text></g><g><title>/texmf-dist (1,753 samples, 0.03%; +0.00%)</title><rect x="14.4479%" y="69" width="0.0265%" height="15" fill="rgb(255,242,242)" fg:x="956191" fg:w="1753"/><text x="14.6979%" y="79.50"></text></g><g><title>/usr (2,601 samples, 0.04%; +0.00%)</title><rect x="14.4354%" y="117" width="0.0393%" height="15" fill="rgb(255,242,242)" fg:x="955362" fg:w="2601"/><text x="14.6854%" y="127.50"></text></g><g><title>/share (2,394 samples, 0.04%; +0.00%)</title><rect x="14.4385%" y="101" width="0.0362%" height="15" fill="rgb(255,242,242)" fg:x="955569" fg:w="2394"/><text x="14.6885%" y="111.50"></text></g><g><title>/5a9a00229a7638d55aab0c4066256de27ab1c31c2b8bb4204fcd40f5bf0a313f (2,727 samples, 0.04%; +0.00%)</title><rect x="14.4345%" y="149" width="0.0412%" height="15" fill="rgb(255,242,242)" fg:x="955299" fg:w="2727"/><text x="14.6845%" y="159.50"></text></g><g><title>/diff (2,722 samples, 0.04%; +0.00%)</title><rect x="14.4345%" y="133" width="0.0411%" height="15" fill="rgb(255,242,242)" fg:x="955304" fg:w="2722"/><text x="14.6845%" y="143.50"></text></g><g><title>/usr (995 samples, 0.02%; +0.00%)</title><rect x="14.4830%" y="117" width="0.0150%" height="15" fill="rgb(255,242,242)" fg:x="958514" fg:w="995"/><text x="14.7330%" y="127.50"></text></g><g><title>/617d1743e673f18b196ac25f5d4c933f3603684be22758a14b790ecd71364396 (1,155 samples, 0.02%; +0.00%)</title><rect x="14.4814%" y="149" width="0.0175%" height="15" fill="rgb(255,242,242)" fg:x="958404" fg:w="1155"/><text x="14.7314%" y="159.50"></text></g><g><title>/diff (1,106 samples, 0.02%; +0.00%)</title><rect x="14.4821%" y="133" width="0.0167%" height="15" fill="rgb(255,242,242)" fg:x="958453" fg:w="1106"/><text x="14.7321%" y="143.50"></text></g><g><title>/espressif (885 samples, 0.01%; +0.00%)</title><rect x="14.5216%" y="69" width="0.0134%" height="15" fill="rgb(255,242,242)" fg:x="961063" fg:w="885"/><text x="14.7716%" y="79.50"></text></g><g><title>/hal (1,682 samples, 0.03%; +0.00%)</title><rect x="14.5176%" y="85" width="0.0254%" height="15" fill="rgb(255,242,242)" fg:x="960802" fg:w="1682"/><text x="14.7676%" y="95.50"></text></g><g><title>/lib (922 samples, 0.01%; +0.00%)</title><rect x="14.5430%" y="85" width="0.0139%" height="15" fill="rgb(255,242,242)" fg:x="962484" fg:w="922"/><text x="14.7930%" y="95.50"></text></g><g><title>/modules (3,267 samples, 0.05%; +0.00%)</title><rect x="14.5145%" y="101" width="0.0494%" height="15" fill="rgb(255,242,242)" fg:x="960598" fg:w="3267"/><text x="14.7645%" y="111.50"></text></g><g><title>/zephyr (2,720 samples, 0.04%; +0.00%)</title><rect x="14.5639%" y="101" width="0.0411%" height="15" fill="rgb(255,242,242)" fg:x="963865" fg:w="2720"/><text x="14.8139%" y="111.50"></text></g><g><title>/tests (766 samples, 0.01%; +0.00%)</title><rect x="14.5934%" y="85" width="0.0116%" height="15" fill="rgb(255,242,242)" fg:x="965819" fg:w="766"/><text x="14.8434%" y="95.50"></text></g><g><title>/b858795cc6c2167f9780575e2df82e5f83afa805a4392df8f2d3d9687f4184ec (6,245 samples, 0.09%; +0.00%)</title><rect x="14.5140%" y="149" width="0.0944%" height="15" fill="rgb(255,242,242)" fg:x="960562" fg:w="6245"/><text x="14.7640%" y="159.50"></text></g><g><title>/diff (6,244 samples, 0.09%; +0.00%)</title><rect x="14.5140%" y="133" width="0.0943%" height="15" fill="rgb(255,242,242)" fg:x="960563" fg:w="6244"/><text x="14.7640%" y="143.50"></text></g><g><title>/app (6,241 samples, 0.09%; +0.00%)</title><rect x="14.5140%" y="117" width="0.0943%" height="15" fill="rgb(255,242,242)" fg:x="960566" fg:w="6241"/><text x="14.7640%" y="127.50"></text></g><g><title>/containers (17,999 samples, 0.27%; +0.00%)</title><rect x="14.3530%" y="197" width="0.2720%" height="15" fill="rgb(255,242,242)" fg:x="949905" fg:w="17999"/><text x="14.6030%" y="207.50"></text></g><g><title>/storage (17,993 samples, 0.27%; +0.00%)</title><rect x="14.3530%" y="181" width="0.2719%" height="15" fill="rgb(255,242,242)" fg:x="949911" fg:w="17993"/><text x="14.6030%" y="191.50"></text></g><g><title>/overlay (17,931 samples, 0.27%; 0.00%)</title><rect x="14.3540%" y="165" width="0.2709%" height="15" fill="rgb(250,250,250)" fg:x="949973" fg:w="17931"/><text x="14.6040%" y="175.50"></text></g><g><title>/doc (6,439 samples, 0.10%; +0.00%)</title><rect x="14.6278%" y="165" width="0.0973%" height="15" fill="rgb(255,242,242)" fg:x="968096" fg:w="6439"/><text x="14.8778%" y="175.50"></text></g><g><title>/gem (8,202 samples, 0.12%; +0.00%)</title><rect x="14.6253%" y="197" width="0.1239%" height="15" fill="rgb(255,242,242)" fg:x="967928" fg:w="8202"/><text x="14.8753%" y="207.50"></text></g><g><title>/ruby (8,196 samples, 0.12%; +0.00%)</title><rect x="14.6254%" y="181" width="0.1238%" height="15" fill="rgb(255,242,242)" fg:x="967934" fg:w="8196"/><text x="14.8754%" y="191.50"></text></g><g><title>/gems (1,562 samples, 0.02%; +0.00%)</title><rect x="14.7256%" y="165" width="0.0236%" height="15" fill="rgb(255,242,242)" fg:x="974568" fg:w="1562"/><text x="14.9756%" y="175.50"></text></g><g><title>/nvim (2,031 samples, 0.03%; +0.00%)</title><rect x="14.7493%" y="197" width="0.0307%" height="15" fill="rgb(255,242,242)" fg:x="976139" fg:w="2031"/><text x="14.9993%" y="207.50"></text></g><g><title>/mason (1,402 samples, 0.02%; +0.00%)</title><rect x="14.7589%" y="181" width="0.0212%" height="15" fill="rgb(255,242,242)" fg:x="976768" fg:w="1402"/><text x="15.0089%" y="191.50"></text></g><g><title>/packages (1,400 samples, 0.02%; +0.00%)</title><rect x="14.7589%" y="165" width="0.0212%" height="15" fill="rgb(255,242,242)" fg:x="976770" fg:w="1400"/><text x="15.0089%" y="175.50"></text></g><g><title>/share (29,843 samples, 0.45%; +0.00%)</title><rect x="14.3312%" y="213" width="0.4509%" height="15" fill="rgb(255,242,242)" fg:x="948468" fg:w="29843"/><text x="14.5812%" y="223.50"></text></g><g><title>/.local (30,646 samples, 0.46%; +0.00%)</title><rect x="14.3197%" y="229" width="0.4631%" height="15" fill="rgb(255,242,242)" fg:x="947701" fg:w="30646"/><text x="14.5697%" y="239.50"></text></g><g><title>/content-v2 (970 samples, 0.01%; +0.00%)</title><rect x="14.7862%" y="197" width="0.0147%" height="15" fill="rgb(255,242,242)" fg:x="978576" fg:w="970"/><text x="15.0362%" y="207.50"></text></g><g><title>/sha512 (873 samples, 0.01%; +0.00%)</title><rect x="14.7876%" y="181" width="0.0132%" height="15" fill="rgb(255,242,242)" fg:x="978673" fg:w="873"/><text x="15.0376%" y="191.50"></text></g><g><title>/.npm (1,577 samples, 0.02%; +0.00%)</title><rect x="14.7836%" y="229" width="0.0238%" height="15" fill="rgb(255,242,242)" fg:x="978409" fg:w="1577"/><text x="15.0336%" y="239.50"></text></g><g><title>/_cacache (1,538 samples, 0.02%; +0.00%)</title><rect x="14.7842%" y="213" width="0.0232%" height="15" fill="rgb(255,242,242)" fg:x="978448" fg:w="1538"/><text x="15.0342%" y="223.50"></text></g><g><title>/.var (2,296 samples, 0.03%; +0.00%)</title><rect x="14.8105%" y="229" width="0.0347%" height="15" fill="rgb(255,242,242)" fg:x="980187" fg:w="2296"/><text x="15.0605%" y="239.50"></text></g><g><title>/app (2,231 samples, 0.03%; +0.00%)</title><rect x="14.8115%" y="213" width="0.0337%" height="15" fill="rgb(255,242,242)" fg:x="980252" fg:w="2231"/><text x="15.0615%" y="223.50"></text></g><g><title>/platforms (749 samples, 0.01%; +0.00%)</title><rect x="14.8465%" y="197" width="0.0113%" height="15" fill="rgb(255,235,235)" fg:x="982568" fg:w="749"/><text x="15.0965%" y="207.50"></text></g><g><title>/android-34 (706 samples, 0.01%; +0.00%)</title><rect x="14.8471%" y="181" width="0.0107%" height="15" fill="rgb(255,235,235)" fg:x="982611" fg:w="706"/><text x="15.0971%" y="191.50"></text></g><g><title>/data (685 samples, 0.01%; +0.00%)</title><rect x="14.8475%" y="165" width="0.0104%" height="15" fill="rgb(255,235,235)" fg:x="982632" fg:w="685"/><text x="15.0975%" y="175.50"></text></g><g><title>/Android (1,327 samples, 0.02%; +0.00%)</title><rect x="14.8454%" y="229" width="0.0201%" height="15" fill="rgb(255,235,235)" fg:x="982499" fg:w="1327"/><text x="15.0954%" y="239.50"></text></g><g><title>/Sdk (1,320 samples, 0.02%; +0.00%)</title><rect x="14.8456%" y="213" width="0.0199%" height="15" fill="rgb(255,235,235)" fg:x="982506" fg:w="1320"/><text x="15.0956%" y="223.50"></text></g><g><title>/default (1,650 samples, 0.02%; +0.00%)</title><rect x="14.8714%" y="165" width="0.0249%" height="15" fill="rgb(255,235,235)" fg:x="984215" fg:w="1650"/><text x="15.1214%" y="175.50"></text></g><g><title>/Old Firefox Data (1,964 samples, 0.03%; +0.00%)</title><rect x="14.8669%" y="213" width="0.0297%" height="15" fill="rgb(255,235,235)" fg:x="983919" fg:w="1964"/><text x="15.1169%" y="223.50"></text></g><g><title>/ba7aau89.default-release (1,952 samples, 0.03%; 0.00%)</title><rect x="14.8671%" y="197" width="0.0295%" height="15" fill="rgb(250,250,250)" fg:x="983931" fg:w="1952"/><text x="15.1171%" y="207.50"></text></g><g><title>/storage (1,946 samples, 0.03%; +0.00%)</title><rect x="14.8672%" y="181" width="0.0294%" height="15" fill="rgb(255,235,235)" fg:x="983937" fg:w="1946"/><text x="15.1172%" y="191.50"></text></g><g><title>/Desktop (2,114 samples, 0.03%; +0.00%)</title><rect x="14.8655%" y="229" width="0.0319%" height="15" fill="rgb(255,235,235)" fg:x="983826" fg:w="2114"/><text x="15.1155%" y="239.50"></text></g><g><title>/data (1,222 samples, 0.02%; +0.00%)</title><rect x="14.9072%" y="213" width="0.0185%" height="15" fill="rgb(255,235,235)" fg:x="986585" fg:w="1222"/><text x="15.1572%" y="223.50"></text></g><g><title>/storage (1,145 samples, 0.02%; +0.00%)</title><rect x="14.9083%" y="197" width="0.0173%" height="15" fill="rgb(255,235,235)" fg:x="986662" fg:w="1145"/><text x="15.1583%" y="207.50"></text></g><g><title>/cache (1,940 samples, 0.03%; +0.00%)</title><rect x="14.9263%" y="181" width="0.0293%" height="15" fill="rgb(255,235,235)" fg:x="987848" fg:w="1940"/><text x="15.1763%" y="191.50"></text></g><g><title>/thumbnails (1,264 samples, 0.02%; +0.00%)</title><rect x="14.9365%" y="165" width="0.0191%" height="15" fill="rgb(255,235,235)" fg:x="988524" fg:w="1264"/><text x="15.1865%" y="175.50"></text></g><g><title>/docker (3,459 samples, 0.05%; +0.00%)</title><rect x="14.9066%" y="229" width="0.0523%" height="15" fill="rgb(255,235,235)" fg:x="986546" fg:w="3459"/><text x="15.1566%" y="239.50"></text></g><g><title>/photoprism (2,198 samples, 0.03%; +0.00%)</title><rect x="14.9257%" y="213" width="0.0332%" height="15" fill="rgb(255,235,235)" fg:x="987807" fg:w="2198"/><text x="15.1757%" y="223.50"></text></g><g><title>/storage (2,176 samples, 0.03%; +0.00%)</title><rect x="14.9260%" y="197" width="0.0329%" height="15" fill="rgb(255,235,235)" fg:x="987829" fg:w="2176"/><text x="15.1760%" y="207.50"></text></g><g><title>/PerlNavigator (816 samples, 0.01%; +0.00%)</title><rect x="14.9722%" y="213" width="0.0123%" height="15" fill="rgb(255,235,235)" fg:x="990888" fg:w="816"/><text x="15.2222%" y="223.50"></text></g><g><title>/grammars (5,322 samples, 0.08%; +0.00%)</title><rect x="15.0327%" y="181" width="0.0804%" height="15" fill="rgb(255,235,235)" fg:x="994890" fg:w="5322"/><text x="15.2827%" y="191.50"></text></g><g><title>/sources (5,125 samples, 0.08%; +0.00%)</title><rect x="15.0357%" y="165" width="0.0774%" height="15" fill="rgb(255,235,235)" fg:x="995087" fg:w="5125"/><text x="15.2857%" y="175.50"></text></g><g><title>/runtime (5,335 samples, 0.08%; +0.00%)</title><rect x="15.0326%" y="197" width="0.0806%" height="15" fill="rgb(255,235,235)" fg:x="994883" fg:w="5335"/><text x="15.2826%" y="207.50"></text></g><g><title>/helix (5,442 samples, 0.08%; 0.00%)</title><rect x="15.0324%" y="213" width="0.0822%" height="15" fill="rgb(250,250,250)" fg:x="994875" fg:w="5442"/><text x="15.2824%" y="223.50"></text></g><g><title>/buildtrees (1,431 samples, 0.02%; +0.00%)</title><rect x="15.1368%" y="149" width="0.0216%" height="15" fill="rgb(255,235,235)" fg:x="1001783" fg:w="1431"/><text x="15.3868%" y="159.50"></text></g><g><title>/Toolchain (2,997 samples, 0.05%; +0.00%)</title><rect x="15.1266%" y="197" width="0.0453%" height="15" fill="rgb(255,235,235)" fg:x="1001108" fg:w="2997"/><text x="15.3766%" y="207.50"></text></g><g><title>/Tarballs (2,991 samples, 0.05%; +0.00%)</title><rect x="15.1267%" y="181" width="0.0452%" height="15" fill="rgb(255,235,235)" fg:x="1001114" fg:w="2991"/><text x="15.3767%" y="191.50"></text></g><g><title>/vcpkg (2,933 samples, 0.04%; +0.00%)</title><rect x="15.1276%" y="165" width="0.0443%" height="15" fill="rgb(255,235,235)" fg:x="1001172" fg:w="2933"/><text x="15.3776%" y="175.50"></text></g><g><title>/ladybird (3,717 samples, 0.06%; +0.00%)</title><rect x="15.1175%" y="213" width="0.0562%" height="15" fill="rgb(255,235,235)" fg:x="1000501" fg:w="3717"/><text x="15.3675%" y="223.50"></text></g><g><title>/git (16,119 samples, 0.24%; +0.00%)</title><rect x="14.9592%" y="229" width="0.2436%" height="15" fill="rgb(255,235,235)" fg:x="990030" fg:w="16119"/><text x="15.2092%" y="239.50"></text></g><g><title>/cache (6,466 samples, 0.10%; +0.00%)</title><rect x="15.2066%" y="181" width="0.0977%" height="15" fill="rgb(255,235,235)" fg:x="1006399" fg:w="6466"/><text x="15.4566%" y="191.50"></text></g><g><title>/vcs (5,576 samples, 0.08%; +0.00%)</title><rect x="15.2200%" y="165" width="0.0843%" height="15" fill="rgb(255,235,235)" fg:x="1007289" fg:w="5576"/><text x="15.4700%" y="175.50"></text></g><g><title>/github.com (1,960 samples, 0.03%; +0.00%)</title><rect x="15.3097%" y="181" width="0.0296%" height="15" fill="rgb(255,235,235)" fg:x="1013227" fg:w="1960"/><text x="15.5597%" y="191.50"></text></g><g><title>/golang.org (2,510 samples, 0.04%; +0.00%)</title><rect x="15.3402%" y="181" width="0.0379%" height="15" fill="rgb(255,235,235)" fg:x="1015242" fg:w="2510"/><text x="15.5902%" y="191.50"></text></g><g><title>/x (2,369 samples, 0.04%; +0.00%)</title><rect x="15.3423%" y="165" width="0.0358%" height="15" fill="rgb(255,235,235)" fg:x="1015383" fg:w="2369"/><text x="15.5923%" y="175.50"></text></g><g><title>/pkg (12,118 samples, 0.18%; +0.00%)</title><rect x="15.2028%" y="213" width="0.1831%" height="15" fill="rgb(255,235,235)" fg:x="1006151" fg:w="12118"/><text x="15.4528%" y="223.50"></text></g><g><title>/mod (12,099 samples, 0.18%; +0.00%)</title><rect x="15.2031%" y="197" width="0.1828%" height="15" fill="rgb(255,235,235)" fg:x="1006170" fg:w="12099"/><text x="15.4531%" y="207.50"></text></g><g><title>/go (12,342 samples, 0.19%; +0.00%)</title><rect x="15.2028%" y="229" width="0.1865%" height="15" fill="rgb(255,235,235)" fg:x="1006149" fg:w="12342"/><text x="15.4528%" y="239.50"></text></g><g><title>home (80,372 samples, 1.21%; +0.00%)</title><rect x="14.1808%" y="261" width="1.2144%" height="15" fill="rgb(255,242,242)" fg:x="938513" fg:w="80372"/><text x="14.4308%" y="271.50"></text></g><g><title>/paul (80,277 samples, 1.21%; +0.00%)</title><rect x="14.1823%" y="245" width="1.2130%" height="15" fill="rgb(255,242,242)" fg:x="938608" fg:w="80277"/><text x="14.4323%" y="255.50"></text></g><g><title>proc (9,610 samples, 0.15%; +0.00%)</title><rect x="15.3998%" y="261" width="0.1452%" height="15" fill="rgb(255,235,235)" fg:x="1019189" fg:w="9610"/><text x="15.6498%" y="271.50"></text></g><g><title>/devices (1,079 samples, 0.02%; +0.00%)</title><rect x="15.5551%" y="245" width="0.0163%" height="15" fill="rgb(255,235,235)" fg:x="1029467" fg:w="1079"/><text x="15.8051%" y="255.50"></text></g><g><title>/kernel (1,280 samples, 0.02%; +0.00%)</title><rect x="15.5779%" y="245" width="0.0193%" height="15" fill="rgb(255,235,235)" fg:x="1030974" fg:w="1280"/><text x="15.8279%" y="255.50"></text></g><g><title>/tracing (1,001 samples, 0.02%; +0.00%)</title><rect x="15.5821%" y="229" width="0.0151%" height="15" fill="rgb(255,235,235)" fg:x="1031253" fg:w="1001"/><text x="15.8321%" y="239.50"></text></g><g><title>/events (956 samples, 0.01%; +0.00%)</title><rect x="15.5828%" y="213" width="0.0144%" height="15" fill="rgb(255,235,235)" fg:x="1031298" fg:w="956"/><text x="15.8328%" y="223.50"></text></g><g><title>sys (3,326 samples, 0.05%; +0.00%)</title><rect x="15.5525%" y="261" width="0.0503%" height="15" fill="rgb(255,235,235)" fg:x="1029292" fg:w="3326"/><text x="15.8025%" y="271.50"></text></g><g><title>/build (684 samples, 0.01%; 0.00%)</title><rect x="15.6077%" y="213" width="0.0103%" height="15" fill="rgb(250,250,250)" fg:x="1032944" fg:w="684"/><text x="15.8577%" y="223.50"></text></g><g><title>/cargo-installCAQd8O (1,577 samples, 0.02%; 0.00%)</title><rect x="15.6077%" y="245" width="0.0238%" height="15" fill="rgb(250,250,250)" fg:x="1032944" fg:w="1577"/><text x="15.8577%" y="255.50"></text></g><g><title>/release (1,577 samples, 0.02%; 0.00%)</title><rect x="15.6077%" y="229" width="0.0238%" height="15" fill="rgb(250,250,250)" fg:x="1032944" fg:w="1577"/><text x="15.8577%" y="239.50"></text></g><g><title>/deps (893 samples, 0.01%; +0.00%)</title><rect x="15.6180%" y="213" width="0.0135%" height="15" fill="rgb(255,235,235)" fg:x="1033628" fg:w="893"/><text x="15.8680%" y="223.50"></text></g><g><title>tmp (1,978 samples, 0.03%; +0.00%)</title><rect x="15.6030%" y="261" width="0.0299%" height="15" fill="rgb(255,235,235)" fg:x="1032632" fg:w="1978"/><text x="15.8530%" y="271.50"></text></g><g><title>/lib64 (1,839 samples, 0.03%; +0.00%)</title><rect x="15.6473%" y="245" width="0.0278%" height="15" fill="rgb(255,235,235)" fg:x="1035565" fg:w="1839"/><text x="15.8973%" y="255.50"></text></g><g><title>/modules (1,277 samples, 0.02%; +0.00%)</title><rect x="15.6876%" y="229" width="0.0193%" height="15" fill="rgb(255,235,235)" fg:x="1038236" fg:w="1277"/><text x="15.9376%" y="239.50"></text></g><g><title>/python3.13 (947 samples, 0.01%; +0.00%)</title><rect x="15.7112%" y="229" width="0.0143%" height="15" fill="rgb(255,235,235)" fg:x="1039799" fg:w="947"/><text x="15.9612%" y="239.50"></text></g><g><title>/site-packages (938 samples, 0.01%; +0.00%)</title><rect x="15.7114%" y="213" width="0.0142%" height="15" fill="rgb(255,235,235)" fg:x="1039808" fg:w="938"/><text x="15.9614%" y="223.50"></text></g><g><title>/rustlib (978 samples, 0.01%; 0.00%)</title><rect x="15.7259%" y="229" width="0.0148%" height="15" fill="rgb(250,250,250)" fg:x="1040767" fg:w="978"/><text x="15.9759%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (978 samples, 0.01%; +0.00%)</title><rect x="15.7259%" y="213" width="0.0148%" height="15" fill="rgb(255,235,235)" fg:x="1040767" fg:w="978"/><text x="15.9759%" y="223.50"></text></g><g><title>/lib (962 samples, 0.01%; +0.00%)</title><rect x="15.7261%" y="197" width="0.0145%" height="15" fill="rgb(255,235,235)" fg:x="1040783" fg:w="962"/><text x="15.9761%" y="207.50"></text></g><g><title>/lib (5,051 samples, 0.08%; 0.00%)</title><rect x="15.6751%" y="245" width="0.0763%" height="15" fill="rgb(250,250,250)" fg:x="1037404" fg:w="5051"/><text x="15.9251%" y="255.50"></text></g><g><title>/node_modules (773 samples, 0.01%; +0.00%)</title><rect x="15.7610%" y="213" width="0.0117%" height="15" fill="rgb(255,235,235)" fg:x="1043095" fg:w="773"/><text x="16.0110%" y="223.50"></text></g><g><title>/lib (855 samples, 0.01%; +0.00%)</title><rect x="15.7609%" y="229" width="0.0129%" height="15" fill="rgb(255,235,235)" fg:x="1043086" fg:w="855"/><text x="16.0109%" y="239.50"></text></g><g><title>/local (1,499 samples, 0.02%; +0.00%)</title><rect x="15.7519%" y="245" width="0.0226%" height="15" fill="rgb(255,235,235)" fg:x="1042491" fg:w="1499"/><text x="16.0019%" y="255.50"></text></g><g><title>/doc (1,118 samples, 0.02%; +0.00%)</title><rect x="15.8001%" y="229" width="0.0169%" height="15" fill="rgb(255,235,235)" fg:x="1045681" fg:w="1118"/><text x="16.0501%" y="239.50"></text></g><g><title>/aws-sdk-go-v2 (824 samples, 0.01%; +0.00%)</title><rect x="15.8353%" y="165" width="0.0125%" height="15" fill="rgb(255,235,235)" fg:x="1048006" fg:w="824"/><text x="16.0853%" y="175.50"></text></g><g><title>/aws (1,187 samples, 0.02%; +0.00%)</title><rect x="15.8333%" y="181" width="0.0179%" height="15" fill="rgb(255,235,235)" fg:x="1047878" fg:w="1187"/><text x="16.0833%" y="191.50"></text></g><g><title>/github.com (2,259 samples, 0.03%; +0.00%)</title><rect x="15.8306%" y="197" width="0.0341%" height="15" fill="rgb(255,235,235)" fg:x="1047696" fg:w="2259"/><text x="16.0806%" y="207.50"></text></g><g><title>/gocode (3,732 samples, 0.06%; +0.00%)</title><rect x="15.8277%" y="229" width="0.0564%" height="15" fill="rgb(255,235,235)" fg:x="1047503" fg:w="3732"/><text x="16.0777%" y="239.50"></text></g><g><title>/src (3,729 samples, 0.06%; +0.00%)</title><rect x="15.8277%" y="213" width="0.0563%" height="15" fill="rgb(255,235,235)" fg:x="1047506" fg:w="3729"/><text x="16.0777%" y="223.50"></text></g><g><title>/help (662 samples, 0.01%; +0.00%)</title><rect x="15.8847%" y="229" width="0.0100%" height="15" fill="rgb(255,235,235)" fg:x="1051280" fg:w="662"/><text x="16.1347%" y="239.50"></text></g><g><title>/share (10,803 samples, 0.16%; +0.00%)</title><rect x="15.7746%" y="245" width="0.1632%" height="15" fill="rgb(255,235,235)" fg:x="1043990" fg:w="10803"/><text x="16.0246%" y="255.50"></text></g><g><title>/6.12.13-200.fc41.x86_64 (1,080 samples, 0.02%; +0.00%)</title><rect x="15.9380%" y="213" width="0.0163%" height="15" fill="rgb(255,235,235)" fg:x="1054803" fg:w="1080"/><text x="16.1880%" y="223.50"></text></g><g><title>/6.12.15-200.fc41.x86_64 (1,467 samples, 0.02%; +0.00%)</title><rect x="15.9543%" y="213" width="0.0222%" height="15" fill="rgb(255,235,235)" fg:x="1055883" fg:w="1467"/><text x="16.2043%" y="223.50"></text></g><g><title>/src (3,901 samples, 0.06%; +0.00%)</title><rect x="15.9378%" y="245" width="0.0589%" height="15" fill="rgb(255,235,235)" fg:x="1054793" fg:w="3901"/><text x="16.1878%" y="255.50"></text></g><g><title>/kernels (3,900 samples, 0.06%; +0.00%)</title><rect x="15.9378%" y="229" width="0.0589%" height="15" fill="rgb(255,235,235)" fg:x="1054794" fg:w="3900"/><text x="16.1878%" y="239.50"></text></g><g><title>/6.12.4-200.fc41.x86_64 (1,344 samples, 0.02%; +0.00%)</title><rect x="15.9764%" y="213" width="0.0203%" height="15" fill="rgb(255,235,235)" fg:x="1057350" fg:w="1344"/><text x="16.2264%" y="223.50"></text></g><g><title>usr (24,103 samples, 0.36%; +0.00%)</title><rect x="15.6328%" y="261" width="0.3642%" height="15" fill="rgb(255,235,235)" fg:x="1034610" fg:w="24103"/><text x="15.8828%" y="271.50"></text></g><g><title>/PackageKit (687 samples, 0.01%; +0.00%)</title><rect x="16.0013%" y="229" width="0.0104%" height="15" fill="rgb(255,235,235)" fg:x="1058996" fg:w="687"/><text x="16.2513%" y="239.50"></text></g><g><title>/org.fedoraproject.Platform-86a7f22289874e9337d71e77b9e18fca3f9cfcb8ccdcc9a5570f494b0acc6d35 (2,667 samples, 0.04%; +0.00%)</title><rect x="16.0270%" y="197" width="0.0403%" height="15" fill="rgb(255,235,235)" fg:x="1060698" fg:w="2667"/><text x="16.2770%" y="207.50"></text></g><g><title>/files (2,631 samples, 0.04%; +0.00%)</title><rect x="16.0276%" y="181" width="0.0398%" height="15" fill="rgb(255,235,235)" fg:x="1060734" fg:w="2631"/><text x="16.2776%" y="191.50"></text></g><g><title>/share (1,813 samples, 0.03%; +0.00%)</title><rect x="16.0399%" y="165" width="0.0274%" height="15" fill="rgb(255,235,235)" fg:x="1061552" fg:w="1813"/><text x="16.2899%" y="175.50"></text></g><g><title>/org.fedoraproject.Platform-f4758bb5b5bb66fde7e19cd3de452b3e25a8212e04bd7ca2f7d6dd6db5384178 (2,667 samples, 0.04%; +0.00%)</title><rect x="16.0673%" y="197" width="0.0403%" height="15" fill="rgb(255,235,235)" fg:x="1063365" fg:w="2667"/><text x="16.3173%" y="207.50"></text></g><g><title>/files (2,578 samples, 0.04%; +0.00%)</title><rect x="16.0687%" y="181" width="0.0390%" height="15" fill="rgb(255,235,235)" fg:x="1063454" fg:w="2578"/><text x="16.3187%" y="191.50"></text></g><g><title>/share (1,764 samples, 0.03%; +0.00%)</title><rect x="16.0810%" y="165" width="0.0267%" height="15" fill="rgb(255,235,235)" fg:x="1064268" fg:w="1764"/><text x="16.3310%" y="175.50"></text></g><g><title>/.removed (6,213 samples, 0.09%; +0.00%)</title><rect x="16.0240%" y="213" width="0.0939%" height="15" fill="rgb(255,235,235)" fg:x="1060496" fg:w="6213"/><text x="16.2740%" y="223.50"></text></g><g><title>/org.freedesktop.Platform-7843a03291593f58bfd4583eaa48b65198be8a84ecd1a5885d0d65920d3a22a6 (677 samples, 0.01%; +0.00%)</title><rect x="16.1076%" y="197" width="0.0102%" height="15" fill="rgb(255,235,235)" fg:x="1066032" fg:w="677"/><text x="16.3576%" y="207.50"></text></g><g><title>/extra (952 samples, 0.01%; +0.00%)</title><rect x="16.1281%" y="117" width="0.0144%" height="15" fill="rgb(255,235,235)" fg:x="1067385" fg:w="952"/><text x="16.3781%" y="127.50"></text></g><g><title>/squashfs-root (929 samples, 0.01%; +0.00%)</title><rect x="16.1284%" y="101" width="0.0140%" height="15" fill="rgb(255,235,235)" fg:x="1067408" fg:w="929"/><text x="16.3784%" y="111.50"></text></g><g><title>/usr (908 samples, 0.01%; +0.00%)</title><rect x="16.1287%" y="85" width="0.0137%" height="15" fill="rgb(255,235,235)" fg:x="1067429" fg:w="908"/><text x="16.3787%" y="95.50"></text></g><g><title>/share (865 samples, 0.01%; +0.00%)</title><rect x="16.1294%" y="69" width="0.0131%" height="15" fill="rgb(255,235,235)" fg:x="1067472" fg:w="865"/><text x="16.3794%" y="79.50"></text></g><g><title>/icons (663 samples, 0.01%; +0.00%)</title><rect x="16.1324%" y="53" width="0.0100%" height="15" fill="rgb(255,235,235)" fg:x="1067674" fg:w="663"/><text x="16.3824%" y="63.50"></text></g><g><title>/com.skype.Client (1,059 samples, 0.02%; +0.00%)</title><rect x="16.1272%" y="197" width="0.0160%" height="15" fill="rgb(255,235,235)" fg:x="1067330" fg:w="1059"/><text x="16.3772%" y="207.50"></text></g><g><title>/x86_64 (1,057 samples, 0.02%; +0.00%)</title><rect x="16.1273%" y="181" width="0.0160%" height="15" fill="rgb(255,235,235)" fg:x="1067332" fg:w="1057"/><text x="16.3773%" y="191.50"></text></g><g><title>/stable (1,056 samples, 0.02%; +0.00%)</title><rect x="16.1273%" y="165" width="0.0160%" height="15" fill="rgb(255,235,235)" fg:x="1067333" fg:w="1056"/><text x="16.3773%" y="175.50"></text></g><g><title>/8d6afef0ebe77e930fc17a7dee513983440a8f4c7fea30f70ed38c8d0ddc5129 (1,051 samples, 0.02%; 0.00%)</title><rect x="16.1274%" y="149" width="0.0159%" height="15" fill="rgb(250,250,250)" fg:x="1067338" fg:w="1051"/><text x="16.3774%" y="159.50"></text></g><g><title>/files (1,049 samples, 0.02%; +0.00%)</title><rect x="16.1274%" y="133" width="0.0159%" height="15" fill="rgb(255,235,235)" fg:x="1067340" fg:w="1049"/><text x="16.3774%" y="143.50"></text></g><g><title>/app (4,887 samples, 0.07%; +0.00%)</title><rect x="16.1179%" y="213" width="0.0738%" height="15" fill="rgb(255,235,235)" fg:x="1066709" fg:w="4887"/><text x="16.3679%" y="223.50"></text></g><g><title>/locale (691 samples, 0.01%; +0.00%)</title><rect x="16.2342%" y="101" width="0.0104%" height="15" fill="rgb(255,235,235)" fg:x="1074410" fg:w="691"/><text x="16.4842%" y="111.50"></text></g><g><title>/org.fedoraproject.KDE5Platform (3,017 samples, 0.05%; +0.00%)</title><rect x="16.2011%" y="197" width="0.0456%" height="15" fill="rgb(255,235,235)" fg:x="1072216" fg:w="3017"/><text x="16.4511%" y="207.50"></text></g><g><title>/x86_64 (3,008 samples, 0.05%; +0.00%)</title><rect x="16.2012%" y="181" width="0.0455%" height="15" fill="rgb(255,235,235)" fg:x="1072225" fg:w="3008"/><text x="16.4512%" y="191.50"></text></g><g><title>/f41 (2,999 samples, 0.05%; +0.00%)</title><rect x="16.2013%" y="165" width="0.0453%" height="15" fill="rgb(255,235,235)" fg:x="1072234" fg:w="2999"/><text x="16.4513%" y="175.50"></text></g><g><title>/a307c5578f3f598ea8fb09c6e859a452a46dc2f76ea108b0461f09cbf44489a4 (2,989 samples, 0.05%; +0.00%)</title><rect x="16.2015%" y="149" width="0.0452%" height="15" fill="rgb(255,235,235)" fg:x="1072244" fg:w="2989"/><text x="16.4515%" y="159.50"></text></g><g><title>/files (2,976 samples, 0.04%; +0.00%)</title><rect x="16.2017%" y="133" width="0.0450%" height="15" fill="rgb(255,235,235)" fg:x="1072257" fg:w="2976"/><text x="16.4517%" y="143.50"></text></g><g><title>/share (2,114 samples, 0.03%; +0.00%)</title><rect x="16.2147%" y="117" width="0.0319%" height="15" fill="rgb(255,235,235)" fg:x="1073119" fg:w="2114"/><text x="16.4647%" y="127.50"></text></g><g><title>/org.fedoraproject.Platform (2,545 samples, 0.04%; 0.00%)</title><rect x="16.2467%" y="197" width="0.0385%" height="15" fill="rgb(250,250,250)" fg:x="1075239" fg:w="2545"/><text x="16.4967%" y="207.50"></text></g><g><title>/x86_64 (2,545 samples, 0.04%; +0.00%)</title><rect x="16.2467%" y="181" width="0.0385%" height="15" fill="rgb(255,235,235)" fg:x="1075239" fg:w="2545"/><text x="16.4967%" y="191.50"></text></g><g><title>/f41 (2,542 samples, 0.04%; 0.00%)</title><rect x="16.2468%" y="165" width="0.0384%" height="15" fill="rgb(250,250,250)" fg:x="1075242" fg:w="2542"/><text x="16.4968%" y="175.50"></text></g><g><title>/ae556c8963ab16733201f7fedbff75e445596a5ca0607901350d25da1e7ec583 (2,542 samples, 0.04%; +0.00%)</title><rect x="16.2468%" y="149" width="0.0384%" height="15" fill="rgb(255,235,235)" fg:x="1075242" fg:w="2542"/><text x="16.4968%" y="159.50"></text></g><g><title>/files (2,502 samples, 0.04%; +0.00%)</title><rect x="16.2474%" y="133" width="0.0378%" height="15" fill="rgb(255,235,235)" fg:x="1075282" fg:w="2502"/><text x="16.4974%" y="143.50"></text></g><g><title>/share (1,796 samples, 0.03%; +0.00%)</title><rect x="16.2581%" y="117" width="0.0271%" height="15" fill="rgb(255,235,235)" fg:x="1075988" fg:w="1796"/><text x="16.5081%" y="127.50"></text></g><g><title>/org.freedesktop.Platform (1,113 samples, 0.02%; 0.00%)</title><rect x="16.2869%" y="197" width="0.0168%" height="15" fill="rgb(250,250,250)" fg:x="1077895" fg:w="1113"/><text x="16.5369%" y="207.50"></text></g><g><title>/x86_64 (1,113 samples, 0.02%; +0.00%)</title><rect x="16.2869%" y="181" width="0.0168%" height="15" fill="rgb(255,235,235)" fg:x="1077895" fg:w="1113"/><text x="16.5369%" y="191.50"></text></g><g><title>/45 (1,154 samples, 0.02%; +0.00%)</title><rect x="16.3049%" y="165" width="0.0174%" height="15" fill="rgb(255,235,235)" fg:x="1079086" fg:w="1154"/><text x="16.5549%" y="175.50"></text></g><g><title>/547c38809093f20a153446421224c4d197bc8ce24d3c5cdd4bab978bbf9b3c83 (1,149 samples, 0.02%; +0.00%)</title><rect x="16.3049%" y="149" width="0.0174%" height="15" fill="rgb(255,235,235)" fg:x="1079091" fg:w="1149"/><text x="16.5549%" y="159.50"></text></g><g><title>/files (1,139 samples, 0.02%; +0.00%)</title><rect x="16.3051%" y="133" width="0.0172%" height="15" fill="rgb(255,235,235)" fg:x="1079101" fg:w="1139"/><text x="16.5551%" y="143.50"></text></g><g><title>/46 (746 samples, 0.01%; +0.00%)</title><rect x="16.3223%" y="165" width="0.0113%" height="15" fill="rgb(255,235,235)" fg:x="1080240" fg:w="746"/><text x="16.5723%" y="175.50"></text></g><g><title>/cfb8e628b58092ca709a7ea19212ee6718294bc34ace6a208d10129c7110ecd1 (714 samples, 0.01%; +0.00%)</title><rect x="16.3228%" y="149" width="0.0108%" height="15" fill="rgb(255,235,235)" fg:x="1080272" fg:w="714"/><text x="16.5728%" y="159.50"></text></g><g><title>/files (705 samples, 0.01%; +0.00%)</title><rect x="16.3229%" y="133" width="0.0107%" height="15" fill="rgb(255,235,235)" fg:x="1080281" fg:w="705"/><text x="16.5729%" y="143.50"></text></g><g><title>/org.gnome.Platform (2,702 samples, 0.04%; 0.00%)</title><rect x="16.3042%" y="197" width="0.0408%" height="15" fill="rgb(250,250,250)" fg:x="1079039" fg:w="2702"/><text x="16.5542%" y="207.50"></text></g><g><title>/x86_64 (2,702 samples, 0.04%; +0.00%)</title><rect x="16.3042%" y="181" width="0.0408%" height="15" fill="rgb(255,235,235)" fg:x="1079039" fg:w="2702"/><text x="16.5542%" y="191.50"></text></g><g><title>/47 (755 samples, 0.01%; +0.00%)</title><rect x="16.3336%" y="165" width="0.0114%" height="15" fill="rgb(255,235,235)" fg:x="1080986" fg:w="755"/><text x="16.5836%" y="175.50"></text></g><g><title>/5ff2808fa1d5b7e8ad77cd2b178e1f22f5d196c1ec888324b729d8a1d9e6f372 (736 samples, 0.01%; 0.00%)</title><rect x="16.3339%" y="149" width="0.0111%" height="15" fill="rgb(250,250,250)" fg:x="1081005" fg:w="736"/><text x="16.5839%" y="159.50"></text></g><g><title>/files (736 samples, 0.01%; +0.00%)</title><rect x="16.3339%" y="133" width="0.0111%" height="15" fill="rgb(255,235,235)" fg:x="1081005" fg:w="736"/><text x="16.5839%" y="143.50"></text></g><g><title>/lib (688 samples, 0.01%; +0.00%)</title><rect x="16.3472%" y="117" width="0.0104%" height="15" fill="rgb(255,235,235)" fg:x="1081890" fg:w="688"/><text x="16.5972%" y="127.50"></text></g><g><title>/5.15-24.08 (1,792 samples, 0.03%; +0.00%)</title><rect x="16.3461%" y="165" width="0.0271%" height="15" fill="rgb(255,235,235)" fg:x="1081816" fg:w="1792"/><text x="16.5961%" y="175.50"></text></g><g><title>/25b14a26740d8b58b3e27a03dfd3c08cdbdebf58d9ee55222577fe6c9ef1d494 (1,779 samples, 0.03%; +0.00%)</title><rect x="16.3463%" y="149" width="0.0269%" height="15" fill="rgb(255,235,235)" fg:x="1081829" fg:w="1779"/><text x="16.5963%" y="159.50"></text></g><g><title>/files (1,774 samples, 0.03%; +0.00%)</title><rect x="16.3464%" y="133" width="0.0268%" height="15" fill="rgb(255,235,235)" fg:x="1081834" fg:w="1774"/><text x="16.5964%" y="143.50"></text></g><g><title>/share (1,030 samples, 0.02%; +0.00%)</title><rect x="16.3576%" y="117" width="0.0156%" height="15" fill="rgb(255,235,235)" fg:x="1082578" fg:w="1030"/><text x="16.6076%" y="127.50"></text></g><g><title>/org.kde.Platform (2,981 samples, 0.05%; 0.00%)</title><rect x="16.3457%" y="197" width="0.0450%" height="15" fill="rgb(250,250,250)" fg:x="1081788" fg:w="2981"/><text x="16.5957%" y="207.50"></text></g><g><title>/x86_64 (2,981 samples, 0.05%; +0.00%)</title><rect x="16.3457%" y="181" width="0.0450%" height="15" fill="rgb(255,235,235)" fg:x="1081788" fg:w="2981"/><text x="16.5957%" y="191.50"></text></g><g><title>/6.7 (1,161 samples, 0.02%; +0.00%)</title><rect x="16.3732%" y="165" width="0.0175%" height="15" fill="rgb(255,235,235)" fg:x="1083608" fg:w="1161"/><text x="16.6232%" y="175.50"></text></g><g><title>/4c0aecd4c103a394ba7a3cff247d4744b6bfdc0e54947f748d887841dd57c151 (1,158 samples, 0.02%; +0.00%)</title><rect x="16.3732%" y="149" width="0.0175%" height="15" fill="rgb(255,235,235)" fg:x="1083611" fg:w="1158"/><text x="16.6232%" y="159.50"></text></g><g><title>/files (1,151 samples, 0.02%; +0.00%)</title><rect x="16.3733%" y="133" width="0.0174%" height="15" fill="rgb(255,235,235)" fg:x="1083618" fg:w="1151"/><text x="16.6233%" y="143.50"></text></g><g><title>/share (669 samples, 0.01%; +0.00%)</title><rect x="16.3806%" y="117" width="0.0101%" height="15" fill="rgb(255,235,235)" fg:x="1084100" fg:w="669"/><text x="16.6306%" y="127.50"></text></g><g><title>/flatpak (24,374 samples, 0.37%; +0.00%)</title><rect x="16.0225%" y="229" width="0.3683%" height="15" fill="rgb(255,235,235)" fg:x="1060400" fg:w="24374"/><text x="16.2725%" y="239.50"></text></g><g><title>/runtime (12,563 samples, 0.19%; +0.00%)</title><rect x="16.2010%" y="213" width="0.1898%" height="15" fill="rgb(255,235,235)" fg:x="1072211" fg:w="12563"/><text x="16.4510%" y="223.50"></text></g><g><title>/usr (702 samples, 0.01%; +0.00%)</title><rect x="16.3916%" y="165" width="0.0106%" height="15" fill="rgb(255,235,235)" fg:x="1084827" fg:w="702"/><text x="16.6416%" y="175.50"></text></g><g><title>/core20 (741 samples, 0.01%; +0.00%)</title><rect x="16.3911%" y="197" width="0.0112%" height="15" fill="rgb(255,235,235)" fg:x="1084792" fg:w="741"/><text x="16.6411%" y="207.50"></text></g><g><title>/2434 (721 samples, 0.01%; +0.00%)</title><rect x="16.3914%" y="181" width="0.0109%" height="15" fill="rgb(255,235,235)" fg:x="1084812" fg:w="721"/><text x="16.6414%" y="191.50"></text></g><g><title>/snapd (1,410 samples, 0.02%; +0.00%)</title><rect x="16.3909%" y="229" width="0.0213%" height="15" fill="rgb(255,235,235)" fg:x="1084779" fg:w="1410"/><text x="16.6409%" y="239.50"></text></g><g><title>/snap (1,405 samples, 0.02%; +0.00%)</title><rect x="16.3910%" y="213" width="0.0212%" height="15" fill="rgb(255,235,235)" fg:x="1084784" fg:w="1405"/><text x="16.6410%" y="223.50"></text></g><g><title>/lib (27,323 samples, 0.41%; +0.00%)</title><rect x="15.9998%" y="245" width="0.4128%" height="15" fill="rgb(255,235,235)" fg:x="1058895" fg:w="27323"/><text x="16.2498%" y="255.50"></text></g><g><title>/log (1,003 samples, 0.02%; +0.00%)</title><rect x="16.4126%" y="245" width="0.0152%" height="15" fill="rgb(255,235,235)" fg:x="1086218" fg:w="1003"/><text x="16.6626%" y="255.50"></text></g><g><title>syscall`fcntl (546,825 samples, 8.26%; 0.00%)</title><rect x="8.1696%" y="277" width="8.2625%" height="15" fill="rgb(250,250,250)" fg:x="540677" fg:w="546825"/><text x="8.4196%" y="287.50">syscall`fcntl</text></g><g><title>var (28,789 samples, 0.43%; +0.00%)</title><rect x="15.9970%" y="261" width="0.4350%" height="15" fill="rgb(255,235,235)" fg:x="1058713" fg:w="28789"/><text x="16.2470%" y="271.50"></text></g><g><title>. (209,304 samples, 3.16%; +0.00%)</title><rect x="16.4404%" y="261" width="3.1626%" height="15" fill="rgb(255,235,235)" fg:x="1088056" fg:w="209304"/><text x="16.6904%" y="271.50">.</text></g><g><title>/.cache (805 samples, 0.01%; +0.00%)</title><rect x="19.6109%" y="229" width="0.0122%" height="15" fill="rgb(255,235,235)" fg:x="1297888" fg:w="805"/><text x="19.8609%" y="239.50"></text></g><g><title>/4e828deff8afa7002fa398da8bf223191b047f15d1d3660bd9cf516f2856d13c (1,054 samples, 0.02%; 0.00%)</title><rect x="19.6390%" y="149" width="0.0159%" height="15" fill="rgb(250,250,250)" fg:x="1299745" fg:w="1054"/><text x="19.8890%" y="159.50"></text></g><g><title>/diff (1,054 samples, 0.02%; +0.00%)</title><rect x="19.6390%" y="133" width="0.0159%" height="15" fill="rgb(255,235,235)" fg:x="1299745" fg:w="1054"/><text x="19.8890%" y="143.50"></text></g><g><title>/app (1,050 samples, 0.02%; +0.00%)</title><rect x="19.6391%" y="117" width="0.0159%" height="15" fill="rgb(255,235,235)" fg:x="1299749" fg:w="1050"/><text x="19.8891%" y="127.50"></text></g><g><title>/modules (666 samples, 0.01%; +0.00%)</title><rect x="19.6687%" y="101" width="0.0101%" height="15" fill="rgb(255,235,235)" fg:x="1301714" fg:w="666"/><text x="19.9187%" y="111.50"></text></g><g><title>/b858795cc6c2167f9780575e2df82e5f83afa805a4392df8f2d3d9687f4184ec (1,072 samples, 0.02%; 0.00%)</title><rect x="19.6684%" y="149" width="0.0162%" height="15" fill="rgb(250,250,250)" fg:x="1301689" fg:w="1072"/><text x="19.9184%" y="159.50"></text></g><g><title>/diff (1,072 samples, 0.02%; 0.00%)</title><rect x="19.6684%" y="133" width="0.0162%" height="15" fill="rgb(250,250,250)" fg:x="1301689" fg:w="1072"/><text x="19.9184%" y="143.50"></text></g><g><title>/app (1,072 samples, 0.02%; +0.00%)</title><rect x="19.6684%" y="117" width="0.0162%" height="15" fill="rgb(255,235,235)" fg:x="1301689" fg:w="1072"/><text x="19.9184%" y="127.50"></text></g><g><title>/containers (3,296 samples, 0.05%; +0.00%)</title><rect x="19.6378%" y="197" width="0.0498%" height="15" fill="rgb(255,235,235)" fg:x="1299667" fg:w="3296"/><text x="19.8878%" y="207.50"></text></g><g><title>/storage (3,293 samples, 0.05%; +0.00%)</title><rect x="19.6379%" y="181" width="0.0498%" height="15" fill="rgb(255,235,235)" fg:x="1299670" fg:w="3293"/><text x="19.8879%" y="191.50"></text></g><g><title>/overlay (3,285 samples, 0.05%; +0.00%)</title><rect x="19.6380%" y="165" width="0.0496%" height="15" fill="rgb(255,235,235)" fg:x="1299678" fg:w="3285"/><text x="19.8880%" y="175.50"></text></g><g><title>/doc (969 samples, 0.01%; +0.00%)</title><rect x="19.6893%" y="165" width="0.0146%" height="15" fill="rgb(255,235,235)" fg:x="1303071" fg:w="969"/><text x="19.9393%" y="175.50"></text></g><g><title>/gem (1,322 samples, 0.02%; +0.00%)</title><rect x="19.6876%" y="197" width="0.0200%" height="15" fill="rgb(255,235,235)" fg:x="1302964" fg:w="1322"/><text x="19.9376%" y="207.50"></text></g><g><title>/ruby (1,316 samples, 0.02%; +0.00%)</title><rect x="19.6877%" y="181" width="0.0199%" height="15" fill="rgb(255,235,235)" fg:x="1302970" fg:w="1316"/><text x="19.9377%" y="191.50"></text></g><g><title>/share (5,328 samples, 0.08%; +0.00%)</title><rect x="19.6335%" y="213" width="0.0805%" height="15" fill="rgb(255,235,235)" fg:x="1299380" fg:w="5328"/><text x="19.8835%" y="223.50"></text></g><g><title>/.local (5,454 samples, 0.08%; +0.00%)</title><rect x="19.6317%" y="229" width="0.0824%" height="15" fill="rgb(255,235,235)" fg:x="1299262" fg:w="5454"/><text x="19.8817%" y="239.50"></text></g><g><title>/runtime (986 samples, 0.01%; 0.00%)</title><rect x="19.7473%" y="197" width="0.0149%" height="15" fill="rgb(250,250,250)" fg:x="1306912" fg:w="986"/><text x="19.9973%" y="207.50"></text></g><g><title>/grammars (986 samples, 0.01%; -0.00%)</title><rect x="19.7473%" y="181" width="0.0149%" height="15" fill="rgb(210,210,255)" fg:x="1306912" fg:w="986"/><text x="19.9973%" y="191.50"></text></g><g><title>/sources (849 samples, 0.01%; -0.00%)</title><rect x="19.7494%" y="165" width="0.0128%" height="15" fill="rgb(210,210,255)" fg:x="1307049" fg:w="849"/><text x="19.9994%" y="175.50"></text></g><g><title>/helix (991 samples, 0.01%; 0.00%)</title><rect x="19.7473%" y="213" width="0.0150%" height="15" fill="rgb(250,250,250)" fg:x="1306912" fg:w="991"/><text x="19.9973%" y="223.50"></text></g><g><title>/ladybird (706 samples, 0.01%; -0.00%)</title><rect x="19.7628%" y="213" width="0.0107%" height="15" fill="rgb(210,210,255)" fg:x="1307937" fg:w="706"/><text x="20.0128%" y="223.50"></text></g><g><title>/git (3,082 samples, 0.05%; -0.00%)</title><rect x="19.7313%" y="229" width="0.0466%" height="15" fill="rgb(210,210,255)" fg:x="1305854" fg:w="3082"/><text x="19.9813%" y="239.50"></text></g><g><title>/cache (1,025 samples, 0.02%; -0.00%)</title><rect x="19.7798%" y="181" width="0.0155%" height="15" fill="rgb(210,210,255)" fg:x="1309065" fg:w="1025"/><text x="20.0298%" y="191.50"></text></g><g><title>/pkg (2,076 samples, 0.03%; -0.00%)</title><rect x="19.7779%" y="213" width="0.0314%" height="15" fill="rgb(210,210,255)" fg:x="1308940" fg:w="2076"/><text x="20.0279%" y="223.50"></text></g><g><title>/mod (2,070 samples, 0.03%; -0.00%)</title><rect x="19.7780%" y="197" width="0.0313%" height="15" fill="rgb(210,210,255)" fg:x="1308946" fg:w="2070"/><text x="20.0280%" y="207.50"></text></g><g><title>/go (2,090 samples, 0.03%; -0.00%)</title><rect x="19.7779%" y="229" width="0.0316%" height="15" fill="rgb(210,210,255)" fg:x="1308936" fg:w="2090"/><text x="20.0279%" y="239.50"></text></g><g><title>home (13,409 samples, 0.20%; +0.00%)</title><rect x="19.6070%" y="261" width="0.2026%" height="15" fill="rgb(255,235,235)" fg:x="1297630" fg:w="13409"/><text x="19.8570%" y="271.50"></text></g><g><title>/paul (13,386 samples, 0.20%; +0.00%)</title><rect x="19.6074%" y="245" width="0.2023%" height="15" fill="rgb(255,235,235)" fg:x="1297653" fg:w="13386"/><text x="19.8574%" y="255.50"></text></g><g><title>proc (779 samples, 0.01%; -0.00%)</title><rect x="19.8118%" y="261" width="0.0118%" height="15" fill="rgb(210,210,255)" fg:x="1311184" fg:w="779"/><text x="20.0618%" y="271.50"></text></g><g><title>/share (1,182 samples, 0.02%; -0.00%)</title><rect x="19.8572%" y="245" width="0.0179%" height="15" fill="rgb(210,210,255)" fg:x="1314184" fg:w="1182"/><text x="20.1072%" y="255.50"></text></g><g><title>usr (2,495 samples, 0.04%; -0.00%)</title><rect x="19.8397%" y="261" width="0.0377%" height="15" fill="rgb(210,210,255)" fg:x="1313028" fg:w="2495"/><text x="20.0897%" y="271.50"></text></g><g><title>/app (982 samples, 0.01%; -0.00%)</title><rect x="19.8884%" y="213" width="0.0148%" height="15" fill="rgb(210,210,255)" fg:x="1316249" fg:w="982"/><text x="20.1384%" y="223.50"></text></g><g><title>/flatpak (3,303 samples, 0.05%; -0.00%)</title><rect x="19.8778%" y="229" width="0.0499%" height="15" fill="rgb(210,210,255)" fg:x="1315550" fg:w="3303"/><text x="20.1278%" y="239.50"></text></g><g><title>/runtime (1,489 samples, 0.02%; -0.00%)</title><rect x="19.9052%" y="213" width="0.0225%" height="15" fill="rgb(210,210,255)" fg:x="1317364" fg:w="1489"/><text x="20.1552%" y="223.50"></text></g><g><title>/lib (3,430 samples, 0.05%; 0.00%)</title><rect x="19.8776%" y="245" width="0.0518%" height="15" fill="rgb(250,250,250)" fg:x="1315539" fg:w="3430"/><text x="20.1276%" y="255.50"></text></g><g><title>syscall`getdents64 (231,120 samples, 3.49%; 0.00%)</title><rect x="16.4373%" y="277" width="3.4922%" height="15" fill="rgb(250,250,250)" fg:x="1087851" fg:w="231120"/><text x="16.6873%" y="287.50">sys..</text></g><g><title>var (3,448 samples, 0.05%; 0.00%)</title><rect x="19.8774%" y="261" width="0.0521%" height="15" fill="rgb(250,250,250)" fg:x="1315523" fg:w="3448"/><text x="20.1274%" y="271.50"></text></g><g><title>. (62,233 samples, 0.94%; -0.00%)</title><rect x="19.9338%" y="261" width="0.9403%" height="15" fill="rgb(210,210,255)" fg:x="1319254" fg:w="62233"/><text x="20.1838%" y="271.50"></text></g><g><title>proc (19,755 samples, 0.30%; -0.00%)</title><rect x="20.8741%" y="261" width="0.2985%" height="15" fill="rgb(210,210,255)" fg:x="1381487" fg:w="19755"/><text x="21.1241%" y="271.50"></text></g><g><title>usr (2,281 samples, 0.03%; 0.00%)</title><rect x="21.1745%" y="261" width="0.0345%" height="15" fill="rgb(250,250,250)" fg:x="1401366" fg:w="2281"/><text x="21.4245%" y="271.50"></text></g><g><title>/lib (2,281 samples, 0.03%; 0.00%)</title><rect x="21.1745%" y="245" width="0.0345%" height="15" fill="rgb(250,250,250)" fg:x="1401366" fg:w="2281"/><text x="21.4245%" y="255.50"></text></g><g><title>/rustlib (2,281 samples, 0.03%; 0.00%)</title><rect x="21.1745%" y="229" width="0.0345%" height="15" fill="rgb(250,250,250)" fg:x="1401366" fg:w="2281"/><text x="21.4245%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (2,281 samples, 0.03%; 0.00%)</title><rect x="21.1745%" y="213" width="0.0345%" height="15" fill="rgb(250,250,250)" fg:x="1401366" fg:w="2281"/><text x="21.4245%" y="223.50"></text></g><g><title>/lib (2,281 samples, 0.03%; -0.00%)</title><rect x="21.1745%" y="197" width="0.0345%" height="15" fill="rgb(210,210,255)" fg:x="1401366" fg:w="2281"/><text x="21.4245%" y="207.50"></text></g><g><title>syscall`io_uring_enter (84,394 samples, 1.28%; 0.00%)</title><rect x="19.9338%" y="277" width="1.2752%" height="15" fill="rgb(250,250,250)" fg:x="1319254" fg:w="84394"/><text x="20.1838%" y="287.50"></text></g><g><title> (1,942 samples, 0.03%; -0.00%)</title><rect x="21.2090%" y="261" width="0.0293%" height="15" fill="rgb(210,210,255)" fg:x="1403648" fg:w="1942"/><text x="21.4590%" y="271.50"></text></g><g><title>. (4,133 samples, 0.06%; -0.00%)</title><rect x="21.2383%" y="261" width="0.0624%" height="15" fill="rgb(210,210,255)" fg:x="1405590" fg:w="4133"/><text x="21.4883%" y="271.50"></text></g><g><title>/dri (37,026 samples, 0.56%; -0.00%)</title><rect x="22.0562%" y="245" width="0.5595%" height="15" fill="rgb(210,210,255)" fg:x="1459722" fg:w="37026"/><text x="22.3062%" y="255.50"></text></g><g><title>dev (88,195 samples, 1.33%; -0.00%)</title><rect x="21.3009%" y="261" width="1.3326%" height="15" fill="rgb(210,210,255)" fg:x="1409734" fg:w="88195"/><text x="21.5509%" y="271.50"></text></g><g><title>/pts (1,181 samples, 0.02%; -0.00%)</title><rect x="22.6157%" y="245" width="0.0178%" height="15" fill="rgb(210,210,255)" fg:x="1496748" fg:w="1181"/><text x="22.8657%" y="255.50"></text></g><g><title>/app.slice (4,264 samples, 0.06%; -0.00%)</title><rect x="22.6470%" y="165" width="0.0644%" height="15" fill="rgb(210,210,255)" fg:x="1498823" fg:w="4264"/><text x="22.8970%" y="175.50"></text></g><g><title>sys (4,791 samples, 0.07%; 0.00%)</title><rect x="22.6431%" y="261" width="0.0724%" height="15" fill="rgb(250,250,250)" fg:x="1498560" fg:w="4791"/><text x="22.8931%" y="271.50"></text></g><g><title>/fs (4,782 samples, 0.07%; 0.00%)</title><rect x="22.6432%" y="245" width="0.0723%" height="15" fill="rgb(250,250,250)" fg:x="1498569" fg:w="4782"/><text x="22.8932%" y="255.50"></text></g><g><title>/cgroup (4,782 samples, 0.07%; 0.00%)</title><rect x="22.6432%" y="229" width="0.0723%" height="15" fill="rgb(250,250,250)" fg:x="1498569" fg:w="4782"/><text x="22.8932%" y="239.50"></text></g><g><title>/user.slice (4,673 samples, 0.07%; 0.00%)</title><rect x="22.6449%" y="213" width="0.0706%" height="15" fill="rgb(250,250,250)" fg:x="1498678" fg:w="4673"/><text x="22.8949%" y="223.50"></text></g><g><title>/user-1001.slice (4,528 samples, 0.07%; 0.00%)</title><rect x="22.6470%" y="197" width="0.0684%" height="15" fill="rgb(250,250,250)" fg:x="1498823" fg:w="4528"/><text x="22.8970%" y="207.50"></text></g><g><title>/user@1001.service (4,528 samples, 0.07%; 0.00%)</title><rect x="22.6470%" y="181" width="0.0684%" height="15" fill="rgb(250,250,250)" fg:x="1498823" fg:w="4528"/><text x="22.8970%" y="191.50"></text></g><g><title>/cargo-installCAQd8O (2,426 samples, 0.04%; 0.00%)</title><rect x="22.7155%" y="245" width="0.0367%" height="15" fill="rgb(250,250,250)" fg:x="1503354" fg:w="2426"/><text x="22.9655%" y="255.50"></text></g><g><title>/release (2,426 samples, 0.04%; 0.00%)</title><rect x="22.7155%" y="229" width="0.0367%" height="15" fill="rgb(250,250,250)" fg:x="1503354" fg:w="2426"/><text x="22.9655%" y="239.50"></text></g><g><title>/deps (2,020 samples, 0.03%; -0.00%)</title><rect x="22.7216%" y="213" width="0.0305%" height="15" fill="rgb(210,210,255)" fg:x="1503760" fg:w="2020"/><text x="22.9716%" y="223.50"></text></g><g><title>tmp (2,450 samples, 0.04%; -0.00%)</title><rect x="22.7155%" y="261" width="0.0370%" height="15" fill="rgb(210,210,255)" fg:x="1503351" fg:w="2450"/><text x="22.9655%" y="271.50"></text></g><g><title>/rustlib (29,108 samples, 0.44%; 0.00%)</title><rect x="22.7597%" y="229" width="0.4398%" height="15" fill="rgb(250,250,250)" fg:x="1506281" fg:w="29108"/><text x="23.0097%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (29,108 samples, 0.44%; 0.00%)</title><rect x="22.7597%" y="213" width="0.4398%" height="15" fill="rgb(250,250,250)" fg:x="1506281" fg:w="29108"/><text x="23.0097%" y="223.50"></text></g><g><title>/lib (29,108 samples, 0.44%; -0.00%)</title><rect x="22.7597%" y="197" width="0.4398%" height="15" fill="rgb(210,210,255)" fg:x="1506281" fg:w="29108"/><text x="23.0097%" y="207.50"></text></g><g><title>/lib (31,192 samples, 0.47%; 0.00%)</title><rect x="22.7580%" y="245" width="0.4713%" height="15" fill="rgb(250,250,250)" fg:x="1506166" fg:w="31192"/><text x="23.0080%" y="255.50"></text></g><g><title>/sysimage (1,969 samples, 0.03%; 0.00%)</title><rect x="23.1996%" y="229" width="0.0298%" height="15" fill="rgb(250,250,250)" fg:x="1535389" fg:w="1969"/><text x="23.4496%" y="239.50"></text></g><g><title>/rpm (1,969 samples, 0.03%; -0.00%)</title><rect x="23.1996%" y="213" width="0.0298%" height="15" fill="rgb(210,210,255)" fg:x="1535389" fg:w="1969"/><text x="23.4496%" y="223.50"></text></g><g><title>usr (31,576 samples, 0.48%; 0.00%)</title><rect x="22.7525%" y="261" width="0.4771%" height="15" fill="rgb(250,250,250)" fg:x="1505801" fg:w="31576"/><text x="23.0025%" y="271.50"></text></g><g><title>/PackageKit (11,819 samples, 0.18%; -0.00%)</title><rect x="23.2296%" y="229" width="0.1786%" height="15" fill="rgb(210,210,255)" fg:x="1537377" fg:w="11819"/><text x="23.4796%" y="239.50"></text></g><g><title>/dnf (1,751 samples, 0.03%; -0.00%)</title><rect x="23.4082%" y="229" width="0.0265%" height="15" fill="rgb(210,210,255)" fg:x="1549196" fg:w="1751"/><text x="23.6582%" y="239.50"></text></g><g><title>syscall`ioctl (147,301 samples, 2.23%; 0.00%)</title><rect x="21.2090%" y="277" width="2.2257%" height="15" fill="rgb(250,250,250)" fg:x="1403648" fg:w="147301"/><text x="21.4590%" y="287.50">s..</text></g><g><title>var (13,572 samples, 0.21%; 0.00%)</title><rect x="23.2296%" y="261" width="0.2051%" height="15" fill="rgb(250,250,250)" fg:x="1537377" fg:w="13572"/><text x="23.4796%" y="271.50"></text></g><g><title>/lib (13,572 samples, 0.21%; 0.00%)</title><rect x="23.2296%" y="245" width="0.2051%" height="15" fill="rgb(250,250,250)" fg:x="1537377" fg:w="13572"/><text x="23.4796%" y="255.50"></text></g><g><title>. (16,718 samples, 0.25%; -0.00%)</title><rect x="23.4353%" y="261" width="0.2526%" height="15" fill="rgb(210,210,255)" fg:x="1550994" fg:w="16718"/><text x="23.6853%" y="271.50"></text></g><g><title>/.config (1,389 samples, 0.02%; 0.00%)</title><rect x="23.7069%" y="229" width="0.0210%" height="15" fill="rgb(250,250,250)" fg:x="1568969" fg:w="1389"/><text x="23.9569%" y="239.50"></text></g><g><title>/variety (1,387 samples, 0.02%; 0.00%)</title><rect x="23.7070%" y="213" width="0.0210%" height="15" fill="rgb(250,250,250)" fg:x="1568971" fg:w="1387"/><text x="23.9570%" y="223.50"></text></g><g><title>/wallpaper (1,363 samples, 0.02%; -0.00%)</title><rect x="23.7073%" y="197" width="0.0206%" height="15" fill="rgb(210,210,255)" fg:x="1568995" fg:w="1363"/><text x="23.9573%" y="207.50"></text></g><g><title>home (1,471 samples, 0.02%; 0.00%)</title><rect x="23.7064%" y="261" width="0.0222%" height="15" fill="rgb(250,250,250)" fg:x="1568935" fg:w="1471"/><text x="23.9564%" y="271.50"></text></g><g><title>/paul (1,471 samples, 0.02%; -0.00%)</title><rect x="23.7064%" y="245" width="0.0222%" height="15" fill="rgb(210,210,255)" fg:x="1568935" fg:w="1471"/><text x="23.9564%" y="255.50"></text></g><g><title>lib64 (4,568 samples, 0.07%; -0.00%)</title><rect x="23.7287%" y="261" width="0.0690%" height="15" fill="rgb(210,210,255)" fg:x="1570406" fg:w="4568"/><text x="23.9787%" y="271.50"></text></g><g><title>proc (2,845 samples, 0.04%; -0.00%)</title><rect x="23.7979%" y="261" width="0.0430%" height="15" fill="rgb(210,210,255)" fg:x="1574991" fg:w="2845"/><text x="24.0479%" y="271.50"></text></g><g><title>/self (1,985 samples, 0.03%; -0.00%)</title><rect x="23.8109%" y="245" width="0.0300%" height="15" fill="rgb(210,210,255)" fg:x="1575851" fg:w="1985"/><text x="24.0609%" y="255.50"></text></g><g><title>/app-ghostty-transient-7266.scope (1,200 samples, 0.02%; -0.00%)</title><rect x="23.8429%" y="149" width="0.0181%" height="15" fill="rgb(210,210,255)" fg:x="1577967" fg:w="1200"/><text x="24.0929%" y="159.50"></text></g><g><title>sys (1,353 samples, 0.02%; 0.00%)</title><rect x="23.8410%" y="261" width="0.0204%" height="15" fill="rgb(250,250,250)" fg:x="1577839" fg:w="1353"/><text x="24.0910%" y="271.50"></text></g><g><title>/fs (1,312 samples, 0.02%; 0.00%)</title><rect x="23.8416%" y="245" width="0.0198%" height="15" fill="rgb(250,250,250)" fg:x="1577880" fg:w="1312"/><text x="24.0916%" y="255.50"></text></g><g><title>/cgroup (1,312 samples, 0.02%; 0.00%)</title><rect x="23.8416%" y="229" width="0.0198%" height="15" fill="rgb(250,250,250)" fg:x="1577880" fg:w="1312"/><text x="24.0916%" y="239.50"></text></g><g><title>/user.slice (1,312 samples, 0.02%; -0.00%)</title><rect x="23.8416%" y="213" width="0.0198%" height="15" fill="rgb(210,210,255)" fg:x="1577880" fg:w="1312"/><text x="24.0916%" y="223.50"></text></g><g><title>/user-1001.slice (1,291 samples, 0.02%; -0.00%)</title><rect x="23.8419%" y="197" width="0.0195%" height="15" fill="rgb(210,210,255)" fg:x="1577901" fg:w="1291"/><text x="24.0919%" y="207.50"></text></g><g><title>/user@1001.service (1,268 samples, 0.02%; -0.00%)</title><rect x="23.8423%" y="181" width="0.0192%" height="15" fill="rgb(210,210,255)" fg:x="1577924" fg:w="1268"/><text x="24.0923%" y="191.50"></text></g><g><title>/app.slice (1,248 samples, 0.02%; -0.00%)</title><rect x="23.8426%" y="165" width="0.0189%" height="15" fill="rgb(210,210,255)" fg:x="1577944" fg:w="1248"/><text x="24.0926%" y="175.50"></text></g><g><title>/ahash-74bf26176269c590 (1,193 samples, 0.02%; -0.00%)</title><rect x="23.8684%" y="197" width="0.0180%" height="15" fill="rgb(210,210,255)" fg:x="1579655" fg:w="1193"/><text x="24.1184%" y="207.50"></text></g><g><title>/crossbeam-utils-f2814af48d824e43 (1,028 samples, 0.02%; -0.00%)</title><rect x="23.8864%" y="197" width="0.0155%" height="15" fill="rgb(210,210,255)" fg:x="1580848" fg:w="1028"/><text x="24.1364%" y="207.50"></text></g><g><title>/libc-1d506ce0bae4a438 (1,362 samples, 0.02%; -0.00%)</title><rect x="23.9139%" y="197" width="0.0206%" height="15" fill="rgb(210,210,255)" fg:x="1582669" fg:w="1362"/><text x="24.1639%" y="207.50"></text></g><g><title>/libc-6df8c6c6067cf019 (674 samples, 0.01%; -0.00%)</title><rect x="23.9345%" y="197" width="0.0102%" height="15" fill="rgb(210,210,255)" fg:x="1584031" fg:w="674"/><text x="24.1845%" y="207.50"></text></g><g><title>/lock_api-bc3a19ee97a6acc1 (1,717 samples, 0.03%; -0.00%)</title><rect x="23.9447%" y="197" width="0.0259%" height="15" fill="rgb(210,210,255)" fg:x="1584705" fg:w="1717"/><text x="24.1947%" y="207.50"></text></g><g><title>/num-traits-a13d3c8505e5acab (758 samples, 0.01%; -0.00%)</title><rect x="23.9707%" y="197" width="0.0115%" height="15" fill="rgb(210,210,255)" fg:x="1586422" fg:w="758"/><text x="24.2207%" y="207.50"></text></g><g><title>/openssl-sys-445e5167481f79f8 (6,429 samples, 0.10%; -0.00%)</title><rect x="23.9821%" y="197" width="0.0971%" height="15" fill="rgb(210,210,255)" fg:x="1587180" fg:w="6429"/><text x="24.2321%" y="207.50"></text></g><g><title>/paste-49f16e0b142648ec (699 samples, 0.01%; -0.00%)</title><rect x="24.0805%" y="197" width="0.0106%" height="15" fill="rgb(210,210,255)" fg:x="1593694" fg:w="699"/><text x="24.3305%" y="207.50"></text></g><g><title>/ring-35bd708cb2263f5e (2,431 samples, 0.04%; -0.00%)</title><rect x="24.1015%" y="197" width="0.0367%" height="15" fill="rgb(210,210,255)" fg:x="1595082" fg:w="2431"/><text x="24.3515%" y="207.50"></text></g><g><title>/ring-db56518308032458 (1,583 samples, 0.02%; 0.00%)</title><rect x="24.1382%" y="197" width="0.0239%" height="15" fill="rgb(250,250,250)" fg:x="1597513" fg:w="1583"/><text x="24.3882%" y="207.50"></text></g><g><title>/out (1,583 samples, 0.02%; -0.00%)</title><rect x="24.1382%" y="181" width="0.0239%" height="15" fill="rgb(210,210,255)" fg:x="1597513" fg:w="1583"/><text x="24.3882%" y="191.50"></text></g><g><title>/serde_json-24e185632056edfd (4,478 samples, 0.07%; -0.00%)</title><rect x="24.1711%" y="197" width="0.0677%" height="15" fill="rgb(210,210,255)" fg:x="1599690" fg:w="4478"/><text x="24.4211%" y="207.50"></text></g><g><title>/syn-1dcf10e4ca9e7c2f (1,469 samples, 0.02%; -0.00%)</title><rect x="24.2484%" y="197" width="0.0222%" height="15" fill="rgb(210,210,255)" fg:x="1604803" fg:w="1469"/><text x="24.4984%" y="207.50"></text></g><g><title>/thiserror-2f6e9df5cb6c9112 (716 samples, 0.01%; -0.00%)</title><rect x="24.2706%" y="197" width="0.0108%" height="15" fill="rgb(210,210,255)" fg:x="1606272" fg:w="716"/><text x="24.5206%" y="207.50"></text></g><g><title>/build (30,465 samples, 0.46%; 0.00%)</title><rect x="23.8684%" y="213" width="0.4603%" height="15" fill="rgb(250,250,250)" fg:x="1579655" fg:w="30465"/><text x="24.1184%" y="223.50"></text></g><g><title>/zerocopy-1a0763b7dd1fd0b7 (2,597 samples, 0.04%; -0.00%)</title><rect x="24.2895%" y="197" width="0.0392%" height="15" fill="rgb(210,210,255)" fg:x="1607523" fg:w="2597"/><text x="24.5395%" y="207.50"></text></g><g><title>/cargo-installCAQd8O (216,052 samples, 3.26%; 0.00%)</title><rect x="23.8614%" y="245" width="3.2645%" height="15" fill="rgb(250,250,250)" fg:x="1579192" fg:w="216052"/><text x="24.1114%" y="255.50">/ca..</text></g><g><title>/release (216,052 samples, 3.26%; 0.00%)</title><rect x="23.8614%" y="229" width="3.2645%" height="15" fill="rgb(250,250,250)" fg:x="1579192" fg:w="216052"/><text x="24.1114%" y="239.50">/re..</text></g><g><title>/deps (185,124 samples, 2.80%; -0.00%)</title><rect x="24.3287%" y="213" width="2.7972%" height="15" fill="rgb(210,210,255)" fg:x="1610120" fg:w="185124"/><text x="24.5787%" y="223.50">/d..</text></g><g><title>tmp (216,318 samples, 3.27%; 0.00%)</title><rect x="23.8614%" y="261" width="3.2685%" height="15" fill="rgb(250,250,250)" fg:x="1579192" fg:w="216318"/><text x="24.1114%" y="271.50">tmp</text></g><g><title>/lib64 (6,766 samples, 0.10%; -0.00%)</title><rect x="27.1311%" y="245" width="0.1022%" height="15" fill="rgb(210,210,255)" fg:x="1795585" fg:w="6766"/><text x="27.3811%" y="255.50"></text></g><g><title>/gcc (3,584 samples, 0.05%; 0.00%)</title><rect x="27.2334%" y="229" width="0.0542%" height="15" fill="rgb(250,250,250)" fg:x="1802355" fg:w="3584"/><text x="27.4834%" y="239.50"></text></g><g><title>/x86_64-redhat-linux (3,584 samples, 0.05%; 0.00%)</title><rect x="27.2334%" y="213" width="0.0542%" height="15" fill="rgb(250,250,250)" fg:x="1802355" fg:w="3584"/><text x="27.4834%" y="223.50"></text></g><g><title>/14 (3,584 samples, 0.05%; -0.00%)</title><rect x="27.2334%" y="197" width="0.0542%" height="15" fill="rgb(210,210,255)" fg:x="1802355" fg:w="3584"/><text x="27.4834%" y="207.50"></text></g><g><title>/lib (79,946 samples, 1.21%; 0.00%)</title><rect x="27.2333%" y="245" width="1.2080%" height="15" fill="rgb(250,250,250)" fg:x="1802351" fg:w="79946"/><text x="27.4833%" y="255.50"></text></g><g><title>/rustlib (76,292 samples, 1.15%; 0.00%)</title><rect x="27.2885%" y="229" width="1.1528%" height="15" fill="rgb(250,250,250)" fg:x="1806005" fg:w="76292"/><text x="27.5385%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (76,292 samples, 1.15%; 0.00%)</title><rect x="27.2885%" y="213" width="1.1528%" height="15" fill="rgb(250,250,250)" fg:x="1806005" fg:w="76292"/><text x="27.5385%" y="223.50"></text></g><g><title>/lib (76,292 samples, 1.15%; -0.00%)</title><rect x="27.2885%" y="197" width="1.1528%" height="15" fill="rgb(210,210,255)" fg:x="1806005" fg:w="76292"/><text x="27.5385%" y="207.50"></text></g><g><title>/fonts (6,191 samples, 0.09%; 0.00%)</title><rect x="28.4458%" y="229" width="0.0935%" height="15" fill="rgb(250,250,250)" fg:x="1882595" fg:w="6191"/><text x="28.6958%" y="239.50"></text></g><g><title>/google-noto-vf (6,191 samples, 0.09%; -0.00%)</title><rect x="28.4458%" y="213" width="0.0935%" height="15" fill="rgb(210,210,255)" fg:x="1882595" fg:w="6191"/><text x="28.6958%" y="223.50"></text></g><g><title>usr (93,309 samples, 1.41%; -0.00%)</title><rect x="27.1299%" y="261" width="1.4099%" height="15" fill="rgb(210,210,255)" fg:x="1795510" fg:w="93309"/><text x="27.3799%" y="271.50"></text></g><g><title>/share (6,486 samples, 0.10%; 0.00%)</title><rect x="28.4418%" y="245" width="0.0980%" height="15" fill="rgb(250,250,250)" fg:x="1882333" fg:w="6486"/><text x="28.6918%" y="255.50"></text></g><g><title>syscall`lseek (337,898 samples, 5.11%; 0.00%)</title><rect x="23.4350%" y="277" width="5.1056%" height="15" fill="rgb(250,250,250)" fg:x="1550974" fg:w="337898"/><text x="23.6850%" y="287.50">syscal..</text></g><g><title>. (235,616 samples, 3.56%; -0.00%)</title><rect x="28.5596%" y="261" width="3.5601%" height="15" fill="rgb(210,210,255)" fg:x="1890126" fg:w="235616"/><text x="28.8096%" y="271.50">.</text></g><g><title>deployruntime (1,019 samples, 0.02%; 0.00%)</title><rect x="32.1507%" y="261" width="0.0154%" height="15" fill="rgb(250,250,250)" fg:x="2127792" fg:w="1019"/><text x="32.4007%" y="271.50"></text></g><g><title>etc (1,428 samples, 0.02%; -0.00%)</title><rect x="32.1697%" y="261" width="0.0216%" height="15" fill="rgb(210,210,255)" fg:x="2129050" fg:w="1428"/><text x="32.4197%" y="271.50"></text></g><g><title>/b858795cc6c2167f9780575e2df82e5f83afa805a4392df8f2d3d9687f4184ec (736 samples, 0.01%; 0.00%)</title><rect x="32.2327%" y="149" width="0.0111%" height="15" fill="rgb(250,250,250)" fg:x="2133222" fg:w="736"/><text x="32.4827%" y="159.50"></text></g><g><title>/diff (736 samples, 0.01%; 0.00%)</title><rect x="32.2327%" y="133" width="0.0111%" height="15" fill="rgb(250,250,250)" fg:x="2133222" fg:w="736"/><text x="32.4827%" y="143.50"></text></g><g><title>/app (736 samples, 0.01%; -0.00%)</title><rect x="32.2327%" y="117" width="0.0111%" height="15" fill="rgb(210,210,255)" fg:x="2133222" fg:w="736"/><text x="32.4827%" y="127.50"></text></g><g><title>/containers (2,269 samples, 0.03%; -0.00%)</title><rect x="32.2119%" y="197" width="0.0343%" height="15" fill="rgb(210,210,255)" fg:x="2131846" fg:w="2269"/><text x="32.4619%" y="207.50"></text></g><g><title>/storage (2,267 samples, 0.03%; -0.00%)</title><rect x="32.2120%" y="181" width="0.0343%" height="15" fill="rgb(210,210,255)" fg:x="2131848" fg:w="2267"/><text x="32.4620%" y="191.50"></text></g><g><title>/overlay (2,262 samples, 0.03%; 0.00%)</title><rect x="32.2121%" y="165" width="0.0342%" height="15" fill="rgb(250,250,250)" fg:x="2131853" fg:w="2262"/><text x="32.4621%" y="175.50"></text></g><g><title>/gem (829 samples, 0.01%; -0.00%)</title><rect x="32.2463%" y="197" width="0.0125%" height="15" fill="rgb(210,210,255)" fg:x="2134118" fg:w="829"/><text x="32.4963%" y="207.50"></text></g><g><title>/ruby (825 samples, 0.01%; -0.00%)</title><rect x="32.2463%" y="181" width="0.0125%" height="15" fill="rgb(210,210,255)" fg:x="2134122" fg:w="825"/><text x="32.4963%" y="191.50"></text></g><g><title>/share (3,599 samples, 0.05%; -0.00%)</title><rect x="32.2090%" y="213" width="0.0544%" height="15" fill="rgb(210,210,255)" fg:x="2131649" fg:w="3599"/><text x="32.4590%" y="223.50"></text></g><g><title>/.local (3,663 samples, 0.06%; -0.00%)</title><rect x="32.2081%" y="229" width="0.0553%" height="15" fill="rgb(210,210,255)" fg:x="2131589" fg:w="3663"/><text x="32.4581%" y="239.50"></text></g><g><title>/runtime (675 samples, 0.01%; 0.00%)</title><rect x="32.2872%" y="197" width="0.0102%" height="15" fill="rgb(250,250,250)" fg:x="2136825" fg:w="675"/><text x="32.5372%" y="207.50"></text></g><g><title>/grammars (675 samples, 0.01%; -0.00%)</title><rect x="32.2872%" y="181" width="0.0102%" height="15" fill="rgb(200,200,255)" fg:x="2136825" fg:w="675"/><text x="32.5372%" y="191.50"></text></g><g><title>/helix (681 samples, 0.01%; 0.00%)</title><rect x="32.2872%" y="213" width="0.0103%" height="15" fill="rgb(250,250,250)" fg:x="2136825" fg:w="681"/><text x="32.5372%" y="223.50"></text></g><g><title>/git (2,228 samples, 0.03%; -0.00%)</title><rect x="32.2761%" y="229" width="0.0337%" height="15" fill="rgb(200,200,255)" fg:x="2136089" fg:w="2228"/><text x="32.5261%" y="239.50"></text></g><g><title>/cache (834 samples, 0.01%; -0.00%)</title><rect x="32.3117%" y="181" width="0.0126%" height="15" fill="rgb(200,200,255)" fg:x="2138449" fg:w="834"/><text x="32.5617%" y="191.50"></text></g><g><title>/pkg (1,712 samples, 0.03%; -0.00%)</title><rect x="32.3098%" y="213" width="0.0259%" height="15" fill="rgb(200,200,255)" fg:x="2138319" fg:w="1712"/><text x="32.5598%" y="223.50"></text></g><g><title>/mod (1,708 samples, 0.03%; -0.00%)</title><rect x="32.3098%" y="197" width="0.0258%" height="15" fill="rgb(200,200,255)" fg:x="2138323" fg:w="1708"/><text x="32.5598%" y="207.50"></text></g><g><title>/go (1,728 samples, 0.03%; -0.00%)</title><rect x="32.3097%" y="229" width="0.0261%" height="15" fill="rgb(200,200,255)" fg:x="2138317" fg:w="1728"/><text x="32.5597%" y="239.50"></text></g><g><title>home (9,535 samples, 0.14%; -0.00%)</title><rect x="32.1919%" y="261" width="0.1441%" height="15" fill="rgb(210,210,255)" fg:x="2130517" fg:w="9535"/><text x="32.4419%" y="271.50"></text></g><g><title>/paul (9,522 samples, 0.14%; -0.00%)</title><rect x="32.1921%" y="245" width="0.1439%" height="15" fill="rgb(210,210,255)" fg:x="2130530" fg:w="9522"/><text x="32.4421%" y="255.50"></text></g><g><title>lib64 (3,843 samples, 0.06%; -0.00%)</title><rect x="32.3370%" y="261" width="0.0581%" height="15" fill="rgb(200,200,255)" fg:x="2140120" fg:w="3843"/><text x="32.5870%" y="271.50"></text></g><g><title>proc (4,091 samples, 0.06%; -0.00%)</title><rect x="32.3952%" y="261" width="0.0618%" height="15" fill="rgb(200,200,255)" fg:x="2143974" fg:w="4091"/><text x="32.6452%" y="271.50"></text></g><g><title>/app.slice (5,104 samples, 0.08%; -0.00%)</title><rect x="32.4855%" y="165" width="0.0771%" height="15" fill="rgb(200,200,255)" fg:x="2149953" fg:w="5104"/><text x="32.7355%" y="175.50"></text></g><g><title>/fs (5,719 samples, 0.09%; -0.00%)</title><rect x="32.4809%" y="245" width="0.0864%" height="15" fill="rgb(200,200,255)" fg:x="2149648" fg:w="5719"/><text x="32.7309%" y="255.50"></text></g><g><title>/cgroup (5,718 samples, 0.09%; 0.00%)</title><rect x="32.4809%" y="229" width="0.0864%" height="15" fill="rgb(250,250,250)" fg:x="2149649" fg:w="5718"/><text x="32.7309%" y="239.50"></text></g><g><title>/user.slice (5,584 samples, 0.08%; -0.00%)</title><rect x="32.4830%" y="213" width="0.0844%" height="15" fill="rgb(200,200,255)" fg:x="2149783" fg:w="5584"/><text x="32.7330%" y="223.50"></text></g><g><title>/user-1001.slice (5,417 samples, 0.08%; -0.00%)</title><rect x="32.4855%" y="197" width="0.0819%" height="15" fill="rgb(200,200,255)" fg:x="2149950" fg:w="5417"/><text x="32.7355%" y="207.50"></text></g><g><title>/user@1001.service (5,416 samples, 0.08%; -0.00%)</title><rect x="32.4855%" y="181" width="0.0818%" height="15" fill="rgb(200,200,255)" fg:x="2149951" fg:w="5416"/><text x="32.7355%" y="191.50"></text></g><g><title>sys (6,046 samples, 0.09%; -0.00%)</title><rect x="32.4777%" y="261" width="0.0914%" height="15" fill="rgb(200,200,255)" fg:x="2149436" fg:w="6046"/><text x="32.7277%" y="271.50"></text></g><g><title>/cargo-installCAQd8O (1,678 samples, 0.03%; 0.00%)</title><rect x="32.5706%" y="245" width="0.0254%" height="15" fill="rgb(250,250,250)" fg:x="2155579" fg:w="1678"/><text x="32.8206%" y="255.50"></text></g><g><title>/release (1,678 samples, 0.03%; -0.00%)</title><rect x="32.5706%" y="229" width="0.0254%" height="15" fill="rgb(200,200,255)" fg:x="2155579" fg:w="1678"/><text x="32.8206%" y="239.50"></text></g><g><title>/deps (1,221 samples, 0.02%; -0.00%)</title><rect x="32.5775%" y="213" width="0.0184%" height="15" fill="rgb(200,200,255)" fg:x="2156036" fg:w="1221"/><text x="32.8275%" y="223.50"></text></g><g><title>tmp (1,845 samples, 0.03%; -0.00%)</title><rect x="32.5692%" y="261" width="0.0279%" height="15" fill="rgb(200,200,255)" fg:x="2155492" fg:w="1845"/><text x="32.8192%" y="271.50"></text></g><g><title>/lib64 (1,728 samples, 0.03%; -0.00%)</title><rect x="32.6011%" y="245" width="0.0261%" height="15" fill="rgb(200,200,255)" fg:x="2157599" fg:w="1728"/><text x="32.8511%" y="255.50"></text></g><g><title>/rustlib (1,029 samples, 0.02%; 0.00%)</title><rect x="32.6399%" y="229" width="0.0155%" height="15" fill="rgb(250,250,250)" fg:x="2160166" fg:w="1029"/><text x="32.8899%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (1,029 samples, 0.02%; -0.00%)</title><rect x="32.6399%" y="213" width="0.0155%" height="15" fill="rgb(200,200,255)" fg:x="2160166" fg:w="1029"/><text x="32.8899%" y="223.50"></text></g><g><title>/lib (937 samples, 0.01%; -0.00%)</title><rect x="32.6413%" y="197" width="0.0142%" height="15" fill="rgb(200,200,255)" fg:x="2160258" fg:w="937"/><text x="32.8913%" y="207.50"></text></g><g><title>/lib (2,142 samples, 0.03%; 0.00%)</title><rect x="32.6272%" y="245" width="0.0324%" height="15" fill="rgb(250,250,250)" fg:x="2159327" fg:w="2142"/><text x="32.8772%" y="255.50"></text></g><g><title>/share (1,792 samples, 0.03%; -0.00%)</title><rect x="32.6621%" y="245" width="0.0271%" height="15" fill="rgb(200,200,255)" fg:x="2161641" fg:w="1792"/><text x="32.9121%" y="255.50"></text></g><g><title>usr (6,213 samples, 0.09%; -0.00%)</title><rect x="32.5973%" y="261" width="0.0939%" height="15" fill="rgb(200,200,255)" fg:x="2157348" fg:w="6213"/><text x="32.8473%" y="271.50"></text></g><g><title>/flatpak (1,454 samples, 0.02%; -0.00%)</title><rect x="32.6966%" y="229" width="0.0220%" height="15" fill="rgb(200,200,255)" fg:x="2163923" fg:w="1454"/><text x="32.9466%" y="239.50"></text></g><g><title>/lib (1,871 samples, 0.03%; 0.00%)</title><rect x="32.6913%" y="245" width="0.0283%" height="15" fill="rgb(250,250,250)" fg:x="2163570" fg:w="1871"/><text x="32.9413%" y="255.50"></text></g><g><title>/log (8,349 samples, 0.13%; 0.00%)</title><rect x="32.7196%" y="245" width="0.1262%" height="15" fill="rgb(250,250,250)" fg:x="2165441" fg:w="8349"/><text x="32.9696%" y="255.50"></text></g><g><title>/journal (8,349 samples, 0.13%; -0.00%)</title><rect x="32.7196%" y="229" width="0.1262%" height="15" fill="rgb(200,200,255)" fg:x="2165441" fg:w="8349"/><text x="32.9696%" y="239.50"></text></g><g><title>/451c975916dc4536919a44482a914925 (8,348 samples, 0.13%; -0.00%)</title><rect x="32.7196%" y="213" width="0.1261%" height="15" fill="rgb(200,200,255)" fg:x="2165442" fg:w="8348"/><text x="32.9696%" y="223.50"></text></g><g><title>syscall`newfstat (284,270 samples, 4.30%; 0.00%)</title><rect x="28.5505%" y="277" width="4.2953%" height="15" fill="rgb(250,250,250)" fg:x="1889522" fg:w="284270"/><text x="28.8005%" y="287.50">sysca..</text></g><g><title>var (10,231 samples, 0.15%; 0.00%)</title><rect x="32.6912%" y="261" width="0.1546%" height="15" fill="rgb(250,250,250)" fg:x="2163561" fg:w="10231"/><text x="32.9412%" y="271.50"></text></g><g><title>. (95,035 samples, 1.44%; -0.00%)</title><rect x="32.8485%" y="261" width="1.4360%" height="15" fill="rgb(200,200,255)" fg:x="2173975" fg:w="95035"/><text x="33.0985%" y="271.50"></text></g><g><title>etc (7,997 samples, 0.12%; -0.00%)</title><rect x="34.2892%" y="261" width="0.1208%" height="15" fill="rgb(200,200,255)" fg:x="2269321" fg:w="7997"/><text x="34.5392%" y="271.50"></text></g><g><title>/gnome-software (1,430 samples, 0.02%; 0.00%)</title><rect x="34.4248%" y="213" width="0.0216%" height="15" fill="rgb(250,250,250)" fg:x="2278294" fg:w="1430"/><text x="34.6748%" y="223.50"></text></g><g><title>/icons (1,430 samples, 0.02%; -0.00%)</title><rect x="34.4248%" y="197" width="0.0216%" height="15" fill="rgb(200,200,255)" fg:x="2278294" fg:w="1430"/><text x="34.6748%" y="207.50"></text></g><g><title>/gopls (25,516 samples, 0.39%; -0.00%)</title><rect x="34.4464%" y="213" width="0.3855%" height="15" fill="rgb(200,200,255)" fg:x="2279724" fg:w="25516"/><text x="34.6964%" y="223.50"></text></g><g><title>/2c478f68 (25,515 samples, 0.39%; -0.00%)</title><rect x="34.4464%" y="197" width="0.3855%" height="15" fill="rgb(200,200,255)" fg:x="2279725" fg:w="25515"/><text x="34.6964%" y="207.50"></text></g><g><title>/.cache (27,241 samples, 0.41%; -0.00%)</title><rect x="34.4214%" y="229" width="0.4116%" height="15" fill="rgb(200,200,255)" fg:x="2278071" fg:w="27241"/><text x="34.6714%" y="239.50"></text></g><g><title>/.cargo (682 samples, 0.01%; -0.00%)</title><rect x="34.8330%" y="229" width="0.0103%" height="15" fill="rgb(200,200,255)" fg:x="2305312" fg:w="682"/><text x="35.0830%" y="239.50"></text></g><g><title>home (30,168 samples, 0.46%; -0.00%)</title><rect x="34.4100%" y="261" width="0.4558%" height="15" fill="rgb(200,200,255)" fg:x="2277318" fg:w="30168"/><text x="34.6600%" y="271.50"></text></g><g><title>/paul (30,095 samples, 0.45%; -0.00%)</title><rect x="34.4111%" y="245" width="0.4547%" height="15" fill="rgb(200,200,255)" fg:x="2277391" fg:w="30095"/><text x="34.6611%" y="255.50"></text></g><g><title>/deps (1,326 samples, 0.02%; -0.00%)</title><rect x="34.8869%" y="213" width="0.0200%" height="15" fill="rgb(200,200,255)" fg:x="2308876" fg:w="1326"/><text x="35.1369%" y="223.50"></text></g><g><title>/glibc-hwcaps (778 samples, 0.01%; 0.00%)</title><rect x="34.8951%" y="197" width="0.0118%" height="15" fill="rgb(250,250,250)" fg:x="2309424" fg:w="778"/><text x="35.1451%" y="207.50"></text></g><g><title>/cargo-installCAQd8O (1,887 samples, 0.03%; 0.00%)</title><rect x="34.8820%" y="245" width="0.0285%" height="15" fill="rgb(250,250,250)" fg:x="2308557" fg:w="1887"/><text x="35.1320%" y="255.50"></text></g><g><title>/release (1,887 samples, 0.03%; -0.00%)</title><rect x="34.8820%" y="229" width="0.0285%" height="15" fill="rgb(200,200,255)" fg:x="2308557" fg:w="1887"/><text x="35.1320%" y="239.50"></text></g><g><title>tmp (2,053 samples, 0.03%; -0.00%)</title><rect x="34.8802%" y="261" width="0.0310%" height="15" fill="rgb(200,200,255)" fg:x="2308435" fg:w="2053"/><text x="35.1302%" y="271.50"></text></g><g><title>/bin (2,297 samples, 0.03%; -0.00%)</title><rect x="34.9139%" y="245" width="0.0347%" height="15" fill="rgb(200,200,255)" fg:x="2310664" fg:w="2297"/><text x="35.1639%" y="255.50"></text></g><g><title>/lib64 (1,293 samples, 0.02%; -0.00%)</title><rect x="34.9584%" y="245" width="0.0195%" height="15" fill="rgb(200,200,255)" fg:x="2313611" fg:w="1293"/><text x="35.2084%" y="255.50"></text></g><g><title>/gcc (668 samples, 0.01%; 0.00%)</title><rect x="34.9782%" y="229" width="0.0101%" height="15" fill="rgb(250,250,250)" fg:x="2314919" fg:w="668"/><text x="35.2282%" y="239.50"></text></g><g><title>/x86_64-redhat-linux (668 samples, 0.01%; -0.00%)</title><rect x="34.9782%" y="213" width="0.0101%" height="15" fill="rgb(200,200,255)" fg:x="2314919" fg:w="668"/><text x="35.2282%" y="223.50"></text></g><g><title>/rustlib (1,321 samples, 0.02%; 0.00%)</title><rect x="34.9907%" y="229" width="0.0200%" height="15" fill="rgb(250,250,250)" fg:x="2315749" fg:w="1321"/><text x="35.2407%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (1,321 samples, 0.02%; 0.00%)</title><rect x="34.9907%" y="213" width="0.0200%" height="15" fill="rgb(250,250,250)" fg:x="2315749" fg:w="1321"/><text x="35.2407%" y="223.50"></text></g><g><title>/lib (1,203 samples, 0.02%; -0.00%)</title><rect x="34.9925%" y="197" width="0.0182%" height="15" fill="rgb(200,200,255)" fg:x="2315867" fg:w="1203"/><text x="35.2425%" y="207.50"></text></g><g><title>/lib (2,515 samples, 0.04%; 0.00%)</title><rect x="34.9779%" y="245" width="0.0380%" height="15" fill="rgb(250,250,250)" fg:x="2314904" fg:w="2515"/><text x="35.2279%" y="255.50"></text></g><g><title>/libexec (699 samples, 0.01%; -0.00%)</title><rect x="35.0159%" y="245" width="0.0106%" height="15" fill="rgb(200,200,255)" fg:x="2317419" fg:w="699"/><text x="35.2659%" y="255.50"></text></g><g><title>/gcc (672 samples, 0.01%; 0.00%)</title><rect x="35.0163%" y="229" width="0.0102%" height="15" fill="rgb(250,250,250)" fg:x="2317446" fg:w="672"/><text x="35.2663%" y="239.50"></text></g><g><title>/x86_64-redhat-linux (672 samples, 0.01%; -0.00%)</title><rect x="35.0163%" y="213" width="0.0102%" height="15" fill="rgb(200,200,255)" fg:x="2317446" fg:w="672"/><text x="35.2663%" y="223.50"></text></g><g><title>/5.9 (1,358 samples, 0.02%; -0.00%)</title><rect x="35.0419%" y="213" width="0.0205%" height="15" fill="rgb(200,200,255)" fg:x="2319137" fg:w="1358"/><text x="35.2919%" y="223.50"></text></g><g><title>/functions (1,337 samples, 0.02%; -0.00%)</title><rect x="35.0422%" y="197" width="0.0202%" height="15" fill="rgb(200,200,255)" fg:x="2319158" fg:w="1337"/><text x="35.2922%" y="207.50"></text></g><g><title>/share (1,790 samples, 0.03%; -0.00%)</title><rect x="35.0370%" y="245" width="0.0270%" height="15" fill="rgb(200,200,255)" fg:x="2318814" fg:w="1790"/><text x="35.2870%" y="255.50"></text></g><g><title>/zsh (1,467 samples, 0.02%; 0.00%)</title><rect x="35.0419%" y="229" width="0.0222%" height="15" fill="rgb(250,250,250)" fg:x="2319137" fg:w="1467"/><text x="35.2919%" y="239.50"></text></g><g><title>usr (10,329 samples, 0.16%; -0.00%)</title><rect x="34.9113%" y="261" width="0.1561%" height="15" fill="rgb(200,200,255)" fg:x="2310497" fg:w="10329"/><text x="35.1613%" y="271.50"></text></g><g><title>/lib (752 samples, 0.01%; -0.00%)</title><rect x="35.0680%" y="245" width="0.0114%" height="15" fill="rgb(200,200,255)" fg:x="2320867" fg:w="752"/><text x="35.3180%" y="255.50"></text></g><g><title>syscall`newfstatat (147,828 samples, 2.23%; 0.00%)</title><rect x="32.8457%" y="277" width="2.2337%" height="15" fill="rgb(250,250,250)" fg:x="2173792" fg:w="147828"/><text x="33.0957%" y="287.50">s..</text></g><g><title>var (794 samples, 0.01%; -0.00%)</title><rect x="35.0674%" y="261" width="0.0120%" height="15" fill="rgb(200,200,255)" fg:x="2320826" fg:w="794"/><text x="35.3174%" y="271.50"></text></g><g><title> (1,487 samples, 0.02%; -0.00%)</title><rect x="35.0819%" y="261" width="0.0225%" height="15" fill="rgb(200,200,255)" fg:x="2321783" fg:w="1487"/><text x="35.3319%" y="271.50"></text></g><g><title>. (154,226 samples, 2.33%; -0.00%)</title><rect x="35.1043%" y="261" width="2.3303%" height="15" fill="rgb(200,200,255)" fg:x="2323270" fg:w="154226"/><text x="35.3543%" y="271.50">.</text></g><g><title>deployruntime (1,013 samples, 0.02%; 0.00%)</title><rect x="37.4594%" y="261" width="0.0153%" height="15" fill="rgb(250,250,250)" fg:x="2479129" fg:w="1013"/><text x="37.7094%" y="271.50"></text></g><g><title>dev (2,993 samples, 0.05%; -0.00%)</title><rect x="37.4747%" y="261" width="0.0452%" height="15" fill="rgb(200,200,255)" fg:x="2480142" fg:w="2993"/><text x="37.7247%" y="271.50"></text></g><g><title>etc (1,470 samples, 0.02%; -0.00%)</title><rect x="37.5202%" y="261" width="0.0222%" height="15" fill="rgb(200,200,255)" fg:x="2483159" fg:w="1470"/><text x="37.7702%" y="271.50"></text></g><g><title>/.cargo (1,794 samples, 0.03%; -0.00%)</title><rect x="37.5529%" y="229" width="0.0271%" height="15" fill="rgb(200,200,255)" fg:x="2485322" fg:w="1794"/><text x="37.8029%" y="239.50"></text></g><g><title>/registry (1,786 samples, 0.03%; 0.00%)</title><rect x="37.5531%" y="213" width="0.0270%" height="15" fill="rgb(250,250,250)" fg:x="2485330" fg:w="1786"/><text x="37.8031%" y="223.50"></text></g><g><title>/src (1,342 samples, 0.02%; 0.00%)</title><rect x="37.5598%" y="197" width="0.0203%" height="15" fill="rgb(250,250,250)" fg:x="2485774" fg:w="1342"/><text x="37.8098%" y="207.50"></text></g><g><title>/index.crates.io-1949cf8c6b5b557f (1,342 samples, 0.02%; 0.00%)</title><rect x="37.5598%" y="181" width="0.0203%" height="15" fill="rgb(250,250,250)" fg:x="2485774" fg:w="1342"/><text x="37.8098%" y="191.50"></text></g><g><title>home (3,027 samples, 0.05%; -0.00%)</title><rect x="37.5427%" y="261" width="0.0457%" height="15" fill="rgb(200,200,255)" fg:x="2484642" fg:w="3027"/><text x="37.7927%" y="271.50"></text></g><g><title>/paul (3,016 samples, 0.05%; -0.00%)</title><rect x="37.5428%" y="245" width="0.0456%" height="15" fill="rgb(200,200,255)" fg:x="2484653" fg:w="3016"/><text x="37.7928%" y="255.50"></text></g><g><title>lib64 (3,766 samples, 0.06%; -0.00%)</title><rect x="37.5900%" y="261" width="0.0569%" height="15" fill="rgb(200,200,255)" fg:x="2487774" fg:w="3766"/><text x="37.8400%" y="271.50"></text></g><g><title>proc (4,568 samples, 0.07%; -0.00%)</title><rect x="37.6470%" y="261" width="0.0690%" height="15" fill="rgb(200,200,255)" fg:x="2491546" fg:w="4568"/><text x="37.8970%" y="271.50"></text></g><g><title>/app.slice (4,350 samples, 0.07%; -0.00%)</title><rect x="37.7546%" y="165" width="0.0657%" height="15" fill="rgb(200,200,255)" fg:x="2498669" fg:w="4350"/><text x="38.0046%" y="175.50"></text></g><g><title>/cgroup (4,989 samples, 0.08%; -0.00%)</title><rect x="37.7490%" y="229" width="0.0754%" height="15" fill="rgb(200,200,255)" fg:x="2498295" fg:w="4989"/><text x="37.9990%" y="239.50"></text></g><g><title>/user.slice (4,824 samples, 0.07%; -0.00%)</title><rect x="37.7514%" y="213" width="0.0729%" height="15" fill="rgb(200,200,255)" fg:x="2498460" fg:w="4824"/><text x="38.0014%" y="223.50"></text></g><g><title>/user-1001.slice (4,659 samples, 0.07%; -0.00%)</title><rect x="37.7539%" y="197" width="0.0704%" height="15" fill="rgb(200,200,255)" fg:x="2498625" fg:w="4659"/><text x="38.0039%" y="207.50"></text></g><g><title>/user@1001.service (4,635 samples, 0.07%; -0.00%)</title><rect x="37.7543%" y="181" width="0.0700%" height="15" fill="rgb(200,200,255)" fg:x="2498649" fg:w="4635"/><text x="38.0043%" y="191.50"></text></g><g><title>/fs (4,995 samples, 0.08%; -0.00%)</title><rect x="37.7489%" y="245" width="0.0755%" height="15" fill="rgb(200,200,255)" fg:x="2498292" fg:w="4995"/><text x="37.9989%" y="255.50"></text></g><g><title>sys (5,595 samples, 0.08%; 0.00%)</title><rect x="37.7417%" y="261" width="0.0845%" height="15" fill="rgb(250,250,250)" fg:x="2497812" fg:w="5595"/><text x="37.9917%" y="271.50"></text></g><g><title>/glibc-hwcaps (777 samples, 0.01%; 0.00%)</title><rect x="37.9351%" y="197" width="0.0117%" height="15" fill="rgb(250,250,250)" fg:x="2510616" fg:w="777"/><text x="38.1851%" y="207.50"></text></g><g><title>/deps (4,448 samples, 0.07%; -0.00%)</title><rect x="37.8808%" y="213" width="0.0672%" height="15" fill="rgb(200,200,255)" fg:x="2507021" fg:w="4448"/><text x="38.1308%" y="223.50"></text></g><g><title>/cargo-installCAQd8O (6,264 samples, 0.09%; 0.00%)</title><rect x="37.8570%" y="245" width="0.0946%" height="15" fill="rgb(250,250,250)" fg:x="2505445" fg:w="6264"/><text x="38.1070%" y="255.50"></text></g><g><title>/release (6,264 samples, 0.09%; -0.00%)</title><rect x="37.8570%" y="229" width="0.0946%" height="15" fill="rgb(200,200,255)" fg:x="2505445" fg:w="6264"/><text x="38.1070%" y="239.50"></text></g><g><title>tmp (6,617 samples, 0.10%; -0.00%)</title><rect x="37.8546%" y="261" width="0.1000%" height="15" fill="rgb(200,200,255)" fg:x="2505288" fg:w="6617"/><text x="38.1046%" y="271.50"></text></g><g><title>/lib64 (2,128 samples, 0.03%; -0.00%)</title><rect x="37.9609%" y="245" width="0.0322%" height="15" fill="rgb(200,200,255)" fg:x="2512320" fg:w="2128"/><text x="38.2109%" y="255.50"></text></g><g><title>/rustlib (5,935 samples, 0.09%; 0.00%)</title><rect x="38.0069%" y="229" width="0.0897%" height="15" fill="rgb(250,250,250)" fg:x="2515367" fg:w="5935"/><text x="38.2569%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (5,935 samples, 0.09%; -0.00%)</title><rect x="38.0069%" y="213" width="0.0897%" height="15" fill="rgb(200,200,255)" fg:x="2515367" fg:w="5935"/><text x="38.2569%" y="223.50"></text></g><g><title>/lib (5,842 samples, 0.09%; -0.00%)</title><rect x="38.0083%" y="197" width="0.0883%" height="15" fill="rgb(200,200,255)" fg:x="2515460" fg:w="5842"/><text x="38.2583%" y="207.50"></text></g><g><title>/lib (6,933 samples, 0.10%; 0.00%)</title><rect x="37.9930%" y="245" width="0.1048%" height="15" fill="rgb(250,250,250)" fg:x="2514448" fg:w="6933"/><text x="38.2430%" y="255.50"></text></g><g><title>/applications (881 samples, 0.01%; -0.00%)</title><rect x="38.1000%" y="229" width="0.0133%" height="15" fill="rgb(200,200,255)" fg:x="2521527" fg:w="881"/><text x="38.3500%" y="239.50"></text></g><g><title>/locale (768 samples, 0.01%; -0.00%)</title><rect x="38.1165%" y="229" width="0.0116%" height="15" fill="rgb(200,200,255)" fg:x="2522622" fg:w="768"/><text x="38.3665%" y="239.50"></text></g><g><title>usr (11,690 samples, 0.18%; -0.00%)</title><rect x="37.9549%" y="261" width="0.1766%" height="15" fill="rgb(200,200,255)" fg:x="2511923" fg:w="11690"/><text x="38.2049%" y="271.50"></text></g><g><title>/share (2,095 samples, 0.03%; -0.00%)</title><rect x="38.0998%" y="245" width="0.0317%" height="15" fill="rgb(200,200,255)" fg:x="2521518" fg:w="2095"/><text x="38.3498%" y="255.50"></text></g><g><title>/flatpak (2,204 samples, 0.03%; -0.00%)</title><rect x="38.1329%" y="229" width="0.0333%" height="15" fill="rgb(200,200,255)" fg:x="2523706" fg:w="2204"/><text x="38.3829%" y="239.50"></text></g><g><title>/runtime (1,296 samples, 0.02%; -0.00%)</title><rect x="38.1466%" y="213" width="0.0196%" height="15" fill="rgb(200,200,255)" fg:x="2524614" fg:w="1296"/><text x="38.3966%" y="223.50"></text></g><g><title>/lib (2,495 samples, 0.04%; 0.00%)</title><rect x="38.1317%" y="245" width="0.0377%" height="15" fill="rgb(250,250,250)" fg:x="2523628" fg:w="2495"/><text x="38.3817%" y="255.50"></text></g><g><title>syscall`openat (204,427 samples, 3.09%; 0.00%)</title><rect x="35.0819%" y="277" width="3.0889%" height="15" fill="rgb(250,250,250)" fg:x="2321783" fg:w="204427"/><text x="35.3319%" y="287.50">sys..</text></g><g><title>var (2,597 samples, 0.04%; 0.00%)</title><rect x="38.1315%" y="261" width="0.0392%" height="15" fill="rgb(250,250,250)" fg:x="2523613" fg:w="2597"/><text x="38.3815%" y="271.50"></text></g><g><title>. (3,811 samples, 0.06%; -0.00%)</title><rect x="38.1707%" y="261" width="0.0576%" height="15" fill="rgb(200,200,255)" fg:x="2526210" fg:w="3811"/><text x="38.4207%" y="271.50"></text></g><g><title>/.cache (3,209 samples, 0.05%; 0.00%)</title><rect x="38.2285%" y="229" width="0.0485%" height="15" fill="rgb(250,250,250)" fg:x="2530032" fg:w="3209"/><text x="38.4785%" y="239.50"></text></g><g><title>/tracker3 (3,209 samples, 0.05%; 0.00%)</title><rect x="38.2285%" y="213" width="0.0485%" height="15" fill="rgb(250,250,250)" fg:x="2530032" fg:w="3209"/><text x="38.4785%" y="223.50"></text></g><g><title>/files (3,209 samples, 0.05%; -0.00%)</title><rect x="38.2285%" y="197" width="0.0485%" height="15" fill="rgb(200,200,255)" fg:x="2530032" fg:w="3209"/><text x="38.4785%" y="207.50"></text></g><g><title>home (3,255 samples, 0.05%; 0.00%)</title><rect x="38.2285%" y="261" width="0.0492%" height="15" fill="rgb(250,250,250)" fg:x="2530032" fg:w="3255"/><text x="38.4785%" y="271.50"></text></g><g><title>/paul (3,255 samples, 0.05%; 0.00%)</title><rect x="38.2285%" y="245" width="0.0492%" height="15" fill="rgb(250,250,250)" fg:x="2530032" fg:w="3255"/><text x="38.4785%" y="255.50"></text></g><g><title>lib64 (1,191 samples, 0.02%; -0.00%)</title><rect x="38.2777%" y="261" width="0.0180%" height="15" fill="rgb(200,200,255)" fg:x="2533287" fg:w="1191"/><text x="38.5277%" y="271.50"></text></g><g><title>/lib64 (3,115 samples, 0.05%; -0.00%)</title><rect x="38.2970%" y="245" width="0.0471%" height="15" fill="rgb(200,200,255)" fg:x="2534567" fg:w="3115"/><text x="38.5470%" y="255.50"></text></g><g><title>usr (3,547 samples, 0.05%; 0.00%)</title><rect x="38.2970%" y="261" width="0.0536%" height="15" fill="rgb(250,250,250)" fg:x="2534567" fg:w="3547"/><text x="38.5470%" y="271.50"></text></g><g><title>/PackageKit (1,109 samples, 0.02%; -0.00%)</title><rect x="38.3508%" y="229" width="0.0168%" height="15" fill="rgb(200,200,255)" fg:x="2538127" fg:w="1109"/><text x="38.6008%" y="239.50"></text></g><g><title>/lib (1,857 samples, 0.03%; 0.00%)</title><rect x="38.3508%" y="245" width="0.0281%" height="15" fill="rgb(250,250,250)" fg:x="2538127" fg:w="1857"/><text x="38.6008%" y="255.50"></text></g><g><title>/dnf (748 samples, 0.01%; -0.00%)</title><rect x="38.3676%" y="229" width="0.0113%" height="15" fill="rgb(200,200,255)" fg:x="2539236" fg:w="748"/><text x="38.6176%" y="239.50"></text></g><g><title>syscall`pread64 (15,008 samples, 0.23%; 0.00%)</title><rect x="38.1707%" y="277" width="0.2268%" height="15" fill="rgb(250,250,250)" fg:x="2526210" fg:w="15008"/><text x="38.4207%" y="287.50"></text></g><g><title>var (3,104 samples, 0.05%; 0.00%)</title><rect x="38.3506%" y="261" width="0.0469%" height="15" fill="rgb(250,250,250)" fg:x="2538114" fg:w="3104"/><text x="38.6006%" y="271.50"></text></g><g><title>syscall`pwrite64 (1,435 samples, 0.02%; 0.00%)</title><rect x="38.3975%" y="277" width="0.0217%" height="15" fill="rgb(250,250,250)" fg:x="2541218" fg:w="1435"/><text x="38.6475%" y="287.50"></text></g><g><title>var (1,007 samples, 0.02%; 0.00%)</title><rect x="38.4040%" y="261" width="0.0152%" height="15" fill="rgb(250,250,250)" fg:x="2541646" fg:w="1007"/><text x="38.6540%" y="271.50"></text></g><g><title>. (146,786 samples, 2.22%; -0.00%)</title><rect x="38.4240%" y="261" width="2.2179%" height="15" fill="rgb(200,200,255)" fg:x="2542968" fg:w="146786"/><text x="38.6740%" y="271.50">.</text></g><g><title>deployapp (1,312 samples, 0.02%; 0.00%)</title><rect x="40.6695%" y="261" width="0.0198%" height="15" fill="rgb(250,250,250)" fg:x="2691580" fg:w="1312"/><text x="40.9195%" y="271.50"></text></g><g><title>deployruntime (2,028 samples, 0.03%; 0.00%)</title><rect x="40.6893%" y="261" width="0.0306%" height="15" fill="rgb(250,250,250)" fg:x="2692892" fg:w="2028"/><text x="40.9393%" y="271.50"></text></g><g><title>/dri (1,137 samples, 0.02%; -0.00%)</title><rect x="42.0255%" y="245" width="0.0172%" height="15" fill="rgb(200,200,255)" fg:x="2781323" fg:w="1137"/><text x="42.2755%" y="255.50"></text></g><g><title>/fd (6,402 samples, 0.10%; -0.00%)</title><rect x="42.0427%" y="245" width="0.0967%" height="15" fill="rgb(200,200,255)" fg:x="2782460" fg:w="6402"/><text x="42.2927%" y="255.50"></text></g><g><title>dev (94,718 samples, 1.43%; -0.00%)</title><rect x="40.7199%" y="261" width="1.4312%" height="15" fill="rgb(200,200,255)" fg:x="2694920" fg:w="94718"/><text x="40.9699%" y="271.50"></text></g><g><title>etc (979 samples, 0.01%; -0.00%)</title><rect x="42.1515%" y="261" width="0.0148%" height="15" fill="rgb(200,200,255)" fg:x="2789664" fg:w="979"/><text x="42.4015%" y="271.50"></text></g><g><title>/.cargo (2,863 samples, 0.04%; -0.00%)</title><rect x="42.2068%" y="229" width="0.0433%" height="15" fill="rgb(200,200,255)" fg:x="2793322" fg:w="2863"/><text x="42.4568%" y="239.50"></text></g><g><title>/registry (2,845 samples, 0.04%; 0.00%)</title><rect x="42.2070%" y="213" width="0.0430%" height="15" fill="rgb(250,250,250)" fg:x="2793340" fg:w="2845"/><text x="42.4570%" y="223.50"></text></g><g><title>/src (2,223 samples, 0.03%; 0.00%)</title><rect x="42.2164%" y="197" width="0.0336%" height="15" fill="rgb(250,250,250)" fg:x="2793962" fg:w="2223"/><text x="42.4664%" y="207.50"></text></g><g><title>/index.crates.io-1949cf8c6b5b557f (2,223 samples, 0.03%; -0.00%)</title><rect x="42.2164%" y="181" width="0.0336%" height="15" fill="rgb(200,200,255)" fg:x="2793962" fg:w="2223"/><text x="42.4664%" y="191.50"></text></g><g><title>home (6,484 samples, 0.10%; 0.00%)</title><rect x="42.1667%" y="261" width="0.0980%" height="15" fill="rgb(250,250,250)" fg:x="2790667" fg:w="6484"/><text x="42.4167%" y="271.50"></text></g><g><title>/paul (6,484 samples, 0.10%; -0.00%)</title><rect x="42.1667%" y="245" width="0.0980%" height="15" fill="rgb(200,200,255)" fg:x="2790667" fg:w="6484"/><text x="42.4167%" y="255.50"></text></g><g><title>lib64 (6,601 samples, 0.10%; -0.00%)</title><rect x="42.2648%" y="261" width="0.0997%" height="15" fill="rgb(200,200,255)" fg:x="2797162" fg:w="6601"/><text x="42.5148%" y="271.50"></text></g><g><title>/2 (3,381 samples, 0.05%; -0.00%)</title><rect x="42.6023%" y="245" width="0.0511%" height="15" fill="rgb(200,200,255)" fg:x="2819497" fg:w="3381"/><text x="42.8523%" y="255.50"></text></g><g><title>/self (11,479 samples, 0.17%; -0.00%)</title><rect x="42.7422%" y="245" width="0.1734%" height="15" fill="rgb(200,200,255)" fg:x="2828757" fg:w="11479"/><text x="42.9922%" y="255.50"></text></g><g><title>proc (36,621 samples, 0.55%; -0.00%)</title><rect x="42.3648%" y="261" width="0.5533%" height="15" fill="rgb(200,200,255)" fg:x="2803779" fg:w="36621"/><text x="42.6148%" y="271.50"></text></g><g><title>/app-ghostty-transient-7266.scope (1,324 samples, 0.02%; -0.00%)</title><rect x="43.0890%" y="149" width="0.0200%" height="15" fill="rgb(200,200,255)" fg:x="2851707" fg:w="1324"/><text x="43.3390%" y="159.50"></text></g><g><title>/app.slice (9,596 samples, 0.14%; -0.00%)</title><rect x="42.9722%" y="165" width="0.1450%" height="15" fill="rgb(200,200,255)" fg:x="2843978" fg:w="9596"/><text x="43.2222%" y="175.50"></text></g><g><title>/fs (10,789 samples, 0.16%; 0.00%)</title><rect x="42.9620%" y="245" width="0.1630%" height="15" fill="rgb(250,250,250)" fg:x="2843305" fg:w="10789"/><text x="43.2120%" y="255.50"></text></g><g><title>/cgroup (10,789 samples, 0.16%; 0.00%)</title><rect x="42.9620%" y="229" width="0.1630%" height="15" fill="rgb(250,250,250)" fg:x="2843305" fg:w="10789"/><text x="43.2120%" y="239.50"></text></g><g><title>/user.slice (10,568 samples, 0.16%; -0.00%)</title><rect x="42.9654%" y="213" width="0.1597%" height="15" fill="rgb(200,200,255)" fg:x="2843526" fg:w="10568"/><text x="43.2154%" y="223.50"></text></g><g><title>/user-1001.slice (10,243 samples, 0.15%; -0.00%)</title><rect x="42.9703%" y="197" width="0.1548%" height="15" fill="rgb(200,200,255)" fg:x="2843851" fg:w="10243"/><text x="43.2203%" y="207.50"></text></g><g><title>/user@1001.service (10,156 samples, 0.15%; -0.00%)</title><rect x="42.9716%" y="181" width="0.1535%" height="15" fill="rgb(200,200,255)" fg:x="2843938" fg:w="10156"/><text x="43.2216%" y="191.50"></text></g><g><title>sys (11,434 samples, 0.17%; 0.00%)</title><rect x="42.9543%" y="261" width="0.1728%" height="15" fill="rgb(250,250,250)" fg:x="2842796" fg:w="11434"/><text x="43.2043%" y="271.50"></text></g><g><title>/crossbeam-utils-f2814af48d824e43 (695 samples, 0.01%; -0.00%)</title><rect x="43.2002%" y="197" width="0.0105%" height="15" fill="rgb(200,200,255)" fg:x="2859067" fg:w="695"/><text x="43.4502%" y="207.50"></text></g><g><title>/libc-1d506ce0bae4a438 (962 samples, 0.01%; -0.00%)</title><rect x="43.2179%" y="197" width="0.0145%" height="15" fill="rgb(200,200,255)" fg:x="2860237" fg:w="962"/><text x="43.4679%" y="207.50"></text></g><g><title>/lock_api-bc3a19ee97a6acc1 (827 samples, 0.01%; -0.00%)</title><rect x="43.2385%" y="197" width="0.0125%" height="15" fill="rgb(200,200,255)" fg:x="2861604" fg:w="827"/><text x="43.4885%" y="207.50"></text></g><g><title>/openssl-sys-445e5167481f79f8 (3,691 samples, 0.06%; -0.00%)</title><rect x="43.2559%" y="197" width="0.0558%" height="15" fill="rgb(200,200,255)" fg:x="2862757" fg:w="3691"/><text x="43.5059%" y="207.50"></text></g><g><title>/ring-35bd708cb2263f5e (1,410 samples, 0.02%; -0.00%)</title><rect x="43.3265%" y="197" width="0.0213%" height="15" fill="rgb(200,200,255)" fg:x="2867430" fg:w="1410"/><text x="43.5765%" y="207.50"></text></g><g><title>/ring-db56518308032458 (1,192 samples, 0.02%; 0.00%)</title><rect x="43.3478%" y="197" width="0.0180%" height="15" fill="rgb(250,250,250)" fg:x="2868840" fg:w="1192"/><text x="43.5978%" y="207.50"></text></g><g><title>/out (1,192 samples, 0.02%; -0.00%)</title><rect x="43.3478%" y="181" width="0.0180%" height="15" fill="rgb(200,200,255)" fg:x="2868840" fg:w="1192"/><text x="43.5978%" y="191.50"></text></g><g><title>/serde_json-24e185632056edfd (2,278 samples, 0.03%; -0.00%)</title><rect x="43.3704%" y="197" width="0.0344%" height="15" fill="rgb(200,200,255)" fg:x="2870332" fg:w="2278"/><text x="43.6204%" y="207.50"></text></g><g><title>/syn-1dcf10e4ca9e7c2f (849 samples, 0.01%; -0.00%)</title><rect x="43.4093%" y="197" width="0.0128%" height="15" fill="rgb(200,200,255)" fg:x="2872908" fg:w="849"/><text x="43.6593%" y="207.50"></text></g><g><title>/build (17,791 samples, 0.27%; 0.00%)</title><rect x="43.1912%" y="213" width="0.2688%" height="15" fill="rgb(250,250,250)" fg:x="2858471" fg:w="17791"/><text x="43.4412%" y="223.50"></text></g><g><title>/zerocopy-1a0763b7dd1fd0b7 (1,496 samples, 0.02%; -0.00%)</title><rect x="43.4374%" y="197" width="0.0226%" height="15" fill="rgb(200,200,255)" fg:x="2874766" fg:w="1496"/><text x="43.6874%" y="207.50"></text></g><g><title>/cargo-installCAQd8O (158,585 samples, 2.40%; 0.00%)</title><rect x="43.1847%" y="245" width="2.3962%" height="15" fill="rgb(250,250,250)" fg:x="2858044" fg:w="158585"/><text x="43.4347%" y="255.50">/c..</text></g><g><title>/release (158,585 samples, 2.40%; -0.00%)</title><rect x="43.1847%" y="229" width="2.3962%" height="15" fill="rgb(200,200,255)" fg:x="2858044" fg:w="158585"/><text x="43.4347%" y="239.50">/r..</text></g><g><title>/deps (140,367 samples, 2.12%; -0.00%)</title><rect x="43.4600%" y="213" width="2.1209%" height="15" fill="rgb(200,200,255)" fg:x="2876262" fg:w="140367"/><text x="43.7100%" y="223.50">/..</text></g><g><title>tmp (158,918 samples, 2.40%; -0.00%)</title><rect x="43.1845%" y="261" width="2.4012%" height="15" fill="rgb(200,200,255)" fg:x="2858031" fg:w="158918"/><text x="43.4345%" y="271.50">tmp</text></g><g><title>/bin (1,721 samples, 0.03%; -0.00%)</title><rect x="45.5859%" y="245" width="0.0260%" height="15" fill="rgb(200,200,255)" fg:x="3016961" fg:w="1721"/><text x="45.8359%" y="255.50"></text></g><g><title>/helix (957 samples, 0.01%; -0.00%)</title><rect x="45.6486%" y="229" width="0.0145%" height="15" fill="rgb(200,200,255)" fg:x="3021111" fg:w="957"/><text x="45.8986%" y="239.50"></text></g><g><title>/runtime (955 samples, 0.01%; -0.00%)</title><rect x="45.6487%" y="213" width="0.0144%" height="15" fill="rgb(200,200,255)" fg:x="3021113" fg:w="955"/><text x="45.8987%" y="223.50"></text></g><g><title>/queries (954 samples, 0.01%; 0.00%)</title><rect x="45.6487%" y="197" width="0.0144%" height="15" fill="rgb(250,250,250)" fg:x="3021114" fg:w="954"/><text x="45.8987%" y="207.50"></text></g><g><title>/pkgconfig (909 samples, 0.01%; -0.00%)</title><rect x="45.6631%" y="229" width="0.0137%" height="15" fill="rgb(200,200,255)" fg:x="3022068" fg:w="909"/><text x="45.9131%" y="239.50"></text></g><g><title>/lib64 (4,683 samples, 0.07%; -0.00%)</title><rect x="45.6121%" y="245" width="0.0708%" height="15" fill="rgb(200,200,255)" fg:x="3018693" fg:w="4683"/><text x="45.8621%" y="255.50"></text></g><g><title>/gcc (920 samples, 0.01%; 0.00%)</title><rect x="45.6831%" y="229" width="0.0139%" height="15" fill="rgb(250,250,250)" fg:x="3023389" fg:w="920"/><text x="45.9331%" y="239.50"></text></g><g><title>/x86_64-redhat-linux (920 samples, 0.01%; 0.00%)</title><rect x="45.6831%" y="213" width="0.0139%" height="15" fill="rgb(250,250,250)" fg:x="3023389" fg:w="920"/><text x="45.9331%" y="223.50"></text></g><g><title>/14 (920 samples, 0.01%; -0.00%)</title><rect x="45.6831%" y="197" width="0.0139%" height="15" fill="rgb(200,200,255)" fg:x="3023389" fg:w="920"/><text x="45.9331%" y="207.50"></text></g><g><title>/rustlib (93,488 samples, 1.41%; 0.00%)</title><rect x="45.7048%" y="229" width="1.4126%" height="15" fill="rgb(250,250,250)" fg:x="3024829" fg:w="93488"/><text x="45.9548%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (93,488 samples, 1.41%; 0.00%)</title><rect x="45.7048%" y="213" width="1.4126%" height="15" fill="rgb(250,250,250)" fg:x="3024829" fg:w="93488"/><text x="45.9548%" y="223.50"></text></g><g><title>/lib (93,488 samples, 1.41%; -0.00%)</title><rect x="45.7048%" y="197" width="1.4126%" height="15" fill="rgb(200,200,255)" fg:x="3024829" fg:w="93488"/><text x="45.9548%" y="207.50"></text></g><g><title>/sysimage (2,209 samples, 0.03%; 0.00%)</title><rect x="47.1174%" y="229" width="0.0334%" height="15" fill="rgb(250,250,250)" fg:x="3118317" fg:w="2209"/><text x="47.3674%" y="239.50"></text></g><g><title>/rpm (2,209 samples, 0.03%; -0.00%)</title><rect x="47.1174%" y="213" width="0.0334%" height="15" fill="rgb(200,200,255)" fg:x="3118317" fg:w="2209"/><text x="47.3674%" y="223.50"></text></g><g><title>/lib (97,163 samples, 1.47%; 0.00%)</title><rect x="45.6829%" y="245" width="1.4681%" height="15" fill="rgb(250,250,250)" fg:x="3023376" fg:w="97163"/><text x="45.9329%" y="255.50"></text></g><g><title>/applications (1,638 samples, 0.02%; -0.00%)</title><rect x="47.1521%" y="229" width="0.0247%" height="15" fill="rgb(200,200,255)" fg:x="3120613" fg:w="1638"/><text x="47.4021%" y="239.50"></text></g><g><title>usr (106,513 samples, 1.61%; -0.00%)</title><rect x="45.5858%" y="261" width="1.6094%" height="15" fill="rgb(200,200,255)" fg:x="3016949" fg:w="106513"/><text x="45.8358%" y="271.50"></text></g><g><title>/share (2,849 samples, 0.04%; 0.00%)</title><rect x="47.1521%" y="245" width="0.0430%" height="15" fill="rgb(250,250,250)" fg:x="3120613" fg:w="2849"/><text x="47.4021%" y="255.50"></text></g><g><title>/PackageKit (16,468 samples, 0.25%; -0.00%)</title><rect x="47.1957%" y="229" width="0.2488%" height="15" fill="rgb(200,200,255)" fg:x="3123498" fg:w="16468"/><text x="47.4457%" y="239.50"></text></g><g><title>/dnf (2,398 samples, 0.04%; -0.00%)</title><rect x="47.4445%" y="229" width="0.0362%" height="15" fill="rgb(200,200,255)" fg:x="3139966" fg:w="2398"/><text x="47.6945%" y="239.50"></text></g><g><title>/flatpak (2,626 samples, 0.04%; -0.00%)</title><rect x="47.4808%" y="229" width="0.0397%" height="15" fill="rgb(200,200,255)" fg:x="3142368" fg:w="2626"/><text x="47.7308%" y="239.50"></text></g><g><title>/runtime (1,709 samples, 0.03%; -0.00%)</title><rect x="47.4947%" y="213" width="0.0258%" height="15" fill="rgb(200,200,255)" fg:x="3143285" fg:w="1709"/><text x="47.7447%" y="223.50"></text></g><g><title>syscall`read (602,342 samples, 9.10%; 0.00%)</title><rect x="38.4192%" y="277" width="9.1013%" height="15" fill="rgb(250,250,250)" fg:x="2542653" fg:w="602342"/><text x="38.6692%" y="287.50">syscall`read</text></g><g><title>var (21,533 samples, 0.33%; 0.00%)</title><rect x="47.1952%" y="261" width="0.3254%" height="15" fill="rgb(250,250,250)" fg:x="3123462" fg:w="21533"/><text x="47.4452%" y="271.50"></text></g><g><title>/lib (21,505 samples, 0.32%; 0.00%)</title><rect x="47.1956%" y="245" width="0.3249%" height="15" fill="rgb(250,250,250)" fg:x="3123490" fg:w="21505"/><text x="47.4456%" y="255.50"></text></g><g><title>. (1,203 samples, 0.02%; -0.00%)</title><rect x="47.5205%" y="261" width="0.0182%" height="15" fill="rgb(200,200,255)" fg:x="3144995" fg:w="1203"/><text x="47.7705%" y="271.50"></text></g><g><title>/102161 (8,028 samples, 0.12%; -0.00%)</title><rect x="47.5430%" y="245" width="0.1213%" height="15" fill="rgb(200,200,255)" fg:x="3146483" fg:w="8028"/><text x="47.7930%" y="255.50"></text></g><g><title>/fd (8,027 samples, 0.12%; -0.00%)</title><rect x="47.5430%" y="229" width="0.1213%" height="15" fill="rgb(200,200,255)" fg:x="3146484" fg:w="8027"/><text x="47.7930%" y="239.50"></text></g><g><title>/1475 (1,318 samples, 0.02%; -0.00%)</title><rect x="47.6799%" y="245" width="0.0199%" height="15" fill="rgb(200,200,255)" fg:x="3155544" fg:w="1318"/><text x="47.9299%" y="255.50"></text></g><g><title>/fd (1,317 samples, 0.02%; -0.00%)</title><rect x="47.6799%" y="229" width="0.0199%" height="15" fill="rgb(200,200,255)" fg:x="3155545" fg:w="1317"/><text x="47.9299%" y="239.50"></text></g><g><title>/1479 (8,430 samples, 0.13%; 0.00%)</title><rect x="47.6998%" y="245" width="0.1274%" height="15" fill="rgb(250,250,250)" fg:x="3156862" fg:w="8430"/><text x="47.9498%" y="255.50"></text></g><g><title>/fd (8,430 samples, 0.13%; -0.00%)</title><rect x="47.6998%" y="229" width="0.1274%" height="15" fill="rgb(200,200,255)" fg:x="3156862" fg:w="8430"/><text x="47.9498%" y="239.50"></text></g><g><title>/1675935 (10,034 samples, 0.15%; 0.00%)</title><rect x="47.8362%" y="245" width="0.1516%" height="15" fill="rgb(250,250,250)" fg:x="3165885" fg:w="10034"/><text x="48.0862%" y="255.50"></text></g><g><title>/fd (10,034 samples, 0.15%; -0.00%)</title><rect x="47.8362%" y="229" width="0.1516%" height="15" fill="rgb(200,200,255)" fg:x="3165885" fg:w="10034"/><text x="48.0862%" y="239.50"></text></g><g><title>/1698223 (160,663 samples, 2.43%; -0.00%)</title><rect x="47.9878%" y="245" width="2.4276%" height="15" fill="rgb(200,200,255)" fg:x="3175920" fg:w="160663"/><text x="48.2378%" y="255.50">/1..</text></g><g><title>/fd (160,662 samples, 2.43%; -0.00%)</title><rect x="47.9878%" y="229" width="2.4276%" height="15" fill="rgb(200,200,255)" fg:x="3175921" fg:w="160662"/><text x="48.2378%" y="239.50">/fd</text></g><g><title>/1717781 (3,563 samples, 0.05%; 0.00%)</title><rect x="50.4162%" y="245" width="0.0538%" height="15" fill="rgb(250,250,250)" fg:x="3336637" fg:w="3563"/><text x="50.6662%" y="255.50"></text></g><g><title>/fd (3,563 samples, 0.05%; -0.00%)</title><rect x="50.4162%" y="229" width="0.0538%" height="15" fill="rgb(200,200,255)" fg:x="3336637" fg:w="3563"/><text x="50.6662%" y="239.50"></text></g><g><title>/1726136 (1,146 samples, 0.02%; -0.00%)</title><rect x="50.4875%" y="245" width="0.0173%" height="15" fill="rgb(200,200,255)" fg:x="3341355" fg:w="1146"/><text x="50.7375%" y="255.50"></text></g><g><title>/fd (1,145 samples, 0.02%; -0.00%)</title><rect x="50.4875%" y="229" width="0.0173%" height="15" fill="rgb(200,200,255)" fg:x="3341356" fg:w="1145"/><text x="50.7375%" y="239.50"></text></g><g><title>/1737179 (693 samples, 0.01%; -0.00%)</title><rect x="50.5143%" y="245" width="0.0105%" height="15" fill="rgb(200,200,255)" fg:x="3343127" fg:w="693"/><text x="50.7643%" y="255.50"></text></g><g><title>/fd (692 samples, 0.01%; -0.00%)</title><rect x="50.5143%" y="229" width="0.0105%" height="15" fill="rgb(200,200,255)" fg:x="3343128" fg:w="692"/><text x="50.7643%" y="239.50"></text></g><g><title>/1737273 (933 samples, 0.01%; 0.00%)</title><rect x="50.5249%" y="245" width="0.0141%" height="15" fill="rgb(250,250,250)" fg:x="3343833" fg:w="933"/><text x="50.7749%" y="255.50"></text></g><g><title>/fd (933 samples, 0.01%; -0.00%)</title><rect x="50.5249%" y="229" width="0.0141%" height="15" fill="rgb(200,200,255)" fg:x="3343833" fg:w="933"/><text x="50.7749%" y="239.50"></text></g><g><title>/1797057 (2,375 samples, 0.04%; -0.00%)</title><rect x="50.5542%" y="245" width="0.0359%" height="15" fill="rgb(200,200,255)" fg:x="3345769" fg:w="2375"/><text x="50.8042%" y="255.50"></text></g><g><title>/fd (2,369 samples, 0.04%; -0.00%)</title><rect x="50.5543%" y="229" width="0.0358%" height="15" fill="rgb(200,200,255)" fg:x="3345775" fg:w="2369"/><text x="50.8043%" y="239.50"></text></g><g><title>/1799499 (1,648 samples, 0.02%; -0.00%)</title><rect x="50.5929%" y="245" width="0.0249%" height="15" fill="rgb(200,200,255)" fg:x="3348329" fg:w="1648"/><text x="50.8429%" y="255.50"></text></g><g><title>/fd (1,647 samples, 0.02%; -0.00%)</title><rect x="50.5929%" y="229" width="0.0249%" height="15" fill="rgb(200,200,255)" fg:x="3348330" fg:w="1647"/><text x="50.8429%" y="239.50"></text></g><g><title>/1799513 (1,099 samples, 0.02%; -0.00%)</title><rect x="50.6179%" y="245" width="0.0166%" height="15" fill="rgb(200,200,255)" fg:x="3349985" fg:w="1099"/><text x="50.8679%" y="255.50"></text></g><g><title>/fd (1,098 samples, 0.02%; -0.00%)</title><rect x="50.6179%" y="229" width="0.0166%" height="15" fill="rgb(200,200,255)" fg:x="3349986" fg:w="1098"/><text x="50.8679%" y="239.50"></text></g><g><title>/1799795 (1,008,130 samples, 15.23%; -0.00%)</title><rect x="50.6927%" y="245" width="15.2327%" height="15" fill="rgb(200,200,255)" fg:x="3354937" fg:w="1008130"/><text x="50.9427%" y="255.50">/1799795</text></g><g><title>/fd (1,008,129 samples, 15.23%; -0.00%)</title><rect x="50.6927%" y="229" width="15.2327%" height="15" fill="rgb(200,200,255)" fg:x="3354938" fg:w="1008129"/><text x="50.9427%" y="239.50">/fd</text></g><g><title>/1800366 (1,552 samples, 0.02%; 0.00%)</title><rect x="65.9500%" y="245" width="0.0235%" height="15" fill="rgb(250,250,250)" fg:x="4364692" fg:w="1552"/><text x="66.2000%" y="255.50"></text></g><g><title>/fd (1,552 samples, 0.02%; -0.00%)</title><rect x="65.9500%" y="229" width="0.0235%" height="15" fill="rgb(200,200,255)" fg:x="4364692" fg:w="1552"/><text x="66.2000%" y="239.50"></text></g><g><title>/1800453 (2,363 samples, 0.04%; 0.00%)</title><rect x="65.9749%" y="245" width="0.0357%" height="15" fill="rgb(250,250,250)" fg:x="4366342" fg:w="2363"/><text x="66.2249%" y="255.50"></text></g><g><title>/fd (2,363 samples, 0.04%; -0.00%)</title><rect x="65.9749%" y="229" width="0.0357%" height="15" fill="rgb(200,200,255)" fg:x="4366342" fg:w="2363"/><text x="66.2249%" y="239.50"></text></g><g><title>/1800562 (839 samples, 0.01%; 0.00%)</title><rect x="66.0221%" y="245" width="0.0127%" height="15" fill="rgb(250,250,250)" fg:x="4369465" fg:w="839"/><text x="66.2721%" y="255.50"></text></g><g><title>/fd (839 samples, 0.01%; -0.00%)</title><rect x="66.0221%" y="229" width="0.0127%" height="15" fill="rgb(200,200,255)" fg:x="4369465" fg:w="839"/><text x="66.2721%" y="239.50"></text></g><g><title>/1800626 (1,448 samples, 0.02%; 0.00%)</title><rect x="66.0517%" y="245" width="0.0219%" height="15" fill="rgb(250,250,250)" fg:x="4371424" fg:w="1448"/><text x="66.3017%" y="255.50"></text></g><g><title>/fd (1,448 samples, 0.02%; -0.00%)</title><rect x="66.0517%" y="229" width="0.0219%" height="15" fill="rgb(200,200,255)" fg:x="4371424" fg:w="1448"/><text x="66.3017%" y="239.50"></text></g><g><title>/1800649 (1,785 samples, 0.03%; 0.00%)</title><rect x="66.0779%" y="245" width="0.0270%" height="15" fill="rgb(250,250,250)" fg:x="4373157" fg:w="1785"/><text x="66.3279%" y="255.50"></text></g><g><title>/fd (1,785 samples, 0.03%; -0.00%)</title><rect x="66.0779%" y="229" width="0.0270%" height="15" fill="rgb(200,200,255)" fg:x="4373157" fg:w="1785"/><text x="66.3279%" y="239.50"></text></g><g><title>/1800654 (1,115 samples, 0.02%; 0.00%)</title><rect x="66.1049%" y="245" width="0.0168%" height="15" fill="rgb(250,250,250)" fg:x="4374944" fg:w="1115"/><text x="66.3549%" y="255.50"></text></g><g><title>/fd (1,115 samples, 0.02%; -0.00%)</title><rect x="66.1049%" y="229" width="0.0168%" height="15" fill="rgb(200,200,255)" fg:x="4374944" fg:w="1115"/><text x="66.3549%" y="239.50"></text></g><g><title>/1800779 (1,426 samples, 0.02%; 0.00%)</title><rect x="66.1442%" y="245" width="0.0215%" height="15" fill="rgb(250,250,250)" fg:x="4377545" fg:w="1426"/><text x="66.3942%" y="255.50"></text></g><g><title>/fd (1,426 samples, 0.02%; -0.00%)</title><rect x="66.1442%" y="229" width="0.0215%" height="15" fill="rgb(200,200,255)" fg:x="4377545" fg:w="1426"/><text x="66.3942%" y="239.50"></text></g><g><title>/1800799 (1,463 samples, 0.02%; 0.00%)</title><rect x="66.1665%" y="245" width="0.0221%" height="15" fill="rgb(250,250,250)" fg:x="4379022" fg:w="1463"/><text x="66.4165%" y="255.50"></text></g><g><title>/fd (1,463 samples, 0.02%; -0.00%)</title><rect x="66.1665%" y="229" width="0.0221%" height="15" fill="rgb(200,200,255)" fg:x="4379022" fg:w="1463"/><text x="66.4165%" y="239.50"></text></g><g><title>/1800804 (2,632 samples, 0.04%; 0.00%)</title><rect x="66.1887%" y="245" width="0.0398%" height="15" fill="rgb(250,250,250)" fg:x="4380487" fg:w="2632"/><text x="66.4387%" y="255.50"></text></g><g><title>/fd (2,632 samples, 0.04%; -0.00%)</title><rect x="66.1887%" y="229" width="0.0398%" height="15" fill="rgb(200,200,255)" fg:x="4380487" fg:w="2632"/><text x="66.4387%" y="239.50"></text></g><g><title>/1800857 (1,693 samples, 0.03%; -0.00%)</title><rect x="66.2441%" y="245" width="0.0256%" height="15" fill="rgb(200,200,255)" fg:x="4384155" fg:w="1693"/><text x="66.4941%" y="255.50"></text></g><g><title>/fd (1,692 samples, 0.03%; -0.00%)</title><rect x="66.2441%" y="229" width="0.0256%" height="15" fill="rgb(200,200,255)" fg:x="4384156" fg:w="1692"/><text x="66.4941%" y="239.50"></text></g><g><title>/1800904 (2,027 samples, 0.03%; 0.00%)</title><rect x="66.2710%" y="245" width="0.0306%" height="15" fill="rgb(250,250,250)" fg:x="4385939" fg:w="2027"/><text x="66.5210%" y="255.50"></text></g><g><title>/fd (2,027 samples, 0.03%; -0.00%)</title><rect x="66.2710%" y="229" width="0.0306%" height="15" fill="rgb(200,200,255)" fg:x="4385939" fg:w="2027"/><text x="66.5210%" y="239.50"></text></g><g><title>/1800971 (1,457 samples, 0.02%; 0.00%)</title><rect x="66.3124%" y="245" width="0.0220%" height="15" fill="rgb(250,250,250)" fg:x="4388677" fg:w="1457"/><text x="66.5624%" y="255.50"></text></g><g><title>/fd (1,457 samples, 0.02%; -0.00%)</title><rect x="66.3124%" y="229" width="0.0220%" height="15" fill="rgb(200,200,255)" fg:x="4388677" fg:w="1457"/><text x="66.5624%" y="239.50"></text></g><g><title>/1800983 (2,594 samples, 0.04%; 0.00%)</title><rect x="66.3353%" y="245" width="0.0392%" height="15" fill="rgb(250,250,250)" fg:x="4390191" fg:w="2594"/><text x="66.5853%" y="255.50"></text></g><g><title>/fd (2,594 samples, 0.04%; -0.00%)</title><rect x="66.3353%" y="229" width="0.0392%" height="15" fill="rgb(200,200,255)" fg:x="4390191" fg:w="2594"/><text x="66.5853%" y="239.50"></text></g><g><title>/1800990 (2,109 samples, 0.03%; 0.00%)</title><rect x="66.3746%" y="245" width="0.0319%" height="15" fill="rgb(250,250,250)" fg:x="4392790" fg:w="2109"/><text x="66.6246%" y="255.50"></text></g><g><title>/fd (2,109 samples, 0.03%; -0.00%)</title><rect x="66.3746%" y="229" width="0.0319%" height="15" fill="rgb(200,200,255)" fg:x="4392790" fg:w="2109"/><text x="66.6246%" y="239.50"></text></g><g><title>/1801002 (1,937 samples, 0.03%; -0.00%)</title><rect x="66.4089%" y="245" width="0.0293%" height="15" fill="rgb(200,200,255)" fg:x="4395060" fg:w="1937"/><text x="66.6589%" y="255.50"></text></g><g><title>/fd (1,936 samples, 0.03%; -0.00%)</title><rect x="66.4089%" y="229" width="0.0293%" height="15" fill="rgb(200,200,255)" fg:x="4395061" fg:w="1936"/><text x="66.6589%" y="239.50"></text></g><g><title>/1801306 (2,371 samples, 0.04%; 0.00%)</title><rect x="66.4715%" y="245" width="0.0358%" height="15" fill="rgb(250,250,250)" fg:x="4399207" fg:w="2371"/><text x="66.7215%" y="255.50"></text></g><g><title>/fd (2,371 samples, 0.04%; -0.00%)</title><rect x="66.4715%" y="229" width="0.0358%" height="15" fill="rgb(200,200,255)" fg:x="4399207" fg:w="2371"/><text x="66.7215%" y="239.50"></text></g><g><title>/1801336 (4,256 samples, 0.06%; -0.00%)</title><rect x="66.5117%" y="245" width="0.0643%" height="15" fill="rgb(200,200,255)" fg:x="4401868" fg:w="4256"/><text x="66.7617%" y="255.50"></text></g><g><title>/fd (4,255 samples, 0.06%; -0.00%)</title><rect x="66.5117%" y="229" width="0.0643%" height="15" fill="rgb(200,200,255)" fg:x="4401869" fg:w="4255"/><text x="66.7617%" y="239.50"></text></g><g><title>/1801375 (1,107 samples, 0.02%; 0.00%)</title><rect x="66.5776%" y="245" width="0.0167%" height="15" fill="rgb(250,250,250)" fg:x="4406226" fg:w="1107"/><text x="66.8276%" y="255.50"></text></g><g><title>/fd (1,107 samples, 0.02%; -0.00%)</title><rect x="66.5776%" y="229" width="0.0167%" height="15" fill="rgb(200,200,255)" fg:x="4406226" fg:w="1107"/><text x="66.8276%" y="239.50"></text></g><g><title>/1801484 (1,497 samples, 0.02%; 0.00%)</title><rect x="66.6023%" y="245" width="0.0226%" height="15" fill="rgb(250,250,250)" fg:x="4407861" fg:w="1497"/><text x="66.8523%" y="255.50"></text></g><g><title>/fd (1,497 samples, 0.02%; -0.00%)</title><rect x="66.6023%" y="229" width="0.0226%" height="15" fill="rgb(200,200,255)" fg:x="4407861" fg:w="1497"/><text x="66.8523%" y="239.50"></text></g><g><title>/1801828 (4,635 samples, 0.07%; 0.00%)</title><rect x="66.6448%" y="245" width="0.0700%" height="15" fill="rgb(250,250,250)" fg:x="4410673" fg:w="4635"/><text x="66.8948%" y="255.50"></text></g><g><title>/fd (4,635 samples, 0.07%; -0.00%)</title><rect x="66.6448%" y="229" width="0.0700%" height="15" fill="rgb(200,200,255)" fg:x="4410673" fg:w="4635"/><text x="66.8948%" y="239.50"></text></g><g><title>/1801845 (2,177 samples, 0.03%; 0.00%)</title><rect x="66.7149%" y="245" width="0.0329%" height="15" fill="rgb(250,250,250)" fg:x="4415314" fg:w="2177"/><text x="66.9649%" y="255.50"></text></g><g><title>/fd (2,177 samples, 0.03%; -0.00%)</title><rect x="66.7149%" y="229" width="0.0329%" height="15" fill="rgb(200,200,255)" fg:x="4415314" fg:w="2177"/><text x="66.9649%" y="239.50"></text></g><g><title>/1801868 (1,204 samples, 0.02%; 0.00%)</title><rect x="66.7489%" y="245" width="0.0182%" height="15" fill="rgb(250,250,250)" fg:x="4417562" fg:w="1204"/><text x="66.9989%" y="255.50"></text></g><g><title>/fd (1,204 samples, 0.02%; -0.00%)</title><rect x="66.7489%" y="229" width="0.0182%" height="15" fill="rgb(200,200,255)" fg:x="4417562" fg:w="1204"/><text x="66.9989%" y="239.50"></text></g><g><title>/1801871 (2,441 samples, 0.04%; 0.00%)</title><rect x="66.7670%" y="245" width="0.0369%" height="15" fill="rgb(250,250,250)" fg:x="4418766" fg:w="2441"/><text x="67.0170%" y="255.50"></text></g><g><title>/fd (2,441 samples, 0.04%; -0.00%)</title><rect x="66.7670%" y="229" width="0.0369%" height="15" fill="rgb(200,200,255)" fg:x="4418766" fg:w="2441"/><text x="67.0170%" y="239.50"></text></g><g><title>/1801889 (3,736 samples, 0.06%; 0.00%)</title><rect x="66.8041%" y="245" width="0.0565%" height="15" fill="rgb(250,250,250)" fg:x="4421215" fg:w="3736"/><text x="67.0541%" y="255.50"></text></g><g><title>/fd (3,736 samples, 0.06%; -0.00%)</title><rect x="66.8041%" y="229" width="0.0565%" height="15" fill="rgb(200,200,255)" fg:x="4421215" fg:w="3736"/><text x="67.0541%" y="239.50"></text></g><g><title>/1801977 (4,435 samples, 0.07%; 0.00%)</title><rect x="66.8654%" y="245" width="0.0670%" height="15" fill="rgb(250,250,250)" fg:x="4425277" fg:w="4435"/><text x="67.1154%" y="255.50"></text></g><g><title>/fd (4,435 samples, 0.07%; -0.00%)</title><rect x="66.8654%" y="229" width="0.0670%" height="15" fill="rgb(200,200,255)" fg:x="4425277" fg:w="4435"/><text x="67.1154%" y="239.50"></text></g><g><title>/1802055 (2,633 samples, 0.04%; 0.00%)</title><rect x="66.9448%" y="245" width="0.0398%" height="15" fill="rgb(250,250,250)" fg:x="4430527" fg:w="2633"/><text x="67.1948%" y="255.50"></text></g><g><title>/fd (2,633 samples, 0.04%; -0.00%)</title><rect x="66.9448%" y="229" width="0.0398%" height="15" fill="rgb(200,200,255)" fg:x="4430527" fg:w="2633"/><text x="67.1948%" y="239.50"></text></g><g><title>/1802073 (3,433 samples, 0.05%; 0.00%)</title><rect x="66.9859%" y="245" width="0.0519%" height="15" fill="rgb(250,250,250)" fg:x="4433249" fg:w="3433"/><text x="67.2359%" y="255.50"></text></g><g><title>/fd (3,433 samples, 0.05%; -0.00%)</title><rect x="66.9859%" y="229" width="0.0519%" height="15" fill="rgb(200,200,255)" fg:x="4433249" fg:w="3433"/><text x="67.2359%" y="239.50"></text></g><g><title>/1802143 (1,012 samples, 0.02%; 0.00%)</title><rect x="67.0396%" y="245" width="0.0153%" height="15" fill="rgb(250,250,250)" fg:x="4436801" fg:w="1012"/><text x="67.2896%" y="255.50"></text></g><g><title>/fd (1,012 samples, 0.02%; -0.00%)</title><rect x="67.0396%" y="229" width="0.0153%" height="15" fill="rgb(200,200,255)" fg:x="4436801" fg:w="1012"/><text x="67.2896%" y="239.50"></text></g><g><title>/1802163 (2,971 samples, 0.04%; 0.00%)</title><rect x="67.0553%" y="245" width="0.0449%" height="15" fill="rgb(250,250,250)" fg:x="4437845" fg:w="2971"/><text x="67.3053%" y="255.50"></text></g><g><title>/fd (2,971 samples, 0.04%; -0.00%)</title><rect x="67.0553%" y="229" width="0.0449%" height="15" fill="rgb(200,200,255)" fg:x="4437845" fg:w="2971"/><text x="67.3053%" y="239.50"></text></g><g><title>/1802384 (10,922 samples, 0.17%; 0.00%)</title><rect x="67.1137%" y="245" width="0.1650%" height="15" fill="rgb(250,250,250)" fg:x="4441710" fg:w="10922"/><text x="67.3637%" y="255.50"></text></g><g><title>/fd (10,922 samples, 0.17%; -0.00%)</title><rect x="67.1137%" y="229" width="0.1650%" height="15" fill="rgb(200,200,255)" fg:x="4441710" fg:w="10922"/><text x="67.3637%" y="239.50"></text></g><g><title>/240240 (4,890 samples, 0.07%; 0.00%)</title><rect x="67.2881%" y="245" width="0.0739%" height="15" fill="rgb(250,250,250)" fg:x="4453250" fg:w="4890"/><text x="67.5381%" y="255.50"></text></g><g><title>/fd (4,890 samples, 0.07%; -0.00%)</title><rect x="67.2881%" y="229" width="0.0739%" height="15" fill="rgb(200,200,255)" fg:x="4453250" fg:w="4890"/><text x="67.5381%" y="239.50"></text></g><g><title>/4212 (38,535 samples, 0.58%; -0.00%)</title><rect x="67.3683%" y="245" width="0.5823%" height="15" fill="rgb(200,200,255)" fg:x="4458558" fg:w="38535"/><text x="67.6183%" y="255.50"></text></g><g><title>/fd (38,534 samples, 0.58%; -0.00%)</title><rect x="67.3683%" y="229" width="0.5822%" height="15" fill="rgb(200,200,255)" fg:x="4458559" fg:w="38534"/><text x="67.6183%" y="239.50"></text></g><g><title>/4333 (3,489 samples, 0.05%; -0.00%)</title><rect x="67.9506%" y="245" width="0.0527%" height="15" fill="rgb(200,200,255)" fg:x="4497099" fg:w="3489"/><text x="68.2006%" y="255.50"></text></g><g><title>/fd (3,488 samples, 0.05%; -0.00%)</title><rect x="67.9507%" y="229" width="0.0527%" height="15" fill="rgb(200,200,255)" fg:x="4497100" fg:w="3488"/><text x="68.2007%" y="239.50"></text></g><g><title>/4511 (737 samples, 0.01%; -0.00%)</title><rect x="68.0052%" y="245" width="0.0111%" height="15" fill="rgb(200,200,255)" fg:x="4500708" fg:w="737"/><text x="68.2552%" y="255.50"></text></g><g><title>/fd (736 samples, 0.01%; -0.00%)</title><rect x="68.0052%" y="229" width="0.0111%" height="15" fill="rgb(200,200,255)" fg:x="4500709" fg:w="736"/><text x="68.2552%" y="239.50"></text></g><g><title>/4786 (1,506 samples, 0.02%; -0.00%)</title><rect x="68.0222%" y="245" width="0.0228%" height="15" fill="rgb(200,200,255)" fg:x="4501834" fg:w="1506"/><text x="68.2722%" y="255.50"></text></g><g><title>/fd (1,505 samples, 0.02%; -0.00%)</title><rect x="68.0222%" y="229" width="0.0227%" height="15" fill="rgb(200,200,255)" fg:x="4501835" fg:w="1505"/><text x="68.2722%" y="239.50"></text></g><g><title>/4787 (719 samples, 0.01%; -0.00%)</title><rect x="68.0450%" y="245" width="0.0109%" height="15" fill="rgb(200,200,255)" fg:x="4503340" fg:w="719"/><text x="68.2950%" y="255.50"></text></g><g><title>/fd (718 samples, 0.01%; -0.00%)</title><rect x="68.0450%" y="229" width="0.0108%" height="15" fill="rgb(200,200,255)" fg:x="4503341" fg:w="718"/><text x="68.2950%" y="239.50"></text></g><g><title>/6018 (5,123 samples, 0.08%; -0.00%)</title><rect x="68.0623%" y="245" width="0.0774%" height="15" fill="rgb(200,200,255)" fg:x="4504485" fg:w="5123"/><text x="68.3123%" y="255.50"></text></g><g><title>/fd (5,122 samples, 0.08%; -0.00%)</title><rect x="68.0623%" y="229" width="0.0774%" height="15" fill="rgb(200,200,255)" fg:x="4504486" fg:w="5122"/><text x="68.3123%" y="239.50"></text></g><g><title>/7341 (19,622 samples, 0.30%; -0.00%)</title><rect x="68.1416%" y="245" width="0.2965%" height="15" fill="rgb(200,200,255)" fg:x="4509734" fg:w="19622"/><text x="68.3916%" y="255.50"></text></g><g><title>/fd (19,621 samples, 0.30%; -0.00%)</title><rect x="68.1416%" y="229" width="0.2965%" height="15" fill="rgb(200,200,255)" fg:x="4509735" fg:w="19621"/><text x="68.3916%" y="239.50"></text></g><g><title>proc (1,383,164 samples, 20.90%; 0.00%)</title><rect x="47.5387%" y="261" width="20.8994%" height="15" fill="rgb(250,250,250)" fg:x="3146198" fg:w="1383164"/><text x="47.7887%" y="271.50">proc</text></g><g><title>syscall`readlinkat (1,384,426 samples, 20.92%; 0.00%)</title><rect x="47.5205%" y="277" width="20.9185%" height="15" fill="rgb(250,250,250)" fg:x="3144995" fg:w="1384426"/><text x="47.7705%" y="287.50">syscall`readlinkat</text></g><g><title>. (10,285 samples, 0.16%; -0.00%)</title><rect x="68.4448%" y="261" width="0.1554%" height="15" fill="rgb(200,200,255)" fg:x="4529800" fg:w="10285"/><text x="68.6948%" y="271.50"></text></g><g><title>/.cache (3,074 samples, 0.05%; -0.00%)</title><rect x="68.6100%" y="229" width="0.0464%" height="15" fill="rgb(200,200,255)" fg:x="4540736" fg:w="3074"/><text x="68.8600%" y="239.50"></text></g><g><title>/gnome-software (3,046 samples, 0.05%; -0.00%)</title><rect x="68.6104%" y="213" width="0.0460%" height="15" fill="rgb(200,200,255)" fg:x="4540764" fg:w="3046"/><text x="68.8604%" y="223.50"></text></g><g><title>/.cargo (3,320 samples, 0.05%; -0.00%)</title><rect x="68.6564%" y="229" width="0.0502%" height="15" fill="rgb(200,200,255)" fg:x="4543810" fg:w="3320"/><text x="68.9064%" y="239.50"></text></g><g><title>/registry (3,155 samples, 0.05%; -0.00%)</title><rect x="68.6589%" y="213" width="0.0477%" height="15" fill="rgb(200,200,255)" fg:x="4543975" fg:w="3155"/><text x="68.9089%" y="223.50"></text></g><g><title>/src (3,146 samples, 0.05%; 0.00%)</title><rect x="68.6591%" y="197" width="0.0475%" height="15" fill="rgb(250,250,250)" fg:x="4543984" fg:w="3146"/><text x="68.9091%" y="207.50"></text></g><g><title>/index.crates.io-1949cf8c6b5b557f (3,146 samples, 0.05%; -0.00%)</title><rect x="68.6591%" y="181" width="0.0475%" height="15" fill="rgb(200,200,255)" fg:x="4543984" fg:w="3146"/><text x="68.9091%" y="191.50"></text></g><g><title>/helix (818 samples, 0.01%; -0.00%)</title><rect x="68.7066%" y="213" width="0.0124%" height="15" fill="rgb(200,200,255)" fg:x="4547132" fg:w="818"/><text x="68.9566%" y="223.50"></text></g><g><title>/runtime (814 samples, 0.01%; 0.00%)</title><rect x="68.7067%" y="197" width="0.0123%" height="15" fill="rgb(250,250,250)" fg:x="4547136" fg:w="814"/><text x="68.9567%" y="207.50"></text></g><g><title>/queries (814 samples, 0.01%; 0.00%)</title><rect x="68.7067%" y="181" width="0.0123%" height="15" fill="rgb(250,250,250)" fg:x="4547136" fg:w="814"/><text x="68.9567%" y="191.50"></text></g><g><title>/.config (822 samples, 0.01%; -0.00%)</title><rect x="68.7066%" y="229" width="0.0124%" height="15" fill="rgb(200,200,255)" fg:x="4547130" fg:w="822"/><text x="68.9566%" y="239.50"></text></g><g><title>/extension (4,139 samples, 0.06%; 0.00%)</title><rect x="68.7218%" y="181" width="0.0625%" height="15" fill="rgb(250,250,250)" fg:x="4548132" fg:w="4139"/><text x="68.9718%" y="191.50"></text></g><g><title>/flatpak (4,175 samples, 0.06%; -0.00%)</title><rect x="68.7215%" y="197" width="0.0631%" height="15" fill="rgb(200,200,255)" fg:x="4548114" fg:w="4175"/><text x="68.9715%" y="207.50"></text></g><g><title>/.local (4,339 samples, 0.07%; 0.00%)</title><rect x="68.7190%" y="229" width="0.0656%" height="15" fill="rgb(250,250,250)" fg:x="4547952" fg:w="4339"/><text x="68.9690%" y="239.50"></text></g><g><title>/share (4,183 samples, 0.06%; -0.00%)</title><rect x="68.7214%" y="213" width="0.0632%" height="15" fill="rgb(200,200,255)" fg:x="4548108" fg:w="4183"/><text x="68.9714%" y="223.50"></text></g><g><title>home (12,710 samples, 0.19%; -0.00%)</title><rect x="68.6048%" y="261" width="0.1920%" height="15" fill="rgb(200,200,255)" fg:x="4540391" fg:w="12710"/><text x="68.8548%" y="271.50"></text></g><g><title>/paul (12,697 samples, 0.19%; -0.00%)</title><rect x="68.6050%" y="245" width="0.1919%" height="15" fill="rgb(200,200,255)" fg:x="4540404" fg:w="12697"/><text x="68.8550%" y="255.50"></text></g><g><title>tmp (2,803 samples, 0.04%; -0.00%)</title><rect x="68.8002%" y="261" width="0.0424%" height="15" fill="rgb(200,200,255)" fg:x="4553324" fg:w="2803"/><text x="69.0502%" y="271.50"></text></g><g><title>/cargo-installCAQd8O (2,724 samples, 0.04%; 0.00%)</title><rect x="68.8014%" y="245" width="0.0412%" height="15" fill="rgb(250,250,250)" fg:x="4553403" fg:w="2724"/><text x="69.0514%" y="255.50"></text></g><g><title>/release (2,724 samples, 0.04%; -0.00%)</title><rect x="68.8014%" y="229" width="0.0412%" height="15" fill="rgb(200,200,255)" fg:x="4553403" fg:w="2724"/><text x="69.0514%" y="239.50"></text></g><g><title>/deps (1,898 samples, 0.03%; -0.00%)</title><rect x="68.8139%" y="213" width="0.0287%" height="15" fill="rgb(200,200,255)" fg:x="4554229" fg:w="1898"/><text x="69.0639%" y="223.50"></text></g><g><title>/lib64 (1,166 samples, 0.02%; -0.00%)</title><rect x="68.8535%" y="245" width="0.0176%" height="15" fill="rgb(200,200,255)" fg:x="4556850" fg:w="1166"/><text x="69.1035%" y="255.50"></text></g><g><title>/helix (814 samples, 0.01%; -0.00%)</title><rect x="68.8588%" y="229" width="0.0123%" height="15" fill="rgb(200,200,255)" fg:x="4557202" fg:w="814"/><text x="69.1088%" y="239.50"></text></g><g><title>/runtime (812 samples, 0.01%; -0.00%)</title><rect x="68.8588%" y="213" width="0.0123%" height="15" fill="rgb(200,200,255)" fg:x="4557204" fg:w="812"/><text x="69.1088%" y="223.50"></text></g><g><title>/queries (810 samples, 0.01%; 0.00%)</title><rect x="68.8589%" y="197" width="0.0122%" height="15" fill="rgb(250,250,250)" fg:x="4557206" fg:w="810"/><text x="69.1089%" y="207.50"></text></g><g><title>/lib (4,264 samples, 0.06%; 0.00%)</title><rect x="68.8711%" y="245" width="0.0644%" height="15" fill="rgb(250,250,250)" fg:x="4558016" fg:w="4264"/><text x="69.1211%" y="255.50"></text></g><g><title>/rustlib (4,264 samples, 0.06%; 0.00%)</title><rect x="68.8711%" y="229" width="0.0644%" height="15" fill="rgb(250,250,250)" fg:x="4558016" fg:w="4264"/><text x="69.1211%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (4,085 samples, 0.06%; 0.00%)</title><rect x="68.8738%" y="213" width="0.0617%" height="15" fill="rgb(250,250,250)" fg:x="4558195" fg:w="4085"/><text x="69.1238%" y="223.50"></text></g><g><title>/lib (4,085 samples, 0.06%; -0.00%)</title><rect x="68.8738%" y="197" width="0.0617%" height="15" fill="rgb(200,200,255)" fg:x="4558195" fg:w="4085"/><text x="69.1238%" y="207.50"></text></g><g><title>usr (7,984 samples, 0.12%; 0.00%)</title><rect x="68.8426%" y="261" width="0.1206%" height="15" fill="rgb(250,250,250)" fg:x="4556127" fg:w="7984"/><text x="69.0926%" y="271.50"></text></g><g><title>/share (890 samples, 0.01%; -0.00%)</title><rect x="68.9497%" y="245" width="0.0134%" height="15" fill="rgb(200,200,255)" fg:x="4563221" fg:w="890"/><text x="69.1997%" y="255.50"></text></g><g><title>/app (1,484 samples, 0.02%; -0.00%)</title><rect x="68.9673%" y="213" width="0.0224%" height="15" fill="rgb(200,200,255)" fg:x="4564381" fg:w="1484"/><text x="69.2173%" y="223.50"></text></g><g><title>/extension (4,146 samples, 0.06%; 0.00%)</title><rect x="68.9987%" y="213" width="0.0626%" height="15" fill="rgb(250,250,250)" fg:x="4566463" fg:w="4146"/><text x="69.2487%" y="223.50"></text></g><g><title>/flatpak (19,052 samples, 0.29%; -0.00%)</title><rect x="68.9640%" y="229" width="0.2879%" height="15" fill="rgb(200,200,255)" fg:x="4564167" fg:w="19052"/><text x="69.2140%" y="239.50"></text></g><g><title>/runtime (12,610 samples, 0.19%; -0.00%)</title><rect x="69.0614%" y="213" width="0.1905%" height="15" fill="rgb(200,200,255)" fg:x="4570609" fg:w="12610"/><text x="69.3114%" y="223.50"></text></g><g><title>syscall`statx (53,621 samples, 0.81%; 0.00%)</title><rect x="68.4445%" y="277" width="0.8102%" height="15" fill="rgb(250,250,250)" fg:x="4529786" fg:w="53621"/><text x="68.6945%" y="287.50"></text></g><g><title>var (19,296 samples, 0.29%; 0.00%)</title><rect x="68.9632%" y="261" width="0.2916%" height="15" fill="rgb(250,250,250)" fg:x="4564111" fg:w="19296"/><text x="69.2132%" y="271.50"></text></g><g><title>/lib (19,251 samples, 0.29%; -0.00%)</title><rect x="68.9639%" y="245" width="0.2909%" height="15" fill="rgb(200,200,255)" fg:x="4564156" fg:w="19251"/><text x="69.2139%" y="255.50"></text></g><g><title>syscall`unlink (984 samples, 0.01%; 0.00%)</title><rect x="69.2559%" y="277" width="0.0149%" height="15" fill="rgb(250,250,250)" fg:x="4583485" fg:w="984"/><text x="69.5059%" y="287.50"></text></g><g><title>. (319,180 samples, 4.82%; -0.00%)</title><rect x="69.2889%" y="261" width="4.8228%" height="15" fill="rgb(200,200,255)" fg:x="4585666" fg:w="319180"/><text x="69.5389%" y="271.50">.</text></g><g><title>/fd (14,194 samples, 0.21%; -0.00%)</title><rect x="74.1228%" y="245" width="0.2145%" height="15" fill="rgb(200,200,255)" fg:x="4905586" fg:w="14194"/><text x="74.3728%" y="255.50"></text></g><g><title>dev (1,594,986 samples, 24.10%; -0.00%)</title><rect x="74.1117%" y="261" width="24.1001%" height="15" fill="rgb(200,200,255)" fg:x="4904848" fg:w="1594986"/><text x="74.3617%" y="271.50">dev</text></g><g><title>/pts (1,580,054 samples, 23.87%; -0.00%)</title><rect x="74.3373%" y="245" width="23.8744%" height="15" fill="rgb(200,200,255)" fg:x="4919780" fg:w="1580054"/><text x="74.5873%" y="255.50">/pts</text></g><g><title>home (1,249 samples, 0.02%; 0.00%)</title><rect x="98.2122%" y="261" width="0.0189%" height="15" fill="rgb(250,250,250)" fg:x="6499861" fg:w="1249"/><text x="98.4622%" y="271.50"></text></g><g><title>/paul (1,249 samples, 0.02%; -0.00%)</title><rect x="98.2122%" y="245" width="0.0189%" height="15" fill="rgb(200,200,255)" fg:x="6499861" fg:w="1249"/><text x="98.4622%" y="255.50"></text></g><g><title>lib64 (1,572 samples, 0.02%; -0.00%)</title><rect x="98.2311%" y="261" width="0.0238%" height="15" fill="rgb(200,200,255)" fg:x="6501117" fg:w="1572"/><text x="98.4811%" y="271.50"></text></g><g><title>proc (2,978 samples, 0.04%; -0.00%)</title><rect x="98.2549%" y="261" width="0.0450%" height="15" fill="rgb(200,200,255)" fg:x="6502689" fg:w="2978"/><text x="98.5049%" y="271.50"></text></g><g><title>/self (2,033 samples, 0.03%; -0.00%)</title><rect x="98.2692%" y="245" width="0.0307%" height="15" fill="rgb(200,200,255)" fg:x="6503634" fg:w="2033"/><text x="98.5192%" y="255.50"></text></g><g><title>/lock_api-bc3a19ee97a6acc1 (860 samples, 0.01%; -0.00%)</title><rect x="98.3361%" y="197" width="0.0130%" height="15" fill="rgb(200,200,255)" fg:x="6508061" fg:w="860"/><text x="98.5861%" y="207.50"></text></g><g><title>/openssl-sys-445e5167481f79f8 (2,604 samples, 0.04%; -0.00%)</title><rect x="98.3542%" y="197" width="0.0393%" height="15" fill="rgb(200,200,255)" fg:x="6509264" fg:w="2604"/><text x="98.6042%" y="207.50"></text></g><g><title>/ring-35bd708cb2263f5e (1,017 samples, 0.02%; -0.00%)</title><rect x="98.3997%" y="197" width="0.0154%" height="15" fill="rgb(200,200,255)" fg:x="6512274" fg:w="1017"/><text x="98.6497%" y="207.50"></text></g><g><title>/serde_json-24e185632056edfd (2,424 samples, 0.04%; -0.00%)</title><rect x="98.4243%" y="197" width="0.0366%" height="15" fill="rgb(200,200,255)" fg:x="6513901" fg:w="2424"/><text x="98.6743%" y="207.50"></text></g><g><title>/build (12,173 samples, 0.18%; 0.00%)</title><rect x="98.3098%" y="213" width="0.1839%" height="15" fill="rgb(250,250,250)" fg:x="6506321" fg:w="12173"/><text x="98.5598%" y="223.50"></text></g><g><title>/zerocopy-1a0763b7dd1fd0b7 (922 samples, 0.01%; -0.00%)</title><rect x="98.4798%" y="197" width="0.0139%" height="15" fill="rgb(200,200,255)" fg:x="6517572" fg:w="922"/><text x="98.7298%" y="207.50"></text></g><g><title>/cargo-installCAQd8O (50,178 samples, 0.76%; 0.00%)</title><rect x="98.3041%" y="245" width="0.7582%" height="15" fill="rgb(250,250,250)" fg:x="6505944" fg:w="50178"/><text x="98.5541%" y="255.50"></text></g><g><title>/release (50,178 samples, 0.76%; -0.00%)</title><rect x="98.3041%" y="229" width="0.7582%" height="15" fill="rgb(200,200,255)" fg:x="6505944" fg:w="50178"/><text x="98.5541%" y="239.50"></text></g><g><title>/deps (37,628 samples, 0.57%; -0.00%)</title><rect x="98.4937%" y="213" width="0.5686%" height="15" fill="rgb(200,200,255)" fg:x="6518494" fg:w="37628"/><text x="98.7437%" y="223.50"></text></g><g><title>tmp (50,567 samples, 0.76%; -0.00%)</title><rect x="98.3040%" y="261" width="0.7641%" height="15" fill="rgb(200,200,255)" fg:x="6505941" fg:w="50567"/><text x="98.5540%" y="271.50"></text></g><g><title>/lib64 (1,207 samples, 0.02%; -0.00%)</title><rect x="99.0683%" y="245" width="0.0182%" height="15" fill="rgb(200,200,255)" fg:x="6556525" fg:w="1207"/><text x="99.3183%" y="255.50"></text></g><g><title>/rustlib (10,477 samples, 0.16%; 0.00%)</title><rect x="99.0952%" y="229" width="0.1583%" height="15" fill="rgb(250,250,250)" fg:x="6558303" fg:w="10477"/><text x="99.3452%" y="239.50"></text></g><g><title>/x86_64-unknown-linux-gnu (10,477 samples, 0.16%; -0.00%)</title><rect x="99.0952%" y="213" width="0.1583%" height="15" fill="rgb(200,200,255)" fg:x="6558303" fg:w="10477"/><text x="99.3452%" y="223.50"></text></g><g><title>/lib (10,476 samples, 0.16%; -0.00%)</title><rect x="99.0952%" y="197" width="0.1583%" height="15" fill="rgb(200,200,255)" fg:x="6558304" fg:w="10476"/><text x="99.3452%" y="207.50"></text></g><g><title>/lib (19,538 samples, 0.30%; 0.00%)</title><rect x="99.0866%" y="245" width="0.2952%" height="15" fill="rgb(250,250,250)" fg:x="6557732" fg:w="19538"/><text x="99.3366%" y="255.50"></text></g><g><title>/sysimage (8,490 samples, 0.13%; 0.00%)</title><rect x="99.2535%" y="229" width="0.1283%" height="15" fill="rgb(250,250,250)" fg:x="6568780" fg:w="8490"/><text x="99.5035%" y="239.50"></text></g><g><title>/rpm (8,490 samples, 0.13%; -0.00%)</title><rect x="99.2535%" y="213" width="0.1283%" height="15" fill="rgb(200,200,255)" fg:x="6568780" fg:w="8490"/><text x="99.5035%" y="223.50"></text></g><g><title>usr (20,774 samples, 0.31%; -0.00%)</title><rect x="99.0681%" y="261" width="0.3139%" height="15" fill="rgb(200,200,255)" fg:x="6556508" fg:w="20774"/><text x="99.3181%" y="271.50"></text></g><g><title>/PackageKit (40,723 samples, 0.62%; -0.00%)</title><rect x="99.3820%" y="229" width="0.6153%" height="15" fill="rgb(200,200,255)" fg:x="6577282" fg:w="40723"/><text x="99.6320%" y="239.50"></text></g><g><title>/lib (40,777 samples, 0.62%; 0.00%)</title><rect x="99.3820%" y="245" width="0.6161%" height="15" fill="rgb(250,250,250)" fg:x="6577282" fg:w="40777"/><text x="99.6320%" y="255.50"></text></g><g><title>all (6,618,184 samples, 100%)</title><rect x="0.0000%" y="293" width="100.0000%" height="15" fill="rgb(255,230,55)" fg:x="0" fg:w="6618184"/><text x="0.2500%" y="303.50"></text></g><g><title>syscall`write (2,033,152 samples, 30.72%; 0.00%)</title><rect x="69.2793%" y="277" width="30.7207%" height="15" fill="rgb(250,250,250)" fg:x="4585032" fg:w="2033152"/><text x="69.5293%" y="287.50">syscall`write</text></g><g><title>var (40,902 samples, 0.62%; 0.00%)</title><rect x="99.3820%" y="261" width="0.6180%" height="15" fill="rgb(250,250,250)" fg:x="6577282" fg:w="40902"/><text x="99.6320%" y="271.50"></text></g></svg></svg> \ No newline at end of file