diff options
| author | Paul Buetow <paul@buetow.org> | 2025-04-09 23:32:01 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-04-09 23:32:01 +0300 |
| commit | 9572fa5d087731f68d55517847833f6203b9a70d (patch) | |
| tree | 20ecba9b6bda135d27e16d759b157a2afabb215d | |
| parent | d8dc052fbfae7f831f8e665c64bb63969ec70db8 (diff) | |
add mrproper.
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | assets/ior-by-count-flamegraph.svg | 491 | ||||
| -rw-r--r-- | internal/eventloop.go | 2 | ||||
| -rw-r--r-- | internal/flamegraph/iordata.go | 8 |
4 files changed, 15 insertions, 493 deletions
@@ -34,6 +34,13 @@ clean: if [ -e ior.bpf.o ]; then rm ior.bpf.o; fi make -C ./internal/c clean +.PHONY: mrproper +mrproper: clean + find . -type f -name \*.ior.zst -delete + find . -type f -name \*.collapsed -delete + find . -type f -name \*.svg -delete + find . -type f -name \*.profile -delete + .PHONY: world world: clean generate test all diff --git a/assets/ior-by-count-flamegraph.svg b/assets/ior-by-count-flamegraph.svg deleted file mode 100644 index d5b4d05..0000000 --- a/assets/ior-by-count-flamegraph.svg +++ /dev/null @@ -1,491 +0,0 @@ -<?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 flamegraph's state. - var restore_state = function() { - var params = get_params(); - if (params.x && params.y) - zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]'))); - if (params.s) - search(params.s); - }; - - if (fluiddrawing) { - // Make width dynamic so the SVG fits its parent's width. - svg.removeAttribute("width"); - // Edge requires us to have a viewBox that gets updated with size changes. - var isEdge = /Edge\/\d./i.test(navigator.userAgent); - if (!isEdge) { - svg.removeAttribute("viewBox"); - } - var update_for_width_change = function() { - if (isEdge) { - svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; - } - - // Keep consistent padding on left and right of frames container. - frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; - - // Text truncation needs to be adjusted for the current width. - update_text_for_elements(frames.children); - - // 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); - - // set parameters for zoom state - var el = target.querySelector("rect"); - if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) { - var params = get_params() - params.x = el.attributes["fg:x"].value; - params.y = el.attributes.y.value; - history.replaceState(null, null, parse_params(params)); - } - } - else if (e.target.id == "unzoom") { - unzoom(); - - // remove zoom state - var params = get_params(); - if (params.x) delete params.x; - if (params.y) delete params.y; - history.replaceState(null, null, parse_params(params)); - } - else if (e.target.id == "search") search_prompt(); -}, false) -// mouse-over for info -// show -window.addEventListener("mouseover", function(e) { - var target = find_group(e.target); - if (target) details.nodeValue = nametype + " " + g_to_text(target); -}, false) -// clear -window.addEventListener("mouseout", function(e) { - var target = find_group(e.target); - if (target) details.nodeValue = ' '; -}, false) -// ctrl-F for search -window.addEventListener("keydown",function (e) { - if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { - e.preventDefault(); - search_prompt(); - } -}, false) -// functions -function get_params() { - var params = {}; - var paramsarr = window.location.search.substr(1).split('&'); - for (var i = 0; i < paramsarr.length; ++i) { - var tmp = paramsarr[i].split("="); - if (!tmp[0] || !tmp[1]) continue; - params[tmp[0]] = decodeURIComponent(tmp[1]); - } - return params; -} -function parse_params(params) { - var uri = "?"; - for (var key in params) { - uri += key + '=' + encodeURIComponent(params[key]) + '&'; - } - if (uri.slice(-1) == "&") - uri = uri.substring(0, uri.length - 1); - if (uri == '?') - uri = window.location.href.split('?')[0]; - return uri; -} -function find_child(node, selector) { - var children = node.querySelectorAll(selector); - if (children.length) return children[0]; - return; -} -function find_group(node) { - var parent = node.parentElement; - if (!parent) return; - if (parent.id == "frames") return node; - return find_group(parent); -} -function orig_save(e, attr, val) { - if (e.attributes["fg:orig_" + attr] != undefined) return; - if (e.attributes[attr] == undefined) return; - if (val == undefined) val = e.attributes[attr].value; - e.setAttribute("fg:orig_" + attr, val); -} -function orig_load(e, attr) { - if (e.attributes["fg:orig_"+attr] == undefined) return; - e.attributes[attr].value = e.attributes["fg:orig_" + attr].value; - e.removeAttribute("fg:orig_" + attr); -} -function g_to_text(e) { - var text = find_child(e, "title").firstChild.nodeValue; - return (text) -} -function g_to_func(e) { - var func = g_to_text(e); - // if there's any manipulation we want to do to the function - // name before it's searched, do it here before returning. - return (func); -} -function 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. - - // 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; - } - - 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))); - - // Smaller than this size won't fit anything - if (w < 2 * known_font_width) { - textElemNewAttributes.push([newX, ""]); - continue; - } - - // Fit in full text width - if (txt.length * known_font_width < w) { - textElemNewAttributes.push([newX, txt]); - continue; - } - - 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; - } - } - - console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/"); - - // 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]; - } -} - -function update_text(e) { - var r = find_child(e, "rect"); - var t = find_child(e, "text"); - var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3; - var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); - t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); - - // Smaller than this size won't fit anything - if (w < 2 * fontsize * fontwidth) { - t.textContent = ""; - return; - } - t.textContent = txt; - // Fit in full text width - if (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)); - - 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 diff --git a/internal/eventloop.go b/internal/eventloop.go index cd5ea25..217d880 100644 --- a/internal/eventloop.go +++ b/internal/eventloop.go @@ -292,7 +292,7 @@ func (e *eventLoop) syscallExit(exitEv event.Event, ch chan<- *event.Pair) { // See fcntl(2) for implementation details switch v.Cmd { case syscall.F_SETFL: - canChange := syscall.O_APPEND | syscall.O_ASYNC | syscall.O_DIRECT | syscall.O_NOATIME | syscall.O_NONBLOCK + const canChange = syscall.O_APPEND | syscall.O_ASYNC | syscall.O_DIRECT | syscall.O_NOATIME | syscall.O_NONBLOCK fdFile.AddFlags((int32(v.Arg) & int32(canChange))) ev.File = fdFile e.files[fd] = fdFile diff --git a/internal/flamegraph/iordata.go b/internal/flamegraph/iordata.go index b91dbc3..2ba1e9e 100644 --- a/internal/flamegraph/iordata.go +++ b/internal/flamegraph/iordata.go @@ -36,9 +36,15 @@ func newIorData() iorData { return iorData{paths: make(pathMap)} } +func cloneString(s string) string { + // Clone the string by creating a new string with the same content + // This is a workaround to avoid using unsafe package + return string([]byte(s)) +} + func (iod iorData) add(ev *event.Pair) { cnt := counter{count: 1, duration: ev.Duration, durationToPrev: ev.DurationToPrev} - iod.addPath(ev.FileName(), ev.EnterEv.GetTraceId(), ev.Comm, ev.EnterEv.GetPid(), + iod.addPath(ev.FileName(), ev.EnterEv.GetTraceId(), string(ev.Comm), ev.EnterEv.GetPid(), ev.EnterEv.GetTid(), ev.Flags(), cnt) } |
